difftreelog
test update to fixed typegen
in: master
11 files changed
tests/package.jsondiffbeforeafterboth--- a/tests/package.json
+++ b/tests/package.json
@@ -4,9 +4,9 @@
"description": "Unique Chain Tests",
"main": "",
"devDependencies": {
- "@polkadot/dev": "0.66.17",
+ "@polkadot/dev": "0.66.21",
"@polkadot/ts": "0.4.22",
- "@polkadot/typegen": "8.3.1",
+ "@polkadot/typegen": "8.3.3-12",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
@@ -83,9 +83,9 @@
"license": "SEE LICENSE IN ../LICENSE",
"homepage": "",
"dependencies": {
- "@polkadot/api": "8.3.1",
- "@polkadot/api-contract": "8.3.1",
- "@polkadot/util-crypto": "^9.1.1",
+ "@polkadot/api": "8.3.3-12",
+ "@polkadot/api-contract": "8.3.3-12",
+ "@polkadot/util-crypto": "9.1.2-11",
"bignumber.js": "^9.0.2",
"chai-as-promised": "^7.1.1",
"find-process": "^1.4.7",
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -97,6 +97,14 @@
**/
CollectionTokenPrefixLimitExceeded: AugmentedError<ApiType>;
/**
+ * Empty property keys are forbidden
+ **/
+ EmptyPropertyKey: AugmentedError<ApiType>;
+ /**
+ * Only ASCII letters, digits, and '_', '-' are allowed
+ **/
+ InvalidCharacterInPropertyKey: AugmentedError<ApiType>;
+ /**
* Metadata flag frozen
**/
MetadataFlagFrozen: AugmentedError<ApiType>;
@@ -112,6 +120,9 @@
* No permission to perform action
**/
NoPermission: AugmentedError<ApiType>;
+ /**
+ * Tried to store more property data than allowed
+ **/
NoSpaceForProperty: AugmentedError<ApiType>;
/**
* Not sufficient founds to perform action
@@ -125,6 +136,9 @@
* Tried to enable permissions which are only permitted to be disabled
**/
OwnerPermissionsCantBeReverted: AugmentedError<ApiType>;
+ /**
+ * Tried to store more property keys than allowed
+ **/
PropertyLimitReached: AugmentedError<ApiType>;
/**
* Collection is not in mint mode.
@@ -155,6 +169,10 @@
**/
TransferNotAllowed: AugmentedError<ApiType>;
/**
+ * Unable to read array of unbounded keys
+ **/
+ UnableToReadUnboundedKeys: AugmentedError<ApiType>;
+ /**
* Target collection doesn't supports this operation
**/
UnsupportedOperation: AugmentedError<ApiType>;
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -4,7 +4,7 @@
import type { ApiTypes } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U256, U8aFixed, u128, u32, u64, u8 } from '@polkadot/types-codec';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, SpRuntimeDispatchError, UpDataStructsAccessMode, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, SpRuntimeDispatchError, UpDataStructsAccessMode, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
declare module '@polkadot/api-base/types/events' {
export interface AugmentedEvents<ApiType extends ApiTypes> {
@@ -90,7 +90,7 @@
**/
CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;
CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;
- CollectionPropertySet: AugmentedEvent<ApiType, [u32, UpDataStructsProperty]>;
+ CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;
/**
* New item was created.
*
@@ -119,9 +119,9 @@
* * amount: Always 1 for NFT
**/
ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;
- PropertyPermissionSet: AugmentedEvent<ApiType, [u32, UpDataStructsPropertyKeyPermission]>;
+ PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;
TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;
- TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, UpDataStructsProperty]>;
+ TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;
/**
* Item was transferred
*
@@ -617,14 +617,6 @@
* * sponsor: New sponsor address.
**/
SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;
- /**
- * Variable on chain schema was set
- *
- * # Arguments
- *
- * * collection_id: Globally unique collection identifier.
- **/
- VariableOnChainSchemaSet: AugmentedEvent<ApiType, [u32]>;
/**
* Generic event
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -5,7 +5,7 @@
import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertyPermission } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
declare module '@polkadot/api-base/types/storage' {
@@ -81,7 +81,7 @@
/**
* Large variable-size collection fields are extracted here
**/
- collectionData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: UpDataStructsCollectionField | 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema' | number | Uint8Array) => Observable<Bytes>, [u32, UpDataStructsCollectionField]> & QueryableStorageEntry<ApiType, [u32, UpDataStructsCollectionField]>;
+ collectionData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: UpDataStructsCollectionField | 'ConstOnChainSchema' | 'OffchainSchema' | number | Uint8Array) => Observable<Bytes>, [u32, UpDataStructsCollectionField]> & QueryableStorageEntry<ApiType, [u32, UpDataStructsCollectionField]>;
/**
* Collection properties
**/
@@ -155,6 +155,11 @@
accountCodes: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<Bytes>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
accountStorages: AugmentedQuery<ApiType, (arg1: H160 | string | Uint8Array, arg2: H256 | string | Uint8Array) => Observable<H256>, [H160, H256]> & QueryableStorageEntry<ApiType, [H160, H256]>;
/**
+ * Written on log, reset after transaction
+ * Should be empty between transactions
+ **/
+ currentLogs: AugmentedQuery<ApiType, () => Observable<Vec<EthereumLog>>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
* Generic query
**/
[key: string]: QueryableStorageEntry<ApiType>;
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -3,7 +3,7 @@
import type { ApiTypes } from '@polkadot/api-base/types';
import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
-import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
+import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsMetaUpdatePermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
@@ -378,7 +378,7 @@
* - Weight of derivative `call` execution + 10,000.
* # </weight>
**/
- sudo: AugmentedSubmittable<(call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
+ sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
/**
* Authenticates the sudo key and dispatches a function call with `Signed` origin from
* a given account.
@@ -392,7 +392,7 @@
* - Weight of derivative `call` execution + 10,000.
* # </weight>
**/
- sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
+ sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
/**
* Authenticates the sudo key and dispatches a function call with `Root` origin.
* This function does not check the weight of the call, and instead allows the
@@ -405,7 +405,7 @@
* - The weight of this call is defined by the caller.
* # </weight>
**/
- sudoUncheckedWeight: AugmentedSubmittable<(call: Call | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
+ sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
/**
* Generic tx
**/
@@ -679,7 +679,7 @@
*
* Prefer it to deprecated [`created_collection`] method
**/
- createCollectionEx: AugmentedSubmittable<(data: UpDataStructsCreateCollectionData | { mode?: any; access?: any; name?: any; description?: any; tokenPrefix?: any; offchainSchema?: any; schemaVersion?: any; pendingSponsor?: any; limits?: any; variableOnChainSchema?: any; constOnChainSchema?: any; metaUpdatePermission?: any; tokenPropertyPermissions?: any; properties?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [UpDataStructsCreateCollectionData]>;
+ createCollectionEx: AugmentedSubmittable<(data: UpDataStructsCreateCollectionData | { mode?: any; access?: any; name?: any; description?: any; tokenPrefix?: any; offchainSchema?: any; schemaVersion?: any; pendingSponsor?: any; limits?: any; constOnChainSchema?: any; metaUpdatePermission?: any; tokenPropertyPermissions?: any; properties?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [UpDataStructsCreateCollectionData]>;
/**
* This method creates a concrete instance of NFT Collection created with CreateCollection method.
*
@@ -915,21 +915,6 @@
* * schema: String representing the offchain data schema.
**/
setVariableMetaData: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, data: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, Bytes]>;
- /**
- * Set variable on-chain data schema.
- *
- * # Permissions
- *
- * * Collection Owner
- * * Collection Admin
- *
- * # Arguments
- *
- * * collection_id.
- *
- * * schema: String representing the variable on-chain data schema.
- **/
- setVariableOnChainSchema: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, schema: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Bytes]>;
/**
* Change ownership of the token.
*
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -478,7 +478,6 @@
ForkTreePendingChangeNode: ForkTreePendingChangeNode;
FpRpcTransactionStatus: FpRpcTransactionStatus;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportStorageBoundedBTreeSet: FrameSupportStorageBoundedBTreeSet;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -1184,6 +1183,8 @@
UpDataStructsMetaUpdatePermission: UpDataStructsMetaUpdatePermission;
UpDataStructsNestingRule: UpDataStructsNestingRule;
UpDataStructsProperties: UpDataStructsProperties;
+ UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;
+ UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;
UpDataStructsProperty: UpDataStructsProperty;
UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1381,10 +1381,6 @@
collectionId: 'u32',
schema: 'Bytes',
},
- set_variable_on_chain_schema: {
- collectionId: 'u32',
- schema: 'Bytes',
- },
set_collection_limits: {
collectionId: 'u32',
newLimit: 'UpDataStructsCollectionLimits'
@@ -1414,7 +1410,6 @@
schemaVersion: 'Option<UpDataStructsSchemaVersion>',
pendingSponsor: 'Option<AccountId32>',
limits: 'Option<UpDataStructsCollectionLimits>',
- variableOnChainSchema: 'Bytes',
constOnChainSchema: 'Bytes',
metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>',
tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
@@ -1463,14 +1458,10 @@
_enum: {
Disabled: 'Null',
Owner: 'Null',
- OwnerRestricted: 'FrameSupportStorageBoundedBTreeSet'
+ OwnerRestricted: 'BTreeSet<u32>'
}
},
/**
- * Lookup171: frame_support::storage::bounded_btree_set::BoundedBTreeSet<up_data_structs::CollectionId, S>
- **/
- FrameSupportStorageBoundedBTreeSet: 'BTreeSet<u32>',
- /**
* Lookup177: up_data_structs::MetaUpdatePermission
**/
UpDataStructsMetaUpdatePermission: {
@@ -1993,8 +1984,7 @@
MintPermissionSet: 'u32',
OffchainSchemaSet: 'u32',
PublicAccessModeSet: '(u32,UpDataStructsAccessMode)',
- SchemaVersionSet: 'u32',
- VariableOnChainSchemaSet: 'u32'
+ SchemaVersionSet: 'u32'
}
},
/**
@@ -2008,11 +1998,11 @@
ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',
- CollectionPropertySet: '(u32,UpDataStructsProperty)',
+ CollectionPropertySet: '(u32,Bytes)',
CollectionPropertyDeleted: '(u32,Bytes)',
- TokenPropertySet: '(u32,u32,UpDataStructsProperty)',
+ TokenPropertySet: '(u32,u32,Bytes)',
TokenPropertyDeleted: '(u32,u32,Bytes)',
- PropertyPermissionSet: '(u32,UpDataStructsPropertyKeyPermission)'
+ PropertyPermissionSet: '(u32,Bytes)'
}
},
/**
@@ -2316,18 +2306,26 @@
* Lookup312: up_data_structs::Properties
**/
UpDataStructsProperties: {
- map: 'BTreeMap<Bytes, Bytes>',
+ map: 'UpDataStructsPropertiesMapBoundedVec',
consumedSpace: 'u32',
spaceLimit: 'u32'
},
/**
- * Lookup322: up_data_structs::CollectionField
+ * Lookup313: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ **/
+ UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
+ /**
+ * Lookup318: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ **/
+ UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
+ /**
+ * Lookup324: up_data_structs::CollectionField
**/
UpDataStructsCollectionField: {
- _enum: ['VariableOnChainSchema', 'ConstOnChainSchema', 'OffchainSchema']
+ _enum: ['ConstOnChainSchema', 'OffchainSchema']
},
/**
- * Lookup325: up_data_structs::CollectionStats
+ * Lookup327: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2335,11 +2333,11 @@
alive: 'u32'
},
/**
- * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
+ * Lookup328: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
**/
- PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',
+ PhantomTypeUpDataStructsTokenData: '[Lookup329;0]',
/**
- * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup329: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
constData: 'Bytes',
@@ -2347,11 +2345,11 @@
owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
},
/**
- * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
+ * Lookup332: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
**/
- PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',
+ PhantomTypeUpDataStructsRpcCollection: '[Lookup333;0]',
/**
- * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup333: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -2365,39 +2363,38 @@
schemaVersion: 'UpDataStructsSchemaVersion',
sponsorship: 'UpDataStructsSponsorshipState',
limits: 'UpDataStructsCollectionLimits',
- variableOnChainSchema: 'Bytes',
constOnChainSchema: 'Bytes',
metaUpdatePermission: 'UpDataStructsMetaUpdatePermission',
tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup333: pallet_common::pallet::Error<T>
+ * Lookup335: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
- _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached']
+ _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'UnableToReadUnboundedKeys', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey']
},
/**
- * Lookup335: pallet_fungible::pallet::Error<T>
+ * Lookup337: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup336: pallet_refungible::ItemData
+ * Lookup338: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes',
variableData: 'Bytes'
},
/**
- * Lookup340: pallet_refungible::pallet::Error<T>
+ * Lookup342: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup341: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup343: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
constData: 'Bytes',
@@ -2405,25 +2402,25 @@
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup342: pallet_nonfungible::pallet::Error<T>
+ * Lookup344: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
},
/**
- * Lookup343: pallet_structure::pallet::Error<T>
+ * Lookup345: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
},
/**
- * Lookup345: pallet_evm::pallet::Error<T>
+ * Lookup348: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup348: fp_rpc::TransactionStatus
+ * Lookup351: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -2435,11 +2432,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup351: ethbloom::Bloom
+ * Lookup353: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup353: ethereum::receipt::ReceiptV3
+ * Lookup355: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -2449,7 +2446,7 @@
}
},
/**
- * Lookup354: ethereum::receipt::EIP658ReceiptData
+ * Lookup356: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -2458,7 +2455,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup355: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup357: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -2466,7 +2463,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup356: ethereum::header::Header
+ * Lookup358: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -2486,41 +2483,41 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup357: ethereum_types::hash::H64
+ * Lookup359: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup362: pallet_ethereum::pallet::Error<T>
+ * Lookup364: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup363: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup365: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup364: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup366: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup366: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup368: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission']
},
/**
- * Lookup367: pallet_evm_migration::pallet::Error<T>
+ * Lookup369: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup369: sp_runtime::MultiSignature
+ * Lookup371: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -2530,39 +2527,39 @@
}
},
/**
- * Lookup370: sp_core::ed25519::Signature
+ * Lookup372: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup372: sp_core::sr25519::Signature
+ * Lookup374: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup373: sp_core::ecdsa::Signature
+ * Lookup375: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup376: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup378: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup377: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup379: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup380: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup382: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup381: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup383: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup382: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup384: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup383: opal_runtime::Runtime
+ * Lookup385: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportStorageBoundedBTreeSet, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsMetaUpdatePermission, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
export interface InterfaceTypes {
@@ -47,7 +47,6 @@
EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
FpRpcTransactionStatus: FpRpcTransactionStatus;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportStorageBoundedBTreeSet: FrameSupportStorageBoundedBTreeSet;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -164,6 +163,8 @@
UpDataStructsMetaUpdatePermission: UpDataStructsMetaUpdatePermission;
UpDataStructsNestingRule: UpDataStructsNestingRule;
UpDataStructsProperties: UpDataStructsProperties;
+ UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;
+ UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;
UpDataStructsProperty: UpDataStructsProperty;
UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
tests/src/interfaces/types-lookup.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.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: u64;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: U8aFixed;35 readonly isUnsupportedVersion: boolean;36 readonly asUnsupportedVersion: U8aFixed;37 readonly isExecutedDownward: boolean;38 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;39 readonly isWeightExhausted: boolean;40 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;41 readonly isOverweightEnqueued: boolean;42 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;43 readonly isOverweightServiced: boolean;44 readonly asOverweightServiced: ITuple<[u64, u64]>;45 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';46}4748/** @name CumulusPalletDmpQueuePageIndexData */49export interface CumulusPalletDmpQueuePageIndexData extends Struct {50 readonly beginUsed: u32;51 readonly endUsed: u32;52 readonly overweightCount: u64;53}5455/** @name CumulusPalletParachainSystemCall */56export interface CumulusPalletParachainSystemCall extends Enum {57 readonly isSetValidationData: boolean;58 readonly asSetValidationData: {59 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;60 } & Struct;61 readonly isSudoSendUpwardMessage: boolean;62 readonly asSudoSendUpwardMessage: {63 readonly message: Bytes;64 } & Struct;65 readonly isAuthorizeUpgrade: boolean;66 readonly asAuthorizeUpgrade: {67 readonly codeHash: H256;68 } & Struct;69 readonly isEnactAuthorizedUpgrade: boolean;70 readonly asEnactAuthorizedUpgrade: {71 readonly code: Bytes;72 } & Struct;73 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';74}7576/** @name CumulusPalletParachainSystemError */77export interface CumulusPalletParachainSystemError extends Enum {78 readonly isOverlappingUpgrades: boolean;79 readonly isProhibitedByPolkadot: boolean;80 readonly isTooBig: boolean;81 readonly isValidationDataNotAvailable: boolean;82 readonly isHostConfigurationNotAvailable: boolean;83 readonly isNotScheduled: boolean;84 readonly isNothingAuthorized: boolean;85 readonly isUnauthorized: boolean;86 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';87}8889/** @name CumulusPalletParachainSystemEvent */90export interface CumulusPalletParachainSystemEvent extends Enum {91 readonly isValidationFunctionStored: boolean;92 readonly isValidationFunctionApplied: boolean;93 readonly asValidationFunctionApplied: u32;94 readonly isValidationFunctionDiscarded: boolean;95 readonly isUpgradeAuthorized: boolean;96 readonly asUpgradeAuthorized: H256;97 readonly isDownwardMessagesReceived: boolean;98 readonly asDownwardMessagesReceived: u32;99 readonly isDownwardMessagesProcessed: boolean;100 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;101 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';102}103104/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */105export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {106 readonly dmqMqcHead: H256;107 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;108 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;109 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;110}111112/** @name CumulusPalletXcmCall */113export interface CumulusPalletXcmCall extends Null {}114115/** @name CumulusPalletXcmError */116export interface CumulusPalletXcmError extends Null {}117118/** @name CumulusPalletXcmEvent */119export interface CumulusPalletXcmEvent extends Enum {120 readonly isInvalidFormat: boolean;121 readonly asInvalidFormat: U8aFixed;122 readonly isUnsupportedVersion: boolean;123 readonly asUnsupportedVersion: U8aFixed;124 readonly isExecutedDownward: boolean;125 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;126 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';127}128129/** @name CumulusPalletXcmpQueueCall */130export interface CumulusPalletXcmpQueueCall extends Enum {131 readonly isServiceOverweight: boolean;132 readonly asServiceOverweight: {133 readonly index: u64;134 readonly weightLimit: u64;135 } & Struct;136 readonly isSuspendXcmExecution: boolean;137 readonly isResumeXcmExecution: boolean;138 readonly isUpdateSuspendThreshold: boolean;139 readonly asUpdateSuspendThreshold: {140 readonly new_: u32;141 } & Struct;142 readonly isUpdateDropThreshold: boolean;143 readonly asUpdateDropThreshold: {144 readonly new_: u32;145 } & Struct;146 readonly isUpdateResumeThreshold: boolean;147 readonly asUpdateResumeThreshold: {148 readonly new_: u32;149 } & Struct;150 readonly isUpdateThresholdWeight: boolean;151 readonly asUpdateThresholdWeight: {152 readonly new_: u64;153 } & Struct;154 readonly isUpdateWeightRestrictDecay: boolean;155 readonly asUpdateWeightRestrictDecay: {156 readonly new_: u64;157 } & Struct;158 readonly isUpdateXcmpMaxIndividualWeight: boolean;159 readonly asUpdateXcmpMaxIndividualWeight: {160 readonly new_: u64;161 } & Struct;162 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';163}164165/** @name CumulusPalletXcmpQueueError */166export interface CumulusPalletXcmpQueueError extends Enum {167 readonly isFailedToSend: boolean;168 readonly isBadXcmOrigin: boolean;169 readonly isBadXcm: boolean;170 readonly isBadOverweightIndex: boolean;171 readonly isWeightOverLimit: boolean;172 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';173}174175/** @name CumulusPalletXcmpQueueEvent */176export interface CumulusPalletXcmpQueueEvent extends Enum {177 readonly isSuccess: boolean;178 readonly asSuccess: Option<H256>;179 readonly isFail: boolean;180 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;181 readonly isBadVersion: boolean;182 readonly asBadVersion: Option<H256>;183 readonly isBadFormat: boolean;184 readonly asBadFormat: Option<H256>;185 readonly isUpwardMessageSent: boolean;186 readonly asUpwardMessageSent: Option<H256>;187 readonly isXcmpMessageSent: boolean;188 readonly asXcmpMessageSent: Option<H256>;189 readonly isOverweightEnqueued: boolean;190 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;191 readonly isOverweightServiced: boolean;192 readonly asOverweightServiced: ITuple<[u64, u64]>;193 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';194}195196/** @name CumulusPalletXcmpQueueInboundChannelDetails */197export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {198 readonly sender: u32;199 readonly state: CumulusPalletXcmpQueueInboundState;200 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;201}202203/** @name CumulusPalletXcmpQueueInboundState */204export interface CumulusPalletXcmpQueueInboundState extends Enum {205 readonly isOk: boolean;206 readonly isSuspended: boolean;207 readonly type: 'Ok' | 'Suspended';208}209210/** @name CumulusPalletXcmpQueueOutboundChannelDetails */211export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {212 readonly recipient: u32;213 readonly state: CumulusPalletXcmpQueueOutboundState;214 readonly signalsExist: bool;215 readonly firstIndex: u16;216 readonly lastIndex: u16;217}218219/** @name CumulusPalletXcmpQueueOutboundState */220export interface CumulusPalletXcmpQueueOutboundState extends Enum {221 readonly isOk: boolean;222 readonly isSuspended: boolean;223 readonly type: 'Ok' | 'Suspended';224}225226/** @name CumulusPalletXcmpQueueQueueConfigData */227export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {228 readonly suspendThreshold: u32;229 readonly dropThreshold: u32;230 readonly resumeThreshold: u32;231 readonly thresholdWeight: u64;232 readonly weightRestrictDecay: u64;233 readonly xcmpMaxIndividualWeight: u64;234}235236/** @name CumulusPrimitivesParachainInherentParachainInherentData */237export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {238 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;239 readonly relayChainState: SpTrieStorageProof;240 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;241 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;242}243244/** @name EthbloomBloom */245export interface EthbloomBloom extends U8aFixed {}246247/** @name EthereumBlock */248export interface EthereumBlock extends Struct {249 readonly header: EthereumHeader;250 readonly transactions: Vec<EthereumTransactionTransactionV2>;251 readonly ommers: Vec<EthereumHeader>;252}253254/** @name EthereumHeader */255export interface EthereumHeader extends Struct {256 readonly parentHash: H256;257 readonly ommersHash: H256;258 readonly beneficiary: H160;259 readonly stateRoot: H256;260 readonly transactionsRoot: H256;261 readonly receiptsRoot: H256;262 readonly logsBloom: EthbloomBloom;263 readonly difficulty: U256;264 readonly number: U256;265 readonly gasLimit: U256;266 readonly gasUsed: U256;267 readonly timestamp: u64;268 readonly extraData: Bytes;269 readonly mixHash: H256;270 readonly nonce: EthereumTypesHashH64;271}272273/** @name EthereumLog */274export interface EthereumLog extends Struct {275 readonly address: H160;276 readonly topics: Vec<H256>;277 readonly data: Bytes;278}279280/** @name EthereumReceiptEip658ReceiptData */281export interface EthereumReceiptEip658ReceiptData extends Struct {282 readonly statusCode: u8;283 readonly usedGas: U256;284 readonly logsBloom: EthbloomBloom;285 readonly logs: Vec<EthereumLog>;286}287288/** @name EthereumReceiptReceiptV3 */289export interface EthereumReceiptReceiptV3 extends Enum {290 readonly isLegacy: boolean;291 readonly asLegacy: EthereumReceiptEip658ReceiptData;292 readonly isEip2930: boolean;293 readonly asEip2930: EthereumReceiptEip658ReceiptData;294 readonly isEip1559: boolean;295 readonly asEip1559: EthereumReceiptEip658ReceiptData;296 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';297}298299/** @name EthereumTransactionAccessListItem */300export interface EthereumTransactionAccessListItem extends Struct {301 readonly address: H160;302 readonly storageKeys: Vec<H256>;303}304305/** @name EthereumTransactionEip1559Transaction */306export interface EthereumTransactionEip1559Transaction extends Struct {307 readonly chainId: u64;308 readonly nonce: U256;309 readonly maxPriorityFeePerGas: U256;310 readonly maxFeePerGas: U256;311 readonly gasLimit: U256;312 readonly action: EthereumTransactionTransactionAction;313 readonly value: U256;314 readonly input: Bytes;315 readonly accessList: Vec<EthereumTransactionAccessListItem>;316 readonly oddYParity: bool;317 readonly r: H256;318 readonly s: H256;319}320321/** @name EthereumTransactionEip2930Transaction */322export interface EthereumTransactionEip2930Transaction extends Struct {323 readonly chainId: u64;324 readonly nonce: U256;325 readonly gasPrice: U256;326 readonly gasLimit: U256;327 readonly action: EthereumTransactionTransactionAction;328 readonly value: U256;329 readonly input: Bytes;330 readonly accessList: Vec<EthereumTransactionAccessListItem>;331 readonly oddYParity: bool;332 readonly r: H256;333 readonly s: H256;334}335336/** @name EthereumTransactionLegacyTransaction */337export interface EthereumTransactionLegacyTransaction extends Struct {338 readonly nonce: U256;339 readonly gasPrice: U256;340 readonly gasLimit: U256;341 readonly action: EthereumTransactionTransactionAction;342 readonly value: U256;343 readonly input: Bytes;344 readonly signature: EthereumTransactionTransactionSignature;345}346347/** @name EthereumTransactionTransactionAction */348export interface EthereumTransactionTransactionAction extends Enum {349 readonly isCall: boolean;350 readonly asCall: H160;351 readonly isCreate: boolean;352 readonly type: 'Call' | 'Create';353}354355/** @name EthereumTransactionTransactionSignature */356export interface EthereumTransactionTransactionSignature extends Struct {357 readonly v: u64;358 readonly r: H256;359 readonly s: H256;360}361362/** @name EthereumTransactionTransactionV2 */363export interface EthereumTransactionTransactionV2 extends Enum {364 readonly isLegacy: boolean;365 readonly asLegacy: EthereumTransactionLegacyTransaction;366 readonly isEip2930: boolean;367 readonly asEip2930: EthereumTransactionEip2930Transaction;368 readonly isEip1559: boolean;369 readonly asEip1559: EthereumTransactionEip1559Transaction;370 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';371}372373/** @name EthereumTypesHashH64 */374export interface EthereumTypesHashH64 extends U8aFixed {}375376/** @name EvmCoreErrorExitError */377export interface EvmCoreErrorExitError extends Enum {378 readonly isStackUnderflow: boolean;379 readonly isStackOverflow: boolean;380 readonly isInvalidJump: boolean;381 readonly isInvalidRange: boolean;382 readonly isDesignatedInvalid: boolean;383 readonly isCallTooDeep: boolean;384 readonly isCreateCollision: boolean;385 readonly isCreateContractLimit: boolean;386 readonly isOutOfOffset: boolean;387 readonly isOutOfGas: boolean;388 readonly isOutOfFund: boolean;389 readonly isPcUnderflow: boolean;390 readonly isCreateEmpty: boolean;391 readonly isOther: boolean;392 readonly asOther: Text;393 readonly isInvalidCode: boolean;394 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';395}396397/** @name EvmCoreErrorExitFatal */398export interface EvmCoreErrorExitFatal extends Enum {399 readonly isNotSupported: boolean;400 readonly isUnhandledInterrupt: boolean;401 readonly isCallErrorAsFatal: boolean;402 readonly asCallErrorAsFatal: EvmCoreErrorExitError;403 readonly isOther: boolean;404 readonly asOther: Text;405 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';406}407408/** @name EvmCoreErrorExitReason */409export interface EvmCoreErrorExitReason extends Enum {410 readonly isSucceed: boolean;411 readonly asSucceed: EvmCoreErrorExitSucceed;412 readonly isError: boolean;413 readonly asError: EvmCoreErrorExitError;414 readonly isRevert: boolean;415 readonly asRevert: EvmCoreErrorExitRevert;416 readonly isFatal: boolean;417 readonly asFatal: EvmCoreErrorExitFatal;418 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';419}420421/** @name EvmCoreErrorExitRevert */422export interface EvmCoreErrorExitRevert extends Enum {423 readonly isReverted: boolean;424 readonly type: 'Reverted';425}426427/** @name EvmCoreErrorExitSucceed */428export interface EvmCoreErrorExitSucceed extends Enum {429 readonly isStopped: boolean;430 readonly isReturned: boolean;431 readonly isSuicided: boolean;432 readonly type: 'Stopped' | 'Returned' | 'Suicided';433}434435/** @name FpRpcTransactionStatus */436export interface FpRpcTransactionStatus extends Struct {437 readonly transactionHash: H256;438 readonly transactionIndex: u32;439 readonly from: H160;440 readonly to: Option<H160>;441 readonly contractAddress: Option<H160>;442 readonly logs: Vec<EthereumLog>;443 readonly logsBloom: EthbloomBloom;444}445446/** @name FrameSupportPalletId */447export interface FrameSupportPalletId extends U8aFixed {}448449/** @name FrameSupportStorageBoundedBTreeSet */450export interface FrameSupportStorageBoundedBTreeSet extends BTreeSet<u32> {}451452/** @name FrameSupportTokensMiscBalanceStatus */453export interface FrameSupportTokensMiscBalanceStatus extends Enum {454 readonly isFree: boolean;455 readonly isReserved: boolean;456 readonly type: 'Free' | 'Reserved';457}458459/** @name FrameSupportWeightsDispatchClass */460export interface FrameSupportWeightsDispatchClass extends Enum {461 readonly isNormal: boolean;462 readonly isOperational: boolean;463 readonly isMandatory: boolean;464 readonly type: 'Normal' | 'Operational' | 'Mandatory';465}466467/** @name FrameSupportWeightsDispatchInfo */468export interface FrameSupportWeightsDispatchInfo extends Struct {469 readonly weight: u64;470 readonly class: FrameSupportWeightsDispatchClass;471 readonly paysFee: FrameSupportWeightsPays;472}473474/** @name FrameSupportWeightsPays */475export interface FrameSupportWeightsPays extends Enum {476 readonly isYes: boolean;477 readonly isNo: boolean;478 readonly type: 'Yes' | 'No';479}480481/** @name FrameSupportWeightsPerDispatchClassU32 */482export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {483 readonly normal: u32;484 readonly operational: u32;485 readonly mandatory: u32;486}487488/** @name FrameSupportWeightsPerDispatchClassU64 */489export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {490 readonly normal: u64;491 readonly operational: u64;492 readonly mandatory: u64;493}494495/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */496export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {497 readonly normal: FrameSystemLimitsWeightsPerClass;498 readonly operational: FrameSystemLimitsWeightsPerClass;499 readonly mandatory: FrameSystemLimitsWeightsPerClass;500}501502/** @name FrameSupportWeightsRuntimeDbWeight */503export interface FrameSupportWeightsRuntimeDbWeight extends Struct {504 readonly read: u64;505 readonly write: u64;506}507508/** @name FrameSupportWeightsWeightToFeeCoefficient */509export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {510 readonly coeffInteger: u128;511 readonly coeffFrac: Perbill;512 readonly negative: bool;513 readonly degree: u8;514}515516/** @name FrameSystemAccountInfo */517export interface FrameSystemAccountInfo extends Struct {518 readonly nonce: u32;519 readonly consumers: u32;520 readonly providers: u32;521 readonly sufficients: u32;522 readonly data: PalletBalancesAccountData;523}524525/** @name FrameSystemCall */526export interface FrameSystemCall extends Enum {527 readonly isFillBlock: boolean;528 readonly asFillBlock: {529 readonly ratio: Perbill;530 } & Struct;531 readonly isRemark: boolean;532 readonly asRemark: {533 readonly remark: Bytes;534 } & Struct;535 readonly isSetHeapPages: boolean;536 readonly asSetHeapPages: {537 readonly pages: u64;538 } & Struct;539 readonly isSetCode: boolean;540 readonly asSetCode: {541 readonly code: Bytes;542 } & Struct;543 readonly isSetCodeWithoutChecks: boolean;544 readonly asSetCodeWithoutChecks: {545 readonly code: Bytes;546 } & Struct;547 readonly isSetStorage: boolean;548 readonly asSetStorage: {549 readonly items: Vec<ITuple<[Bytes, Bytes]>>;550 } & Struct;551 readonly isKillStorage: boolean;552 readonly asKillStorage: {553 readonly keys_: Vec<Bytes>;554 } & Struct;555 readonly isKillPrefix: boolean;556 readonly asKillPrefix: {557 readonly prefix: Bytes;558 readonly subkeys: u32;559 } & Struct;560 readonly isRemarkWithEvent: boolean;561 readonly asRemarkWithEvent: {562 readonly remark: Bytes;563 } & Struct;564 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';565}566567/** @name FrameSystemError */568export interface FrameSystemError extends Enum {569 readonly isInvalidSpecName: boolean;570 readonly isSpecVersionNeedsToIncrease: boolean;571 readonly isFailedToExtractRuntimeVersion: boolean;572 readonly isNonDefaultComposite: boolean;573 readonly isNonZeroRefCount: boolean;574 readonly isCallFiltered: boolean;575 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';576}577578/** @name FrameSystemEvent */579export interface FrameSystemEvent extends Enum {580 readonly isExtrinsicSuccess: boolean;581 readonly asExtrinsicSuccess: {582 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;583 } & Struct;584 readonly isExtrinsicFailed: boolean;585 readonly asExtrinsicFailed: {586 readonly dispatchError: SpRuntimeDispatchError;587 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;588 } & Struct;589 readonly isCodeUpdated: boolean;590 readonly isNewAccount: boolean;591 readonly asNewAccount: {592 readonly account: AccountId32;593 } & Struct;594 readonly isKilledAccount: boolean;595 readonly asKilledAccount: {596 readonly account: AccountId32;597 } & Struct;598 readonly isRemarked: boolean;599 readonly asRemarked: {600 readonly sender: AccountId32;601 readonly hash_: H256;602 } & Struct;603 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';604}605606/** @name FrameSystemEventRecord */607export interface FrameSystemEventRecord extends Struct {608 readonly phase: FrameSystemPhase;609 readonly event: Event;610 readonly topics: Vec<H256>;611}612613/** @name FrameSystemExtensionsCheckGenesis */614export interface FrameSystemExtensionsCheckGenesis extends Null {}615616/** @name FrameSystemExtensionsCheckNonce */617export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}618619/** @name FrameSystemExtensionsCheckSpecVersion */620export interface FrameSystemExtensionsCheckSpecVersion extends Null {}621622/** @name FrameSystemExtensionsCheckWeight */623export interface FrameSystemExtensionsCheckWeight extends Null {}624625/** @name FrameSystemLastRuntimeUpgradeInfo */626export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {627 readonly specVersion: Compact<u32>;628 readonly specName: Text;629}630631/** @name FrameSystemLimitsBlockLength */632export interface FrameSystemLimitsBlockLength extends Struct {633 readonly max: FrameSupportWeightsPerDispatchClassU32;634}635636/** @name FrameSystemLimitsBlockWeights */637export interface FrameSystemLimitsBlockWeights extends Struct {638 readonly baseBlock: u64;639 readonly maxBlock: u64;640 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;641}642643/** @name FrameSystemLimitsWeightsPerClass */644export interface FrameSystemLimitsWeightsPerClass extends Struct {645 readonly baseExtrinsic: u64;646 readonly maxExtrinsic: Option<u64>;647 readonly maxTotal: Option<u64>;648 readonly reserved: Option<u64>;649}650651/** @name FrameSystemPhase */652export interface FrameSystemPhase extends Enum {653 readonly isApplyExtrinsic: boolean;654 readonly asApplyExtrinsic: u32;655 readonly isFinalization: boolean;656 readonly isInitialization: boolean;657 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';658}659660/** @name OpalRuntimeRuntime */661export interface OpalRuntimeRuntime extends Null {}662663/** @name OrmlVestingModuleCall */664export interface OrmlVestingModuleCall extends Enum {665 readonly isClaim: boolean;666 readonly isVestedTransfer: boolean;667 readonly asVestedTransfer: {668 readonly dest: MultiAddress;669 readonly schedule: OrmlVestingVestingSchedule;670 } & Struct;671 readonly isUpdateVestingSchedules: boolean;672 readonly asUpdateVestingSchedules: {673 readonly who: MultiAddress;674 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;675 } & Struct;676 readonly isClaimFor: boolean;677 readonly asClaimFor: {678 readonly dest: MultiAddress;679 } & Struct;680 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';681}682683/** @name OrmlVestingModuleError */684export interface OrmlVestingModuleError extends Enum {685 readonly isZeroVestingPeriod: boolean;686 readonly isZeroVestingPeriodCount: boolean;687 readonly isInsufficientBalanceToLock: boolean;688 readonly isTooManyVestingSchedules: boolean;689 readonly isAmountLow: boolean;690 readonly isMaxVestingSchedulesExceeded: boolean;691 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';692}693694/** @name OrmlVestingModuleEvent */695export interface OrmlVestingModuleEvent extends Enum {696 readonly isVestingScheduleAdded: boolean;697 readonly asVestingScheduleAdded: {698 readonly from: AccountId32;699 readonly to: AccountId32;700 readonly vestingSchedule: OrmlVestingVestingSchedule;701 } & Struct;702 readonly isClaimed: boolean;703 readonly asClaimed: {704 readonly who: AccountId32;705 readonly amount: u128;706 } & Struct;707 readonly isVestingSchedulesUpdated: boolean;708 readonly asVestingSchedulesUpdated: {709 readonly who: AccountId32;710 } & Struct;711 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';712}713714/** @name OrmlVestingVestingSchedule */715export interface OrmlVestingVestingSchedule extends Struct {716 readonly start: u32;717 readonly period: u32;718 readonly periodCount: u32;719 readonly perPeriod: Compact<u128>;720}721722/** @name PalletBalancesAccountData */723export interface PalletBalancesAccountData extends Struct {724 readonly free: u128;725 readonly reserved: u128;726 readonly miscFrozen: u128;727 readonly feeFrozen: u128;728}729730/** @name PalletBalancesBalanceLock */731export interface PalletBalancesBalanceLock extends Struct {732 readonly id: U8aFixed;733 readonly amount: u128;734 readonly reasons: PalletBalancesReasons;735}736737/** @name PalletBalancesCall */738export interface PalletBalancesCall extends Enum {739 readonly isTransfer: boolean;740 readonly asTransfer: {741 readonly dest: MultiAddress;742 readonly value: Compact<u128>;743 } & Struct;744 readonly isSetBalance: boolean;745 readonly asSetBalance: {746 readonly who: MultiAddress;747 readonly newFree: Compact<u128>;748 readonly newReserved: Compact<u128>;749 } & Struct;750 readonly isForceTransfer: boolean;751 readonly asForceTransfer: {752 readonly source: MultiAddress;753 readonly dest: MultiAddress;754 readonly value: Compact<u128>;755 } & Struct;756 readonly isTransferKeepAlive: boolean;757 readonly asTransferKeepAlive: {758 readonly dest: MultiAddress;759 readonly value: Compact<u128>;760 } & Struct;761 readonly isTransferAll: boolean;762 readonly asTransferAll: {763 readonly dest: MultiAddress;764 readonly keepAlive: bool;765 } & Struct;766 readonly isForceUnreserve: boolean;767 readonly asForceUnreserve: {768 readonly who: MultiAddress;769 readonly amount: u128;770 } & Struct;771 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';772}773774/** @name PalletBalancesError */775export interface PalletBalancesError extends Enum {776 readonly isVestingBalance: boolean;777 readonly isLiquidityRestrictions: boolean;778 readonly isInsufficientBalance: boolean;779 readonly isExistentialDeposit: boolean;780 readonly isKeepAlive: boolean;781 readonly isExistingVestingSchedule: boolean;782 readonly isDeadAccount: boolean;783 readonly isTooManyReserves: boolean;784 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';785}786787/** @name PalletBalancesEvent */788export interface PalletBalancesEvent extends Enum {789 readonly isEndowed: boolean;790 readonly asEndowed: {791 readonly account: AccountId32;792 readonly freeBalance: u128;793 } & Struct;794 readonly isDustLost: boolean;795 readonly asDustLost: {796 readonly account: AccountId32;797 readonly amount: u128;798 } & Struct;799 readonly isTransfer: boolean;800 readonly asTransfer: {801 readonly from: AccountId32;802 readonly to: AccountId32;803 readonly amount: u128;804 } & Struct;805 readonly isBalanceSet: boolean;806 readonly asBalanceSet: {807 readonly who: AccountId32;808 readonly free: u128;809 readonly reserved: u128;810 } & Struct;811 readonly isReserved: boolean;812 readonly asReserved: {813 readonly who: AccountId32;814 readonly amount: u128;815 } & Struct;816 readonly isUnreserved: boolean;817 readonly asUnreserved: {818 readonly who: AccountId32;819 readonly amount: u128;820 } & Struct;821 readonly isReserveRepatriated: boolean;822 readonly asReserveRepatriated: {823 readonly from: AccountId32;824 readonly to: AccountId32;825 readonly amount: u128;826 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;827 } & Struct;828 readonly isDeposit: boolean;829 readonly asDeposit: {830 readonly who: AccountId32;831 readonly amount: u128;832 } & Struct;833 readonly isWithdraw: boolean;834 readonly asWithdraw: {835 readonly who: AccountId32;836 readonly amount: u128;837 } & Struct;838 readonly isSlashed: boolean;839 readonly asSlashed: {840 readonly who: AccountId32;841 readonly amount: u128;842 } & Struct;843 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';844}845846/** @name PalletBalancesReasons */847export interface PalletBalancesReasons extends Enum {848 readonly isFee: boolean;849 readonly isMisc: boolean;850 readonly isAll: boolean;851 readonly type: 'Fee' | 'Misc' | 'All';852}853854/** @name PalletBalancesReleases */855export interface PalletBalancesReleases extends Enum {856 readonly isV100: boolean;857 readonly isV200: boolean;858 readonly type: 'V100' | 'V200';859}860861/** @name PalletBalancesReserveData */862export interface PalletBalancesReserveData extends Struct {863 readonly id: U8aFixed;864 readonly amount: u128;865}866867/** @name PalletCommonError */868export interface PalletCommonError extends Enum {869 readonly isCollectionNotFound: boolean;870 readonly isMustBeTokenOwner: boolean;871 readonly isNoPermission: boolean;872 readonly isPublicMintingNotAllowed: boolean;873 readonly isAddressNotInAllowlist: boolean;874 readonly isCollectionNameLimitExceeded: boolean;875 readonly isCollectionDescriptionLimitExceeded: boolean;876 readonly isCollectionTokenPrefixLimitExceeded: boolean;877 readonly isTotalCollectionsLimitExceeded: boolean;878 readonly isTokenVariableDataLimitExceeded: boolean;879 readonly isCollectionAdminCountExceeded: boolean;880 readonly isCollectionLimitBoundsExceeded: boolean;881 readonly isOwnerPermissionsCantBeReverted: boolean;882 readonly isTransferNotAllowed: boolean;883 readonly isAccountTokenLimitExceeded: boolean;884 readonly isCollectionTokenLimitExceeded: boolean;885 readonly isMetadataFlagFrozen: boolean;886 readonly isTokenNotFound: boolean;887 readonly isTokenValueTooLow: boolean;888 readonly isApprovedValueTooLow: boolean;889 readonly isCantApproveMoreThanOwned: boolean;890 readonly isAddressIsZero: boolean;891 readonly isUnsupportedOperation: boolean;892 readonly isNotSufficientFounds: boolean;893 readonly isNestingIsDisabled: boolean;894 readonly isOnlyOwnerAllowedToNest: boolean;895 readonly isSourceCollectionIsNotAllowedToNest: boolean;896 readonly isCollectionFieldSizeExceeded: boolean;897 readonly isNoSpaceForProperty: boolean;898 readonly isPropertyLimitReached: boolean;899 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';900}901902/** @name PalletCommonEvent */903export interface PalletCommonEvent extends Enum {904 readonly isCollectionCreated: boolean;905 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;906 readonly isCollectionDestroyed: boolean;907 readonly asCollectionDestroyed: u32;908 readonly isItemCreated: boolean;909 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;910 readonly isItemDestroyed: boolean;911 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;912 readonly isTransfer: boolean;913 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;914 readonly isApproved: boolean;915 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;916 readonly isCollectionPropertySet: boolean;917 readonly asCollectionPropertySet: ITuple<[u32, UpDataStructsProperty]>;918 readonly isCollectionPropertyDeleted: boolean;919 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;920 readonly isTokenPropertySet: boolean;921 readonly asTokenPropertySet: ITuple<[u32, u32, UpDataStructsProperty]>;922 readonly isTokenPropertyDeleted: boolean;923 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;924 readonly isPropertyPermissionSet: boolean;925 readonly asPropertyPermissionSet: ITuple<[u32, UpDataStructsPropertyKeyPermission]>;926 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';927}928929/** @name PalletEthereumCall */930export interface PalletEthereumCall extends Enum {931 readonly isTransact: boolean;932 readonly asTransact: {933 readonly transaction: EthereumTransactionTransactionV2;934 } & Struct;935 readonly type: 'Transact';936}937938/** @name PalletEthereumError */939export interface PalletEthereumError extends Enum {940 readonly isInvalidSignature: boolean;941 readonly isPreLogExists: boolean;942 readonly type: 'InvalidSignature' | 'PreLogExists';943}944945/** @name PalletEthereumEvent */946export interface PalletEthereumEvent extends Enum {947 readonly isExecuted: boolean;948 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;949 readonly type: 'Executed';950}951952/** @name PalletEvmAccountBasicCrossAccountIdRepr */953export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {954 readonly isSubstrate: boolean;955 readonly asSubstrate: AccountId32;956 readonly isEthereum: boolean;957 readonly asEthereum: H160;958 readonly type: 'Substrate' | 'Ethereum';959}960961/** @name PalletEvmCall */962export interface PalletEvmCall extends Enum {963 readonly isWithdraw: boolean;964 readonly asWithdraw: {965 readonly address: H160;966 readonly value: u128;967 } & Struct;968 readonly isCall: boolean;969 readonly asCall: {970 readonly source: H160;971 readonly target: H160;972 readonly input: Bytes;973 readonly value: U256;974 readonly gasLimit: u64;975 readonly maxFeePerGas: U256;976 readonly maxPriorityFeePerGas: Option<U256>;977 readonly nonce: Option<U256>;978 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;979 } & Struct;980 readonly isCreate: boolean;981 readonly asCreate: {982 readonly source: H160;983 readonly init: Bytes;984 readonly value: U256;985 readonly gasLimit: u64;986 readonly maxFeePerGas: U256;987 readonly maxPriorityFeePerGas: Option<U256>;988 readonly nonce: Option<U256>;989 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;990 } & Struct;991 readonly isCreate2: boolean;992 readonly asCreate2: {993 readonly source: H160;994 readonly init: Bytes;995 readonly salt: H256;996 readonly value: U256;997 readonly gasLimit: u64;998 readonly maxFeePerGas: U256;999 readonly maxPriorityFeePerGas: Option<U256>;1000 readonly nonce: Option<U256>;1001 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1002 } & Struct;1003 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1004}10051006/** @name PalletEvmCoderSubstrateError */1007export interface PalletEvmCoderSubstrateError extends Enum {1008 readonly isOutOfGas: boolean;1009 readonly isOutOfFund: boolean;1010 readonly type: 'OutOfGas' | 'OutOfFund';1011}10121013/** @name PalletEvmContractHelpersError */1014export interface PalletEvmContractHelpersError extends Enum {1015 readonly isNoPermission: boolean;1016 readonly type: 'NoPermission';1017}10181019/** @name PalletEvmContractHelpersSponsoringModeT */1020export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1021 readonly isDisabled: boolean;1022 readonly isAllowlisted: boolean;1023 readonly isGenerous: boolean;1024 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1025}10261027/** @name PalletEvmError */1028export interface PalletEvmError extends Enum {1029 readonly isBalanceLow: boolean;1030 readonly isFeeOverflow: boolean;1031 readonly isPaymentOverflow: boolean;1032 readonly isWithdrawFailed: boolean;1033 readonly isGasPriceTooLow: boolean;1034 readonly isInvalidNonce: boolean;1035 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';1036}10371038/** @name PalletEvmEvent */1039export interface PalletEvmEvent extends Enum {1040 readonly isLog: boolean;1041 readonly asLog: EthereumLog;1042 readonly isCreated: boolean;1043 readonly asCreated: H160;1044 readonly isCreatedFailed: boolean;1045 readonly asCreatedFailed: H160;1046 readonly isExecuted: boolean;1047 readonly asExecuted: H160;1048 readonly isExecutedFailed: boolean;1049 readonly asExecutedFailed: H160;1050 readonly isBalanceDeposit: boolean;1051 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1052 readonly isBalanceWithdraw: boolean;1053 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1054 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1055}10561057/** @name PalletEvmMigrationCall */1058export interface PalletEvmMigrationCall extends Enum {1059 readonly isBegin: boolean;1060 readonly asBegin: {1061 readonly address: H160;1062 } & Struct;1063 readonly isSetData: boolean;1064 readonly asSetData: {1065 readonly address: H160;1066 readonly data: Vec<ITuple<[H256, H256]>>;1067 } & Struct;1068 readonly isFinish: boolean;1069 readonly asFinish: {1070 readonly address: H160;1071 readonly code: Bytes;1072 } & Struct;1073 readonly type: 'Begin' | 'SetData' | 'Finish';1074}10751076/** @name PalletEvmMigrationError */1077export interface PalletEvmMigrationError extends Enum {1078 readonly isAccountNotEmpty: boolean;1079 readonly isAccountIsNotMigrating: boolean;1080 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';1081}10821083/** @name PalletFungibleError */1084export interface PalletFungibleError extends Enum {1085 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1086 readonly isFungibleItemsHaveNoId: boolean;1087 readonly isFungibleItemsDontHaveData: boolean;1088 readonly isFungibleDisallowsNesting: boolean;1089 readonly isSettingPropertiesNotAllowed: boolean;1090 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1091}10921093/** @name PalletInflationCall */1094export interface PalletInflationCall extends Enum {1095 readonly isStartInflation: boolean;1096 readonly asStartInflation: {1097 readonly inflationStartRelayBlock: u32;1098 } & Struct;1099 readonly type: 'StartInflation';1100}11011102/** @name PalletNonfungibleError */1103export interface PalletNonfungibleError extends Enum {1104 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1105 readonly isNonfungibleItemsHaveNoAmount: boolean;1106 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';1107}11081109/** @name PalletNonfungibleItemData */1110export interface PalletNonfungibleItemData extends Struct {1111 readonly constData: Bytes;1112 readonly variableData: Bytes;1113 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1114}11151116/** @name PalletRefungibleError */1117export interface PalletRefungibleError extends Enum {1118 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1119 readonly isWrongRefungiblePieces: boolean;1120 readonly isRefungibleDisallowsNesting: boolean;1121 readonly isSettingPropertiesNotAllowed: boolean;1122 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1123}11241125/** @name PalletRefungibleItemData */1126export interface PalletRefungibleItemData extends Struct {1127 readonly constData: Bytes;1128 readonly variableData: Bytes;1129}11301131/** @name PalletStructureCall */1132export interface PalletStructureCall extends Null {}11331134/** @name PalletStructureError */1135export interface PalletStructureError extends Enum {1136 readonly isOuroborosDetected: boolean;1137 readonly isDepthLimit: boolean;1138 readonly isTokenNotFound: boolean;1139 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';1140}11411142/** @name PalletStructureEvent */1143export interface PalletStructureEvent extends Enum {1144 readonly isExecuted: boolean;1145 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1146 readonly type: 'Executed';1147}11481149/** @name PalletSudoCall */1150export interface PalletSudoCall extends Enum {1151 readonly isSudo: boolean;1152 readonly asSudo: {1153 readonly call: Call;1154 } & Struct;1155 readonly isSudoUncheckedWeight: boolean;1156 readonly asSudoUncheckedWeight: {1157 readonly call: Call;1158 readonly weight: u64;1159 } & Struct;1160 readonly isSetKey: boolean;1161 readonly asSetKey: {1162 readonly new_: MultiAddress;1163 } & Struct;1164 readonly isSudoAs: boolean;1165 readonly asSudoAs: {1166 readonly who: MultiAddress;1167 readonly call: Call;1168 } & Struct;1169 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1170}11711172/** @name PalletSudoError */1173export interface PalletSudoError extends Enum {1174 readonly isRequireSudo: boolean;1175 readonly type: 'RequireSudo';1176}11771178/** @name PalletSudoEvent */1179export interface PalletSudoEvent extends Enum {1180 readonly isSudid: boolean;1181 readonly asSudid: {1182 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1183 } & Struct;1184 readonly isKeyChanged: boolean;1185 readonly asKeyChanged: {1186 readonly oldSudoer: Option<AccountId32>;1187 } & Struct;1188 readonly isSudoAsDone: boolean;1189 readonly asSudoAsDone: {1190 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1191 } & Struct;1192 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1193}11941195/** @name PalletTemplateTransactionPaymentCall */1196export interface PalletTemplateTransactionPaymentCall extends Null {}11971198/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1199export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}12001201/** @name PalletTimestampCall */1202export interface PalletTimestampCall extends Enum {1203 readonly isSet: boolean;1204 readonly asSet: {1205 readonly now: Compact<u64>;1206 } & Struct;1207 readonly type: 'Set';1208}12091210/** @name PalletTransactionPaymentReleases */1211export interface PalletTransactionPaymentReleases extends Enum {1212 readonly isV1Ancient: boolean;1213 readonly isV2: boolean;1214 readonly type: 'V1Ancient' | 'V2';1215}12161217/** @name PalletTreasuryCall */1218export interface PalletTreasuryCall extends Enum {1219 readonly isProposeSpend: boolean;1220 readonly asProposeSpend: {1221 readonly value: Compact<u128>;1222 readonly beneficiary: MultiAddress;1223 } & Struct;1224 readonly isRejectProposal: boolean;1225 readonly asRejectProposal: {1226 readonly proposalId: Compact<u32>;1227 } & Struct;1228 readonly isApproveProposal: boolean;1229 readonly asApproveProposal: {1230 readonly proposalId: Compact<u32>;1231 } & Struct;1232 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';1233}12341235/** @name PalletTreasuryError */1236export interface PalletTreasuryError extends Enum {1237 readonly isInsufficientProposersBalance: boolean;1238 readonly isInvalidIndex: boolean;1239 readonly isTooManyApprovals: boolean;1240 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';1241}12421243/** @name PalletTreasuryEvent */1244export interface PalletTreasuryEvent extends Enum {1245 readonly isProposed: boolean;1246 readonly asProposed: {1247 readonly proposalIndex: u32;1248 } & Struct;1249 readonly isSpending: boolean;1250 readonly asSpending: {1251 readonly budgetRemaining: u128;1252 } & Struct;1253 readonly isAwarded: boolean;1254 readonly asAwarded: {1255 readonly proposalIndex: u32;1256 readonly award: u128;1257 readonly account: AccountId32;1258 } & Struct;1259 readonly isRejected: boolean;1260 readonly asRejected: {1261 readonly proposalIndex: u32;1262 readonly slashed: u128;1263 } & Struct;1264 readonly isBurnt: boolean;1265 readonly asBurnt: {1266 readonly burntFunds: u128;1267 } & Struct;1268 readonly isRollover: boolean;1269 readonly asRollover: {1270 readonly rolloverBalance: u128;1271 } & Struct;1272 readonly isDeposit: boolean;1273 readonly asDeposit: {1274 readonly value: u128;1275 } & Struct;1276 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';1277}12781279/** @name PalletTreasuryProposal */1280export interface PalletTreasuryProposal extends Struct {1281 readonly proposer: AccountId32;1282 readonly value: u128;1283 readonly beneficiary: AccountId32;1284 readonly bond: u128;1285}12861287/** @name PalletUniqueCall */1288export interface PalletUniqueCall extends Enum {1289 readonly isCreateCollection: boolean;1290 readonly asCreateCollection: {1291 readonly collectionName: Vec<u16>;1292 readonly collectionDescription: Vec<u16>;1293 readonly tokenPrefix: Bytes;1294 readonly mode: UpDataStructsCollectionMode;1295 } & Struct;1296 readonly isCreateCollectionEx: boolean;1297 readonly asCreateCollectionEx: {1298 readonly data: UpDataStructsCreateCollectionData;1299 } & Struct;1300 readonly isDestroyCollection: boolean;1301 readonly asDestroyCollection: {1302 readonly collectionId: u32;1303 } & Struct;1304 readonly isAddToAllowList: boolean;1305 readonly asAddToAllowList: {1306 readonly collectionId: u32;1307 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1308 } & Struct;1309 readonly isRemoveFromAllowList: boolean;1310 readonly asRemoveFromAllowList: {1311 readonly collectionId: u32;1312 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1313 } & Struct;1314 readonly isSetPublicAccessMode: boolean;1315 readonly asSetPublicAccessMode: {1316 readonly collectionId: u32;1317 readonly mode: UpDataStructsAccessMode;1318 } & Struct;1319 readonly isSetMintPermission: boolean;1320 readonly asSetMintPermission: {1321 readonly collectionId: u32;1322 readonly mintPermission: bool;1323 } & Struct;1324 readonly isChangeCollectionOwner: boolean;1325 readonly asChangeCollectionOwner: {1326 readonly collectionId: u32;1327 readonly newOwner: AccountId32;1328 } & Struct;1329 readonly isAddCollectionAdmin: boolean;1330 readonly asAddCollectionAdmin: {1331 readonly collectionId: u32;1332 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1333 } & Struct;1334 readonly isRemoveCollectionAdmin: boolean;1335 readonly asRemoveCollectionAdmin: {1336 readonly collectionId: u32;1337 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1338 } & Struct;1339 readonly isSetCollectionSponsor: boolean;1340 readonly asSetCollectionSponsor: {1341 readonly collectionId: u32;1342 readonly newSponsor: AccountId32;1343 } & Struct;1344 readonly isConfirmSponsorship: boolean;1345 readonly asConfirmSponsorship: {1346 readonly collectionId: u32;1347 } & Struct;1348 readonly isRemoveCollectionSponsor: boolean;1349 readonly asRemoveCollectionSponsor: {1350 readonly collectionId: u32;1351 } & Struct;1352 readonly isCreateItem: boolean;1353 readonly asCreateItem: {1354 readonly collectionId: u32;1355 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1356 readonly data: UpDataStructsCreateItemData;1357 } & Struct;1358 readonly isCreateMultipleItems: boolean;1359 readonly asCreateMultipleItems: {1360 readonly collectionId: u32;1361 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1362 readonly itemsData: Vec<UpDataStructsCreateItemData>;1363 } & Struct;1364 readonly isSetCollectionProperties: boolean;1365 readonly asSetCollectionProperties: {1366 readonly collectionId: u32;1367 readonly properties: Vec<UpDataStructsProperty>;1368 } & Struct;1369 readonly isDeleteCollectionProperties: boolean;1370 readonly asDeleteCollectionProperties: {1371 readonly collectionId: u32;1372 readonly propertyKeys: Vec<Bytes>;1373 } & Struct;1374 readonly isSetTokenProperties: boolean;1375 readonly asSetTokenProperties: {1376 readonly collectionId: u32;1377 readonly tokenId: u32;1378 readonly properties: Vec<UpDataStructsProperty>;1379 } & Struct;1380 readonly isDeleteTokenProperties: boolean;1381 readonly asDeleteTokenProperties: {1382 readonly collectionId: u32;1383 readonly tokenId: u32;1384 readonly propertyKeys: Vec<Bytes>;1385 } & Struct;1386 readonly isSetPropertyPermissions: boolean;1387 readonly asSetPropertyPermissions: {1388 readonly collectionId: u32;1389 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1390 } & Struct;1391 readonly isCreateMultipleItemsEx: boolean;1392 readonly asCreateMultipleItemsEx: {1393 readonly collectionId: u32;1394 readonly data: UpDataStructsCreateItemExData;1395 } & Struct;1396 readonly isSetTransfersEnabledFlag: boolean;1397 readonly asSetTransfersEnabledFlag: {1398 readonly collectionId: u32;1399 readonly value: bool;1400 } & Struct;1401 readonly isBurnItem: boolean;1402 readonly asBurnItem: {1403 readonly collectionId: u32;1404 readonly itemId: u32;1405 readonly value: u128;1406 } & Struct;1407 readonly isBurnFrom: boolean;1408 readonly asBurnFrom: {1409 readonly collectionId: u32;1410 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1411 readonly itemId: u32;1412 readonly value: u128;1413 } & Struct;1414 readonly isTransfer: boolean;1415 readonly asTransfer: {1416 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1417 readonly collectionId: u32;1418 readonly itemId: u32;1419 readonly value: u128;1420 } & Struct;1421 readonly isApprove: boolean;1422 readonly asApprove: {1423 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1424 readonly collectionId: u32;1425 readonly itemId: u32;1426 readonly amount: u128;1427 } & Struct;1428 readonly isTransferFrom: boolean;1429 readonly asTransferFrom: {1430 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1431 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1432 readonly collectionId: u32;1433 readonly itemId: u32;1434 readonly value: u128;1435 } & Struct;1436 readonly isSetVariableMetaData: boolean;1437 readonly asSetVariableMetaData: {1438 readonly collectionId: u32;1439 readonly itemId: u32;1440 readonly data: Bytes;1441 } & Struct;1442 readonly isSetMetaUpdatePermissionFlag: boolean;1443 readonly asSetMetaUpdatePermissionFlag: {1444 readonly collectionId: u32;1445 readonly value: UpDataStructsMetaUpdatePermission;1446 } & Struct;1447 readonly isSetSchemaVersion: boolean;1448 readonly asSetSchemaVersion: {1449 readonly collectionId: u32;1450 readonly version: UpDataStructsSchemaVersion;1451 } & Struct;1452 readonly isSetOffchainSchema: boolean;1453 readonly asSetOffchainSchema: {1454 readonly collectionId: u32;1455 readonly schema: Bytes;1456 } & Struct;1457 readonly isSetConstOnChainSchema: boolean;1458 readonly asSetConstOnChainSchema: {1459 readonly collectionId: u32;1460 readonly schema: Bytes;1461 } & Struct;1462 readonly isSetVariableOnChainSchema: boolean;1463 readonly asSetVariableOnChainSchema: {1464 readonly collectionId: u32;1465 readonly schema: Bytes;1466 } & Struct;1467 readonly isSetCollectionLimits: boolean;1468 readonly asSetCollectionLimits: {1469 readonly collectionId: u32;1470 readonly newLimit: UpDataStructsCollectionLimits;1471 } & Struct;1472 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';1473}14741475/** @name PalletUniqueError */1476export interface PalletUniqueError extends Enum {1477 readonly isCollectionDecimalPointLimitExceeded: boolean;1478 readonly isConfirmUnsetSponsorFail: boolean;1479 readonly isEmptyArgument: boolean;1480 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';1481}14821483/** @name PalletUniqueRawEvent */1484export interface PalletUniqueRawEvent extends Enum {1485 readonly isCollectionSponsorRemoved: boolean;1486 readonly asCollectionSponsorRemoved: u32;1487 readonly isCollectionAdminAdded: boolean;1488 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1489 readonly isCollectionOwnedChanged: boolean;1490 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1491 readonly isCollectionSponsorSet: boolean;1492 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1493 readonly isConstOnChainSchemaSet: boolean;1494 readonly asConstOnChainSchemaSet: u32;1495 readonly isSponsorshipConfirmed: boolean;1496 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1497 readonly isCollectionAdminRemoved: boolean;1498 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1499 readonly isAllowListAddressRemoved: boolean;1500 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1501 readonly isAllowListAddressAdded: boolean;1502 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1503 readonly isCollectionLimitSet: boolean;1504 readonly asCollectionLimitSet: u32;1505 readonly isMintPermissionSet: boolean;1506 readonly asMintPermissionSet: u32;1507 readonly isOffchainSchemaSet: boolean;1508 readonly asOffchainSchemaSet: u32;1509 readonly isPublicAccessModeSet: boolean;1510 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;1511 readonly isSchemaVersionSet: boolean;1512 readonly asSchemaVersionSet: u32;1513 readonly isVariableOnChainSchemaSet: boolean;1514 readonly asVariableOnChainSchemaSet: u32;1515 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';1516}15171518/** @name PalletXcmCall */1519export interface PalletXcmCall extends Enum {1520 readonly isSend: boolean;1521 readonly asSend: {1522 readonly dest: XcmVersionedMultiLocation;1523 readonly message: XcmVersionedXcm;1524 } & Struct;1525 readonly isTeleportAssets: boolean;1526 readonly asTeleportAssets: {1527 readonly dest: XcmVersionedMultiLocation;1528 readonly beneficiary: XcmVersionedMultiLocation;1529 readonly assets: XcmVersionedMultiAssets;1530 readonly feeAssetItem: u32;1531 } & Struct;1532 readonly isReserveTransferAssets: boolean;1533 readonly asReserveTransferAssets: {1534 readonly dest: XcmVersionedMultiLocation;1535 readonly beneficiary: XcmVersionedMultiLocation;1536 readonly assets: XcmVersionedMultiAssets;1537 readonly feeAssetItem: u32;1538 } & Struct;1539 readonly isExecute: boolean;1540 readonly asExecute: {1541 readonly message: XcmVersionedXcm;1542 readonly maxWeight: u64;1543 } & Struct;1544 readonly isForceXcmVersion: boolean;1545 readonly asForceXcmVersion: {1546 readonly location: XcmV1MultiLocation;1547 readonly xcmVersion: u32;1548 } & Struct;1549 readonly isForceDefaultXcmVersion: boolean;1550 readonly asForceDefaultXcmVersion: {1551 readonly maybeXcmVersion: Option<u32>;1552 } & Struct;1553 readonly isForceSubscribeVersionNotify: boolean;1554 readonly asForceSubscribeVersionNotify: {1555 readonly location: XcmVersionedMultiLocation;1556 } & Struct;1557 readonly isForceUnsubscribeVersionNotify: boolean;1558 readonly asForceUnsubscribeVersionNotify: {1559 readonly location: XcmVersionedMultiLocation;1560 } & Struct;1561 readonly isLimitedReserveTransferAssets: boolean;1562 readonly asLimitedReserveTransferAssets: {1563 readonly dest: XcmVersionedMultiLocation;1564 readonly beneficiary: XcmVersionedMultiLocation;1565 readonly assets: XcmVersionedMultiAssets;1566 readonly feeAssetItem: u32;1567 readonly weightLimit: XcmV2WeightLimit;1568 } & Struct;1569 readonly isLimitedTeleportAssets: boolean;1570 readonly asLimitedTeleportAssets: {1571 readonly dest: XcmVersionedMultiLocation;1572 readonly beneficiary: XcmVersionedMultiLocation;1573 readonly assets: XcmVersionedMultiAssets;1574 readonly feeAssetItem: u32;1575 readonly weightLimit: XcmV2WeightLimit;1576 } & Struct;1577 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1578}15791580/** @name PalletXcmError */1581export interface PalletXcmError extends Enum {1582 readonly isUnreachable: boolean;1583 readonly isSendFailure: boolean;1584 readonly isFiltered: boolean;1585 readonly isUnweighableMessage: boolean;1586 readonly isDestinationNotInvertible: boolean;1587 readonly isEmpty: boolean;1588 readonly isCannotReanchor: boolean;1589 readonly isTooManyAssets: boolean;1590 readonly isInvalidOrigin: boolean;1591 readonly isBadVersion: boolean;1592 readonly isBadLocation: boolean;1593 readonly isNoSubscription: boolean;1594 readonly isAlreadySubscribed: boolean;1595 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';1596}15971598/** @name PalletXcmEvent */1599export interface PalletXcmEvent extends Enum {1600 readonly isAttempted: boolean;1601 readonly asAttempted: XcmV2TraitsOutcome;1602 readonly isSent: boolean;1603 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;1604 readonly isUnexpectedResponse: boolean;1605 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;1606 readonly isResponseReady: boolean;1607 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;1608 readonly isNotified: boolean;1609 readonly asNotified: ITuple<[u64, u8, u8]>;1610 readonly isNotifyOverweight: boolean;1611 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;1612 readonly isNotifyDispatchError: boolean;1613 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;1614 readonly isNotifyDecodeFailed: boolean;1615 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;1616 readonly isInvalidResponder: boolean;1617 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;1618 readonly isInvalidResponderVersion: boolean;1619 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;1620 readonly isResponseTaken: boolean;1621 readonly asResponseTaken: u64;1622 readonly isAssetsTrapped: boolean;1623 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;1624 readonly isVersionChangeNotified: boolean;1625 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;1626 readonly isSupportedVersionChanged: boolean;1627 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;1628 readonly isNotifyTargetSendFail: boolean;1629 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;1630 readonly isNotifyTargetMigrationFail: boolean;1631 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;1632 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1633}16341635/** @name PhantomTypeUpDataStructsRpcCollection */1636export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup331> {}16371638/** @name PhantomTypeUpDataStructsTokenData */1639export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup327> {}16401641/** @name PolkadotCorePrimitivesInboundDownwardMessage */1642export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1643 readonly sentAt: u32;1644 readonly msg: Bytes;1645}16461647/** @name PolkadotCorePrimitivesInboundHrmpMessage */1648export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1649 readonly sentAt: u32;1650 readonly data: Bytes;1651}16521653/** @name PolkadotCorePrimitivesOutboundHrmpMessage */1654export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1655 readonly recipient: u32;1656 readonly data: Bytes;1657}16581659/** @name PolkadotParachainPrimitivesXcmpMessageFormat */1660export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {1661 readonly isConcatenatedVersionedXcm: boolean;1662 readonly isConcatenatedEncodedBlob: boolean;1663 readonly isSignals: boolean;1664 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';1665}16661667/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */1668export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1669 readonly maxCodeSize: u32;1670 readonly maxHeadDataSize: u32;1671 readonly maxUpwardQueueCount: u32;1672 readonly maxUpwardQueueSize: u32;1673 readonly maxUpwardMessageSize: u32;1674 readonly maxUpwardMessageNumPerCandidate: u32;1675 readonly hrmpMaxMessageNumPerCandidate: u32;1676 readonly validationUpgradeCooldown: u32;1677 readonly validationUpgradeDelay: u32;1678}16791680/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */1681export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1682 readonly maxCapacity: u32;1683 readonly maxTotalSize: u32;1684 readonly maxMessageSize: u32;1685 readonly msgCount: u32;1686 readonly totalSize: u32;1687 readonly mqcHead: Option<H256>;1688}16891690/** @name PolkadotPrimitivesV2PersistedValidationData */1691export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1692 readonly parentHead: Bytes;1693 readonly relayParentNumber: u32;1694 readonly relayParentStorageRoot: H256;1695 readonly maxPovSize: u32;1696}16971698/** @name PolkadotPrimitivesV2UpgradeRestriction */1699export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1700 readonly isPresent: boolean;1701 readonly type: 'Present';1702}17031704/** @name SpCoreEcdsaSignature */1705export interface SpCoreEcdsaSignature extends U8aFixed {}17061707/** @name SpCoreEd25519Signature */1708export interface SpCoreEd25519Signature extends U8aFixed {}17091710/** @name SpCoreSr25519Signature */1711export interface SpCoreSr25519Signature extends U8aFixed {}17121713/** @name SpRuntimeArithmeticError */1714export interface SpRuntimeArithmeticError extends Enum {1715 readonly isUnderflow: boolean;1716 readonly isOverflow: boolean;1717 readonly isDivisionByZero: boolean;1718 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1719}17201721/** @name SpRuntimeDigest */1722export interface SpRuntimeDigest extends Struct {1723 readonly logs: Vec<SpRuntimeDigestDigestItem>;1724}17251726/** @name SpRuntimeDigestDigestItem */1727export interface SpRuntimeDigestDigestItem extends Enum {1728 readonly isOther: boolean;1729 readonly asOther: Bytes;1730 readonly isConsensus: boolean;1731 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;1732 readonly isSeal: boolean;1733 readonly asSeal: ITuple<[U8aFixed, Bytes]>;1734 readonly isPreRuntime: boolean;1735 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;1736 readonly isRuntimeEnvironmentUpdated: boolean;1737 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1738}17391740/** @name SpRuntimeDispatchError */1741export interface SpRuntimeDispatchError extends Enum {1742 readonly isOther: boolean;1743 readonly isCannotLookup: boolean;1744 readonly isBadOrigin: boolean;1745 readonly isModule: boolean;1746 readonly asModule: SpRuntimeModuleError;1747 readonly isConsumerRemaining: boolean;1748 readonly isNoProviders: boolean;1749 readonly isTooManyConsumers: boolean;1750 readonly isToken: boolean;1751 readonly asToken: SpRuntimeTokenError;1752 readonly isArithmetic: boolean;1753 readonly asArithmetic: SpRuntimeArithmeticError;1754 readonly isTransactional: boolean;1755 readonly asTransactional: SpRuntimeTransactionalError;1756 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1757}17581759/** @name SpRuntimeModuleError */1760export interface SpRuntimeModuleError extends Struct {1761 readonly index: u8;1762 readonly error: U8aFixed;1763}17641765/** @name SpRuntimeMultiSignature */1766export interface SpRuntimeMultiSignature extends Enum {1767 readonly isEd25519: boolean;1768 readonly asEd25519: SpCoreEd25519Signature;1769 readonly isSr25519: boolean;1770 readonly asSr25519: SpCoreSr25519Signature;1771 readonly isEcdsa: boolean;1772 readonly asEcdsa: SpCoreEcdsaSignature;1773 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';1774}17751776/** @name SpRuntimeTokenError */1777export interface SpRuntimeTokenError extends Enum {1778 readonly isNoFunds: boolean;1779 readonly isWouldDie: boolean;1780 readonly isBelowMinimum: boolean;1781 readonly isCannotCreate: boolean;1782 readonly isUnknownAsset: boolean;1783 readonly isFrozen: boolean;1784 readonly isUnsupported: boolean;1785 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1786}17871788/** @name SpRuntimeTransactionalError */1789export interface SpRuntimeTransactionalError extends Enum {1790 readonly isLimitReached: boolean;1791 readonly isNoLayer: boolean;1792 readonly type: 'LimitReached' | 'NoLayer';1793}17941795/** @name SpTrieStorageProof */1796export interface SpTrieStorageProof extends Struct {1797 readonly trieNodes: BTreeSet<Bytes>;1798}17991800/** @name SpVersionRuntimeVersion */1801export interface SpVersionRuntimeVersion extends Struct {1802 readonly specName: Text;1803 readonly implName: Text;1804 readonly authoringVersion: u32;1805 readonly specVersion: u32;1806 readonly implVersion: u32;1807 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1808 readonly transactionVersion: u32;1809 readonly stateVersion: u8;1810}18111812/** @name UpDataStructsAccessMode */1813export interface UpDataStructsAccessMode extends Enum {1814 readonly isNormal: boolean;1815 readonly isAllowList: boolean;1816 readonly type: 'Normal' | 'AllowList';1817}18181819/** @name UpDataStructsCollection */1820export interface UpDataStructsCollection extends Struct {1821 readonly owner: AccountId32;1822 readonly mode: UpDataStructsCollectionMode;1823 readonly access: UpDataStructsAccessMode;1824 readonly name: Vec<u16>;1825 readonly description: Vec<u16>;1826 readonly tokenPrefix: Bytes;1827 readonly mintMode: bool;1828 readonly schemaVersion: UpDataStructsSchemaVersion;1829 readonly sponsorship: UpDataStructsSponsorshipState;1830 readonly limits: UpDataStructsCollectionLimits;1831 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;1832}18331834/** @name UpDataStructsCollectionField */1835export interface UpDataStructsCollectionField extends Enum {1836 readonly isVariableOnChainSchema: boolean;1837 readonly isConstOnChainSchema: boolean;1838 readonly isOffchainSchema: boolean;1839 readonly type: 'VariableOnChainSchema' | 'ConstOnChainSchema' | 'OffchainSchema';1840}18411842/** @name UpDataStructsCollectionLimits */1843export interface UpDataStructsCollectionLimits extends Struct {1844 readonly accountTokenOwnershipLimit: Option<u32>;1845 readonly sponsoredDataSize: Option<u32>;1846 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1847 readonly tokenLimit: Option<u32>;1848 readonly sponsorTransferTimeout: Option<u32>;1849 readonly sponsorApproveTimeout: Option<u32>;1850 readonly ownerCanTransfer: Option<bool>;1851 readonly ownerCanDestroy: Option<bool>;1852 readonly transfersEnabled: Option<bool>;1853 readonly nestingRule: Option<UpDataStructsNestingRule>;1854}18551856/** @name UpDataStructsCollectionMode */1857export interface UpDataStructsCollectionMode extends Enum {1858 readonly isNft: boolean;1859 readonly isFungible: boolean;1860 readonly asFungible: u8;1861 readonly isReFungible: boolean;1862 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1863}18641865/** @name UpDataStructsCollectionStats */1866export interface UpDataStructsCollectionStats extends Struct {1867 readonly created: u32;1868 readonly destroyed: u32;1869 readonly alive: u32;1870}18711872/** @name UpDataStructsCreateCollectionData */1873export interface UpDataStructsCreateCollectionData extends Struct {1874 readonly mode: UpDataStructsCollectionMode;1875 readonly access: Option<UpDataStructsAccessMode>;1876 readonly name: Vec<u16>;1877 readonly description: Vec<u16>;1878 readonly tokenPrefix: Bytes;1879 readonly offchainSchema: Bytes;1880 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1881 readonly pendingSponsor: Option<AccountId32>;1882 readonly limits: Option<UpDataStructsCollectionLimits>;1883 readonly variableOnChainSchema: Bytes;1884 readonly constOnChainSchema: Bytes;1885 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1886 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1887 readonly properties: Vec<UpDataStructsProperty>;1888}18891890/** @name UpDataStructsCreateFungibleData */1891export interface UpDataStructsCreateFungibleData extends Struct {1892 readonly value: u128;1893}18941895/** @name UpDataStructsCreateItemData */1896export interface UpDataStructsCreateItemData extends Enum {1897 readonly isNft: boolean;1898 readonly asNft: UpDataStructsCreateNftData;1899 readonly isFungible: boolean;1900 readonly asFungible: UpDataStructsCreateFungibleData;1901 readonly isReFungible: boolean;1902 readonly asReFungible: UpDataStructsCreateReFungibleData;1903 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1904}19051906/** @name UpDataStructsCreateItemExData */1907export interface UpDataStructsCreateItemExData extends Enum {1908 readonly isNft: boolean;1909 readonly asNft: Vec<UpDataStructsCreateNftExData>;1910 readonly isFungible: boolean;1911 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;1912 readonly isRefungibleMultipleItems: boolean;1913 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;1914 readonly isRefungibleMultipleOwners: boolean;1915 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;1916 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1917}19181919/** @name UpDataStructsCreateNftData */1920export interface UpDataStructsCreateNftData extends Struct {1921 readonly constData: Bytes;1922 readonly variableData: Bytes;1923 readonly properties: Vec<UpDataStructsProperty>;1924}19251926/** @name UpDataStructsCreateNftExData */1927export interface UpDataStructsCreateNftExData extends Struct {1928 readonly constData: Bytes;1929 readonly variableData: Bytes;1930 readonly properties: Vec<UpDataStructsProperty>;1931 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1932}19331934/** @name UpDataStructsCreateReFungibleData */1935export interface UpDataStructsCreateReFungibleData extends Struct {1936 readonly constData: Bytes;1937 readonly variableData: Bytes;1938 readonly pieces: u128;1939}19401941/** @name UpDataStructsCreateRefungibleExData */1942export interface UpDataStructsCreateRefungibleExData extends Struct {1943 readonly constData: Bytes;1944 readonly variableData: Bytes;1945 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1946}19471948/** @name UpDataStructsMetaUpdatePermission */1949export interface UpDataStructsMetaUpdatePermission extends Enum {1950 readonly isItemOwner: boolean;1951 readonly isAdmin: boolean;1952 readonly isNone: boolean;1953 readonly type: 'ItemOwner' | 'Admin' | 'None';1954}19551956/** @name UpDataStructsNestingRule */1957export interface UpDataStructsNestingRule extends Enum {1958 readonly isDisabled: boolean;1959 readonly isOwner: boolean;1960 readonly isOwnerRestricted: boolean;1961 readonly asOwnerRestricted: FrameSupportStorageBoundedBTreeSet;1962 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';1963}19641965/** @name UpDataStructsProperties */1966export interface UpDataStructsProperties extends Struct {1967 readonly map: BTreeMap<Bytes, Bytes>;1968 readonly consumedSpace: u32;1969 readonly spaceLimit: u32;1970}19711972/** @name UpDataStructsProperty */1973export interface UpDataStructsProperty extends Struct {1974 readonly key: Bytes;1975 readonly value: Bytes;1976}19771978/** @name UpDataStructsPropertyKeyPermission */1979export interface UpDataStructsPropertyKeyPermission extends Struct {1980 readonly key: Bytes;1981 readonly permission: UpDataStructsPropertyPermission;1982}19831984/** @name UpDataStructsPropertyPermission */1985export interface UpDataStructsPropertyPermission extends Struct {1986 readonly mutable: bool;1987 readonly collectionAdmin: bool;1988 readonly tokenOwner: bool;1989}19901991/** @name UpDataStructsRpcCollection */1992export interface UpDataStructsRpcCollection extends Struct {1993 readonly owner: AccountId32;1994 readonly mode: UpDataStructsCollectionMode;1995 readonly access: UpDataStructsAccessMode;1996 readonly name: Vec<u16>;1997 readonly description: Vec<u16>;1998 readonly tokenPrefix: Bytes;1999 readonly mintMode: bool;2000 readonly offchainSchema: Bytes;2001 readonly schemaVersion: UpDataStructsSchemaVersion;2002 readonly sponsorship: UpDataStructsSponsorshipState;2003 readonly limits: UpDataStructsCollectionLimits;2004 readonly variableOnChainSchema: Bytes;2005 readonly constOnChainSchema: Bytes;2006 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2007 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2008 readonly properties: Vec<UpDataStructsProperty>;2009}20102011/** @name UpDataStructsSchemaVersion */2012export interface UpDataStructsSchemaVersion extends Enum {2013 readonly isImageURL: boolean;2014 readonly isUnique: boolean;2015 readonly type: 'ImageURL' | 'Unique';2016}20172018/** @name UpDataStructsSponsoringRateLimit */2019export interface UpDataStructsSponsoringRateLimit extends Enum {2020 readonly isSponsoringDisabled: boolean;2021 readonly isBlocks: boolean;2022 readonly asBlocks: u32;2023 readonly type: 'SponsoringDisabled' | 'Blocks';2024}20252026/** @name UpDataStructsSponsorshipState */2027export interface UpDataStructsSponsorshipState extends Enum {2028 readonly isDisabled: boolean;2029 readonly isUnconfirmed: boolean;2030 readonly asUnconfirmed: AccountId32;2031 readonly isConfirmed: boolean;2032 readonly asConfirmed: AccountId32;2033 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2034}20352036/** @name UpDataStructsTokenData */2037export interface UpDataStructsTokenData extends Struct {2038 readonly constData: Bytes;2039 readonly properties: Vec<UpDataStructsProperty>;2040 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2041}20422043/** @name XcmDoubleEncoded */2044export interface XcmDoubleEncoded extends Struct {2045 readonly encoded: Bytes;2046}20472048/** @name XcmV0Junction */2049export interface XcmV0Junction extends Enum {2050 readonly isParent: boolean;2051 readonly isParachain: boolean;2052 readonly asParachain: Compact<u32>;2053 readonly isAccountId32: boolean;2054 readonly asAccountId32: {2055 readonly network: XcmV0JunctionNetworkId;2056 readonly id: U8aFixed;2057 } & Struct;2058 readonly isAccountIndex64: boolean;2059 readonly asAccountIndex64: {2060 readonly network: XcmV0JunctionNetworkId;2061 readonly index: Compact<u64>;2062 } & Struct;2063 readonly isAccountKey20: boolean;2064 readonly asAccountKey20: {2065 readonly network: XcmV0JunctionNetworkId;2066 readonly key: U8aFixed;2067 } & Struct;2068 readonly isPalletInstance: boolean;2069 readonly asPalletInstance: u8;2070 readonly isGeneralIndex: boolean;2071 readonly asGeneralIndex: Compact<u128>;2072 readonly isGeneralKey: boolean;2073 readonly asGeneralKey: Bytes;2074 readonly isOnlyChild: boolean;2075 readonly isPlurality: boolean;2076 readonly asPlurality: {2077 readonly id: XcmV0JunctionBodyId;2078 readonly part: XcmV0JunctionBodyPart;2079 } & Struct;2080 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2081}20822083/** @name XcmV0JunctionBodyId */2084export interface XcmV0JunctionBodyId extends Enum {2085 readonly isUnit: boolean;2086 readonly isNamed: boolean;2087 readonly asNamed: Bytes;2088 readonly isIndex: boolean;2089 readonly asIndex: Compact<u32>;2090 readonly isExecutive: boolean;2091 readonly isTechnical: boolean;2092 readonly isLegislative: boolean;2093 readonly isJudicial: boolean;2094 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';2095}20962097/** @name XcmV0JunctionBodyPart */2098export interface XcmV0JunctionBodyPart extends Enum {2099 readonly isVoice: boolean;2100 readonly isMembers: boolean;2101 readonly asMembers: {2102 readonly count: Compact<u32>;2103 } & Struct;2104 readonly isFraction: boolean;2105 readonly asFraction: {2106 readonly nom: Compact<u32>;2107 readonly denom: Compact<u32>;2108 } & Struct;2109 readonly isAtLeastProportion: boolean;2110 readonly asAtLeastProportion: {2111 readonly nom: Compact<u32>;2112 readonly denom: Compact<u32>;2113 } & Struct;2114 readonly isMoreThanProportion: boolean;2115 readonly asMoreThanProportion: {2116 readonly nom: Compact<u32>;2117 readonly denom: Compact<u32>;2118 } & Struct;2119 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';2120}21212122/** @name XcmV0JunctionNetworkId */2123export interface XcmV0JunctionNetworkId extends Enum {2124 readonly isAny: boolean;2125 readonly isNamed: boolean;2126 readonly asNamed: Bytes;2127 readonly isPolkadot: boolean;2128 readonly isKusama: boolean;2129 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';2130}21312132/** @name XcmV0MultiAsset */2133export interface XcmV0MultiAsset extends Enum {2134 readonly isNone: boolean;2135 readonly isAll: boolean;2136 readonly isAllFungible: boolean;2137 readonly isAllNonFungible: boolean;2138 readonly isAllAbstractFungible: boolean;2139 readonly asAllAbstractFungible: {2140 readonly id: Bytes;2141 } & Struct;2142 readonly isAllAbstractNonFungible: boolean;2143 readonly asAllAbstractNonFungible: {2144 readonly class: Bytes;2145 } & Struct;2146 readonly isAllConcreteFungible: boolean;2147 readonly asAllConcreteFungible: {2148 readonly id: XcmV0MultiLocation;2149 } & Struct;2150 readonly isAllConcreteNonFungible: boolean;2151 readonly asAllConcreteNonFungible: {2152 readonly class: XcmV0MultiLocation;2153 } & Struct;2154 readonly isAbstractFungible: boolean;2155 readonly asAbstractFungible: {2156 readonly id: Bytes;2157 readonly amount: Compact<u128>;2158 } & Struct;2159 readonly isAbstractNonFungible: boolean;2160 readonly asAbstractNonFungible: {2161 readonly class: Bytes;2162 readonly instance: XcmV1MultiassetAssetInstance;2163 } & Struct;2164 readonly isConcreteFungible: boolean;2165 readonly asConcreteFungible: {2166 readonly id: XcmV0MultiLocation;2167 readonly amount: Compact<u128>;2168 } & Struct;2169 readonly isConcreteNonFungible: boolean;2170 readonly asConcreteNonFungible: {2171 readonly class: XcmV0MultiLocation;2172 readonly instance: XcmV1MultiassetAssetInstance;2173 } & Struct;2174 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';2175}21762177/** @name XcmV0MultiLocation */2178export interface XcmV0MultiLocation extends Enum {2179 readonly isNull: boolean;2180 readonly isX1: boolean;2181 readonly asX1: XcmV0Junction;2182 readonly isX2: boolean;2183 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;2184 readonly isX3: boolean;2185 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2186 readonly isX4: boolean;2187 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2188 readonly isX5: boolean;2189 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2190 readonly isX6: boolean;2191 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2192 readonly isX7: boolean;2193 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2194 readonly isX8: boolean;2195 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2196 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2197}21982199/** @name XcmV0Order */2200export interface XcmV0Order extends Enum {2201 readonly isNull: boolean;2202 readonly isDepositAsset: boolean;2203 readonly asDepositAsset: {2204 readonly assets: Vec<XcmV0MultiAsset>;2205 readonly dest: XcmV0MultiLocation;2206 } & Struct;2207 readonly isDepositReserveAsset: boolean;2208 readonly asDepositReserveAsset: {2209 readonly assets: Vec<XcmV0MultiAsset>;2210 readonly dest: XcmV0MultiLocation;2211 readonly effects: Vec<XcmV0Order>;2212 } & Struct;2213 readonly isExchangeAsset: boolean;2214 readonly asExchangeAsset: {2215 readonly give: Vec<XcmV0MultiAsset>;2216 readonly receive: Vec<XcmV0MultiAsset>;2217 } & Struct;2218 readonly isInitiateReserveWithdraw: boolean;2219 readonly asInitiateReserveWithdraw: {2220 readonly assets: Vec<XcmV0MultiAsset>;2221 readonly reserve: XcmV0MultiLocation;2222 readonly effects: Vec<XcmV0Order>;2223 } & Struct;2224 readonly isInitiateTeleport: boolean;2225 readonly asInitiateTeleport: {2226 readonly assets: Vec<XcmV0MultiAsset>;2227 readonly dest: XcmV0MultiLocation;2228 readonly effects: Vec<XcmV0Order>;2229 } & Struct;2230 readonly isQueryHolding: boolean;2231 readonly asQueryHolding: {2232 readonly queryId: Compact<u64>;2233 readonly dest: XcmV0MultiLocation;2234 readonly assets: Vec<XcmV0MultiAsset>;2235 } & Struct;2236 readonly isBuyExecution: boolean;2237 readonly asBuyExecution: {2238 readonly fees: XcmV0MultiAsset;2239 readonly weight: u64;2240 readonly debt: u64;2241 readonly haltOnError: bool;2242 readonly xcm: Vec<XcmV0Xcm>;2243 } & Struct;2244 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2245}22462247/** @name XcmV0OriginKind */2248export interface XcmV0OriginKind extends Enum {2249 readonly isNative: boolean;2250 readonly isSovereignAccount: boolean;2251 readonly isSuperuser: boolean;2252 readonly isXcm: boolean;2253 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';2254}22552256/** @name XcmV0Response */2257export interface XcmV0Response extends Enum {2258 readonly isAssets: boolean;2259 readonly asAssets: Vec<XcmV0MultiAsset>;2260 readonly type: 'Assets';2261}22622263/** @name XcmV0Xcm */2264export interface XcmV0Xcm extends Enum {2265 readonly isWithdrawAsset: boolean;2266 readonly asWithdrawAsset: {2267 readonly assets: Vec<XcmV0MultiAsset>;2268 readonly effects: Vec<XcmV0Order>;2269 } & Struct;2270 readonly isReserveAssetDeposit: boolean;2271 readonly asReserveAssetDeposit: {2272 readonly assets: Vec<XcmV0MultiAsset>;2273 readonly effects: Vec<XcmV0Order>;2274 } & Struct;2275 readonly isTeleportAsset: boolean;2276 readonly asTeleportAsset: {2277 readonly assets: Vec<XcmV0MultiAsset>;2278 readonly effects: Vec<XcmV0Order>;2279 } & Struct;2280 readonly isQueryResponse: boolean;2281 readonly asQueryResponse: {2282 readonly queryId: Compact<u64>;2283 readonly response: XcmV0Response;2284 } & Struct;2285 readonly isTransferAsset: boolean;2286 readonly asTransferAsset: {2287 readonly assets: Vec<XcmV0MultiAsset>;2288 readonly dest: XcmV0MultiLocation;2289 } & Struct;2290 readonly isTransferReserveAsset: boolean;2291 readonly asTransferReserveAsset: {2292 readonly assets: Vec<XcmV0MultiAsset>;2293 readonly dest: XcmV0MultiLocation;2294 readonly effects: Vec<XcmV0Order>;2295 } & Struct;2296 readonly isTransact: boolean;2297 readonly asTransact: {2298 readonly originType: XcmV0OriginKind;2299 readonly requireWeightAtMost: u64;2300 readonly call: XcmDoubleEncoded;2301 } & Struct;2302 readonly isHrmpNewChannelOpenRequest: boolean;2303 readonly asHrmpNewChannelOpenRequest: {2304 readonly sender: Compact<u32>;2305 readonly maxMessageSize: Compact<u32>;2306 readonly maxCapacity: Compact<u32>;2307 } & Struct;2308 readonly isHrmpChannelAccepted: boolean;2309 readonly asHrmpChannelAccepted: {2310 readonly recipient: Compact<u32>;2311 } & Struct;2312 readonly isHrmpChannelClosing: boolean;2313 readonly asHrmpChannelClosing: {2314 readonly initiator: Compact<u32>;2315 readonly sender: Compact<u32>;2316 readonly recipient: Compact<u32>;2317 } & Struct;2318 readonly isRelayedFrom: boolean;2319 readonly asRelayedFrom: {2320 readonly who: XcmV0MultiLocation;2321 readonly message: XcmV0Xcm;2322 } & Struct;2323 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2324}23252326/** @name XcmV1Junction */2327export interface XcmV1Junction extends Enum {2328 readonly isParachain: boolean;2329 readonly asParachain: Compact<u32>;2330 readonly isAccountId32: boolean;2331 readonly asAccountId32: {2332 readonly network: XcmV0JunctionNetworkId;2333 readonly id: U8aFixed;2334 } & Struct;2335 readonly isAccountIndex64: boolean;2336 readonly asAccountIndex64: {2337 readonly network: XcmV0JunctionNetworkId;2338 readonly index: Compact<u64>;2339 } & Struct;2340 readonly isAccountKey20: boolean;2341 readonly asAccountKey20: {2342 readonly network: XcmV0JunctionNetworkId;2343 readonly key: U8aFixed;2344 } & Struct;2345 readonly isPalletInstance: boolean;2346 readonly asPalletInstance: u8;2347 readonly isGeneralIndex: boolean;2348 readonly asGeneralIndex: Compact<u128>;2349 readonly isGeneralKey: boolean;2350 readonly asGeneralKey: Bytes;2351 readonly isOnlyChild: boolean;2352 readonly isPlurality: boolean;2353 readonly asPlurality: {2354 readonly id: XcmV0JunctionBodyId;2355 readonly part: XcmV0JunctionBodyPart;2356 } & Struct;2357 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2358}23592360/** @name XcmV1MultiAsset */2361export interface XcmV1MultiAsset extends Struct {2362 readonly id: XcmV1MultiassetAssetId;2363 readonly fun: XcmV1MultiassetFungibility;2364}23652366/** @name XcmV1MultiassetAssetId */2367export interface XcmV1MultiassetAssetId extends Enum {2368 readonly isConcrete: boolean;2369 readonly asConcrete: XcmV1MultiLocation;2370 readonly isAbstract: boolean;2371 readonly asAbstract: Bytes;2372 readonly type: 'Concrete' | 'Abstract';2373}23742375/** @name XcmV1MultiassetAssetInstance */2376export interface XcmV1MultiassetAssetInstance extends Enum {2377 readonly isUndefined: boolean;2378 readonly isIndex: boolean;2379 readonly asIndex: Compact<u128>;2380 readonly isArray4: boolean;2381 readonly asArray4: U8aFixed;2382 readonly isArray8: boolean;2383 readonly asArray8: U8aFixed;2384 readonly isArray16: boolean;2385 readonly asArray16: U8aFixed;2386 readonly isArray32: boolean;2387 readonly asArray32: U8aFixed;2388 readonly isBlob: boolean;2389 readonly asBlob: Bytes;2390 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';2391}23922393/** @name XcmV1MultiassetFungibility */2394export interface XcmV1MultiassetFungibility extends Enum {2395 readonly isFungible: boolean;2396 readonly asFungible: Compact<u128>;2397 readonly isNonFungible: boolean;2398 readonly asNonFungible: XcmV1MultiassetAssetInstance;2399 readonly type: 'Fungible' | 'NonFungible';2400}24012402/** @name XcmV1MultiassetMultiAssetFilter */2403export interface XcmV1MultiassetMultiAssetFilter extends Enum {2404 readonly isDefinite: boolean;2405 readonly asDefinite: XcmV1MultiassetMultiAssets;2406 readonly isWild: boolean;2407 readonly asWild: XcmV1MultiassetWildMultiAsset;2408 readonly type: 'Definite' | 'Wild';2409}24102411/** @name XcmV1MultiassetMultiAssets */2412export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}24132414/** @name XcmV1MultiassetWildFungibility */2415export interface XcmV1MultiassetWildFungibility extends Enum {2416 readonly isFungible: boolean;2417 readonly isNonFungible: boolean;2418 readonly type: 'Fungible' | 'NonFungible';2419}24202421/** @name XcmV1MultiassetWildMultiAsset */2422export interface XcmV1MultiassetWildMultiAsset extends Enum {2423 readonly isAll: boolean;2424 readonly isAllOf: boolean;2425 readonly asAllOf: {2426 readonly id: XcmV1MultiassetAssetId;2427 readonly fun: XcmV1MultiassetWildFungibility;2428 } & Struct;2429 readonly type: 'All' | 'AllOf';2430}24312432/** @name XcmV1MultiLocation */2433export interface XcmV1MultiLocation extends Struct {2434 readonly parents: u8;2435 readonly interior: XcmV1MultilocationJunctions;2436}24372438/** @name XcmV1MultilocationJunctions */2439export interface XcmV1MultilocationJunctions extends Enum {2440 readonly isHere: boolean;2441 readonly isX1: boolean;2442 readonly asX1: XcmV1Junction;2443 readonly isX2: boolean;2444 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;2445 readonly isX3: boolean;2446 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2447 readonly isX4: boolean;2448 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2449 readonly isX5: boolean;2450 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2451 readonly isX6: boolean;2452 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2453 readonly isX7: boolean;2454 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2455 readonly isX8: boolean;2456 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2457 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2458}24592460/** @name XcmV1Order */2461export interface XcmV1Order extends Enum {2462 readonly isNoop: boolean;2463 readonly isDepositAsset: boolean;2464 readonly asDepositAsset: {2465 readonly assets: XcmV1MultiassetMultiAssetFilter;2466 readonly maxAssets: u32;2467 readonly beneficiary: XcmV1MultiLocation;2468 } & Struct;2469 readonly isDepositReserveAsset: boolean;2470 readonly asDepositReserveAsset: {2471 readonly assets: XcmV1MultiassetMultiAssetFilter;2472 readonly maxAssets: u32;2473 readonly dest: XcmV1MultiLocation;2474 readonly effects: Vec<XcmV1Order>;2475 } & Struct;2476 readonly isExchangeAsset: boolean;2477 readonly asExchangeAsset: {2478 readonly give: XcmV1MultiassetMultiAssetFilter;2479 readonly receive: XcmV1MultiassetMultiAssets;2480 } & Struct;2481 readonly isInitiateReserveWithdraw: boolean;2482 readonly asInitiateReserveWithdraw: {2483 readonly assets: XcmV1MultiassetMultiAssetFilter;2484 readonly reserve: XcmV1MultiLocation;2485 readonly effects: Vec<XcmV1Order>;2486 } & Struct;2487 readonly isInitiateTeleport: boolean;2488 readonly asInitiateTeleport: {2489 readonly assets: XcmV1MultiassetMultiAssetFilter;2490 readonly dest: XcmV1MultiLocation;2491 readonly effects: Vec<XcmV1Order>;2492 } & Struct;2493 readonly isQueryHolding: boolean;2494 readonly asQueryHolding: {2495 readonly queryId: Compact<u64>;2496 readonly dest: XcmV1MultiLocation;2497 readonly assets: XcmV1MultiassetMultiAssetFilter;2498 } & Struct;2499 readonly isBuyExecution: boolean;2500 readonly asBuyExecution: {2501 readonly fees: XcmV1MultiAsset;2502 readonly weight: u64;2503 readonly debt: u64;2504 readonly haltOnError: bool;2505 readonly instructions: Vec<XcmV1Xcm>;2506 } & Struct;2507 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2508}25092510/** @name XcmV1Response */2511export interface XcmV1Response extends Enum {2512 readonly isAssets: boolean;2513 readonly asAssets: XcmV1MultiassetMultiAssets;2514 readonly isVersion: boolean;2515 readonly asVersion: u32;2516 readonly type: 'Assets' | 'Version';2517}25182519/** @name XcmV1Xcm */2520export interface XcmV1Xcm extends Enum {2521 readonly isWithdrawAsset: boolean;2522 readonly asWithdrawAsset: {2523 readonly assets: XcmV1MultiassetMultiAssets;2524 readonly effects: Vec<XcmV1Order>;2525 } & Struct;2526 readonly isReserveAssetDeposited: boolean;2527 readonly asReserveAssetDeposited: {2528 readonly assets: XcmV1MultiassetMultiAssets;2529 readonly effects: Vec<XcmV1Order>;2530 } & Struct;2531 readonly isReceiveTeleportedAsset: boolean;2532 readonly asReceiveTeleportedAsset: {2533 readonly assets: XcmV1MultiassetMultiAssets;2534 readonly effects: Vec<XcmV1Order>;2535 } & Struct;2536 readonly isQueryResponse: boolean;2537 readonly asQueryResponse: {2538 readonly queryId: Compact<u64>;2539 readonly response: XcmV1Response;2540 } & Struct;2541 readonly isTransferAsset: boolean;2542 readonly asTransferAsset: {2543 readonly assets: XcmV1MultiassetMultiAssets;2544 readonly beneficiary: XcmV1MultiLocation;2545 } & Struct;2546 readonly isTransferReserveAsset: boolean;2547 readonly asTransferReserveAsset: {2548 readonly assets: XcmV1MultiassetMultiAssets;2549 readonly dest: XcmV1MultiLocation;2550 readonly effects: Vec<XcmV1Order>;2551 } & Struct;2552 readonly isTransact: boolean;2553 readonly asTransact: {2554 readonly originType: XcmV0OriginKind;2555 readonly requireWeightAtMost: u64;2556 readonly call: XcmDoubleEncoded;2557 } & Struct;2558 readonly isHrmpNewChannelOpenRequest: boolean;2559 readonly asHrmpNewChannelOpenRequest: {2560 readonly sender: Compact<u32>;2561 readonly maxMessageSize: Compact<u32>;2562 readonly maxCapacity: Compact<u32>;2563 } & Struct;2564 readonly isHrmpChannelAccepted: boolean;2565 readonly asHrmpChannelAccepted: {2566 readonly recipient: Compact<u32>;2567 } & Struct;2568 readonly isHrmpChannelClosing: boolean;2569 readonly asHrmpChannelClosing: {2570 readonly initiator: Compact<u32>;2571 readonly sender: Compact<u32>;2572 readonly recipient: Compact<u32>;2573 } & Struct;2574 readonly isRelayedFrom: boolean;2575 readonly asRelayedFrom: {2576 readonly who: XcmV1MultilocationJunctions;2577 readonly message: XcmV1Xcm;2578 } & Struct;2579 readonly isSubscribeVersion: boolean;2580 readonly asSubscribeVersion: {2581 readonly queryId: Compact<u64>;2582 readonly maxResponseWeight: Compact<u64>;2583 } & Struct;2584 readonly isUnsubscribeVersion: boolean;2585 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2586}25872588/** @name XcmV2Instruction */2589export interface XcmV2Instruction extends Enum {2590 readonly isWithdrawAsset: boolean;2591 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;2592 readonly isReserveAssetDeposited: boolean;2593 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;2594 readonly isReceiveTeleportedAsset: boolean;2595 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;2596 readonly isQueryResponse: boolean;2597 readonly asQueryResponse: {2598 readonly queryId: Compact<u64>;2599 readonly response: XcmV2Response;2600 readonly maxWeight: Compact<u64>;2601 } & Struct;2602 readonly isTransferAsset: boolean;2603 readonly asTransferAsset: {2604 readonly assets: XcmV1MultiassetMultiAssets;2605 readonly beneficiary: XcmV1MultiLocation;2606 } & Struct;2607 readonly isTransferReserveAsset: boolean;2608 readonly asTransferReserveAsset: {2609 readonly assets: XcmV1MultiassetMultiAssets;2610 readonly dest: XcmV1MultiLocation;2611 readonly xcm: XcmV2Xcm;2612 } & Struct;2613 readonly isTransact: boolean;2614 readonly asTransact: {2615 readonly originType: XcmV0OriginKind;2616 readonly requireWeightAtMost: Compact<u64>;2617 readonly call: XcmDoubleEncoded;2618 } & Struct;2619 readonly isHrmpNewChannelOpenRequest: boolean;2620 readonly asHrmpNewChannelOpenRequest: {2621 readonly sender: Compact<u32>;2622 readonly maxMessageSize: Compact<u32>;2623 readonly maxCapacity: Compact<u32>;2624 } & Struct;2625 readonly isHrmpChannelAccepted: boolean;2626 readonly asHrmpChannelAccepted: {2627 readonly recipient: Compact<u32>;2628 } & Struct;2629 readonly isHrmpChannelClosing: boolean;2630 readonly asHrmpChannelClosing: {2631 readonly initiator: Compact<u32>;2632 readonly sender: Compact<u32>;2633 readonly recipient: Compact<u32>;2634 } & Struct;2635 readonly isClearOrigin: boolean;2636 readonly isDescendOrigin: boolean;2637 readonly asDescendOrigin: XcmV1MultilocationJunctions;2638 readonly isReportError: boolean;2639 readonly asReportError: {2640 readonly queryId: Compact<u64>;2641 readonly dest: XcmV1MultiLocation;2642 readonly maxResponseWeight: Compact<u64>;2643 } & Struct;2644 readonly isDepositAsset: boolean;2645 readonly asDepositAsset: {2646 readonly assets: XcmV1MultiassetMultiAssetFilter;2647 readonly maxAssets: Compact<u32>;2648 readonly beneficiary: XcmV1MultiLocation;2649 } & Struct;2650 readonly isDepositReserveAsset: boolean;2651 readonly asDepositReserveAsset: {2652 readonly assets: XcmV1MultiassetMultiAssetFilter;2653 readonly maxAssets: Compact<u32>;2654 readonly dest: XcmV1MultiLocation;2655 readonly xcm: XcmV2Xcm;2656 } & Struct;2657 readonly isExchangeAsset: boolean;2658 readonly asExchangeAsset: {2659 readonly give: XcmV1MultiassetMultiAssetFilter;2660 readonly receive: XcmV1MultiassetMultiAssets;2661 } & Struct;2662 readonly isInitiateReserveWithdraw: boolean;2663 readonly asInitiateReserveWithdraw: {2664 readonly assets: XcmV1MultiassetMultiAssetFilter;2665 readonly reserve: XcmV1MultiLocation;2666 readonly xcm: XcmV2Xcm;2667 } & Struct;2668 readonly isInitiateTeleport: boolean;2669 readonly asInitiateTeleport: {2670 readonly assets: XcmV1MultiassetMultiAssetFilter;2671 readonly dest: XcmV1MultiLocation;2672 readonly xcm: XcmV2Xcm;2673 } & Struct;2674 readonly isQueryHolding: boolean;2675 readonly asQueryHolding: {2676 readonly queryId: Compact<u64>;2677 readonly dest: XcmV1MultiLocation;2678 readonly assets: XcmV1MultiassetMultiAssetFilter;2679 readonly maxResponseWeight: Compact<u64>;2680 } & Struct;2681 readonly isBuyExecution: boolean;2682 readonly asBuyExecution: {2683 readonly fees: XcmV1MultiAsset;2684 readonly weightLimit: XcmV2WeightLimit;2685 } & Struct;2686 readonly isRefundSurplus: boolean;2687 readonly isSetErrorHandler: boolean;2688 readonly asSetErrorHandler: XcmV2Xcm;2689 readonly isSetAppendix: boolean;2690 readonly asSetAppendix: XcmV2Xcm;2691 readonly isClearError: boolean;2692 readonly isClaimAsset: boolean;2693 readonly asClaimAsset: {2694 readonly assets: XcmV1MultiassetMultiAssets;2695 readonly ticket: XcmV1MultiLocation;2696 } & Struct;2697 readonly isTrap: boolean;2698 readonly asTrap: Compact<u64>;2699 readonly isSubscribeVersion: boolean;2700 readonly asSubscribeVersion: {2701 readonly queryId: Compact<u64>;2702 readonly maxResponseWeight: Compact<u64>;2703 } & Struct;2704 readonly isUnsubscribeVersion: boolean;2705 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';2706}27072708/** @name XcmV2Response */2709export interface XcmV2Response extends Enum {2710 readonly isNull: boolean;2711 readonly isAssets: boolean;2712 readonly asAssets: XcmV1MultiassetMultiAssets;2713 readonly isExecutionResult: boolean;2714 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;2715 readonly isVersion: boolean;2716 readonly asVersion: u32;2717 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';2718}27192720/** @name XcmV2TraitsError */2721export interface XcmV2TraitsError extends Enum {2722 readonly isOverflow: boolean;2723 readonly isUnimplemented: boolean;2724 readonly isUntrustedReserveLocation: boolean;2725 readonly isUntrustedTeleportLocation: boolean;2726 readonly isMultiLocationFull: boolean;2727 readonly isMultiLocationNotInvertible: boolean;2728 readonly isBadOrigin: boolean;2729 readonly isInvalidLocation: boolean;2730 readonly isAssetNotFound: boolean;2731 readonly isFailedToTransactAsset: boolean;2732 readonly isNotWithdrawable: boolean;2733 readonly isLocationCannotHold: boolean;2734 readonly isExceedsMaxMessageSize: boolean;2735 readonly isDestinationUnsupported: boolean;2736 readonly isTransport: boolean;2737 readonly isUnroutable: boolean;2738 readonly isUnknownClaim: boolean;2739 readonly isFailedToDecode: boolean;2740 readonly isMaxWeightInvalid: boolean;2741 readonly isNotHoldingFees: boolean;2742 readonly isTooExpensive: boolean;2743 readonly isTrap: boolean;2744 readonly asTrap: u64;2745 readonly isUnhandledXcmVersion: boolean;2746 readonly isWeightLimitReached: boolean;2747 readonly asWeightLimitReached: u64;2748 readonly isBarrier: boolean;2749 readonly isWeightNotComputable: boolean;2750 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';2751}27522753/** @name XcmV2TraitsOutcome */2754export interface XcmV2TraitsOutcome extends Enum {2755 readonly isComplete: boolean;2756 readonly asComplete: u64;2757 readonly isIncomplete: boolean;2758 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2759 readonly isError: boolean;2760 readonly asError: XcmV2TraitsError;2761 readonly type: 'Complete' | 'Incomplete' | 'Error';2762}27632764/** @name XcmV2WeightLimit */2765export interface XcmV2WeightLimit extends Enum {2766 readonly isUnlimited: boolean;2767 readonly isLimited: boolean;2768 readonly asLimited: Compact<u64>;2769 readonly type: 'Unlimited' | 'Limited';2770}27712772/** @name XcmV2Xcm */2773export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}27742775/** @name XcmVersionedMultiAssets */2776export interface XcmVersionedMultiAssets extends Enum {2777 readonly isV0: boolean;2778 readonly asV0: Vec<XcmV0MultiAsset>;2779 readonly isV1: boolean;2780 readonly asV1: XcmV1MultiassetMultiAssets;2781 readonly type: 'V0' | 'V1';2782}27832784/** @name XcmVersionedMultiLocation */2785export interface XcmVersionedMultiLocation extends Enum {2786 readonly isV0: boolean;2787 readonly asV0: XcmV0MultiLocation;2788 readonly isV1: boolean;2789 readonly asV1: XcmV1MultiLocation;2790 readonly type: 'V0' | 'V1';2791}27922793/** @name XcmVersionedXcm */2794export interface XcmVersionedXcm extends Enum {2795 readonly isV0: boolean;2796 readonly asV0: XcmV0Xcm;2797 readonly isV1: boolean;2798 readonly asV1: XcmV1Xcm;2799 readonly isV2: boolean;2800 readonly asV2: XcmV2Xcm;2801 readonly type: 'V0' | 'V1' | 'V2';2802}28032804export type PHANTOM_UNIQUE = 'unique';1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: u64;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: U8aFixed;35 readonly isUnsupportedVersion: boolean;36 readonly asUnsupportedVersion: U8aFixed;37 readonly isExecutedDownward: boolean;38 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;39 readonly isWeightExhausted: boolean;40 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;41 readonly isOverweightEnqueued: boolean;42 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;43 readonly isOverweightServiced: boolean;44 readonly asOverweightServiced: ITuple<[u64, u64]>;45 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';46}4748/** @name CumulusPalletDmpQueuePageIndexData */49export interface CumulusPalletDmpQueuePageIndexData extends Struct {50 readonly beginUsed: u32;51 readonly endUsed: u32;52 readonly overweightCount: u64;53}5455/** @name CumulusPalletParachainSystemCall */56export interface CumulusPalletParachainSystemCall extends Enum {57 readonly isSetValidationData: boolean;58 readonly asSetValidationData: {59 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;60 } & Struct;61 readonly isSudoSendUpwardMessage: boolean;62 readonly asSudoSendUpwardMessage: {63 readonly message: Bytes;64 } & Struct;65 readonly isAuthorizeUpgrade: boolean;66 readonly asAuthorizeUpgrade: {67 readonly codeHash: H256;68 } & Struct;69 readonly isEnactAuthorizedUpgrade: boolean;70 readonly asEnactAuthorizedUpgrade: {71 readonly code: Bytes;72 } & Struct;73 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';74}7576/** @name CumulusPalletParachainSystemError */77export interface CumulusPalletParachainSystemError extends Enum {78 readonly isOverlappingUpgrades: boolean;79 readonly isProhibitedByPolkadot: boolean;80 readonly isTooBig: boolean;81 readonly isValidationDataNotAvailable: boolean;82 readonly isHostConfigurationNotAvailable: boolean;83 readonly isNotScheduled: boolean;84 readonly isNothingAuthorized: boolean;85 readonly isUnauthorized: boolean;86 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';87}8889/** @name CumulusPalletParachainSystemEvent */90export interface CumulusPalletParachainSystemEvent extends Enum {91 readonly isValidationFunctionStored: boolean;92 readonly isValidationFunctionApplied: boolean;93 readonly asValidationFunctionApplied: u32;94 readonly isValidationFunctionDiscarded: boolean;95 readonly isUpgradeAuthorized: boolean;96 readonly asUpgradeAuthorized: H256;97 readonly isDownwardMessagesReceived: boolean;98 readonly asDownwardMessagesReceived: u32;99 readonly isDownwardMessagesProcessed: boolean;100 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;101 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';102}103104/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */105export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {106 readonly dmqMqcHead: H256;107 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;108 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;109 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;110}111112/** @name CumulusPalletXcmCall */113export interface CumulusPalletXcmCall extends Null {}114115/** @name CumulusPalletXcmError */116export interface CumulusPalletXcmError extends Null {}117118/** @name CumulusPalletXcmEvent */119export interface CumulusPalletXcmEvent extends Enum {120 readonly isInvalidFormat: boolean;121 readonly asInvalidFormat: U8aFixed;122 readonly isUnsupportedVersion: boolean;123 readonly asUnsupportedVersion: U8aFixed;124 readonly isExecutedDownward: boolean;125 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;126 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';127}128129/** @name CumulusPalletXcmpQueueCall */130export interface CumulusPalletXcmpQueueCall extends Enum {131 readonly isServiceOverweight: boolean;132 readonly asServiceOverweight: {133 readonly index: u64;134 readonly weightLimit: u64;135 } & Struct;136 readonly isSuspendXcmExecution: boolean;137 readonly isResumeXcmExecution: boolean;138 readonly isUpdateSuspendThreshold: boolean;139 readonly asUpdateSuspendThreshold: {140 readonly new_: u32;141 } & Struct;142 readonly isUpdateDropThreshold: boolean;143 readonly asUpdateDropThreshold: {144 readonly new_: u32;145 } & Struct;146 readonly isUpdateResumeThreshold: boolean;147 readonly asUpdateResumeThreshold: {148 readonly new_: u32;149 } & Struct;150 readonly isUpdateThresholdWeight: boolean;151 readonly asUpdateThresholdWeight: {152 readonly new_: u64;153 } & Struct;154 readonly isUpdateWeightRestrictDecay: boolean;155 readonly asUpdateWeightRestrictDecay: {156 readonly new_: u64;157 } & Struct;158 readonly isUpdateXcmpMaxIndividualWeight: boolean;159 readonly asUpdateXcmpMaxIndividualWeight: {160 readonly new_: u64;161 } & Struct;162 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';163}164165/** @name CumulusPalletXcmpQueueError */166export interface CumulusPalletXcmpQueueError extends Enum {167 readonly isFailedToSend: boolean;168 readonly isBadXcmOrigin: boolean;169 readonly isBadXcm: boolean;170 readonly isBadOverweightIndex: boolean;171 readonly isWeightOverLimit: boolean;172 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';173}174175/** @name CumulusPalletXcmpQueueEvent */176export interface CumulusPalletXcmpQueueEvent extends Enum {177 readonly isSuccess: boolean;178 readonly asSuccess: Option<H256>;179 readonly isFail: boolean;180 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;181 readonly isBadVersion: boolean;182 readonly asBadVersion: Option<H256>;183 readonly isBadFormat: boolean;184 readonly asBadFormat: Option<H256>;185 readonly isUpwardMessageSent: boolean;186 readonly asUpwardMessageSent: Option<H256>;187 readonly isXcmpMessageSent: boolean;188 readonly asXcmpMessageSent: Option<H256>;189 readonly isOverweightEnqueued: boolean;190 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;191 readonly isOverweightServiced: boolean;192 readonly asOverweightServiced: ITuple<[u64, u64]>;193 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';194}195196/** @name CumulusPalletXcmpQueueInboundChannelDetails */197export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {198 readonly sender: u32;199 readonly state: CumulusPalletXcmpQueueInboundState;200 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;201}202203/** @name CumulusPalletXcmpQueueInboundState */204export interface CumulusPalletXcmpQueueInboundState extends Enum {205 readonly isOk: boolean;206 readonly isSuspended: boolean;207 readonly type: 'Ok' | 'Suspended';208}209210/** @name CumulusPalletXcmpQueueOutboundChannelDetails */211export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {212 readonly recipient: u32;213 readonly state: CumulusPalletXcmpQueueOutboundState;214 readonly signalsExist: bool;215 readonly firstIndex: u16;216 readonly lastIndex: u16;217}218219/** @name CumulusPalletXcmpQueueOutboundState */220export interface CumulusPalletXcmpQueueOutboundState extends Enum {221 readonly isOk: boolean;222 readonly isSuspended: boolean;223 readonly type: 'Ok' | 'Suspended';224}225226/** @name CumulusPalletXcmpQueueQueueConfigData */227export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {228 readonly suspendThreshold: u32;229 readonly dropThreshold: u32;230 readonly resumeThreshold: u32;231 readonly thresholdWeight: u64;232 readonly weightRestrictDecay: u64;233 readonly xcmpMaxIndividualWeight: u64;234}235236/** @name CumulusPrimitivesParachainInherentParachainInherentData */237export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {238 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;239 readonly relayChainState: SpTrieStorageProof;240 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;241 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;242}243244/** @name EthbloomBloom */245export interface EthbloomBloom extends U8aFixed {}246247/** @name EthereumBlock */248export interface EthereumBlock extends Struct {249 readonly header: EthereumHeader;250 readonly transactions: Vec<EthereumTransactionTransactionV2>;251 readonly ommers: Vec<EthereumHeader>;252}253254/** @name EthereumHeader */255export interface EthereumHeader extends Struct {256 readonly parentHash: H256;257 readonly ommersHash: H256;258 readonly beneficiary: H160;259 readonly stateRoot: H256;260 readonly transactionsRoot: H256;261 readonly receiptsRoot: H256;262 readonly logsBloom: EthbloomBloom;263 readonly difficulty: U256;264 readonly number: U256;265 readonly gasLimit: U256;266 readonly gasUsed: U256;267 readonly timestamp: u64;268 readonly extraData: Bytes;269 readonly mixHash: H256;270 readonly nonce: EthereumTypesHashH64;271}272273/** @name EthereumLog */274export interface EthereumLog extends Struct {275 readonly address: H160;276 readonly topics: Vec<H256>;277 readonly data: Bytes;278}279280/** @name EthereumReceiptEip658ReceiptData */281export interface EthereumReceiptEip658ReceiptData extends Struct {282 readonly statusCode: u8;283 readonly usedGas: U256;284 readonly logsBloom: EthbloomBloom;285 readonly logs: Vec<EthereumLog>;286}287288/** @name EthereumReceiptReceiptV3 */289export interface EthereumReceiptReceiptV3 extends Enum {290 readonly isLegacy: boolean;291 readonly asLegacy: EthereumReceiptEip658ReceiptData;292 readonly isEip2930: boolean;293 readonly asEip2930: EthereumReceiptEip658ReceiptData;294 readonly isEip1559: boolean;295 readonly asEip1559: EthereumReceiptEip658ReceiptData;296 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';297}298299/** @name EthereumTransactionAccessListItem */300export interface EthereumTransactionAccessListItem extends Struct {301 readonly address: H160;302 readonly storageKeys: Vec<H256>;303}304305/** @name EthereumTransactionEip1559Transaction */306export interface EthereumTransactionEip1559Transaction extends Struct {307 readonly chainId: u64;308 readonly nonce: U256;309 readonly maxPriorityFeePerGas: U256;310 readonly maxFeePerGas: U256;311 readonly gasLimit: U256;312 readonly action: EthereumTransactionTransactionAction;313 readonly value: U256;314 readonly input: Bytes;315 readonly accessList: Vec<EthereumTransactionAccessListItem>;316 readonly oddYParity: bool;317 readonly r: H256;318 readonly s: H256;319}320321/** @name EthereumTransactionEip2930Transaction */322export interface EthereumTransactionEip2930Transaction extends Struct {323 readonly chainId: u64;324 readonly nonce: U256;325 readonly gasPrice: U256;326 readonly gasLimit: U256;327 readonly action: EthereumTransactionTransactionAction;328 readonly value: U256;329 readonly input: Bytes;330 readonly accessList: Vec<EthereumTransactionAccessListItem>;331 readonly oddYParity: bool;332 readonly r: H256;333 readonly s: H256;334}335336/** @name EthereumTransactionLegacyTransaction */337export interface EthereumTransactionLegacyTransaction extends Struct {338 readonly nonce: U256;339 readonly gasPrice: U256;340 readonly gasLimit: U256;341 readonly action: EthereumTransactionTransactionAction;342 readonly value: U256;343 readonly input: Bytes;344 readonly signature: EthereumTransactionTransactionSignature;345}346347/** @name EthereumTransactionTransactionAction */348export interface EthereumTransactionTransactionAction extends Enum {349 readonly isCall: boolean;350 readonly asCall: H160;351 readonly isCreate: boolean;352 readonly type: 'Call' | 'Create';353}354355/** @name EthereumTransactionTransactionSignature */356export interface EthereumTransactionTransactionSignature extends Struct {357 readonly v: u64;358 readonly r: H256;359 readonly s: H256;360}361362/** @name EthereumTransactionTransactionV2 */363export interface EthereumTransactionTransactionV2 extends Enum {364 readonly isLegacy: boolean;365 readonly asLegacy: EthereumTransactionLegacyTransaction;366 readonly isEip2930: boolean;367 readonly asEip2930: EthereumTransactionEip2930Transaction;368 readonly isEip1559: boolean;369 readonly asEip1559: EthereumTransactionEip1559Transaction;370 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';371}372373/** @name EthereumTypesHashH64 */374export interface EthereumTypesHashH64 extends U8aFixed {}375376/** @name EvmCoreErrorExitError */377export interface EvmCoreErrorExitError extends Enum {378 readonly isStackUnderflow: boolean;379 readonly isStackOverflow: boolean;380 readonly isInvalidJump: boolean;381 readonly isInvalidRange: boolean;382 readonly isDesignatedInvalid: boolean;383 readonly isCallTooDeep: boolean;384 readonly isCreateCollision: boolean;385 readonly isCreateContractLimit: boolean;386 readonly isOutOfOffset: boolean;387 readonly isOutOfGas: boolean;388 readonly isOutOfFund: boolean;389 readonly isPcUnderflow: boolean;390 readonly isCreateEmpty: boolean;391 readonly isOther: boolean;392 readonly asOther: Text;393 readonly isInvalidCode: boolean;394 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';395}396397/** @name EvmCoreErrorExitFatal */398export interface EvmCoreErrorExitFatal extends Enum {399 readonly isNotSupported: boolean;400 readonly isUnhandledInterrupt: boolean;401 readonly isCallErrorAsFatal: boolean;402 readonly asCallErrorAsFatal: EvmCoreErrorExitError;403 readonly isOther: boolean;404 readonly asOther: Text;405 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';406}407408/** @name EvmCoreErrorExitReason */409export interface EvmCoreErrorExitReason extends Enum {410 readonly isSucceed: boolean;411 readonly asSucceed: EvmCoreErrorExitSucceed;412 readonly isError: boolean;413 readonly asError: EvmCoreErrorExitError;414 readonly isRevert: boolean;415 readonly asRevert: EvmCoreErrorExitRevert;416 readonly isFatal: boolean;417 readonly asFatal: EvmCoreErrorExitFatal;418 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';419}420421/** @name EvmCoreErrorExitRevert */422export interface EvmCoreErrorExitRevert extends Enum {423 readonly isReverted: boolean;424 readonly type: 'Reverted';425}426427/** @name EvmCoreErrorExitSucceed */428export interface EvmCoreErrorExitSucceed extends Enum {429 readonly isStopped: boolean;430 readonly isReturned: boolean;431 readonly isSuicided: boolean;432 readonly type: 'Stopped' | 'Returned' | 'Suicided';433}434435/** @name FpRpcTransactionStatus */436export interface FpRpcTransactionStatus extends Struct {437 readonly transactionHash: H256;438 readonly transactionIndex: u32;439 readonly from: H160;440 readonly to: Option<H160>;441 readonly contractAddress: Option<H160>;442 readonly logs: Vec<EthereumLog>;443 readonly logsBloom: EthbloomBloom;444}445446/** @name FrameSupportPalletId */447export interface FrameSupportPalletId extends U8aFixed {}448449/** @name FrameSupportTokensMiscBalanceStatus */450export interface FrameSupportTokensMiscBalanceStatus extends Enum {451 readonly isFree: boolean;452 readonly isReserved: boolean;453 readonly type: 'Free' | 'Reserved';454}455456/** @name FrameSupportWeightsDispatchClass */457export interface FrameSupportWeightsDispatchClass extends Enum {458 readonly isNormal: boolean;459 readonly isOperational: boolean;460 readonly isMandatory: boolean;461 readonly type: 'Normal' | 'Operational' | 'Mandatory';462}463464/** @name FrameSupportWeightsDispatchInfo */465export interface FrameSupportWeightsDispatchInfo extends Struct {466 readonly weight: u64;467 readonly class: FrameSupportWeightsDispatchClass;468 readonly paysFee: FrameSupportWeightsPays;469}470471/** @name FrameSupportWeightsPays */472export interface FrameSupportWeightsPays extends Enum {473 readonly isYes: boolean;474 readonly isNo: boolean;475 readonly type: 'Yes' | 'No';476}477478/** @name FrameSupportWeightsPerDispatchClassU32 */479export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {480 readonly normal: u32;481 readonly operational: u32;482 readonly mandatory: u32;483}484485/** @name FrameSupportWeightsPerDispatchClassU64 */486export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {487 readonly normal: u64;488 readonly operational: u64;489 readonly mandatory: u64;490}491492/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */493export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {494 readonly normal: FrameSystemLimitsWeightsPerClass;495 readonly operational: FrameSystemLimitsWeightsPerClass;496 readonly mandatory: FrameSystemLimitsWeightsPerClass;497}498499/** @name FrameSupportWeightsRuntimeDbWeight */500export interface FrameSupportWeightsRuntimeDbWeight extends Struct {501 readonly read: u64;502 readonly write: u64;503}504505/** @name FrameSupportWeightsWeightToFeeCoefficient */506export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {507 readonly coeffInteger: u128;508 readonly coeffFrac: Perbill;509 readonly negative: bool;510 readonly degree: u8;511}512513/** @name FrameSystemAccountInfo */514export interface FrameSystemAccountInfo extends Struct {515 readonly nonce: u32;516 readonly consumers: u32;517 readonly providers: u32;518 readonly sufficients: u32;519 readonly data: PalletBalancesAccountData;520}521522/** @name FrameSystemCall */523export interface FrameSystemCall extends Enum {524 readonly isFillBlock: boolean;525 readonly asFillBlock: {526 readonly ratio: Perbill;527 } & Struct;528 readonly isRemark: boolean;529 readonly asRemark: {530 readonly remark: Bytes;531 } & Struct;532 readonly isSetHeapPages: boolean;533 readonly asSetHeapPages: {534 readonly pages: u64;535 } & Struct;536 readonly isSetCode: boolean;537 readonly asSetCode: {538 readonly code: Bytes;539 } & Struct;540 readonly isSetCodeWithoutChecks: boolean;541 readonly asSetCodeWithoutChecks: {542 readonly code: Bytes;543 } & Struct;544 readonly isSetStorage: boolean;545 readonly asSetStorage: {546 readonly items: Vec<ITuple<[Bytes, Bytes]>>;547 } & Struct;548 readonly isKillStorage: boolean;549 readonly asKillStorage: {550 readonly keys_: Vec<Bytes>;551 } & Struct;552 readonly isKillPrefix: boolean;553 readonly asKillPrefix: {554 readonly prefix: Bytes;555 readonly subkeys: u32;556 } & Struct;557 readonly isRemarkWithEvent: boolean;558 readonly asRemarkWithEvent: {559 readonly remark: Bytes;560 } & Struct;561 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';562}563564/** @name FrameSystemError */565export interface FrameSystemError extends Enum {566 readonly isInvalidSpecName: boolean;567 readonly isSpecVersionNeedsToIncrease: boolean;568 readonly isFailedToExtractRuntimeVersion: boolean;569 readonly isNonDefaultComposite: boolean;570 readonly isNonZeroRefCount: boolean;571 readonly isCallFiltered: boolean;572 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';573}574575/** @name FrameSystemEvent */576export interface FrameSystemEvent extends Enum {577 readonly isExtrinsicSuccess: boolean;578 readonly asExtrinsicSuccess: {579 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;580 } & Struct;581 readonly isExtrinsicFailed: boolean;582 readonly asExtrinsicFailed: {583 readonly dispatchError: SpRuntimeDispatchError;584 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;585 } & Struct;586 readonly isCodeUpdated: boolean;587 readonly isNewAccount: boolean;588 readonly asNewAccount: {589 readonly account: AccountId32;590 } & Struct;591 readonly isKilledAccount: boolean;592 readonly asKilledAccount: {593 readonly account: AccountId32;594 } & Struct;595 readonly isRemarked: boolean;596 readonly asRemarked: {597 readonly sender: AccountId32;598 readonly hash_: H256;599 } & Struct;600 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';601}602603/** @name FrameSystemEventRecord */604export interface FrameSystemEventRecord extends Struct {605 readonly phase: FrameSystemPhase;606 readonly event: Event;607 readonly topics: Vec<H256>;608}609610/** @name FrameSystemExtensionsCheckGenesis */611export interface FrameSystemExtensionsCheckGenesis extends Null {}612613/** @name FrameSystemExtensionsCheckNonce */614export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}615616/** @name FrameSystemExtensionsCheckSpecVersion */617export interface FrameSystemExtensionsCheckSpecVersion extends Null {}618619/** @name FrameSystemExtensionsCheckWeight */620export interface FrameSystemExtensionsCheckWeight extends Null {}621622/** @name FrameSystemLastRuntimeUpgradeInfo */623export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {624 readonly specVersion: Compact<u32>;625 readonly specName: Text;626}627628/** @name FrameSystemLimitsBlockLength */629export interface FrameSystemLimitsBlockLength extends Struct {630 readonly max: FrameSupportWeightsPerDispatchClassU32;631}632633/** @name FrameSystemLimitsBlockWeights */634export interface FrameSystemLimitsBlockWeights extends Struct {635 readonly baseBlock: u64;636 readonly maxBlock: u64;637 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;638}639640/** @name FrameSystemLimitsWeightsPerClass */641export interface FrameSystemLimitsWeightsPerClass extends Struct {642 readonly baseExtrinsic: u64;643 readonly maxExtrinsic: Option<u64>;644 readonly maxTotal: Option<u64>;645 readonly reserved: Option<u64>;646}647648/** @name FrameSystemPhase */649export interface FrameSystemPhase extends Enum {650 readonly isApplyExtrinsic: boolean;651 readonly asApplyExtrinsic: u32;652 readonly isFinalization: boolean;653 readonly isInitialization: boolean;654 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';655}656657/** @name OpalRuntimeRuntime */658export interface OpalRuntimeRuntime extends Null {}659660/** @name OrmlVestingModuleCall */661export interface OrmlVestingModuleCall extends Enum {662 readonly isClaim: boolean;663 readonly isVestedTransfer: boolean;664 readonly asVestedTransfer: {665 readonly dest: MultiAddress;666 readonly schedule: OrmlVestingVestingSchedule;667 } & Struct;668 readonly isUpdateVestingSchedules: boolean;669 readonly asUpdateVestingSchedules: {670 readonly who: MultiAddress;671 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;672 } & Struct;673 readonly isClaimFor: boolean;674 readonly asClaimFor: {675 readonly dest: MultiAddress;676 } & Struct;677 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';678}679680/** @name OrmlVestingModuleError */681export interface OrmlVestingModuleError extends Enum {682 readonly isZeroVestingPeriod: boolean;683 readonly isZeroVestingPeriodCount: boolean;684 readonly isInsufficientBalanceToLock: boolean;685 readonly isTooManyVestingSchedules: boolean;686 readonly isAmountLow: boolean;687 readonly isMaxVestingSchedulesExceeded: boolean;688 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';689}690691/** @name OrmlVestingModuleEvent */692export interface OrmlVestingModuleEvent extends Enum {693 readonly isVestingScheduleAdded: boolean;694 readonly asVestingScheduleAdded: {695 readonly from: AccountId32;696 readonly to: AccountId32;697 readonly vestingSchedule: OrmlVestingVestingSchedule;698 } & Struct;699 readonly isClaimed: boolean;700 readonly asClaimed: {701 readonly who: AccountId32;702 readonly amount: u128;703 } & Struct;704 readonly isVestingSchedulesUpdated: boolean;705 readonly asVestingSchedulesUpdated: {706 readonly who: AccountId32;707 } & Struct;708 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';709}710711/** @name OrmlVestingVestingSchedule */712export interface OrmlVestingVestingSchedule extends Struct {713 readonly start: u32;714 readonly period: u32;715 readonly periodCount: u32;716 readonly perPeriod: Compact<u128>;717}718719/** @name PalletBalancesAccountData */720export interface PalletBalancesAccountData extends Struct {721 readonly free: u128;722 readonly reserved: u128;723 readonly miscFrozen: u128;724 readonly feeFrozen: u128;725}726727/** @name PalletBalancesBalanceLock */728export interface PalletBalancesBalanceLock extends Struct {729 readonly id: U8aFixed;730 readonly amount: u128;731 readonly reasons: PalletBalancesReasons;732}733734/** @name PalletBalancesCall */735export interface PalletBalancesCall extends Enum {736 readonly isTransfer: boolean;737 readonly asTransfer: {738 readonly dest: MultiAddress;739 readonly value: Compact<u128>;740 } & Struct;741 readonly isSetBalance: boolean;742 readonly asSetBalance: {743 readonly who: MultiAddress;744 readonly newFree: Compact<u128>;745 readonly newReserved: Compact<u128>;746 } & Struct;747 readonly isForceTransfer: boolean;748 readonly asForceTransfer: {749 readonly source: MultiAddress;750 readonly dest: MultiAddress;751 readonly value: Compact<u128>;752 } & Struct;753 readonly isTransferKeepAlive: boolean;754 readonly asTransferKeepAlive: {755 readonly dest: MultiAddress;756 readonly value: Compact<u128>;757 } & Struct;758 readonly isTransferAll: boolean;759 readonly asTransferAll: {760 readonly dest: MultiAddress;761 readonly keepAlive: bool;762 } & Struct;763 readonly isForceUnreserve: boolean;764 readonly asForceUnreserve: {765 readonly who: MultiAddress;766 readonly amount: u128;767 } & Struct;768 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';769}770771/** @name PalletBalancesError */772export interface PalletBalancesError extends Enum {773 readonly isVestingBalance: boolean;774 readonly isLiquidityRestrictions: boolean;775 readonly isInsufficientBalance: boolean;776 readonly isExistentialDeposit: boolean;777 readonly isKeepAlive: boolean;778 readonly isExistingVestingSchedule: boolean;779 readonly isDeadAccount: boolean;780 readonly isTooManyReserves: boolean;781 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';782}783784/** @name PalletBalancesEvent */785export interface PalletBalancesEvent extends Enum {786 readonly isEndowed: boolean;787 readonly asEndowed: {788 readonly account: AccountId32;789 readonly freeBalance: u128;790 } & Struct;791 readonly isDustLost: boolean;792 readonly asDustLost: {793 readonly account: AccountId32;794 readonly amount: u128;795 } & Struct;796 readonly isTransfer: boolean;797 readonly asTransfer: {798 readonly from: AccountId32;799 readonly to: AccountId32;800 readonly amount: u128;801 } & Struct;802 readonly isBalanceSet: boolean;803 readonly asBalanceSet: {804 readonly who: AccountId32;805 readonly free: u128;806 readonly reserved: u128;807 } & Struct;808 readonly isReserved: boolean;809 readonly asReserved: {810 readonly who: AccountId32;811 readonly amount: u128;812 } & Struct;813 readonly isUnreserved: boolean;814 readonly asUnreserved: {815 readonly who: AccountId32;816 readonly amount: u128;817 } & Struct;818 readonly isReserveRepatriated: boolean;819 readonly asReserveRepatriated: {820 readonly from: AccountId32;821 readonly to: AccountId32;822 readonly amount: u128;823 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;824 } & Struct;825 readonly isDeposit: boolean;826 readonly asDeposit: {827 readonly who: AccountId32;828 readonly amount: u128;829 } & Struct;830 readonly isWithdraw: boolean;831 readonly asWithdraw: {832 readonly who: AccountId32;833 readonly amount: u128;834 } & Struct;835 readonly isSlashed: boolean;836 readonly asSlashed: {837 readonly who: AccountId32;838 readonly amount: u128;839 } & Struct;840 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';841}842843/** @name PalletBalancesReasons */844export interface PalletBalancesReasons extends Enum {845 readonly isFee: boolean;846 readonly isMisc: boolean;847 readonly isAll: boolean;848 readonly type: 'Fee' | 'Misc' | 'All';849}850851/** @name PalletBalancesReleases */852export interface PalletBalancesReleases extends Enum {853 readonly isV100: boolean;854 readonly isV200: boolean;855 readonly type: 'V100' | 'V200';856}857858/** @name PalletBalancesReserveData */859export interface PalletBalancesReserveData extends Struct {860 readonly id: U8aFixed;861 readonly amount: u128;862}863864/** @name PalletCommonError */865export interface PalletCommonError extends Enum {866 readonly isCollectionNotFound: boolean;867 readonly isMustBeTokenOwner: boolean;868 readonly isNoPermission: boolean;869 readonly isPublicMintingNotAllowed: boolean;870 readonly isAddressNotInAllowlist: boolean;871 readonly isCollectionNameLimitExceeded: boolean;872 readonly isCollectionDescriptionLimitExceeded: boolean;873 readonly isCollectionTokenPrefixLimitExceeded: boolean;874 readonly isTotalCollectionsLimitExceeded: boolean;875 readonly isTokenVariableDataLimitExceeded: boolean;876 readonly isCollectionAdminCountExceeded: boolean;877 readonly isCollectionLimitBoundsExceeded: boolean;878 readonly isOwnerPermissionsCantBeReverted: boolean;879 readonly isTransferNotAllowed: boolean;880 readonly isAccountTokenLimitExceeded: boolean;881 readonly isCollectionTokenLimitExceeded: boolean;882 readonly isMetadataFlagFrozen: boolean;883 readonly isTokenNotFound: boolean;884 readonly isTokenValueTooLow: boolean;885 readonly isApprovedValueTooLow: boolean;886 readonly isCantApproveMoreThanOwned: boolean;887 readonly isAddressIsZero: boolean;888 readonly isUnsupportedOperation: boolean;889 readonly isNotSufficientFounds: boolean;890 readonly isNestingIsDisabled: boolean;891 readonly isOnlyOwnerAllowedToNest: boolean;892 readonly isSourceCollectionIsNotAllowedToNest: boolean;893 readonly isCollectionFieldSizeExceeded: boolean;894 readonly isNoSpaceForProperty: boolean;895 readonly isPropertyLimitReached: boolean;896 readonly isUnableToReadUnboundedKeys: boolean;897 readonly isInvalidCharacterInPropertyKey: boolean;898 readonly isEmptyPropertyKey: boolean;899 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';900}901902/** @name PalletCommonEvent */903export interface PalletCommonEvent extends Enum {904 readonly isCollectionCreated: boolean;905 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;906 readonly isCollectionDestroyed: boolean;907 readonly asCollectionDestroyed: u32;908 readonly isItemCreated: boolean;909 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;910 readonly isItemDestroyed: boolean;911 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;912 readonly isTransfer: boolean;913 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;914 readonly isApproved: boolean;915 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;916 readonly isCollectionPropertySet: boolean;917 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;918 readonly isCollectionPropertyDeleted: boolean;919 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;920 readonly isTokenPropertySet: boolean;921 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;922 readonly isTokenPropertyDeleted: boolean;923 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;924 readonly isPropertyPermissionSet: boolean;925 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;926 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';927}928929/** @name PalletEthereumCall */930export interface PalletEthereumCall extends Enum {931 readonly isTransact: boolean;932 readonly asTransact: {933 readonly transaction: EthereumTransactionTransactionV2;934 } & Struct;935 readonly type: 'Transact';936}937938/** @name PalletEthereumError */939export interface PalletEthereumError extends Enum {940 readonly isInvalidSignature: boolean;941 readonly isPreLogExists: boolean;942 readonly type: 'InvalidSignature' | 'PreLogExists';943}944945/** @name PalletEthereumEvent */946export interface PalletEthereumEvent extends Enum {947 readonly isExecuted: boolean;948 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;949 readonly type: 'Executed';950}951952/** @name PalletEvmAccountBasicCrossAccountIdRepr */953export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {954 readonly isSubstrate: boolean;955 readonly asSubstrate: AccountId32;956 readonly isEthereum: boolean;957 readonly asEthereum: H160;958 readonly type: 'Substrate' | 'Ethereum';959}960961/** @name PalletEvmCall */962export interface PalletEvmCall extends Enum {963 readonly isWithdraw: boolean;964 readonly asWithdraw: {965 readonly address: H160;966 readonly value: u128;967 } & Struct;968 readonly isCall: boolean;969 readonly asCall: {970 readonly source: H160;971 readonly target: H160;972 readonly input: Bytes;973 readonly value: U256;974 readonly gasLimit: u64;975 readonly maxFeePerGas: U256;976 readonly maxPriorityFeePerGas: Option<U256>;977 readonly nonce: Option<U256>;978 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;979 } & Struct;980 readonly isCreate: boolean;981 readonly asCreate: {982 readonly source: H160;983 readonly init: Bytes;984 readonly value: U256;985 readonly gasLimit: u64;986 readonly maxFeePerGas: U256;987 readonly maxPriorityFeePerGas: Option<U256>;988 readonly nonce: Option<U256>;989 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;990 } & Struct;991 readonly isCreate2: boolean;992 readonly asCreate2: {993 readonly source: H160;994 readonly init: Bytes;995 readonly salt: H256;996 readonly value: U256;997 readonly gasLimit: u64;998 readonly maxFeePerGas: U256;999 readonly maxPriorityFeePerGas: Option<U256>;1000 readonly nonce: Option<U256>;1001 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1002 } & Struct;1003 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1004}10051006/** @name PalletEvmCoderSubstrateError */1007export interface PalletEvmCoderSubstrateError extends Enum {1008 readonly isOutOfGas: boolean;1009 readonly isOutOfFund: boolean;1010 readonly type: 'OutOfGas' | 'OutOfFund';1011}10121013/** @name PalletEvmContractHelpersError */1014export interface PalletEvmContractHelpersError extends Enum {1015 readonly isNoPermission: boolean;1016 readonly type: 'NoPermission';1017}10181019/** @name PalletEvmContractHelpersSponsoringModeT */1020export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1021 readonly isDisabled: boolean;1022 readonly isAllowlisted: boolean;1023 readonly isGenerous: boolean;1024 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1025}10261027/** @name PalletEvmError */1028export interface PalletEvmError extends Enum {1029 readonly isBalanceLow: boolean;1030 readonly isFeeOverflow: boolean;1031 readonly isPaymentOverflow: boolean;1032 readonly isWithdrawFailed: boolean;1033 readonly isGasPriceTooLow: boolean;1034 readonly isInvalidNonce: boolean;1035 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';1036}10371038/** @name PalletEvmEvent */1039export interface PalletEvmEvent extends Enum {1040 readonly isLog: boolean;1041 readonly asLog: EthereumLog;1042 readonly isCreated: boolean;1043 readonly asCreated: H160;1044 readonly isCreatedFailed: boolean;1045 readonly asCreatedFailed: H160;1046 readonly isExecuted: boolean;1047 readonly asExecuted: H160;1048 readonly isExecutedFailed: boolean;1049 readonly asExecutedFailed: H160;1050 readonly isBalanceDeposit: boolean;1051 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1052 readonly isBalanceWithdraw: boolean;1053 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1054 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1055}10561057/** @name PalletEvmMigrationCall */1058export interface PalletEvmMigrationCall extends Enum {1059 readonly isBegin: boolean;1060 readonly asBegin: {1061 readonly address: H160;1062 } & Struct;1063 readonly isSetData: boolean;1064 readonly asSetData: {1065 readonly address: H160;1066 readonly data: Vec<ITuple<[H256, H256]>>;1067 } & Struct;1068 readonly isFinish: boolean;1069 readonly asFinish: {1070 readonly address: H160;1071 readonly code: Bytes;1072 } & Struct;1073 readonly type: 'Begin' | 'SetData' | 'Finish';1074}10751076/** @name PalletEvmMigrationError */1077export interface PalletEvmMigrationError extends Enum {1078 readonly isAccountNotEmpty: boolean;1079 readonly isAccountIsNotMigrating: boolean;1080 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';1081}10821083/** @name PalletFungibleError */1084export interface PalletFungibleError extends Enum {1085 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1086 readonly isFungibleItemsHaveNoId: boolean;1087 readonly isFungibleItemsDontHaveData: boolean;1088 readonly isFungibleDisallowsNesting: boolean;1089 readonly isSettingPropertiesNotAllowed: boolean;1090 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1091}10921093/** @name PalletInflationCall */1094export interface PalletInflationCall extends Enum {1095 readonly isStartInflation: boolean;1096 readonly asStartInflation: {1097 readonly inflationStartRelayBlock: u32;1098 } & Struct;1099 readonly type: 'StartInflation';1100}11011102/** @name PalletNonfungibleError */1103export interface PalletNonfungibleError extends Enum {1104 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1105 readonly isNonfungibleItemsHaveNoAmount: boolean;1106 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';1107}11081109/** @name PalletNonfungibleItemData */1110export interface PalletNonfungibleItemData extends Struct {1111 readonly constData: Bytes;1112 readonly variableData: Bytes;1113 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1114}11151116/** @name PalletRefungibleError */1117export interface PalletRefungibleError extends Enum {1118 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1119 readonly isWrongRefungiblePieces: boolean;1120 readonly isRefungibleDisallowsNesting: boolean;1121 readonly isSettingPropertiesNotAllowed: boolean;1122 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1123}11241125/** @name PalletRefungibleItemData */1126export interface PalletRefungibleItemData extends Struct {1127 readonly constData: Bytes;1128 readonly variableData: Bytes;1129}11301131/** @name PalletStructureCall */1132export interface PalletStructureCall extends Null {}11331134/** @name PalletStructureError */1135export interface PalletStructureError extends Enum {1136 readonly isOuroborosDetected: boolean;1137 readonly isDepthLimit: boolean;1138 readonly isTokenNotFound: boolean;1139 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';1140}11411142/** @name PalletStructureEvent */1143export interface PalletStructureEvent extends Enum {1144 readonly isExecuted: boolean;1145 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1146 readonly type: 'Executed';1147}11481149/** @name PalletSudoCall */1150export interface PalletSudoCall extends Enum {1151 readonly isSudo: boolean;1152 readonly asSudo: {1153 readonly call: Call;1154 } & Struct;1155 readonly isSudoUncheckedWeight: boolean;1156 readonly asSudoUncheckedWeight: {1157 readonly call: Call;1158 readonly weight: u64;1159 } & Struct;1160 readonly isSetKey: boolean;1161 readonly asSetKey: {1162 readonly new_: MultiAddress;1163 } & Struct;1164 readonly isSudoAs: boolean;1165 readonly asSudoAs: {1166 readonly who: MultiAddress;1167 readonly call: Call;1168 } & Struct;1169 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1170}11711172/** @name PalletSudoError */1173export interface PalletSudoError extends Enum {1174 readonly isRequireSudo: boolean;1175 readonly type: 'RequireSudo';1176}11771178/** @name PalletSudoEvent */1179export interface PalletSudoEvent extends Enum {1180 readonly isSudid: boolean;1181 readonly asSudid: {1182 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1183 } & Struct;1184 readonly isKeyChanged: boolean;1185 readonly asKeyChanged: {1186 readonly oldSudoer: Option<AccountId32>;1187 } & Struct;1188 readonly isSudoAsDone: boolean;1189 readonly asSudoAsDone: {1190 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1191 } & Struct;1192 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1193}11941195/** @name PalletTemplateTransactionPaymentCall */1196export interface PalletTemplateTransactionPaymentCall extends Null {}11971198/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1199export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}12001201/** @name PalletTimestampCall */1202export interface PalletTimestampCall extends Enum {1203 readonly isSet: boolean;1204 readonly asSet: {1205 readonly now: Compact<u64>;1206 } & Struct;1207 readonly type: 'Set';1208}12091210/** @name PalletTransactionPaymentReleases */1211export interface PalletTransactionPaymentReleases extends Enum {1212 readonly isV1Ancient: boolean;1213 readonly isV2: boolean;1214 readonly type: 'V1Ancient' | 'V2';1215}12161217/** @name PalletTreasuryCall */1218export interface PalletTreasuryCall extends Enum {1219 readonly isProposeSpend: boolean;1220 readonly asProposeSpend: {1221 readonly value: Compact<u128>;1222 readonly beneficiary: MultiAddress;1223 } & Struct;1224 readonly isRejectProposal: boolean;1225 readonly asRejectProposal: {1226 readonly proposalId: Compact<u32>;1227 } & Struct;1228 readonly isApproveProposal: boolean;1229 readonly asApproveProposal: {1230 readonly proposalId: Compact<u32>;1231 } & Struct;1232 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';1233}12341235/** @name PalletTreasuryError */1236export interface PalletTreasuryError extends Enum {1237 readonly isInsufficientProposersBalance: boolean;1238 readonly isInvalidIndex: boolean;1239 readonly isTooManyApprovals: boolean;1240 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';1241}12421243/** @name PalletTreasuryEvent */1244export interface PalletTreasuryEvent extends Enum {1245 readonly isProposed: boolean;1246 readonly asProposed: {1247 readonly proposalIndex: u32;1248 } & Struct;1249 readonly isSpending: boolean;1250 readonly asSpending: {1251 readonly budgetRemaining: u128;1252 } & Struct;1253 readonly isAwarded: boolean;1254 readonly asAwarded: {1255 readonly proposalIndex: u32;1256 readonly award: u128;1257 readonly account: AccountId32;1258 } & Struct;1259 readonly isRejected: boolean;1260 readonly asRejected: {1261 readonly proposalIndex: u32;1262 readonly slashed: u128;1263 } & Struct;1264 readonly isBurnt: boolean;1265 readonly asBurnt: {1266 readonly burntFunds: u128;1267 } & Struct;1268 readonly isRollover: boolean;1269 readonly asRollover: {1270 readonly rolloverBalance: u128;1271 } & Struct;1272 readonly isDeposit: boolean;1273 readonly asDeposit: {1274 readonly value: u128;1275 } & Struct;1276 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';1277}12781279/** @name PalletTreasuryProposal */1280export interface PalletTreasuryProposal extends Struct {1281 readonly proposer: AccountId32;1282 readonly value: u128;1283 readonly beneficiary: AccountId32;1284 readonly bond: u128;1285}12861287/** @name PalletUniqueCall */1288export interface PalletUniqueCall extends Enum {1289 readonly isCreateCollection: boolean;1290 readonly asCreateCollection: {1291 readonly collectionName: Vec<u16>;1292 readonly collectionDescription: Vec<u16>;1293 readonly tokenPrefix: Bytes;1294 readonly mode: UpDataStructsCollectionMode;1295 } & Struct;1296 readonly isCreateCollectionEx: boolean;1297 readonly asCreateCollectionEx: {1298 readonly data: UpDataStructsCreateCollectionData;1299 } & Struct;1300 readonly isDestroyCollection: boolean;1301 readonly asDestroyCollection: {1302 readonly collectionId: u32;1303 } & Struct;1304 readonly isAddToAllowList: boolean;1305 readonly asAddToAllowList: {1306 readonly collectionId: u32;1307 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1308 } & Struct;1309 readonly isRemoveFromAllowList: boolean;1310 readonly asRemoveFromAllowList: {1311 readonly collectionId: u32;1312 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1313 } & Struct;1314 readonly isSetPublicAccessMode: boolean;1315 readonly asSetPublicAccessMode: {1316 readonly collectionId: u32;1317 readonly mode: UpDataStructsAccessMode;1318 } & Struct;1319 readonly isSetMintPermission: boolean;1320 readonly asSetMintPermission: {1321 readonly collectionId: u32;1322 readonly mintPermission: bool;1323 } & Struct;1324 readonly isChangeCollectionOwner: boolean;1325 readonly asChangeCollectionOwner: {1326 readonly collectionId: u32;1327 readonly newOwner: AccountId32;1328 } & Struct;1329 readonly isAddCollectionAdmin: boolean;1330 readonly asAddCollectionAdmin: {1331 readonly collectionId: u32;1332 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1333 } & Struct;1334 readonly isRemoveCollectionAdmin: boolean;1335 readonly asRemoveCollectionAdmin: {1336 readonly collectionId: u32;1337 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1338 } & Struct;1339 readonly isSetCollectionSponsor: boolean;1340 readonly asSetCollectionSponsor: {1341 readonly collectionId: u32;1342 readonly newSponsor: AccountId32;1343 } & Struct;1344 readonly isConfirmSponsorship: boolean;1345 readonly asConfirmSponsorship: {1346 readonly collectionId: u32;1347 } & Struct;1348 readonly isRemoveCollectionSponsor: boolean;1349 readonly asRemoveCollectionSponsor: {1350 readonly collectionId: u32;1351 } & Struct;1352 readonly isCreateItem: boolean;1353 readonly asCreateItem: {1354 readonly collectionId: u32;1355 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1356 readonly data: UpDataStructsCreateItemData;1357 } & Struct;1358 readonly isCreateMultipleItems: boolean;1359 readonly asCreateMultipleItems: {1360 readonly collectionId: u32;1361 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1362 readonly itemsData: Vec<UpDataStructsCreateItemData>;1363 } & Struct;1364 readonly isSetCollectionProperties: boolean;1365 readonly asSetCollectionProperties: {1366 readonly collectionId: u32;1367 readonly properties: Vec<UpDataStructsProperty>;1368 } & Struct;1369 readonly isDeleteCollectionProperties: boolean;1370 readonly asDeleteCollectionProperties: {1371 readonly collectionId: u32;1372 readonly propertyKeys: Vec<Bytes>;1373 } & Struct;1374 readonly isSetTokenProperties: boolean;1375 readonly asSetTokenProperties: {1376 readonly collectionId: u32;1377 readonly tokenId: u32;1378 readonly properties: Vec<UpDataStructsProperty>;1379 } & Struct;1380 readonly isDeleteTokenProperties: boolean;1381 readonly asDeleteTokenProperties: {1382 readonly collectionId: u32;1383 readonly tokenId: u32;1384 readonly propertyKeys: Vec<Bytes>;1385 } & Struct;1386 readonly isSetPropertyPermissions: boolean;1387 readonly asSetPropertyPermissions: {1388 readonly collectionId: u32;1389 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1390 } & Struct;1391 readonly isCreateMultipleItemsEx: boolean;1392 readonly asCreateMultipleItemsEx: {1393 readonly collectionId: u32;1394 readonly data: UpDataStructsCreateItemExData;1395 } & Struct;1396 readonly isSetTransfersEnabledFlag: boolean;1397 readonly asSetTransfersEnabledFlag: {1398 readonly collectionId: u32;1399 readonly value: bool;1400 } & Struct;1401 readonly isBurnItem: boolean;1402 readonly asBurnItem: {1403 readonly collectionId: u32;1404 readonly itemId: u32;1405 readonly value: u128;1406 } & Struct;1407 readonly isBurnFrom: boolean;1408 readonly asBurnFrom: {1409 readonly collectionId: u32;1410 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1411 readonly itemId: u32;1412 readonly value: u128;1413 } & Struct;1414 readonly isTransfer: boolean;1415 readonly asTransfer: {1416 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1417 readonly collectionId: u32;1418 readonly itemId: u32;1419 readonly value: u128;1420 } & Struct;1421 readonly isApprove: boolean;1422 readonly asApprove: {1423 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1424 readonly collectionId: u32;1425 readonly itemId: u32;1426 readonly amount: u128;1427 } & Struct;1428 readonly isTransferFrom: boolean;1429 readonly asTransferFrom: {1430 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1431 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1432 readonly collectionId: u32;1433 readonly itemId: u32;1434 readonly value: u128;1435 } & Struct;1436 readonly isSetVariableMetaData: boolean;1437 readonly asSetVariableMetaData: {1438 readonly collectionId: u32;1439 readonly itemId: u32;1440 readonly data: Bytes;1441 } & Struct;1442 readonly isSetMetaUpdatePermissionFlag: boolean;1443 readonly asSetMetaUpdatePermissionFlag: {1444 readonly collectionId: u32;1445 readonly value: UpDataStructsMetaUpdatePermission;1446 } & Struct;1447 readonly isSetSchemaVersion: boolean;1448 readonly asSetSchemaVersion: {1449 readonly collectionId: u32;1450 readonly version: UpDataStructsSchemaVersion;1451 } & Struct;1452 readonly isSetOffchainSchema: boolean;1453 readonly asSetOffchainSchema: {1454 readonly collectionId: u32;1455 readonly schema: Bytes;1456 } & Struct;1457 readonly isSetConstOnChainSchema: boolean;1458 readonly asSetConstOnChainSchema: {1459 readonly collectionId: u32;1460 readonly schema: Bytes;1461 } & Struct;1462 readonly isSetCollectionLimits: boolean;1463 readonly asSetCollectionLimits: {1464 readonly collectionId: u32;1465 readonly newLimit: UpDataStructsCollectionLimits;1466 } & Struct;1467 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';1468}14691470/** @name PalletUniqueError */1471export interface PalletUniqueError extends Enum {1472 readonly isCollectionDecimalPointLimitExceeded: boolean;1473 readonly isConfirmUnsetSponsorFail: boolean;1474 readonly isEmptyArgument: boolean;1475 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';1476}14771478/** @name PalletUniqueRawEvent */1479export interface PalletUniqueRawEvent extends Enum {1480 readonly isCollectionSponsorRemoved: boolean;1481 readonly asCollectionSponsorRemoved: u32;1482 readonly isCollectionAdminAdded: boolean;1483 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1484 readonly isCollectionOwnedChanged: boolean;1485 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1486 readonly isCollectionSponsorSet: boolean;1487 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1488 readonly isConstOnChainSchemaSet: boolean;1489 readonly asConstOnChainSchemaSet: u32;1490 readonly isSponsorshipConfirmed: boolean;1491 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1492 readonly isCollectionAdminRemoved: boolean;1493 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1494 readonly isAllowListAddressRemoved: boolean;1495 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1496 readonly isAllowListAddressAdded: boolean;1497 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1498 readonly isCollectionLimitSet: boolean;1499 readonly asCollectionLimitSet: u32;1500 readonly isMintPermissionSet: boolean;1501 readonly asMintPermissionSet: u32;1502 readonly isOffchainSchemaSet: boolean;1503 readonly asOffchainSchemaSet: u32;1504 readonly isPublicAccessModeSet: boolean;1505 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;1506 readonly isSchemaVersionSet: boolean;1507 readonly asSchemaVersionSet: u32;1508 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';1509}15101511/** @name PalletXcmCall */1512export interface PalletXcmCall extends Enum {1513 readonly isSend: boolean;1514 readonly asSend: {1515 readonly dest: XcmVersionedMultiLocation;1516 readonly message: XcmVersionedXcm;1517 } & Struct;1518 readonly isTeleportAssets: boolean;1519 readonly asTeleportAssets: {1520 readonly dest: XcmVersionedMultiLocation;1521 readonly beneficiary: XcmVersionedMultiLocation;1522 readonly assets: XcmVersionedMultiAssets;1523 readonly feeAssetItem: u32;1524 } & Struct;1525 readonly isReserveTransferAssets: boolean;1526 readonly asReserveTransferAssets: {1527 readonly dest: XcmVersionedMultiLocation;1528 readonly beneficiary: XcmVersionedMultiLocation;1529 readonly assets: XcmVersionedMultiAssets;1530 readonly feeAssetItem: u32;1531 } & Struct;1532 readonly isExecute: boolean;1533 readonly asExecute: {1534 readonly message: XcmVersionedXcm;1535 readonly maxWeight: u64;1536 } & Struct;1537 readonly isForceXcmVersion: boolean;1538 readonly asForceXcmVersion: {1539 readonly location: XcmV1MultiLocation;1540 readonly xcmVersion: u32;1541 } & Struct;1542 readonly isForceDefaultXcmVersion: boolean;1543 readonly asForceDefaultXcmVersion: {1544 readonly maybeXcmVersion: Option<u32>;1545 } & Struct;1546 readonly isForceSubscribeVersionNotify: boolean;1547 readonly asForceSubscribeVersionNotify: {1548 readonly location: XcmVersionedMultiLocation;1549 } & Struct;1550 readonly isForceUnsubscribeVersionNotify: boolean;1551 readonly asForceUnsubscribeVersionNotify: {1552 readonly location: XcmVersionedMultiLocation;1553 } & Struct;1554 readonly isLimitedReserveTransferAssets: boolean;1555 readonly asLimitedReserveTransferAssets: {1556 readonly dest: XcmVersionedMultiLocation;1557 readonly beneficiary: XcmVersionedMultiLocation;1558 readonly assets: XcmVersionedMultiAssets;1559 readonly feeAssetItem: u32;1560 readonly weightLimit: XcmV2WeightLimit;1561 } & Struct;1562 readonly isLimitedTeleportAssets: boolean;1563 readonly asLimitedTeleportAssets: {1564 readonly dest: XcmVersionedMultiLocation;1565 readonly beneficiary: XcmVersionedMultiLocation;1566 readonly assets: XcmVersionedMultiAssets;1567 readonly feeAssetItem: u32;1568 readonly weightLimit: XcmV2WeightLimit;1569 } & Struct;1570 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1571}15721573/** @name PalletXcmError */1574export interface PalletXcmError extends Enum {1575 readonly isUnreachable: boolean;1576 readonly isSendFailure: boolean;1577 readonly isFiltered: boolean;1578 readonly isUnweighableMessage: boolean;1579 readonly isDestinationNotInvertible: boolean;1580 readonly isEmpty: boolean;1581 readonly isCannotReanchor: boolean;1582 readonly isTooManyAssets: boolean;1583 readonly isInvalidOrigin: boolean;1584 readonly isBadVersion: boolean;1585 readonly isBadLocation: boolean;1586 readonly isNoSubscription: boolean;1587 readonly isAlreadySubscribed: boolean;1588 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';1589}15901591/** @name PalletXcmEvent */1592export interface PalletXcmEvent extends Enum {1593 readonly isAttempted: boolean;1594 readonly asAttempted: XcmV2TraitsOutcome;1595 readonly isSent: boolean;1596 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;1597 readonly isUnexpectedResponse: boolean;1598 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;1599 readonly isResponseReady: boolean;1600 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;1601 readonly isNotified: boolean;1602 readonly asNotified: ITuple<[u64, u8, u8]>;1603 readonly isNotifyOverweight: boolean;1604 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;1605 readonly isNotifyDispatchError: boolean;1606 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;1607 readonly isNotifyDecodeFailed: boolean;1608 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;1609 readonly isInvalidResponder: boolean;1610 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;1611 readonly isInvalidResponderVersion: boolean;1612 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;1613 readonly isResponseTaken: boolean;1614 readonly asResponseTaken: u64;1615 readonly isAssetsTrapped: boolean;1616 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;1617 readonly isVersionChangeNotified: boolean;1618 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;1619 readonly isSupportedVersionChanged: boolean;1620 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;1621 readonly isNotifyTargetSendFail: boolean;1622 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;1623 readonly isNotifyTargetMigrationFail: boolean;1624 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;1625 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1626}16271628/** @name PhantomTypeUpDataStructsRpcCollection */1629export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup333> {}16301631/** @name PhantomTypeUpDataStructsTokenData */1632export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup329> {}16331634/** @name PolkadotCorePrimitivesInboundDownwardMessage */1635export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1636 readonly sentAt: u32;1637 readonly msg: Bytes;1638}16391640/** @name PolkadotCorePrimitivesInboundHrmpMessage */1641export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1642 readonly sentAt: u32;1643 readonly data: Bytes;1644}16451646/** @name PolkadotCorePrimitivesOutboundHrmpMessage */1647export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1648 readonly recipient: u32;1649 readonly data: Bytes;1650}16511652/** @name PolkadotParachainPrimitivesXcmpMessageFormat */1653export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {1654 readonly isConcatenatedVersionedXcm: boolean;1655 readonly isConcatenatedEncodedBlob: boolean;1656 readonly isSignals: boolean;1657 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';1658}16591660/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */1661export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1662 readonly maxCodeSize: u32;1663 readonly maxHeadDataSize: u32;1664 readonly maxUpwardQueueCount: u32;1665 readonly maxUpwardQueueSize: u32;1666 readonly maxUpwardMessageSize: u32;1667 readonly maxUpwardMessageNumPerCandidate: u32;1668 readonly hrmpMaxMessageNumPerCandidate: u32;1669 readonly validationUpgradeCooldown: u32;1670 readonly validationUpgradeDelay: u32;1671}16721673/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */1674export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1675 readonly maxCapacity: u32;1676 readonly maxTotalSize: u32;1677 readonly maxMessageSize: u32;1678 readonly msgCount: u32;1679 readonly totalSize: u32;1680 readonly mqcHead: Option<H256>;1681}16821683/** @name PolkadotPrimitivesV2PersistedValidationData */1684export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1685 readonly parentHead: Bytes;1686 readonly relayParentNumber: u32;1687 readonly relayParentStorageRoot: H256;1688 readonly maxPovSize: u32;1689}16901691/** @name PolkadotPrimitivesV2UpgradeRestriction */1692export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1693 readonly isPresent: boolean;1694 readonly type: 'Present';1695}16961697/** @name SpCoreEcdsaSignature */1698export interface SpCoreEcdsaSignature extends U8aFixed {}16991700/** @name SpCoreEd25519Signature */1701export interface SpCoreEd25519Signature extends U8aFixed {}17021703/** @name SpCoreSr25519Signature */1704export interface SpCoreSr25519Signature extends U8aFixed {}17051706/** @name SpRuntimeArithmeticError */1707export interface SpRuntimeArithmeticError extends Enum {1708 readonly isUnderflow: boolean;1709 readonly isOverflow: boolean;1710 readonly isDivisionByZero: boolean;1711 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1712}17131714/** @name SpRuntimeDigest */1715export interface SpRuntimeDigest extends Struct {1716 readonly logs: Vec<SpRuntimeDigestDigestItem>;1717}17181719/** @name SpRuntimeDigestDigestItem */1720export interface SpRuntimeDigestDigestItem extends Enum {1721 readonly isOther: boolean;1722 readonly asOther: Bytes;1723 readonly isConsensus: boolean;1724 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;1725 readonly isSeal: boolean;1726 readonly asSeal: ITuple<[U8aFixed, Bytes]>;1727 readonly isPreRuntime: boolean;1728 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;1729 readonly isRuntimeEnvironmentUpdated: boolean;1730 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1731}17321733/** @name SpRuntimeDispatchError */1734export interface SpRuntimeDispatchError extends Enum {1735 readonly isOther: boolean;1736 readonly isCannotLookup: boolean;1737 readonly isBadOrigin: boolean;1738 readonly isModule: boolean;1739 readonly asModule: SpRuntimeModuleError;1740 readonly isConsumerRemaining: boolean;1741 readonly isNoProviders: boolean;1742 readonly isTooManyConsumers: boolean;1743 readonly isToken: boolean;1744 readonly asToken: SpRuntimeTokenError;1745 readonly isArithmetic: boolean;1746 readonly asArithmetic: SpRuntimeArithmeticError;1747 readonly isTransactional: boolean;1748 readonly asTransactional: SpRuntimeTransactionalError;1749 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1750}17511752/** @name SpRuntimeModuleError */1753export interface SpRuntimeModuleError extends Struct {1754 readonly index: u8;1755 readonly error: U8aFixed;1756}17571758/** @name SpRuntimeMultiSignature */1759export interface SpRuntimeMultiSignature extends Enum {1760 readonly isEd25519: boolean;1761 readonly asEd25519: SpCoreEd25519Signature;1762 readonly isSr25519: boolean;1763 readonly asSr25519: SpCoreSr25519Signature;1764 readonly isEcdsa: boolean;1765 readonly asEcdsa: SpCoreEcdsaSignature;1766 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';1767}17681769/** @name SpRuntimeTokenError */1770export interface SpRuntimeTokenError extends Enum {1771 readonly isNoFunds: boolean;1772 readonly isWouldDie: boolean;1773 readonly isBelowMinimum: boolean;1774 readonly isCannotCreate: boolean;1775 readonly isUnknownAsset: boolean;1776 readonly isFrozen: boolean;1777 readonly isUnsupported: boolean;1778 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1779}17801781/** @name SpRuntimeTransactionalError */1782export interface SpRuntimeTransactionalError extends Enum {1783 readonly isLimitReached: boolean;1784 readonly isNoLayer: boolean;1785 readonly type: 'LimitReached' | 'NoLayer';1786}17871788/** @name SpTrieStorageProof */1789export interface SpTrieStorageProof extends Struct {1790 readonly trieNodes: BTreeSet<Bytes>;1791}17921793/** @name SpVersionRuntimeVersion */1794export interface SpVersionRuntimeVersion extends Struct {1795 readonly specName: Text;1796 readonly implName: Text;1797 readonly authoringVersion: u32;1798 readonly specVersion: u32;1799 readonly implVersion: u32;1800 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1801 readonly transactionVersion: u32;1802 readonly stateVersion: u8;1803}18041805/** @name UpDataStructsAccessMode */1806export interface UpDataStructsAccessMode extends Enum {1807 readonly isNormal: boolean;1808 readonly isAllowList: boolean;1809 readonly type: 'Normal' | 'AllowList';1810}18111812/** @name UpDataStructsCollection */1813export interface UpDataStructsCollection extends Struct {1814 readonly owner: AccountId32;1815 readonly mode: UpDataStructsCollectionMode;1816 readonly access: UpDataStructsAccessMode;1817 readonly name: Vec<u16>;1818 readonly description: Vec<u16>;1819 readonly tokenPrefix: Bytes;1820 readonly mintMode: bool;1821 readonly schemaVersion: UpDataStructsSchemaVersion;1822 readonly sponsorship: UpDataStructsSponsorshipState;1823 readonly limits: UpDataStructsCollectionLimits;1824 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;1825}18261827/** @name UpDataStructsCollectionField */1828export interface UpDataStructsCollectionField extends Enum {1829 readonly isConstOnChainSchema: boolean;1830 readonly isOffchainSchema: boolean;1831 readonly type: 'ConstOnChainSchema' | 'OffchainSchema';1832}18331834/** @name UpDataStructsCollectionLimits */1835export interface UpDataStructsCollectionLimits extends Struct {1836 readonly accountTokenOwnershipLimit: Option<u32>;1837 readonly sponsoredDataSize: Option<u32>;1838 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1839 readonly tokenLimit: Option<u32>;1840 readonly sponsorTransferTimeout: Option<u32>;1841 readonly sponsorApproveTimeout: Option<u32>;1842 readonly ownerCanTransfer: Option<bool>;1843 readonly ownerCanDestroy: Option<bool>;1844 readonly transfersEnabled: Option<bool>;1845 readonly nestingRule: Option<UpDataStructsNestingRule>;1846}18471848/** @name UpDataStructsCollectionMode */1849export interface UpDataStructsCollectionMode extends Enum {1850 readonly isNft: boolean;1851 readonly isFungible: boolean;1852 readonly asFungible: u8;1853 readonly isReFungible: boolean;1854 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1855}18561857/** @name UpDataStructsCollectionStats */1858export interface UpDataStructsCollectionStats extends Struct {1859 readonly created: u32;1860 readonly destroyed: u32;1861 readonly alive: u32;1862}18631864/** @name UpDataStructsCreateCollectionData */1865export interface UpDataStructsCreateCollectionData extends Struct {1866 readonly mode: UpDataStructsCollectionMode;1867 readonly access: Option<UpDataStructsAccessMode>;1868 readonly name: Vec<u16>;1869 readonly description: Vec<u16>;1870 readonly tokenPrefix: Bytes;1871 readonly offchainSchema: Bytes;1872 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1873 readonly pendingSponsor: Option<AccountId32>;1874 readonly limits: Option<UpDataStructsCollectionLimits>;1875 readonly constOnChainSchema: Bytes;1876 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1877 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1878 readonly properties: Vec<UpDataStructsProperty>;1879}18801881/** @name UpDataStructsCreateFungibleData */1882export interface UpDataStructsCreateFungibleData extends Struct {1883 readonly value: u128;1884}18851886/** @name UpDataStructsCreateItemData */1887export interface UpDataStructsCreateItemData extends Enum {1888 readonly isNft: boolean;1889 readonly asNft: UpDataStructsCreateNftData;1890 readonly isFungible: boolean;1891 readonly asFungible: UpDataStructsCreateFungibleData;1892 readonly isReFungible: boolean;1893 readonly asReFungible: UpDataStructsCreateReFungibleData;1894 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1895}18961897/** @name UpDataStructsCreateItemExData */1898export interface UpDataStructsCreateItemExData extends Enum {1899 readonly isNft: boolean;1900 readonly asNft: Vec<UpDataStructsCreateNftExData>;1901 readonly isFungible: boolean;1902 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;1903 readonly isRefungibleMultipleItems: boolean;1904 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;1905 readonly isRefungibleMultipleOwners: boolean;1906 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;1907 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1908}19091910/** @name UpDataStructsCreateNftData */1911export interface UpDataStructsCreateNftData extends Struct {1912 readonly constData: Bytes;1913 readonly variableData: Bytes;1914 readonly properties: Vec<UpDataStructsProperty>;1915}19161917/** @name UpDataStructsCreateNftExData */1918export interface UpDataStructsCreateNftExData extends Struct {1919 readonly constData: Bytes;1920 readonly variableData: Bytes;1921 readonly properties: Vec<UpDataStructsProperty>;1922 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1923}19241925/** @name UpDataStructsCreateReFungibleData */1926export interface UpDataStructsCreateReFungibleData extends Struct {1927 readonly constData: Bytes;1928 readonly variableData: Bytes;1929 readonly pieces: u128;1930}19311932/** @name UpDataStructsCreateRefungibleExData */1933export interface UpDataStructsCreateRefungibleExData extends Struct {1934 readonly constData: Bytes;1935 readonly variableData: Bytes;1936 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1937}19381939/** @name UpDataStructsMetaUpdatePermission */1940export interface UpDataStructsMetaUpdatePermission extends Enum {1941 readonly isItemOwner: boolean;1942 readonly isAdmin: boolean;1943 readonly isNone: boolean;1944 readonly type: 'ItemOwner' | 'Admin' | 'None';1945}19461947/** @name UpDataStructsNestingRule */1948export interface UpDataStructsNestingRule extends Enum {1949 readonly isDisabled: boolean;1950 readonly isOwner: boolean;1951 readonly isOwnerRestricted: boolean;1952 readonly asOwnerRestricted: BTreeSet<u32>;1953 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';1954}19551956/** @name UpDataStructsProperties */1957export interface UpDataStructsProperties extends Struct {1958 readonly map: UpDataStructsPropertiesMapBoundedVec;1959 readonly consumedSpace: u32;1960 readonly spaceLimit: u32;1961}19621963/** @name UpDataStructsPropertiesMapBoundedVec */1964export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}19651966/** @name UpDataStructsPropertiesMapPropertyPermission */1967export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}19681969/** @name UpDataStructsProperty */1970export interface UpDataStructsProperty extends Struct {1971 readonly key: Bytes;1972 readonly value: Bytes;1973}19741975/** @name UpDataStructsPropertyKeyPermission */1976export interface UpDataStructsPropertyKeyPermission extends Struct {1977 readonly key: Bytes;1978 readonly permission: UpDataStructsPropertyPermission;1979}19801981/** @name UpDataStructsPropertyPermission */1982export interface UpDataStructsPropertyPermission extends Struct {1983 readonly mutable: bool;1984 readonly collectionAdmin: bool;1985 readonly tokenOwner: bool;1986}19871988/** @name UpDataStructsRpcCollection */1989export interface UpDataStructsRpcCollection extends Struct {1990 readonly owner: AccountId32;1991 readonly mode: UpDataStructsCollectionMode;1992 readonly access: UpDataStructsAccessMode;1993 readonly name: Vec<u16>;1994 readonly description: Vec<u16>;1995 readonly tokenPrefix: Bytes;1996 readonly mintMode: bool;1997 readonly offchainSchema: Bytes;1998 readonly schemaVersion: UpDataStructsSchemaVersion;1999 readonly sponsorship: UpDataStructsSponsorshipState;2000 readonly limits: UpDataStructsCollectionLimits;2001 readonly constOnChainSchema: Bytes;2002 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2003 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2004 readonly properties: Vec<UpDataStructsProperty>;2005}20062007/** @name UpDataStructsSchemaVersion */2008export interface UpDataStructsSchemaVersion extends Enum {2009 readonly isImageURL: boolean;2010 readonly isUnique: boolean;2011 readonly type: 'ImageURL' | 'Unique';2012}20132014/** @name UpDataStructsSponsoringRateLimit */2015export interface UpDataStructsSponsoringRateLimit extends Enum {2016 readonly isSponsoringDisabled: boolean;2017 readonly isBlocks: boolean;2018 readonly asBlocks: u32;2019 readonly type: 'SponsoringDisabled' | 'Blocks';2020}20212022/** @name UpDataStructsSponsorshipState */2023export interface UpDataStructsSponsorshipState extends Enum {2024 readonly isDisabled: boolean;2025 readonly isUnconfirmed: boolean;2026 readonly asUnconfirmed: AccountId32;2027 readonly isConfirmed: boolean;2028 readonly asConfirmed: AccountId32;2029 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2030}20312032/** @name UpDataStructsTokenData */2033export interface UpDataStructsTokenData extends Struct {2034 readonly constData: Bytes;2035 readonly properties: Vec<UpDataStructsProperty>;2036 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2037}20382039/** @name XcmDoubleEncoded */2040export interface XcmDoubleEncoded extends Struct {2041 readonly encoded: Bytes;2042}20432044/** @name XcmV0Junction */2045export interface XcmV0Junction extends Enum {2046 readonly isParent: boolean;2047 readonly isParachain: boolean;2048 readonly asParachain: Compact<u32>;2049 readonly isAccountId32: boolean;2050 readonly asAccountId32: {2051 readonly network: XcmV0JunctionNetworkId;2052 readonly id: U8aFixed;2053 } & Struct;2054 readonly isAccountIndex64: boolean;2055 readonly asAccountIndex64: {2056 readonly network: XcmV0JunctionNetworkId;2057 readonly index: Compact<u64>;2058 } & Struct;2059 readonly isAccountKey20: boolean;2060 readonly asAccountKey20: {2061 readonly network: XcmV0JunctionNetworkId;2062 readonly key: U8aFixed;2063 } & Struct;2064 readonly isPalletInstance: boolean;2065 readonly asPalletInstance: u8;2066 readonly isGeneralIndex: boolean;2067 readonly asGeneralIndex: Compact<u128>;2068 readonly isGeneralKey: boolean;2069 readonly asGeneralKey: Bytes;2070 readonly isOnlyChild: boolean;2071 readonly isPlurality: boolean;2072 readonly asPlurality: {2073 readonly id: XcmV0JunctionBodyId;2074 readonly part: XcmV0JunctionBodyPart;2075 } & Struct;2076 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2077}20782079/** @name XcmV0JunctionBodyId */2080export interface XcmV0JunctionBodyId extends Enum {2081 readonly isUnit: boolean;2082 readonly isNamed: boolean;2083 readonly asNamed: Bytes;2084 readonly isIndex: boolean;2085 readonly asIndex: Compact<u32>;2086 readonly isExecutive: boolean;2087 readonly isTechnical: boolean;2088 readonly isLegislative: boolean;2089 readonly isJudicial: boolean;2090 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';2091}20922093/** @name XcmV0JunctionBodyPart */2094export interface XcmV0JunctionBodyPart extends Enum {2095 readonly isVoice: boolean;2096 readonly isMembers: boolean;2097 readonly asMembers: {2098 readonly count: Compact<u32>;2099 } & Struct;2100 readonly isFraction: boolean;2101 readonly asFraction: {2102 readonly nom: Compact<u32>;2103 readonly denom: Compact<u32>;2104 } & Struct;2105 readonly isAtLeastProportion: boolean;2106 readonly asAtLeastProportion: {2107 readonly nom: Compact<u32>;2108 readonly denom: Compact<u32>;2109 } & Struct;2110 readonly isMoreThanProportion: boolean;2111 readonly asMoreThanProportion: {2112 readonly nom: Compact<u32>;2113 readonly denom: Compact<u32>;2114 } & Struct;2115 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';2116}21172118/** @name XcmV0JunctionNetworkId */2119export interface XcmV0JunctionNetworkId extends Enum {2120 readonly isAny: boolean;2121 readonly isNamed: boolean;2122 readonly asNamed: Bytes;2123 readonly isPolkadot: boolean;2124 readonly isKusama: boolean;2125 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';2126}21272128/** @name XcmV0MultiAsset */2129export interface XcmV0MultiAsset extends Enum {2130 readonly isNone: boolean;2131 readonly isAll: boolean;2132 readonly isAllFungible: boolean;2133 readonly isAllNonFungible: boolean;2134 readonly isAllAbstractFungible: boolean;2135 readonly asAllAbstractFungible: {2136 readonly id: Bytes;2137 } & Struct;2138 readonly isAllAbstractNonFungible: boolean;2139 readonly asAllAbstractNonFungible: {2140 readonly class: Bytes;2141 } & Struct;2142 readonly isAllConcreteFungible: boolean;2143 readonly asAllConcreteFungible: {2144 readonly id: XcmV0MultiLocation;2145 } & Struct;2146 readonly isAllConcreteNonFungible: boolean;2147 readonly asAllConcreteNonFungible: {2148 readonly class: XcmV0MultiLocation;2149 } & Struct;2150 readonly isAbstractFungible: boolean;2151 readonly asAbstractFungible: {2152 readonly id: Bytes;2153 readonly amount: Compact<u128>;2154 } & Struct;2155 readonly isAbstractNonFungible: boolean;2156 readonly asAbstractNonFungible: {2157 readonly class: Bytes;2158 readonly instance: XcmV1MultiassetAssetInstance;2159 } & Struct;2160 readonly isConcreteFungible: boolean;2161 readonly asConcreteFungible: {2162 readonly id: XcmV0MultiLocation;2163 readonly amount: Compact<u128>;2164 } & Struct;2165 readonly isConcreteNonFungible: boolean;2166 readonly asConcreteNonFungible: {2167 readonly class: XcmV0MultiLocation;2168 readonly instance: XcmV1MultiassetAssetInstance;2169 } & Struct;2170 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';2171}21722173/** @name XcmV0MultiLocation */2174export interface XcmV0MultiLocation extends Enum {2175 readonly isNull: boolean;2176 readonly isX1: boolean;2177 readonly asX1: XcmV0Junction;2178 readonly isX2: boolean;2179 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;2180 readonly isX3: boolean;2181 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2182 readonly isX4: boolean;2183 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2184 readonly isX5: boolean;2185 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2186 readonly isX6: boolean;2187 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2188 readonly isX7: boolean;2189 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2190 readonly isX8: boolean;2191 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2192 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2193}21942195/** @name XcmV0Order */2196export interface XcmV0Order extends Enum {2197 readonly isNull: boolean;2198 readonly isDepositAsset: boolean;2199 readonly asDepositAsset: {2200 readonly assets: Vec<XcmV0MultiAsset>;2201 readonly dest: XcmV0MultiLocation;2202 } & Struct;2203 readonly isDepositReserveAsset: boolean;2204 readonly asDepositReserveAsset: {2205 readonly assets: Vec<XcmV0MultiAsset>;2206 readonly dest: XcmV0MultiLocation;2207 readonly effects: Vec<XcmV0Order>;2208 } & Struct;2209 readonly isExchangeAsset: boolean;2210 readonly asExchangeAsset: {2211 readonly give: Vec<XcmV0MultiAsset>;2212 readonly receive: Vec<XcmV0MultiAsset>;2213 } & Struct;2214 readonly isInitiateReserveWithdraw: boolean;2215 readonly asInitiateReserveWithdraw: {2216 readonly assets: Vec<XcmV0MultiAsset>;2217 readonly reserve: XcmV0MultiLocation;2218 readonly effects: Vec<XcmV0Order>;2219 } & Struct;2220 readonly isInitiateTeleport: boolean;2221 readonly asInitiateTeleport: {2222 readonly assets: Vec<XcmV0MultiAsset>;2223 readonly dest: XcmV0MultiLocation;2224 readonly effects: Vec<XcmV0Order>;2225 } & Struct;2226 readonly isQueryHolding: boolean;2227 readonly asQueryHolding: {2228 readonly queryId: Compact<u64>;2229 readonly dest: XcmV0MultiLocation;2230 readonly assets: Vec<XcmV0MultiAsset>;2231 } & Struct;2232 readonly isBuyExecution: boolean;2233 readonly asBuyExecution: {2234 readonly fees: XcmV0MultiAsset;2235 readonly weight: u64;2236 readonly debt: u64;2237 readonly haltOnError: bool;2238 readonly xcm: Vec<XcmV0Xcm>;2239 } & Struct;2240 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2241}22422243/** @name XcmV0OriginKind */2244export interface XcmV0OriginKind extends Enum {2245 readonly isNative: boolean;2246 readonly isSovereignAccount: boolean;2247 readonly isSuperuser: boolean;2248 readonly isXcm: boolean;2249 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';2250}22512252/** @name XcmV0Response */2253export interface XcmV0Response extends Enum {2254 readonly isAssets: boolean;2255 readonly asAssets: Vec<XcmV0MultiAsset>;2256 readonly type: 'Assets';2257}22582259/** @name XcmV0Xcm */2260export interface XcmV0Xcm extends Enum {2261 readonly isWithdrawAsset: boolean;2262 readonly asWithdrawAsset: {2263 readonly assets: Vec<XcmV0MultiAsset>;2264 readonly effects: Vec<XcmV0Order>;2265 } & Struct;2266 readonly isReserveAssetDeposit: boolean;2267 readonly asReserveAssetDeposit: {2268 readonly assets: Vec<XcmV0MultiAsset>;2269 readonly effects: Vec<XcmV0Order>;2270 } & Struct;2271 readonly isTeleportAsset: boolean;2272 readonly asTeleportAsset: {2273 readonly assets: Vec<XcmV0MultiAsset>;2274 readonly effects: Vec<XcmV0Order>;2275 } & Struct;2276 readonly isQueryResponse: boolean;2277 readonly asQueryResponse: {2278 readonly queryId: Compact<u64>;2279 readonly response: XcmV0Response;2280 } & Struct;2281 readonly isTransferAsset: boolean;2282 readonly asTransferAsset: {2283 readonly assets: Vec<XcmV0MultiAsset>;2284 readonly dest: XcmV0MultiLocation;2285 } & Struct;2286 readonly isTransferReserveAsset: boolean;2287 readonly asTransferReserveAsset: {2288 readonly assets: Vec<XcmV0MultiAsset>;2289 readonly dest: XcmV0MultiLocation;2290 readonly effects: Vec<XcmV0Order>;2291 } & Struct;2292 readonly isTransact: boolean;2293 readonly asTransact: {2294 readonly originType: XcmV0OriginKind;2295 readonly requireWeightAtMost: u64;2296 readonly call: XcmDoubleEncoded;2297 } & Struct;2298 readonly isHrmpNewChannelOpenRequest: boolean;2299 readonly asHrmpNewChannelOpenRequest: {2300 readonly sender: Compact<u32>;2301 readonly maxMessageSize: Compact<u32>;2302 readonly maxCapacity: Compact<u32>;2303 } & Struct;2304 readonly isHrmpChannelAccepted: boolean;2305 readonly asHrmpChannelAccepted: {2306 readonly recipient: Compact<u32>;2307 } & Struct;2308 readonly isHrmpChannelClosing: boolean;2309 readonly asHrmpChannelClosing: {2310 readonly initiator: Compact<u32>;2311 readonly sender: Compact<u32>;2312 readonly recipient: Compact<u32>;2313 } & Struct;2314 readonly isRelayedFrom: boolean;2315 readonly asRelayedFrom: {2316 readonly who: XcmV0MultiLocation;2317 readonly message: XcmV0Xcm;2318 } & Struct;2319 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2320}23212322/** @name XcmV1Junction */2323export interface XcmV1Junction extends Enum {2324 readonly isParachain: boolean;2325 readonly asParachain: Compact<u32>;2326 readonly isAccountId32: boolean;2327 readonly asAccountId32: {2328 readonly network: XcmV0JunctionNetworkId;2329 readonly id: U8aFixed;2330 } & Struct;2331 readonly isAccountIndex64: boolean;2332 readonly asAccountIndex64: {2333 readonly network: XcmV0JunctionNetworkId;2334 readonly index: Compact<u64>;2335 } & Struct;2336 readonly isAccountKey20: boolean;2337 readonly asAccountKey20: {2338 readonly network: XcmV0JunctionNetworkId;2339 readonly key: U8aFixed;2340 } & Struct;2341 readonly isPalletInstance: boolean;2342 readonly asPalletInstance: u8;2343 readonly isGeneralIndex: boolean;2344 readonly asGeneralIndex: Compact<u128>;2345 readonly isGeneralKey: boolean;2346 readonly asGeneralKey: Bytes;2347 readonly isOnlyChild: boolean;2348 readonly isPlurality: boolean;2349 readonly asPlurality: {2350 readonly id: XcmV0JunctionBodyId;2351 readonly part: XcmV0JunctionBodyPart;2352 } & Struct;2353 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2354}23552356/** @name XcmV1MultiAsset */2357export interface XcmV1MultiAsset extends Struct {2358 readonly id: XcmV1MultiassetAssetId;2359 readonly fun: XcmV1MultiassetFungibility;2360}23612362/** @name XcmV1MultiassetAssetId */2363export interface XcmV1MultiassetAssetId extends Enum {2364 readonly isConcrete: boolean;2365 readonly asConcrete: XcmV1MultiLocation;2366 readonly isAbstract: boolean;2367 readonly asAbstract: Bytes;2368 readonly type: 'Concrete' | 'Abstract';2369}23702371/** @name XcmV1MultiassetAssetInstance */2372export interface XcmV1MultiassetAssetInstance extends Enum {2373 readonly isUndefined: boolean;2374 readonly isIndex: boolean;2375 readonly asIndex: Compact<u128>;2376 readonly isArray4: boolean;2377 readonly asArray4: U8aFixed;2378 readonly isArray8: boolean;2379 readonly asArray8: U8aFixed;2380 readonly isArray16: boolean;2381 readonly asArray16: U8aFixed;2382 readonly isArray32: boolean;2383 readonly asArray32: U8aFixed;2384 readonly isBlob: boolean;2385 readonly asBlob: Bytes;2386 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';2387}23882389/** @name XcmV1MultiassetFungibility */2390export interface XcmV1MultiassetFungibility extends Enum {2391 readonly isFungible: boolean;2392 readonly asFungible: Compact<u128>;2393 readonly isNonFungible: boolean;2394 readonly asNonFungible: XcmV1MultiassetAssetInstance;2395 readonly type: 'Fungible' | 'NonFungible';2396}23972398/** @name XcmV1MultiassetMultiAssetFilter */2399export interface XcmV1MultiassetMultiAssetFilter extends Enum {2400 readonly isDefinite: boolean;2401 readonly asDefinite: XcmV1MultiassetMultiAssets;2402 readonly isWild: boolean;2403 readonly asWild: XcmV1MultiassetWildMultiAsset;2404 readonly type: 'Definite' | 'Wild';2405}24062407/** @name XcmV1MultiassetMultiAssets */2408export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}24092410/** @name XcmV1MultiassetWildFungibility */2411export interface XcmV1MultiassetWildFungibility extends Enum {2412 readonly isFungible: boolean;2413 readonly isNonFungible: boolean;2414 readonly type: 'Fungible' | 'NonFungible';2415}24162417/** @name XcmV1MultiassetWildMultiAsset */2418export interface XcmV1MultiassetWildMultiAsset extends Enum {2419 readonly isAll: boolean;2420 readonly isAllOf: boolean;2421 readonly asAllOf: {2422 readonly id: XcmV1MultiassetAssetId;2423 readonly fun: XcmV1MultiassetWildFungibility;2424 } & Struct;2425 readonly type: 'All' | 'AllOf';2426}24272428/** @name XcmV1MultiLocation */2429export interface XcmV1MultiLocation extends Struct {2430 readonly parents: u8;2431 readonly interior: XcmV1MultilocationJunctions;2432}24332434/** @name XcmV1MultilocationJunctions */2435export interface XcmV1MultilocationJunctions extends Enum {2436 readonly isHere: boolean;2437 readonly isX1: boolean;2438 readonly asX1: XcmV1Junction;2439 readonly isX2: boolean;2440 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;2441 readonly isX3: boolean;2442 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2443 readonly isX4: boolean;2444 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2445 readonly isX5: boolean;2446 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2447 readonly isX6: boolean;2448 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2449 readonly isX7: boolean;2450 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2451 readonly isX8: boolean;2452 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2453 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2454}24552456/** @name XcmV1Order */2457export interface XcmV1Order extends Enum {2458 readonly isNoop: boolean;2459 readonly isDepositAsset: boolean;2460 readonly asDepositAsset: {2461 readonly assets: XcmV1MultiassetMultiAssetFilter;2462 readonly maxAssets: u32;2463 readonly beneficiary: XcmV1MultiLocation;2464 } & Struct;2465 readonly isDepositReserveAsset: boolean;2466 readonly asDepositReserveAsset: {2467 readonly assets: XcmV1MultiassetMultiAssetFilter;2468 readonly maxAssets: u32;2469 readonly dest: XcmV1MultiLocation;2470 readonly effects: Vec<XcmV1Order>;2471 } & Struct;2472 readonly isExchangeAsset: boolean;2473 readonly asExchangeAsset: {2474 readonly give: XcmV1MultiassetMultiAssetFilter;2475 readonly receive: XcmV1MultiassetMultiAssets;2476 } & Struct;2477 readonly isInitiateReserveWithdraw: boolean;2478 readonly asInitiateReserveWithdraw: {2479 readonly assets: XcmV1MultiassetMultiAssetFilter;2480 readonly reserve: XcmV1MultiLocation;2481 readonly effects: Vec<XcmV1Order>;2482 } & Struct;2483 readonly isInitiateTeleport: boolean;2484 readonly asInitiateTeleport: {2485 readonly assets: XcmV1MultiassetMultiAssetFilter;2486 readonly dest: XcmV1MultiLocation;2487 readonly effects: Vec<XcmV1Order>;2488 } & Struct;2489 readonly isQueryHolding: boolean;2490 readonly asQueryHolding: {2491 readonly queryId: Compact<u64>;2492 readonly dest: XcmV1MultiLocation;2493 readonly assets: XcmV1MultiassetMultiAssetFilter;2494 } & Struct;2495 readonly isBuyExecution: boolean;2496 readonly asBuyExecution: {2497 readonly fees: XcmV1MultiAsset;2498 readonly weight: u64;2499 readonly debt: u64;2500 readonly haltOnError: bool;2501 readonly instructions: Vec<XcmV1Xcm>;2502 } & Struct;2503 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2504}25052506/** @name XcmV1Response */2507export interface XcmV1Response extends Enum {2508 readonly isAssets: boolean;2509 readonly asAssets: XcmV1MultiassetMultiAssets;2510 readonly isVersion: boolean;2511 readonly asVersion: u32;2512 readonly type: 'Assets' | 'Version';2513}25142515/** @name XcmV1Xcm */2516export interface XcmV1Xcm extends Enum {2517 readonly isWithdrawAsset: boolean;2518 readonly asWithdrawAsset: {2519 readonly assets: XcmV1MultiassetMultiAssets;2520 readonly effects: Vec<XcmV1Order>;2521 } & Struct;2522 readonly isReserveAssetDeposited: boolean;2523 readonly asReserveAssetDeposited: {2524 readonly assets: XcmV1MultiassetMultiAssets;2525 readonly effects: Vec<XcmV1Order>;2526 } & Struct;2527 readonly isReceiveTeleportedAsset: boolean;2528 readonly asReceiveTeleportedAsset: {2529 readonly assets: XcmV1MultiassetMultiAssets;2530 readonly effects: Vec<XcmV1Order>;2531 } & Struct;2532 readonly isQueryResponse: boolean;2533 readonly asQueryResponse: {2534 readonly queryId: Compact<u64>;2535 readonly response: XcmV1Response;2536 } & Struct;2537 readonly isTransferAsset: boolean;2538 readonly asTransferAsset: {2539 readonly assets: XcmV1MultiassetMultiAssets;2540 readonly beneficiary: XcmV1MultiLocation;2541 } & Struct;2542 readonly isTransferReserveAsset: boolean;2543 readonly asTransferReserveAsset: {2544 readonly assets: XcmV1MultiassetMultiAssets;2545 readonly dest: XcmV1MultiLocation;2546 readonly effects: Vec<XcmV1Order>;2547 } & Struct;2548 readonly isTransact: boolean;2549 readonly asTransact: {2550 readonly originType: XcmV0OriginKind;2551 readonly requireWeightAtMost: u64;2552 readonly call: XcmDoubleEncoded;2553 } & Struct;2554 readonly isHrmpNewChannelOpenRequest: boolean;2555 readonly asHrmpNewChannelOpenRequest: {2556 readonly sender: Compact<u32>;2557 readonly maxMessageSize: Compact<u32>;2558 readonly maxCapacity: Compact<u32>;2559 } & Struct;2560 readonly isHrmpChannelAccepted: boolean;2561 readonly asHrmpChannelAccepted: {2562 readonly recipient: Compact<u32>;2563 } & Struct;2564 readonly isHrmpChannelClosing: boolean;2565 readonly asHrmpChannelClosing: {2566 readonly initiator: Compact<u32>;2567 readonly sender: Compact<u32>;2568 readonly recipient: Compact<u32>;2569 } & Struct;2570 readonly isRelayedFrom: boolean;2571 readonly asRelayedFrom: {2572 readonly who: XcmV1MultilocationJunctions;2573 readonly message: XcmV1Xcm;2574 } & Struct;2575 readonly isSubscribeVersion: boolean;2576 readonly asSubscribeVersion: {2577 readonly queryId: Compact<u64>;2578 readonly maxResponseWeight: Compact<u64>;2579 } & Struct;2580 readonly isUnsubscribeVersion: boolean;2581 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2582}25832584/** @name XcmV2Instruction */2585export interface XcmV2Instruction extends Enum {2586 readonly isWithdrawAsset: boolean;2587 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;2588 readonly isReserveAssetDeposited: boolean;2589 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;2590 readonly isReceiveTeleportedAsset: boolean;2591 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;2592 readonly isQueryResponse: boolean;2593 readonly asQueryResponse: {2594 readonly queryId: Compact<u64>;2595 readonly response: XcmV2Response;2596 readonly maxWeight: Compact<u64>;2597 } & Struct;2598 readonly isTransferAsset: boolean;2599 readonly asTransferAsset: {2600 readonly assets: XcmV1MultiassetMultiAssets;2601 readonly beneficiary: XcmV1MultiLocation;2602 } & Struct;2603 readonly isTransferReserveAsset: boolean;2604 readonly asTransferReserveAsset: {2605 readonly assets: XcmV1MultiassetMultiAssets;2606 readonly dest: XcmV1MultiLocation;2607 readonly xcm: XcmV2Xcm;2608 } & Struct;2609 readonly isTransact: boolean;2610 readonly asTransact: {2611 readonly originType: XcmV0OriginKind;2612 readonly requireWeightAtMost: Compact<u64>;2613 readonly call: XcmDoubleEncoded;2614 } & Struct;2615 readonly isHrmpNewChannelOpenRequest: boolean;2616 readonly asHrmpNewChannelOpenRequest: {2617 readonly sender: Compact<u32>;2618 readonly maxMessageSize: Compact<u32>;2619 readonly maxCapacity: Compact<u32>;2620 } & Struct;2621 readonly isHrmpChannelAccepted: boolean;2622 readonly asHrmpChannelAccepted: {2623 readonly recipient: Compact<u32>;2624 } & Struct;2625 readonly isHrmpChannelClosing: boolean;2626 readonly asHrmpChannelClosing: {2627 readonly initiator: Compact<u32>;2628 readonly sender: Compact<u32>;2629 readonly recipient: Compact<u32>;2630 } & Struct;2631 readonly isClearOrigin: boolean;2632 readonly isDescendOrigin: boolean;2633 readonly asDescendOrigin: XcmV1MultilocationJunctions;2634 readonly isReportError: boolean;2635 readonly asReportError: {2636 readonly queryId: Compact<u64>;2637 readonly dest: XcmV1MultiLocation;2638 readonly maxResponseWeight: Compact<u64>;2639 } & Struct;2640 readonly isDepositAsset: boolean;2641 readonly asDepositAsset: {2642 readonly assets: XcmV1MultiassetMultiAssetFilter;2643 readonly maxAssets: Compact<u32>;2644 readonly beneficiary: XcmV1MultiLocation;2645 } & Struct;2646 readonly isDepositReserveAsset: boolean;2647 readonly asDepositReserveAsset: {2648 readonly assets: XcmV1MultiassetMultiAssetFilter;2649 readonly maxAssets: Compact<u32>;2650 readonly dest: XcmV1MultiLocation;2651 readonly xcm: XcmV2Xcm;2652 } & Struct;2653 readonly isExchangeAsset: boolean;2654 readonly asExchangeAsset: {2655 readonly give: XcmV1MultiassetMultiAssetFilter;2656 readonly receive: XcmV1MultiassetMultiAssets;2657 } & Struct;2658 readonly isInitiateReserveWithdraw: boolean;2659 readonly asInitiateReserveWithdraw: {2660 readonly assets: XcmV1MultiassetMultiAssetFilter;2661 readonly reserve: XcmV1MultiLocation;2662 readonly xcm: XcmV2Xcm;2663 } & Struct;2664 readonly isInitiateTeleport: boolean;2665 readonly asInitiateTeleport: {2666 readonly assets: XcmV1MultiassetMultiAssetFilter;2667 readonly dest: XcmV1MultiLocation;2668 readonly xcm: XcmV2Xcm;2669 } & Struct;2670 readonly isQueryHolding: boolean;2671 readonly asQueryHolding: {2672 readonly queryId: Compact<u64>;2673 readonly dest: XcmV1MultiLocation;2674 readonly assets: XcmV1MultiassetMultiAssetFilter;2675 readonly maxResponseWeight: Compact<u64>;2676 } & Struct;2677 readonly isBuyExecution: boolean;2678 readonly asBuyExecution: {2679 readonly fees: XcmV1MultiAsset;2680 readonly weightLimit: XcmV2WeightLimit;2681 } & Struct;2682 readonly isRefundSurplus: boolean;2683 readonly isSetErrorHandler: boolean;2684 readonly asSetErrorHandler: XcmV2Xcm;2685 readonly isSetAppendix: boolean;2686 readonly asSetAppendix: XcmV2Xcm;2687 readonly isClearError: boolean;2688 readonly isClaimAsset: boolean;2689 readonly asClaimAsset: {2690 readonly assets: XcmV1MultiassetMultiAssets;2691 readonly ticket: XcmV1MultiLocation;2692 } & Struct;2693 readonly isTrap: boolean;2694 readonly asTrap: Compact<u64>;2695 readonly isSubscribeVersion: boolean;2696 readonly asSubscribeVersion: {2697 readonly queryId: Compact<u64>;2698 readonly maxResponseWeight: Compact<u64>;2699 } & Struct;2700 readonly isUnsubscribeVersion: boolean;2701 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';2702}27032704/** @name XcmV2Response */2705export interface XcmV2Response extends Enum {2706 readonly isNull: boolean;2707 readonly isAssets: boolean;2708 readonly asAssets: XcmV1MultiassetMultiAssets;2709 readonly isExecutionResult: boolean;2710 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;2711 readonly isVersion: boolean;2712 readonly asVersion: u32;2713 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';2714}27152716/** @name XcmV2TraitsError */2717export interface XcmV2TraitsError extends Enum {2718 readonly isOverflow: boolean;2719 readonly isUnimplemented: boolean;2720 readonly isUntrustedReserveLocation: boolean;2721 readonly isUntrustedTeleportLocation: boolean;2722 readonly isMultiLocationFull: boolean;2723 readonly isMultiLocationNotInvertible: boolean;2724 readonly isBadOrigin: boolean;2725 readonly isInvalidLocation: boolean;2726 readonly isAssetNotFound: boolean;2727 readonly isFailedToTransactAsset: boolean;2728 readonly isNotWithdrawable: boolean;2729 readonly isLocationCannotHold: boolean;2730 readonly isExceedsMaxMessageSize: boolean;2731 readonly isDestinationUnsupported: boolean;2732 readonly isTransport: boolean;2733 readonly isUnroutable: boolean;2734 readonly isUnknownClaim: boolean;2735 readonly isFailedToDecode: boolean;2736 readonly isMaxWeightInvalid: boolean;2737 readonly isNotHoldingFees: boolean;2738 readonly isTooExpensive: boolean;2739 readonly isTrap: boolean;2740 readonly asTrap: u64;2741 readonly isUnhandledXcmVersion: boolean;2742 readonly isWeightLimitReached: boolean;2743 readonly asWeightLimitReached: u64;2744 readonly isBarrier: boolean;2745 readonly isWeightNotComputable: boolean;2746 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';2747}27482749/** @name XcmV2TraitsOutcome */2750export interface XcmV2TraitsOutcome extends Enum {2751 readonly isComplete: boolean;2752 readonly asComplete: u64;2753 readonly isIncomplete: boolean;2754 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2755 readonly isError: boolean;2756 readonly asError: XcmV2TraitsError;2757 readonly type: 'Complete' | 'Incomplete' | 'Error';2758}27592760/** @name XcmV2WeightLimit */2761export interface XcmV2WeightLimit extends Enum {2762 readonly isUnlimited: boolean;2763 readonly isLimited: boolean;2764 readonly asLimited: Compact<u64>;2765 readonly type: 'Unlimited' | 'Limited';2766}27672768/** @name XcmV2Xcm */2769export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}27702771/** @name XcmVersionedMultiAssets */2772export interface XcmVersionedMultiAssets extends Enum {2773 readonly isV0: boolean;2774 readonly asV0: Vec<XcmV0MultiAsset>;2775 readonly isV1: boolean;2776 readonly asV1: XcmV1MultiassetMultiAssets;2777 readonly type: 'V0' | 'V1';2778}27792780/** @name XcmVersionedMultiLocation */2781export interface XcmVersionedMultiLocation extends Enum {2782 readonly isV0: boolean;2783 readonly asV0: XcmV0MultiLocation;2784 readonly isV1: boolean;2785 readonly asV1: XcmV1MultiLocation;2786 readonly type: 'V0' | 'V1';2787}27882789/** @name XcmVersionedXcm */2790export interface XcmVersionedXcm extends Enum {2791 readonly isV0: boolean;2792 readonly asV0: XcmV0Xcm;2793 readonly isV1: boolean;2794 readonly asV1: XcmV1Xcm;2795 readonly isV2: boolean;2796 readonly asV2: XcmV2Xcm;2797 readonly type: 'V0' | 'V1' | 'V2';2798}27992800export type PHANTOM_UNIQUE = 'unique';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"