difftreelog
Merge branch 'tests/feed-alices' into tests/feed-alices-promotion
in: master
19 files changed
tests/package.jsondiffbeforeafterboth--- a/tests/package.json
+++ b/tests/package.json
@@ -5,11 +5,11 @@
"main": "",
"devDependencies": {
"@polkadot/ts": "0.4.22",
- "@polkadot/typegen": "9.2.2",
+ "@polkadot/typegen": "9.5.1",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-like": "^1.1.1",
- "@types/mocha": "^9.1.1",
+ "@types/mocha": "^10.0.0",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
@@ -93,7 +93,7 @@
"testEthFT": "mocha --timeout 9999999 -r ts-node/register ./**/eth/fungible.test.ts",
"testRPC": "mocha --timeout 9999999 -r ts-node/register ./**/rpc.test.ts",
"testPromotion": "mocha --timeout 9999999 -r ts-node/register ./**/app-promotion.test.ts",
-
+
"testXcmUnique": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmUnique.test.ts",
"testXcmQuartz": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmQuartz.test.ts",
"testXcmOpal": "RUN_XCM_TESTS=1 mocha --timeout 9999999 -r ts-node/register ./**/xcm/xcmOpal.test.ts",
@@ -103,7 +103,7 @@
"load": "mocha --timeout 9999999 -r ts-node/register './**/*.load.ts'",
"loadTransfer": "ts-node src/transfer.nload.ts",
-
+
"polkadot-types-fetch-metadata": "curl -H 'Content-Type: application/json' -d '{\"id\":\"1\", \"jsonrpc\":\"2.0\", \"method\": \"state_getMetadata\", \"params\":[]}' http://localhost:9933 > src/interfaces/metadata.json",
"polkadot-types-from-defs": "ts-node ./node_modules/.bin/polkadot-types-from-defs --endpoint src/interfaces/metadata.json --input src/interfaces/ --package .",
"polkadot-types-from-chain": "ts-node ./node_modules/.bin/polkadot-types-from-chain --endpoint src/interfaces/metadata.json --output src/interfaces/ --package .",
@@ -113,14 +113,14 @@
"license": "SEE LICENSE IN ../LICENSE",
"homepage": "",
"dependencies": {
- "@polkadot/api": "9.2.2",
- "@polkadot/api-contract": "9.2.2",
- "@polkadot/util-crypto": "10.1.7",
- "bignumber.js": "^9.0.2",
+ "@polkadot/api": "9.5.1",
+ "@polkadot/api-contract": "9.5.1",
+ "@polkadot/util-crypto": "10.1.10",
+ "bignumber.js": "^9.1.0",
"chai-as-promised": "^7.1.1",
"chai-like": "^1.1.1",
"find-process": "^1.4.7",
- "solc": "0.8.14-fixed",
+ "solc": "0.8.17",
"web3": "^1.7.3"
},
"standard": {
tests/src/approve.test.tsdiffbeforeafterboth--- a/tests/src/approve.test.ts
+++ b/tests/src/approve.test.ts
@@ -227,7 +227,7 @@
});
});
-describe('Approved amount decreases by the transferred amount.:', () => {
+describe('Approved amount decreases by the transferred amount:', () => {
let alice: IKeyringPair;
let bob: IKeyringPair;
let charlie: IKeyringPair;
tests/src/confirmSponsorship.test.tsdiffbeforeafterboth--- a/tests/src/confirmSponsorship.test.ts
+++ b/tests/src/confirmSponsorship.test.ts
@@ -73,7 +73,7 @@
});
itSub('Fungible: Transfer fees are paid by the sponsor after confirmation', async ({helper}) => {
- const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
+ const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
await collection.setSponsor(alice, bob.address);
await collection.confirmSponsorship(bob);
const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
@@ -163,7 +163,10 @@
});
itSub('NFT: Sponsoring of createItem is rate limited', async ({helper}) => {
- const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+ const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL', limits: {
+ sponsoredDataRateLimit: {blocks: 1000},
+ sponsorTransferTimeout: 1000,
+ }});
await collection.setSponsor(alice, bob.address);
await collection.confirmSponsorship(bob);
await collection.setPermissions(alice, {mintMode: true, access: 'AllowList'});
@@ -195,7 +198,7 @@
});
itSub('(!negative test!) Confirm sponsorship for a collection that never existed', async ({helper}) => {
- const collectionId = 1_000_000;
+ const collectionId = (1 << 32) - 1;
const confirmSponsorshipTx = async () => helper.collection.confirmSponsorship(bob, collectionId);
await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.CollectionNotFound/);
});
tests/src/deprecated-helpers/helpers.tsdiffbeforeafterboth--- a/tests/src/deprecated-helpers/helpers.ts
+++ b/tests/src/deprecated-helpers/helpers.ts
@@ -1764,7 +1764,7 @@
return (await api.rpc.unique.collectionById(collectionId)).unwrap();
}
-export const describe_xcm = (
+export const describeXCM = (
process.env.RUN_XCM_TESTS
? describe
: describe.skip
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -8,7 +8,7 @@
import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { Codec } from '@polkadot/types-codec/types';
-import type { Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from '@polkadot/types/lookup';
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
@@ -97,7 +97,7 @@
* The maximum weight that may be scheduled per block for any dispatchables of less
* priority than `schedule::HARD_DEADLINE`.
**/
- maximumWeight: u64 & AugmentedConst<ApiType>;
+ maximumWeight: Weight & AugmentedConst<ApiType>;
/**
* The maximum number of scheduled calls in the queue for a single block.
* Not strictly enforced, but used for weight estimation.
@@ -126,7 +126,7 @@
**/
dbWeight: FrameSupportWeightsRuntimeDbWeight & AugmentedConst<ApiType>;
/**
- * The designated SS85 prefix of this chain.
+ * The designated SS58 prefix of this chain.
*
* This replaces the "ss58Format" property declared in the chain spec. Reason is
* that the runtime should know about the prefix in order to make use of it as
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -8,7 +8,7 @@
import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
import type { ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
+import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
@@ -184,11 +184,11 @@
/**
* Downward message is overweight and was placed in the overweight queue.
**/
- OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;
+ OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight }>;
/**
* Downward message from the overweight queue was executed.
**/
- OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;
+ OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: Weight], { overweightIndex: u64, weightUsed: Weight }>;
/**
* Downward message is unsupported version of XCM.
**/
@@ -196,7 +196,7 @@
/**
* The weight limit for handling downward messages was reached.
**/
- WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;
+ WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight], { messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight }>;
/**
* Generic event
**/
@@ -290,7 +290,7 @@
/**
* Downward messages were processed using the given weight.
**/
- DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;
+ DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: Weight, dmqHead: H256], { weightUsed: Weight, dmqHead: H256 }>;
/**
* Some downward messages have been received and will be processed.
**/
@@ -378,7 +378,7 @@
*
* \[ id, pallet index, call index, actual weight, max budgeted weight \]
**/
- NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;
+ NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, Weight, Weight]>;
/**
* A given location which had a version change subscription was dropped owing to an error
* migrating the location to our new XCM format.
@@ -769,19 +769,19 @@
/**
* Some XCM failed.
**/
- Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;
+ Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight }>;
/**
* An XCM exceeded the individual message weight budget.
**/
- OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;
+ OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: Weight], { sender: u32, sentAt: u32, index: u64, required: Weight }>;
/**
* An XCM from the overweight queue was executed with the given actual weight used.
**/
- OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;
+ OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: Weight], { index: u64, used: Weight }>;
/**
* Some XCM was executed ok.
**/
- Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;
+ Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: Weight], { messageHash: Option<H256>, weight: Weight }>;
/**
* An upward message was sent to the relay chain.
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -8,8 +8,8 @@
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -555,12 +555,12 @@
* The weight we reserve at the beginning of the block for processing DMP messages. This
* overrides the amount set in the Config trait.
**/
- reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<u64>>, []> & QueryableStorageEntry<ApiType, []>;
+ reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* The weight we reserve at the beginning of the block for processing XCMP messages. This
* overrides the amount set in the Config trait.
**/
- reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<u64>>, []> & QueryableStorageEntry<ApiType, []>;
+ reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* An option which indicates if the relay-chain restricts signalling a validation code upgrade.
* In other words, if this is `Some` and [`NewValidationCode`] is `Some` then the produced
@@ -716,7 +716,7 @@
/**
* The current weight for the block.
**/
- blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassU64>, []> & QueryableStorageEntry<ApiType, []>;
+ blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Digest of the current block, also part of the block header.
**/
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -161,22 +161,27 @@
};
contracts: {
/**
+ * @deprecated Use the runtime interface `api.call.contractsApi.call` instead
* Executes a call to a contract
**/
call: AugmentedRpc<(callRequest: ContractCallRequest | { origin?: any; dest?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; inputData?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractExecResult>>;
/**
+ * @deprecated Use the runtime interface `api.call.contractsApi.getStorage` instead
* Returns the value under a specified storage key in a contract
**/
getStorage: AugmentedRpc<(address: AccountId | string | Uint8Array, key: H256 | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<Option<Bytes>>>;
/**
+ * @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead
* Instantiate a new contract
**/
instantiate: AugmentedRpc<(request: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
/**
+ * @deprecated Not available in newer versions of the contracts interfaces
* Returns the projected time a given contract will be able to sustain paying its rent
**/
rentProjection: AugmentedRpc<(address: AccountId | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<Option<BlockNumber>>>;
/**
+ * @deprecated Use the runtime interface `api.call.contractsApi.uploadCode` instead
* Upload new code without instantiating a contract from it
**/
uploadCode: AugmentedRpc<(uploadRequest: CodeUploadRequest | { origin?: any; code?: any; storageDepositLimit?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<CodeUploadResult>>;
@@ -515,6 +520,7 @@
**/
getChildStorageSize: AugmentedRpc<(childStorageKey: StorageKey | string | Uint8Array | any, childDefinition: StorageKey | string | Uint8Array | any, childType: u32 | AnyNumber | Uint8Array, key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<u64>>;
/**
+ * @deprecated Use `api.rpc.state.getKeysPaged` to retrieve keys
* Retrieves the keys with a certain prefix
**/
getKeys: AugmentedRpc<(key: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<StorageKey>>>;
@@ -527,6 +533,7 @@
**/
getMetadata: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<Metadata>>;
/**
+ * @deprecated Use `api.rpc.state.getKeysPaged` to retrieve keys
* Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged)
**/
getPairs: AugmentedRpc<(prefix: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<KeyValue>>>;
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -8,7 +8,7 @@
import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
@@ -243,7 +243,7 @@
* Events:
* - `OverweightServiced`: On success.
**/
- serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
+ serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;
/**
* Generic tx
**/
@@ -367,7 +367,7 @@
* NOTE: A successful return to this does *not* imply that the `msg` was executed successfully
* to completion; only that *some* of it was executed.
**/
- execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, u64]>;
+ execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, Weight]>;
/**
* Set a safe XCM version (the version that XCM should be encoded with if the most recent
* version a destination can accept is unknown).
@@ -902,7 +902,7 @@
* - The weight of this call is defined by the caller.
* # </weight>
**/
- sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;
+ sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, Weight]>;
/**
* Generic tx
**/
@@ -1683,7 +1683,7 @@
* Events:
* - `OverweightServiced`: On success.
**/
- serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
+ serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;
/**
* Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
*
@@ -1720,7 +1720,7 @@
* - `origin`: Must pass `Root`.
* - `new`: Desired value for `QueueConfigData.threshold_weight`
**/
- updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+ updateThresholdWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
/**
* Overwrites the speed to which the available weight approaches the maximum weight.
* A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
@@ -1728,7 +1728,7 @@
* - `origin`: Must pass `Root`.
* - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.
**/
- updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+ updateWeightRestrictDecay: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
/**
* Overwrite the maximum amount of weight any individual message may consume.
* Messages above this weight go into the overweight queue and may only be serviced explicitly.
@@ -1736,7 +1736,7 @@
* - `origin`: Must pass `Root`.
* - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.
**/
- updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+ updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -25,7 +25,7 @@
import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
-import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
+import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';
@@ -53,7 +53,7 @@
import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';
import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
-import type { AccountId, AccountId20, AccountId32, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier } from '@polkadot/types/interfaces/runtime';
+import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';
import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';
import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';
import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';
@@ -79,6 +79,7 @@
AccountId: AccountId;
AccountId20: AccountId20;
AccountId32: AccountId32;
+ AccountId33: AccountId33;
AccountIdOf: AccountIdOf;
AccountIndex: AccountIndex;
AccountInfo: AccountInfo;
@@ -253,6 +254,7 @@
ContractContractSpecV1: ContractContractSpecV1;
ContractContractSpecV2: ContractContractSpecV2;
ContractContractSpecV3: ContractContractSpecV3;
+ ContractContractSpecV4: ContractContractSpecV4;
ContractCryptoHasher: ContractCryptoHasher;
ContractDiscriminant: ContractDiscriminant;
ContractDisplayName: ContractDisplayName;
@@ -296,6 +298,7 @@
ContractMetadataV1: ContractMetadataV1;
ContractMetadataV2: ContractMetadataV2;
ContractMetadataV3: ContractMetadataV3;
+ ContractMetadataV4: ContractMetadataV4;
ContractProject: ContractProject;
ContractProjectContract: ContractProjectContract;
ContractProjectInfo: ContractProjectInfo;
@@ -524,7 +527,7 @@
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
FrameSupportWeightsPays: FrameSupportWeightsPays;
FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;
- FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;
+ FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;
FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;
FrameSystemAccountInfo: FrameSystemAccountInfo;
@@ -1375,6 +1378,8 @@
WeightMultiplier: WeightMultiplier;
WeightPerClass: WeightPerClass;
WeightToFeeCoefficient: WeightToFeeCoefficient;
+ WeightV1: WeightV1;
+ WeightV2: WeightV2;
WildFungibility: WildFungibility;
WildFungibilityV0: WildFungibilityV0;
WildFungibilityV1: WildFungibilityV1;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -3,7 +3,7 @@
import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
import type { Event } from '@polkadot/types/interfaces/system';
/** @name CumulusPalletDmpQueueCall */
@@ -11,14 +11,14 @@
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
readonly index: u64;
- readonly weightLimit: u64;
+ readonly weightLimit: Weight;
} & Struct;
readonly type: 'ServiceOverweight';
}
/** @name CumulusPalletDmpQueueConfigData */
export interface CumulusPalletDmpQueueConfigData extends Struct {
- readonly maxIndividual: u64;
+ readonly maxIndividual: Weight;
}
/** @name CumulusPalletDmpQueueError */
@@ -46,19 +46,19 @@
readonly isWeightExhausted: boolean;
readonly asWeightExhausted: {
readonly messageId: U8aFixed;
- readonly remainingWeight: u64;
- readonly requiredWeight: u64;
+ readonly remainingWeight: Weight;
+ readonly requiredWeight: Weight;
} & Struct;
readonly isOverweightEnqueued: boolean;
readonly asOverweightEnqueued: {
readonly messageId: U8aFixed;
readonly overweightIndex: u64;
- readonly requiredWeight: u64;
+ readonly requiredWeight: Weight;
} & Struct;
readonly isOverweightServiced: boolean;
readonly asOverweightServiced: {
readonly overweightIndex: u64;
- readonly weightUsed: u64;
+ readonly weightUsed: Weight;
} & Struct;
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
@@ -122,7 +122,7 @@
} & Struct;
readonly isDownwardMessagesProcessed: boolean;
readonly asDownwardMessagesProcessed: {
- readonly weightUsed: u64;
+ readonly weightUsed: Weight;
readonly dmqHead: H256;
} & Struct;
readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
@@ -166,7 +166,7 @@
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
readonly index: u64;
- readonly weightLimit: u64;
+ readonly weightLimit: Weight;
} & Struct;
readonly isSuspendXcmExecution: boolean;
readonly isResumeXcmExecution: boolean;
@@ -184,15 +184,15 @@
} & Struct;
readonly isUpdateThresholdWeight: boolean;
readonly asUpdateThresholdWeight: {
- readonly new_: u64;
+ readonly new_: Weight;
} & Struct;
readonly isUpdateWeightRestrictDecay: boolean;
readonly asUpdateWeightRestrictDecay: {
- readonly new_: u64;
+ readonly new_: Weight;
} & Struct;
readonly isUpdateXcmpMaxIndividualWeight: boolean;
readonly asUpdateXcmpMaxIndividualWeight: {
- readonly new_: u64;
+ readonly new_: Weight;
} & Struct;
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
@@ -212,13 +212,13 @@
readonly isSuccess: boolean;
readonly asSuccess: {
readonly messageHash: Option<H256>;
- readonly weight: u64;
+ readonly weight: Weight;
} & Struct;
readonly isFail: boolean;
readonly asFail: {
readonly messageHash: Option<H256>;
readonly error: XcmV2TraitsError;
- readonly weight: u64;
+ readonly weight: Weight;
} & Struct;
readonly isBadVersion: boolean;
readonly asBadVersion: {
@@ -241,12 +241,12 @@
readonly sender: u32;
readonly sentAt: u32;
readonly index: u64;
- readonly required: u64;
+ readonly required: Weight;
} & Struct;
readonly isOverweightServiced: boolean;
readonly asOverweightServiced: {
readonly index: u64;
- readonly used: u64;
+ readonly used: Weight;
} & Struct;
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
@@ -286,9 +286,9 @@
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
readonly resumeThreshold: u32;
- readonly thresholdWeight: u64;
- readonly weightRestrictDecay: u64;
- readonly xcmpMaxIndividualWeight: u64;
+ readonly thresholdWeight: Weight;
+ readonly weightRestrictDecay: Weight;
+ readonly xcmpMaxIndividualWeight: Weight;
}
/** @name CumulusPrimitivesParachainInherentParachainInherentData */
@@ -546,7 +546,7 @@
/** @name FrameSupportWeightsDispatchInfo */
export interface FrameSupportWeightsDispatchInfo extends Struct {
- readonly weight: u64;
+ readonly weight: Weight;
readonly class: FrameSupportWeightsDispatchClass;
readonly paysFee: FrameSupportWeightsPays;
}
@@ -565,11 +565,11 @@
readonly mandatory: u32;
}
-/** @name FrameSupportWeightsPerDispatchClassU64 */
-export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
- readonly normal: u64;
- readonly operational: u64;
- readonly mandatory: u64;
+/** @name FrameSupportWeightsPerDispatchClassWeight */
+export interface FrameSupportWeightsPerDispatchClassWeight extends Struct {
+ readonly normal: Weight;
+ readonly operational: Weight;
+ readonly mandatory: Weight;
}
/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */
@@ -710,17 +710,17 @@
/** @name FrameSystemLimitsBlockWeights */
export interface FrameSystemLimitsBlockWeights extends Struct {
- readonly baseBlock: u64;
- readonly maxBlock: u64;
+ readonly baseBlock: Weight;
+ readonly maxBlock: Weight;
readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
}
/** @name FrameSystemLimitsWeightsPerClass */
export interface FrameSystemLimitsWeightsPerClass extends Struct {
- readonly baseExtrinsic: u64;
- readonly maxExtrinsic: Option<u64>;
- readonly maxTotal: Option<u64>;
- readonly reserved: Option<u64>;
+ readonly baseExtrinsic: Weight;
+ readonly maxExtrinsic: Option<Weight>;
+ readonly maxTotal: Option<Weight>;
+ readonly reserved: Option<Weight>;
}
/** @name FrameSystemPhase */
@@ -1929,7 +1929,7 @@
readonly isSudoUncheckedWeight: boolean;
readonly asSudoUncheckedWeight: {
readonly call: Call;
- readonly weight: u64;
+ readonly weight: Weight;
} & Struct;
readonly isSetKey: boolean;
readonly asSetKey: {
@@ -2372,7 +2372,7 @@
readonly isExecute: boolean;
readonly asExecute: {
readonly message: XcmVersionedXcm;
- readonly maxWeight: u64;
+ readonly maxWeight: Weight;
} & Struct;
readonly isForceXcmVersion: boolean;
readonly asForceXcmVersion: {
@@ -2441,7 +2441,7 @@
readonly isNotified: boolean;
readonly asNotified: ITuple<[u64, u8, u8]>;
readonly isNotifyOverweight: boolean;
- readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;
+ readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;
readonly isNotifyDispatchError: boolean;
readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;
readonly isNotifyDecodeFailed: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -24,21 +24,21 @@
feeFrozen: 'u128'
},
/**
- * Lookup7: frame_support::weights::PerDispatchClass<T>
+ * Lookup7: frame_support::weights::PerDispatchClass<frame_support::weights::weight_v2::Weight>
**/
- FrameSupportWeightsPerDispatchClassU64: {
- normal: 'u64',
- operational: 'u64',
- mandatory: 'u64'
+ FrameSupportWeightsPerDispatchClassWeight: {
+ normal: 'Weight',
+ operational: 'Weight',
+ mandatory: 'Weight'
},
/**
- * Lookup11: sp_runtime::generic::digest::Digest
+ * Lookup12: sp_runtime::generic::digest::Digest
**/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup13: sp_runtime::generic::digest::DigestItem
+ * Lookup14: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -54,7 +54,7 @@
}
},
/**
- * Lookup16: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+ * Lookup17: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -62,7 +62,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup18: frame_system::pallet::Event<T>
+ * Lookup19: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -90,27 +90,27 @@
}
},
/**
- * Lookup19: frame_support::weights::DispatchInfo
+ * Lookup20: frame_support::weights::DispatchInfo
**/
FrameSupportWeightsDispatchInfo: {
- weight: 'u64',
+ weight: 'Weight',
class: 'FrameSupportWeightsDispatchClass',
paysFee: 'FrameSupportWeightsPays'
},
/**
- * Lookup20: frame_support::weights::DispatchClass
+ * Lookup21: frame_support::weights::DispatchClass
**/
FrameSupportWeightsDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup21: frame_support::weights::Pays
+ * Lookup22: frame_support::weights::Pays
**/
FrameSupportWeightsPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup22: sp_runtime::DispatchError
+ * Lookup23: sp_runtime::DispatchError
**/
SpRuntimeDispatchError: {
_enum: {
@@ -127,32 +127,32 @@
}
},
/**
- * Lookup23: sp_runtime::ModuleError
+ * Lookup24: sp_runtime::ModuleError
**/
SpRuntimeModuleError: {
index: 'u8',
error: '[u8;4]'
},
/**
- * Lookup24: sp_runtime::TokenError
+ * Lookup25: sp_runtime::TokenError
**/
SpRuntimeTokenError: {
_enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
},
/**
- * Lookup25: sp_runtime::ArithmeticError
+ * Lookup26: sp_runtime::ArithmeticError
**/
SpRuntimeArithmeticError: {
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup26: sp_runtime::TransactionalError
+ * Lookup27: sp_runtime::TransactionalError
**/
SpRuntimeTransactionalError: {
_enum: ['LimitReached', 'NoLayer']
},
/**
- * Lookup27: cumulus_pallet_parachain_system::pallet::Event<T>
+ * Lookup28: cumulus_pallet_parachain_system::pallet::Event<T>
**/
CumulusPalletParachainSystemEvent: {
_enum: {
@@ -168,13 +168,13 @@
count: 'u32',
},
DownwardMessagesProcessed: {
- weightUsed: 'u64',
+ weightUsed: 'Weight',
dmqHead: 'H256'
}
}
},
/**
- * Lookup28: pallet_balances::pallet::Event<T, I>
+ * Lookup29: pallet_balances::pallet::Event<T, I>
**/
PalletBalancesEvent: {
_enum: {
@@ -225,13 +225,13 @@
}
},
/**
- * Lookup29: frame_support::traits::tokens::misc::BalanceStatus
+ * Lookup30: frame_support::traits::tokens::misc::BalanceStatus
**/
FrameSupportTokensMiscBalanceStatus: {
_enum: ['Free', 'Reserved']
},
/**
- * Lookup30: pallet_transaction_payment::pallet::Event<T>
+ * Lookup31: pallet_transaction_payment::pallet::Event<T>
**/
PalletTransactionPaymentEvent: {
_enum: {
@@ -243,7 +243,7 @@
}
},
/**
- * Lookup31: pallet_treasury::pallet::Event<T, I>
+ * Lookup32: pallet_treasury::pallet::Event<T, I>
**/
PalletTreasuryEvent: {
_enum: {
@@ -279,7 +279,7 @@
}
},
/**
- * Lookup32: pallet_sudo::pallet::Event<T>
+ * Lookup33: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -295,7 +295,7 @@
}
},
/**
- * Lookup36: orml_vesting::module::Event<T>
+ * Lookup37: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -314,7 +314,7 @@
}
},
/**
- * Lookup37: orml_vesting::VestingSchedule<BlockNumber, Balance>
+ * Lookup38: orml_vesting::VestingSchedule<BlockNumber, Balance>
**/
OrmlVestingVestingSchedule: {
start: 'u32',
@@ -323,7 +323,7 @@
perPeriod: 'Compact<u128>'
},
/**
- * Lookup39: orml_xtokens::module::Event<T>
+ * Lookup40: orml_xtokens::module::Event<T>
**/
OrmlXtokensModuleEvent: {
_enum: {
@@ -336,18 +336,18 @@
}
},
/**
- * Lookup40: xcm::v1::multiasset::MultiAssets
+ * Lookup41: xcm::v1::multiasset::MultiAssets
**/
XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',
/**
- * Lookup42: xcm::v1::multiasset::MultiAsset
+ * Lookup43: xcm::v1::multiasset::MultiAsset
**/
XcmV1MultiAsset: {
id: 'XcmV1MultiassetAssetId',
fun: 'XcmV1MultiassetFungibility'
},
/**
- * Lookup43: xcm::v1::multiasset::AssetId
+ * Lookup44: xcm::v1::multiasset::AssetId
**/
XcmV1MultiassetAssetId: {
_enum: {
@@ -356,14 +356,14 @@
}
},
/**
- * Lookup44: xcm::v1::multilocation::MultiLocation
+ * Lookup45: xcm::v1::multilocation::MultiLocation
**/
XcmV1MultiLocation: {
parents: 'u8',
interior: 'XcmV1MultilocationJunctions'
},
/**
- * Lookup45: xcm::v1::multilocation::Junctions
+ * Lookup46: xcm::v1::multilocation::Junctions
**/
XcmV1MultilocationJunctions: {
_enum: {
@@ -379,7 +379,7 @@
}
},
/**
- * Lookup46: xcm::v1::junction::Junction
+ * Lookup47: xcm::v1::junction::Junction
**/
XcmV1Junction: {
_enum: {
@@ -407,7 +407,7 @@
}
},
/**
- * Lookup48: xcm::v0::junction::NetworkId
+ * Lookup49: xcm::v0::junction::NetworkId
**/
XcmV0JunctionNetworkId: {
_enum: {
@@ -418,7 +418,7 @@
}
},
/**
- * Lookup52: xcm::v0::junction::BodyId
+ * Lookup53: xcm::v0::junction::BodyId
**/
XcmV0JunctionBodyId: {
_enum: {
@@ -432,7 +432,7 @@
}
},
/**
- * Lookup53: xcm::v0::junction::BodyPart
+ * Lookup54: xcm::v0::junction::BodyPart
**/
XcmV0JunctionBodyPart: {
_enum: {
@@ -455,7 +455,7 @@
}
},
/**
- * Lookup54: xcm::v1::multiasset::Fungibility
+ * Lookup55: xcm::v1::multiasset::Fungibility
**/
XcmV1MultiassetFungibility: {
_enum: {
@@ -464,7 +464,7 @@
}
},
/**
- * Lookup55: xcm::v1::multiasset::AssetInstance
+ * Lookup56: xcm::v1::multiasset::AssetInstance
**/
XcmV1MultiassetAssetInstance: {
_enum: {
@@ -478,7 +478,7 @@
}
},
/**
- * Lookup58: orml_tokens::module::Event<T>
+ * Lookup59: orml_tokens::module::Event<T>
**/
OrmlTokensModuleEvent: {
_enum: {
@@ -555,7 +555,7 @@
}
},
/**
- * Lookup59: pallet_foreign_assets::AssetIds
+ * Lookup60: pallet_foreign_assets::AssetIds
**/
PalletForeignAssetsAssetIds: {
_enum: {
@@ -564,24 +564,24 @@
}
},
/**
- * Lookup60: pallet_foreign_assets::NativeCurrency
+ * Lookup61: pallet_foreign_assets::NativeCurrency
**/
PalletForeignAssetsNativeCurrency: {
_enum: ['Here', 'Parent']
},
/**
- * Lookup61: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
Success: {
messageHash: 'Option<H256>',
- weight: 'u64',
+ weight: 'Weight',
},
Fail: {
messageHash: 'Option<H256>',
error: 'XcmV2TraitsError',
- weight: 'u64',
+ weight: 'Weight',
},
BadVersion: {
messageHash: 'Option<H256>',
@@ -599,16 +599,16 @@
sender: 'u32',
sentAt: 'u32',
index: 'u64',
- required: 'u64',
+ required: 'Weight',
},
OverweightServiced: {
index: 'u64',
- used: 'u64'
+ used: 'Weight'
}
}
},
/**
- * Lookup63: xcm::v2::traits::Error
+ * Lookup64: xcm::v2::traits::Error
**/
XcmV2TraitsError: {
_enum: {
@@ -641,7 +641,7 @@
}
},
/**
- * Lookup65: pallet_xcm::pallet::Event<T>
+ * Lookup66: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -650,7 +650,7 @@
UnexpectedResponse: '(XcmV1MultiLocation,u64)',
ResponseReady: '(u64,XcmV2Response)',
Notified: '(u64,u8,u8)',
- NotifyOverweight: '(u64,u8,u8,u64,u64)',
+ NotifyOverweight: '(u64,u8,u8,Weight,Weight)',
NotifyDispatchError: '(u64,u8,u8)',
NotifyDecodeFailed: '(u64,u8,u8)',
InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',
@@ -664,7 +664,7 @@
}
},
/**
- * Lookup66: xcm::v2::traits::Outcome
+ * Lookup67: xcm::v2::traits::Outcome
**/
XcmV2TraitsOutcome: {
_enum: {
@@ -674,11 +674,11 @@
}
},
/**
- * Lookup67: xcm::v2::Xcm<Call>
+ * Lookup68: xcm::v2::Xcm<Call>
**/
XcmV2Xcm: 'Vec<XcmV2Instruction>',
/**
- * Lookup69: xcm::v2::Instruction<Call>
+ * Lookup70: xcm::v2::Instruction<Call>
**/
XcmV2Instruction: {
_enum: {
@@ -776,7 +776,7 @@
}
},
/**
- * Lookup70: xcm::v2::Response
+ * Lookup71: xcm::v2::Response
**/
XcmV2Response: {
_enum: {
@@ -787,19 +787,19 @@
}
},
/**
- * Lookup73: xcm::v0::OriginKind
+ * Lookup74: xcm::v0::OriginKind
**/
XcmV0OriginKind: {
_enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
},
/**
- * Lookup74: xcm::double_encoded::DoubleEncoded<T>
+ * Lookup75: xcm::double_encoded::DoubleEncoded<T>
**/
XcmDoubleEncoded: {
encoded: 'Bytes'
},
/**
- * Lookup75: xcm::v1::multiasset::MultiAssetFilter
+ * Lookup76: xcm::v1::multiasset::MultiAssetFilter
**/
XcmV1MultiassetMultiAssetFilter: {
_enum: {
@@ -808,7 +808,7 @@
}
},
/**
- * Lookup76: xcm::v1::multiasset::WildMultiAsset
+ * Lookup77: xcm::v1::multiasset::WildMultiAsset
**/
XcmV1MultiassetWildMultiAsset: {
_enum: {
@@ -820,13 +820,13 @@
}
},
/**
- * Lookup77: xcm::v1::multiasset::WildFungibility
+ * Lookup78: xcm::v1::multiasset::WildFungibility
**/
XcmV1MultiassetWildFungibility: {
_enum: ['Fungible', 'NonFungible']
},
/**
- * Lookup78: xcm::v2::WeightLimit
+ * Lookup79: xcm::v2::WeightLimit
**/
XcmV2WeightLimit: {
_enum: {
@@ -835,7 +835,7 @@
}
},
/**
- * Lookup80: xcm::VersionedMultiAssets
+ * Lookup81: xcm::VersionedMultiAssets
**/
XcmVersionedMultiAssets: {
_enum: {
@@ -844,7 +844,7 @@
}
},
/**
- * Lookup82: xcm::v0::multi_asset::MultiAsset
+ * Lookup83: xcm::v0::multi_asset::MultiAsset
**/
XcmV0MultiAsset: {
_enum: {
@@ -883,7 +883,7 @@
}
},
/**
- * Lookup83: xcm::v0::multi_location::MultiLocation
+ * Lookup84: xcm::v0::multi_location::MultiLocation
**/
XcmV0MultiLocation: {
_enum: {
@@ -899,7 +899,7 @@
}
},
/**
- * Lookup84: xcm::v0::junction::Junction
+ * Lookup85: xcm::v0::junction::Junction
**/
XcmV0Junction: {
_enum: {
@@ -928,7 +928,7 @@
}
},
/**
- * Lookup85: xcm::VersionedMultiLocation
+ * Lookup86: xcm::VersionedMultiLocation
**/
XcmVersionedMultiLocation: {
_enum: {
@@ -937,7 +937,7 @@
}
},
/**
- * Lookup86: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup87: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -947,7 +947,7 @@
}
},
/**
- * Lookup87: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -963,22 +963,22 @@
},
WeightExhausted: {
messageId: '[u8;32]',
- remainingWeight: 'u64',
- requiredWeight: 'u64',
+ remainingWeight: 'Weight',
+ requiredWeight: 'Weight',
},
OverweightEnqueued: {
messageId: '[u8;32]',
overweightIndex: 'u64',
- requiredWeight: 'u64',
+ requiredWeight: 'Weight',
},
OverweightServiced: {
overweightIndex: 'u64',
- weightUsed: 'u64'
+ weightUsed: 'Weight'
}
}
},
/**
- * Lookup88: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup89: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletUniqueRawEvent: {
_enum: {
@@ -995,7 +995,7 @@
}
},
/**
- * Lookup89: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+ * Lookup90: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
**/
PalletEvmAccountBasicCrossAccountIdRepr: {
_enum: {
@@ -1004,7 +1004,7 @@
}
},
/**
- * Lookup92: pallet_unique_scheduler::pallet::Event<T>
+ * Lookup93: pallet_unique_scheduler::pallet::Event<T>
**/
PalletUniqueSchedulerEvent: {
_enum: {
@@ -1029,13 +1029,13 @@
}
},
/**
- * Lookup95: frame_support::traits::schedule::LookupError
+ * Lookup96: frame_support::traits::schedule::LookupError
**/
FrameSupportScheduleLookupError: {
_enum: ['Unknown', 'BadFormat']
},
/**
- * Lookup96: pallet_common::pallet::Event<T>
+ * Lookup97: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1053,7 +1053,7 @@
}
},
/**
- * Lookup99: pallet_structure::pallet::Event<T>
+ * Lookup100: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1061,7 +1061,7 @@
}
},
/**
- * Lookup100: pallet_rmrk_core::pallet::Event<T>
+ * Lookup101: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -1138,7 +1138,7 @@
}
},
/**
- * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1147,7 +1147,7 @@
}
},
/**
- * Lookup106: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup107: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -1162,7 +1162,7 @@
}
},
/**
- * Lookup107: pallet_app_promotion::pallet::Event<T>
+ * Lookup108: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1173,7 +1173,7 @@
}
},
/**
- * Lookup108: pallet_foreign_assets::module::Event<T>
+ * Lookup109: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1198,7 +1198,7 @@
}
},
/**
- * Lookup109: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1207,7 +1207,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup110: pallet_evm::pallet::Event<T>
+ * Lookup111: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1221,7 +1221,7 @@
}
},
/**
- * Lookup111: ethereum::log::Log
+ * Lookup112: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1229,7 +1229,7 @@
data: 'Bytes'
},
/**
- * Lookup115: pallet_ethereum::pallet::Event
+ * Lookup116: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1237,7 +1237,7 @@
}
},
/**
- * Lookup116: evm_core::error::ExitReason
+ * Lookup117: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1248,13 +1248,13 @@
}
},
/**
- * Lookup117: evm_core::error::ExitSucceed
+ * Lookup118: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup118: evm_core::error::ExitError
+ * Lookup119: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1276,13 +1276,13 @@
}
},
/**
- * Lookup121: evm_core::error::ExitRevert
+ * Lookup122: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup122: evm_core::error::ExitFatal
+ * Lookup123: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1293,7 +1293,7 @@
}
},
/**
- * Lookup123: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup124: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1303,7 +1303,7 @@
}
},
/**
- * Lookup124: frame_system::Phase
+ * Lookup125: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1313,14 +1313,14 @@
}
},
/**
- * Lookup126: frame_system::LastRuntimeUpgradeInfo
+ * Lookup127: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup127: frame_system::pallet::Call<T>
+ * Lookup128: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1358,15 +1358,15 @@
}
},
/**
- * Lookup132: frame_system::limits::BlockWeights
+ * Lookup133: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
- baseBlock: 'u64',
- maxBlock: 'u64',
+ baseBlock: 'Weight',
+ maxBlock: 'Weight',
perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
},
/**
- * Lookup133: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup134: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportWeightsPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1374,22 +1374,22 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup134: frame_system::limits::WeightsPerClass
+ * Lookup135: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
- baseExtrinsic: 'u64',
- maxExtrinsic: 'Option<u64>',
- maxTotal: 'Option<u64>',
- reserved: 'Option<u64>'
+ baseExtrinsic: 'Weight',
+ maxExtrinsic: 'Option<Weight>',
+ maxTotal: 'Option<Weight>',
+ reserved: 'Option<Weight>'
},
/**
- * Lookup136: frame_system::limits::BlockLength
+ * Lookup137: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportWeightsPerDispatchClassU32'
},
/**
- * Lookup137: frame_support::weights::PerDispatchClass<T>
+ * Lookup138: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU32: {
normal: 'u32',
@@ -1397,14 +1397,14 @@
mandatory: 'u32'
},
/**
- * Lookup138: frame_support::weights::RuntimeDbWeight
+ * Lookup139: frame_support::weights::RuntimeDbWeight
**/
FrameSupportWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup139: sp_version::RuntimeVersion
+ * Lookup140: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1417,13 +1417,13 @@
stateVersion: 'u8'
},
/**
- * Lookup144: frame_system::pallet::Error<T>
+ * Lookup145: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup146: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
@@ -1432,19 +1432,19 @@
maxPovSize: 'u32'
},
/**
- * Lookup148: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup149: polkadot_primitives::v2::UpgradeRestriction
**/
PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup149: sp_trie::storage_proof::StorageProof
+ * Lookup150: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup152: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
@@ -1453,7 +1453,7 @@
egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup155: polkadot_primitives::v2::AbridgedHrmpChannel
**/
PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
@@ -1464,7 +1464,7 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup156: polkadot_primitives::v2::AbridgedHostConfiguration
**/
PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
@@ -1478,14 +1478,14 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup162: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup163: cumulus_pallet_parachain_system::pallet::Call<T>
**/
CumulusPalletParachainSystemCall: {
_enum: {
@@ -1504,7 +1504,7 @@
}
},
/**
- * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup164: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1513,27 +1513,27 @@
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup166: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup169: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>
+ * Lookup172: cumulus_pallet_parachain_system::pallet::Error<T>
**/
CumulusPalletParachainSystemError: {
_enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
},
/**
- * Lookup173: pallet_balances::BalanceLock<Balance>
+ * Lookup174: pallet_balances::BalanceLock<Balance>
**/
PalletBalancesBalanceLock: {
id: '[u8;8]',
@@ -1541,26 +1541,26 @@
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup174: pallet_balances::Reasons
+ * Lookup175: pallet_balances::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup178: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup179: pallet_balances::Releases
+ * Lookup180: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup180: pallet_balances::pallet::Call<T, I>
+ * Lookup181: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -1593,13 +1593,13 @@
}
},
/**
- * Lookup183: pallet_balances::pallet::Error<T, I>
+ * Lookup184: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup185: pallet_timestamp::pallet::Call<T>
+ * Lookup186: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1609,13 +1609,13 @@
}
},
/**
- * Lookup187: pallet_transaction_payment::Releases
+ * Lookup188: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup189: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1624,7 +1624,7 @@
bond: 'u128'
},
/**
- * Lookup191: pallet_treasury::pallet::Call<T, I>
+ * Lookup192: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1648,17 +1648,17 @@
}
},
/**
- * Lookup194: frame_support::PalletId
+ * Lookup195: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup195: pallet_treasury::pallet::Error<T, I>
+ * Lookup196: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup196: pallet_sudo::pallet::Call<T>
+ * Lookup197: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -1667,7 +1667,7 @@
},
sudo_unchecked_weight: {
call: 'Call',
- weight: 'u64',
+ weight: 'Weight',
},
set_key: {
_alias: {
@@ -1682,7 +1682,7 @@
}
},
/**
- * Lookup198: orml_vesting::module::Call<T>
+ * Lookup199: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -1701,7 +1701,7 @@
}
},
/**
- * Lookup200: orml_xtokens::module::Call<T>
+ * Lookup201: orml_xtokens::module::Call<T>
**/
OrmlXtokensModuleCall: {
_enum: {
@@ -1744,7 +1744,7 @@
}
},
/**
- * Lookup201: xcm::VersionedMultiAsset
+ * Lookup202: xcm::VersionedMultiAsset
**/
XcmVersionedMultiAsset: {
_enum: {
@@ -1753,7 +1753,7 @@
}
},
/**
- * Lookup204: orml_tokens::module::Call<T>
+ * Lookup205: orml_tokens::module::Call<T>
**/
OrmlTokensModuleCall: {
_enum: {
@@ -1787,13 +1787,13 @@
}
},
/**
- * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup206: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
service_overweight: {
index: 'u64',
- weightLimit: 'u64',
+ weightLimit: 'Weight',
},
suspend_xcm_execution: 'Null',
resume_xcm_execution: 'Null',
@@ -1819,24 +1819,24 @@
_alias: {
new_: 'new',
},
- new_: 'u64',
+ new_: 'Weight',
},
update_weight_restrict_decay: {
_alias: {
new_: 'new',
},
- new_: 'u64',
+ new_: 'Weight',
},
update_xcmp_max_individual_weight: {
_alias: {
new_: 'new',
},
- new_: 'u64'
+ new_: 'Weight'
}
}
},
/**
- * Lookup206: pallet_xcm::pallet::Call<T>
+ * Lookup207: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -1858,7 +1858,7 @@
},
execute: {
message: 'XcmVersionedXcm',
- maxWeight: 'u64',
+ maxWeight: 'Weight',
},
force_xcm_version: {
location: 'XcmV1MultiLocation',
@@ -1890,7 +1890,7 @@
}
},
/**
- * Lookup207: xcm::VersionedXcm<Call>
+ * Lookup208: xcm::VersionedXcm<Call>
**/
XcmVersionedXcm: {
_enum: {
@@ -1900,7 +1900,7 @@
}
},
/**
- * Lookup208: xcm::v0::Xcm<Call>
+ * Lookup209: xcm::v0::Xcm<Call>
**/
XcmV0Xcm: {
_enum: {
@@ -1954,7 +1954,7 @@
}
},
/**
- * Lookup210: xcm::v0::order::Order<Call>
+ * Lookup211: xcm::v0::order::Order<Call>
**/
XcmV0Order: {
_enum: {
@@ -1997,7 +1997,7 @@
}
},
/**
- * Lookup212: xcm::v0::Response
+ * Lookup213: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -2005,7 +2005,7 @@
}
},
/**
- * Lookup213: xcm::v1::Xcm<Call>
+ * Lookup214: xcm::v1::Xcm<Call>
**/
XcmV1Xcm: {
_enum: {
@@ -2064,7 +2064,7 @@
}
},
/**
- * Lookup215: xcm::v1::order::Order<Call>
+ * Lookup216: xcm::v1::order::Order<Call>
**/
XcmV1Order: {
_enum: {
@@ -2109,7 +2109,7 @@
}
},
/**
- * Lookup217: xcm::v1::Response
+ * Lookup218: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -2118,22 +2118,22 @@
}
},
/**
- * Lookup231: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup232: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup233: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
service_overweight: {
index: 'u64',
- weightLimit: 'u64'
+ weightLimit: 'Weight'
}
}
},
/**
- * Lookup233: pallet_inflation::pallet::Call<T>
+ * Lookup234: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -2143,7 +2143,7 @@
}
},
/**
- * Lookup234: pallet_unique::Call<T>
+ * Lookup235: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2275,7 +2275,7 @@
}
},
/**
- * Lookup239: up_data_structs::CollectionMode
+ * Lookup240: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2285,7 +2285,7 @@
}
},
/**
- * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup241: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2300,13 +2300,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup242: up_data_structs::AccessMode
+ * Lookup243: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup244: up_data_structs::CollectionLimits
+ * Lookup245: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2320,7 +2320,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup246: up_data_structs::SponsoringRateLimit
+ * Lookup247: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2329,7 +2329,7 @@
}
},
/**
- * Lookup249: up_data_structs::CollectionPermissions
+ * Lookup250: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2337,7 +2337,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup251: up_data_structs::NestingPermissions
+ * Lookup252: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2345,18 +2345,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup253: up_data_structs::OwnerRestrictedSet
+ * Lookup254: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup258: up_data_structs::PropertyKeyPermission
+ * Lookup259: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup259: up_data_structs::PropertyPermission
+ * Lookup260: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2364,14 +2364,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup262: up_data_structs::Property
+ * Lookup263: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup265: up_data_structs::CreateItemData
+ * Lookup266: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2381,26 +2381,26 @@
}
},
/**
- * Lookup266: up_data_structs::CreateNftData
+ * Lookup267: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup267: up_data_structs::CreateFungibleData
+ * Lookup268: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup268: up_data_structs::CreateReFungibleData
+ * Lookup269: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup272: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -2411,14 +2411,14 @@
}
},
/**
- * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup274: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup281: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExSingleOwner: {
user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2426,14 +2426,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup283: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExMultipleOwners: {
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup283: pallet_unique_scheduler::pallet::Call<T>
+ * Lookup284: pallet_unique_scheduler::pallet::Call<T>
**/
PalletUniqueSchedulerCall: {
_enum: {
@@ -2457,7 +2457,7 @@
}
},
/**
- * Lookup285: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
+ * Lookup286: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
**/
FrameSupportScheduleMaybeHashed: {
_enum: {
@@ -2466,7 +2466,7 @@
}
},
/**
- * Lookup286: pallet_configuration::pallet::Call<T>
+ * Lookup287: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2479,15 +2479,15 @@
}
},
/**
- * Lookup287: pallet_template_transaction_payment::Call<T>
+ * Lookup289: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup288: pallet_structure::pallet::Call<T>
+ * Lookup290: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup289: pallet_rmrk_core::pallet::Call<T>
+ * Lookup291: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2578,7 +2578,7 @@
}
},
/**
- * Lookup295: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup297: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2588,7 +2588,7 @@
}
},
/**
- * Lookup297: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup299: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2597,7 +2597,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup299: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup301: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2608,7 +2608,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup300: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup302: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2619,7 +2619,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup303: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup305: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2640,7 +2640,7 @@
}
},
/**
- * Lookup306: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup308: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2649,7 +2649,7 @@
}
},
/**
- * Lookup308: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2657,7 +2657,7 @@
src: 'Bytes'
},
/**
- * Lookup309: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup311: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2666,7 +2666,7 @@
z: 'u32'
},
/**
- * Lookup310: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup312: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2676,7 +2676,7 @@
}
},
/**
- * Lookup312: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup314: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2684,14 +2684,14 @@
inherit: 'bool'
},
/**
- * Lookup314: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup316: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup316: pallet_app_promotion::pallet::Call<T>
+ * Lookup318: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2720,7 +2720,7 @@
}
},
/**
- * Lookup318: pallet_foreign_assets::module::Call<T>
+ * Lookup320: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2737,7 +2737,7 @@
}
},
/**
- * Lookup319: pallet_evm::pallet::Call<T>
+ * Lookup321: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2780,7 +2780,7 @@
}
},
/**
- * Lookup323: pallet_ethereum::pallet::Call<T>
+ * Lookup325: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2790,7 +2790,7 @@
}
},
/**
- * Lookup324: ethereum::transaction::TransactionV2
+ * Lookup326: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2800,7 +2800,7 @@
}
},
/**
- * Lookup325: ethereum::transaction::LegacyTransaction
+ * Lookup327: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2812,7 +2812,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup326: ethereum::transaction::TransactionAction
+ * Lookup328: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2821,7 +2821,7 @@
}
},
/**
- * Lookup327: ethereum::transaction::TransactionSignature
+ * Lookup329: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2829,7 +2829,7 @@
s: 'H256'
},
/**
- * Lookup329: ethereum::transaction::EIP2930Transaction
+ * Lookup331: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2845,14 +2845,14 @@
s: 'H256'
},
/**
- * Lookup331: ethereum::transaction::AccessListItem
+ * Lookup333: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup332: ethereum::transaction::EIP1559Transaction
+ * Lookup334: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2869,7 +2869,7 @@
s: 'H256'
},
/**
- * Lookup333: pallet_evm_migration::pallet::Call<T>
+ * Lookup335: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2887,32 +2887,32 @@
}
},
/**
- * Lookup336: pallet_sudo::pallet::Error<T>
+ * Lookup338: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup338: orml_vesting::module::Error<T>
+ * Lookup340: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup339: orml_xtokens::module::Error<T>
+ * Lookup341: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup342: orml_tokens::BalanceLock<Balance>
+ * Lookup344: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup344: orml_tokens::AccountData<Balance>
+ * Lookup346: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -2920,20 +2920,20 @@
frozen: 'u128'
},
/**
- * Lookup346: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup348: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup348: orml_tokens::module::Error<T>
+ * Lookup350: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup350: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup352: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2941,19 +2941,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup351: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup353: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup354: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup356: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup357: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup359: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2963,46 +2963,46 @@
lastIndex: 'u16'
},
/**
- * Lookup358: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup360: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup360: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup362: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
dropThreshold: 'u32',
resumeThreshold: 'u32',
- thresholdWeight: 'u64',
- weightRestrictDecay: 'u64',
- xcmpMaxIndividualWeight: 'u64'
+ thresholdWeight: 'Weight',
+ weightRestrictDecay: 'Weight',
+ xcmpMaxIndividualWeight: 'Weight'
},
/**
- * Lookup362: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup364: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup363: pallet_xcm::pallet::Error<T>
+ * Lookup365: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup364: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup366: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup365: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup367: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
- maxIndividual: 'u64'
+ maxIndividual: 'Weight'
},
/**
- * Lookup366: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup368: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3010,19 +3010,19 @@
overweightCount: 'u64'
},
/**
- * Lookup369: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup371: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup373: pallet_unique::Error<T>
+ * Lookup375: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup376: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup378: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletUniqueSchedulerScheduledV3: {
maybeId: 'Option<[u8;16]>',
@@ -3032,7 +3032,7 @@
origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup377: opal_runtime::OriginCaller
+ * Lookup379: opal_runtime::OriginCaller
**/
OpalRuntimeOriginCaller: {
_enum: {
@@ -3141,7 +3141,7 @@
}
},
/**
- * Lookup378: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ * Lookup380: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
**/
FrameSupportDispatchRawOrigin: {
_enum: {
@@ -3151,7 +3151,7 @@
}
},
/**
- * Lookup379: pallet_xcm::pallet::Origin
+ * Lookup381: pallet_xcm::pallet::Origin
**/
PalletXcmOrigin: {
_enum: {
@@ -3160,7 +3160,7 @@
}
},
/**
- * Lookup380: cumulus_pallet_xcm::pallet::Origin
+ * Lookup382: cumulus_pallet_xcm::pallet::Origin
**/
CumulusPalletXcmOrigin: {
_enum: {
@@ -3169,7 +3169,7 @@
}
},
/**
- * Lookup381: pallet_ethereum::RawOrigin
+ * Lookup383: pallet_ethereum::RawOrigin
**/
PalletEthereumRawOrigin: {
_enum: {
@@ -3177,17 +3177,17 @@
}
},
/**
- * Lookup382: sp_core::Void
+ * Lookup384: sp_core::Void
**/
SpCoreVoid: 'Null',
/**
- * Lookup383: pallet_unique_scheduler::pallet::Error<T>
+ * Lookup385: pallet_unique_scheduler::pallet::Error<T>
**/
PalletUniqueSchedulerError: {
_enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
},
/**
- * Lookup384: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup386: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3201,7 +3201,7 @@
flags: '[u8;1]'
},
/**
- * Lookup385: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup387: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3211,7 +3211,7 @@
}
},
/**
- * Lookup387: up_data_structs::Properties
+ * Lookup389: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3219,15 +3219,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup388: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup390: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup393: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup395: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup400: up_data_structs::CollectionStats
+ * Lookup402: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3235,18 +3235,18 @@
alive: 'u32'
},
/**
- * Lookup401: up_data_structs::TokenChild
+ * Lookup403: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup402: PhantomType::up_data_structs<T>
+ * Lookup404: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup404: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup406: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3254,7 +3254,7 @@
pieces: 'u128'
},
/**
- * Lookup406: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup408: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3271,7 +3271,7 @@
foreign: 'bool'
},
/**
- * Lookup407: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup409: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3281,7 +3281,7 @@
nftsCount: 'u32'
},
/**
- * Lookup408: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup410: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3291,14 +3291,14 @@
pending: 'bool'
},
/**
- * Lookup410: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup412: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup411: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup413: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3307,14 +3307,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup412: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup414: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup413: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup415: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3322,92 +3322,92 @@
symbol: 'Bytes'
},
/**
- * Lookup414: rmrk_traits::nft::NftChild
+ * Lookup416: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup416: pallet_common::pallet::Error<T>
+ * Lookup418: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
},
/**
- * Lookup418: pallet_fungible::pallet::Error<T>
+ * Lookup420: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup419: pallet_refungible::ItemData
+ * Lookup421: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup424: pallet_refungible::pallet::Error<T>
+ * Lookup426: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup425: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup427: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup427: up_data_structs::PropertyScope
+ * Lookup429: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup429: pallet_nonfungible::pallet::Error<T>
+ * Lookup431: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup430: pallet_structure::pallet::Error<T>
+ * Lookup432: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup431: pallet_rmrk_core::pallet::Error<T>
+ * Lookup433: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup433: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup435: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup439: pallet_app_promotion::pallet::Error<T>
+ * Lookup441: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup440: pallet_foreign_assets::module::Error<T>
+ * Lookup442: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup443: pallet_evm::pallet::Error<T>
+ * Lookup445: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup446: fp_rpc::TransactionStatus
+ * Lookup448: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3419,11 +3419,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup448: ethbloom::Bloom
+ * Lookup450: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup450: ethereum::receipt::ReceiptV3
+ * Lookup452: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3433,7 +3433,7 @@
}
},
/**
- * Lookup451: ethereum::receipt::EIP658ReceiptData
+ * Lookup453: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3442,7 +3442,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup452: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup454: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3450,7 +3450,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup453: ethereum::header::Header
+ * Lookup455: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3470,23 +3470,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup454: ethereum_types::hash::H64
+ * Lookup456: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup459: pallet_ethereum::pallet::Error<T>
+ * Lookup461: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup460: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup462: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup461: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup463: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3496,25 +3496,25 @@
}
},
/**
- * Lookup462: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup464: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup468: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup470: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup469: pallet_evm_migration::pallet::Error<T>
+ * Lookup471: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup471: sp_runtime::MultiSignature
+ * Lookup473: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3524,47 +3524,47 @@
}
},
/**
- * Lookup472: sp_core::ed25519::Signature
+ * Lookup474: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup474: sp_core::sr25519::Signature
+ * Lookup476: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup475: sp_core::ecdsa::Signature
+ * Lookup477: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup480: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup479: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup481: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup480: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup482: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup483: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup485: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup484: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup486: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup485: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup487: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup486: opal_runtime::Runtime
+ * Lookup488: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup487: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup489: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -60,7 +60,7 @@
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
FrameSupportWeightsPays: FrameSupportWeightsPays;
FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;
- FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64;
+ FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;
FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;
FrameSystemAccountInfo: FrameSystemAccountInfo;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportWeightsPerDispatchClassU64 (7) */32 interface FrameSupportWeightsPerDispatchClassU64 extends Struct {33 readonly normal: u64;34 readonly operational: u64;35 readonly mandatory: u64;36 }3738 /** @name SpRuntimeDigest (11) */39 interface SpRuntimeDigest extends Struct {40 readonly logs: Vec<SpRuntimeDigestDigestItem>;41 }4243 /** @name SpRuntimeDigestDigestItem (13) */44 interface SpRuntimeDigestDigestItem extends Enum {45 readonly isOther: boolean;46 readonly asOther: Bytes;47 readonly isConsensus: boolean;48 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;49 readonly isSeal: boolean;50 readonly asSeal: ITuple<[U8aFixed, Bytes]>;51 readonly isPreRuntime: boolean;52 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;53 readonly isRuntimeEnvironmentUpdated: boolean;54 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';55 }5657 /** @name FrameSystemEventRecord (16) */58 interface FrameSystemEventRecord extends Struct {59 readonly phase: FrameSystemPhase;60 readonly event: Event;61 readonly topics: Vec<H256>;62 }6364 /** @name FrameSystemEvent (18) */65 interface FrameSystemEvent extends Enum {66 readonly isExtrinsicSuccess: boolean;67 readonly asExtrinsicSuccess: {68 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;69 } & Struct;70 readonly isExtrinsicFailed: boolean;71 readonly asExtrinsicFailed: {72 readonly dispatchError: SpRuntimeDispatchError;73 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;74 } & Struct;75 readonly isCodeUpdated: boolean;76 readonly isNewAccount: boolean;77 readonly asNewAccount: {78 readonly account: AccountId32;79 } & Struct;80 readonly isKilledAccount: boolean;81 readonly asKilledAccount: {82 readonly account: AccountId32;83 } & Struct;84 readonly isRemarked: boolean;85 readonly asRemarked: {86 readonly sender: AccountId32;87 readonly hash_: H256;88 } & Struct;89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';90 }9192 /** @name FrameSupportWeightsDispatchInfo (19) */93 interface FrameSupportWeightsDispatchInfo extends Struct {94 readonly weight: u64;95 readonly class: FrameSupportWeightsDispatchClass;96 readonly paysFee: FrameSupportWeightsPays;97 }9899 /** @name FrameSupportWeightsDispatchClass (20) */100 interface FrameSupportWeightsDispatchClass extends Enum {101 readonly isNormal: boolean;102 readonly isOperational: boolean;103 readonly isMandatory: boolean;104 readonly type: 'Normal' | 'Operational' | 'Mandatory';105 }106107 /** @name FrameSupportWeightsPays (21) */108 interface FrameSupportWeightsPays extends Enum {109 readonly isYes: boolean;110 readonly isNo: boolean;111 readonly type: 'Yes' | 'No';112 }113114 /** @name SpRuntimeDispatchError (22) */115 interface SpRuntimeDispatchError extends Enum {116 readonly isOther: boolean;117 readonly isCannotLookup: boolean;118 readonly isBadOrigin: boolean;119 readonly isModule: boolean;120 readonly asModule: SpRuntimeModuleError;121 readonly isConsumerRemaining: boolean;122 readonly isNoProviders: boolean;123 readonly isTooManyConsumers: boolean;124 readonly isToken: boolean;125 readonly asToken: SpRuntimeTokenError;126 readonly isArithmetic: boolean;127 readonly asArithmetic: SpRuntimeArithmeticError;128 readonly isTransactional: boolean;129 readonly asTransactional: SpRuntimeTransactionalError;130 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';131 }132133 /** @name SpRuntimeModuleError (23) */134 interface SpRuntimeModuleError extends Struct {135 readonly index: u8;136 readonly error: U8aFixed;137 }138139 /** @name SpRuntimeTokenError (24) */140 interface SpRuntimeTokenError extends Enum {141 readonly isNoFunds: boolean;142 readonly isWouldDie: boolean;143 readonly isBelowMinimum: boolean;144 readonly isCannotCreate: boolean;145 readonly isUnknownAsset: boolean;146 readonly isFrozen: boolean;147 readonly isUnsupported: boolean;148 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';149 }150151 /** @name SpRuntimeArithmeticError (25) */152 interface SpRuntimeArithmeticError extends Enum {153 readonly isUnderflow: boolean;154 readonly isOverflow: boolean;155 readonly isDivisionByZero: boolean;156 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';157 }158159 /** @name SpRuntimeTransactionalError (26) */160 interface SpRuntimeTransactionalError extends Enum {161 readonly isLimitReached: boolean;162 readonly isNoLayer: boolean;163 readonly type: 'LimitReached' | 'NoLayer';164 }165166 /** @name CumulusPalletParachainSystemEvent (27) */167 interface CumulusPalletParachainSystemEvent extends Enum {168 readonly isValidationFunctionStored: boolean;169 readonly isValidationFunctionApplied: boolean;170 readonly asValidationFunctionApplied: {171 readonly relayChainBlockNum: u32;172 } & Struct;173 readonly isValidationFunctionDiscarded: boolean;174 readonly isUpgradeAuthorized: boolean;175 readonly asUpgradeAuthorized: {176 readonly codeHash: H256;177 } & Struct;178 readonly isDownwardMessagesReceived: boolean;179 readonly asDownwardMessagesReceived: {180 readonly count: u32;181 } & Struct;182 readonly isDownwardMessagesProcessed: boolean;183 readonly asDownwardMessagesProcessed: {184 readonly weightUsed: u64;185 readonly dmqHead: H256;186 } & Struct;187 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';188 }189190 /** @name PalletBalancesEvent (28) */191 interface PalletBalancesEvent extends Enum {192 readonly isEndowed: boolean;193 readonly asEndowed: {194 readonly account: AccountId32;195 readonly freeBalance: u128;196 } & Struct;197 readonly isDustLost: boolean;198 readonly asDustLost: {199 readonly account: AccountId32;200 readonly amount: u128;201 } & Struct;202 readonly isTransfer: boolean;203 readonly asTransfer: {204 readonly from: AccountId32;205 readonly to: AccountId32;206 readonly amount: u128;207 } & Struct;208 readonly isBalanceSet: boolean;209 readonly asBalanceSet: {210 readonly who: AccountId32;211 readonly free: u128;212 readonly reserved: u128;213 } & Struct;214 readonly isReserved: boolean;215 readonly asReserved: {216 readonly who: AccountId32;217 readonly amount: u128;218 } & Struct;219 readonly isUnreserved: boolean;220 readonly asUnreserved: {221 readonly who: AccountId32;222 readonly amount: u128;223 } & Struct;224 readonly isReserveRepatriated: boolean;225 readonly asReserveRepatriated: {226 readonly from: AccountId32;227 readonly to: AccountId32;228 readonly amount: u128;229 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;230 } & Struct;231 readonly isDeposit: boolean;232 readonly asDeposit: {233 readonly who: AccountId32;234 readonly amount: u128;235 } & Struct;236 readonly isWithdraw: boolean;237 readonly asWithdraw: {238 readonly who: AccountId32;239 readonly amount: u128;240 } & Struct;241 readonly isSlashed: boolean;242 readonly asSlashed: {243 readonly who: AccountId32;244 readonly amount: u128;245 } & Struct;246 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';247 }248249 /** @name FrameSupportTokensMiscBalanceStatus (29) */250 interface FrameSupportTokensMiscBalanceStatus extends Enum {251 readonly isFree: boolean;252 readonly isReserved: boolean;253 readonly type: 'Free' | 'Reserved';254 }255256 /** @name PalletTransactionPaymentEvent (30) */257 interface PalletTransactionPaymentEvent extends Enum {258 readonly isTransactionFeePaid: boolean;259 readonly asTransactionFeePaid: {260 readonly who: AccountId32;261 readonly actualFee: u128;262 readonly tip: u128;263 } & Struct;264 readonly type: 'TransactionFeePaid';265 }266267 /** @name PalletTreasuryEvent (31) */268 interface PalletTreasuryEvent extends Enum {269 readonly isProposed: boolean;270 readonly asProposed: {271 readonly proposalIndex: u32;272 } & Struct;273 readonly isSpending: boolean;274 readonly asSpending: {275 readonly budgetRemaining: u128;276 } & Struct;277 readonly isAwarded: boolean;278 readonly asAwarded: {279 readonly proposalIndex: u32;280 readonly award: u128;281 readonly account: AccountId32;282 } & Struct;283 readonly isRejected: boolean;284 readonly asRejected: {285 readonly proposalIndex: u32;286 readonly slashed: u128;287 } & Struct;288 readonly isBurnt: boolean;289 readonly asBurnt: {290 readonly burntFunds: u128;291 } & Struct;292 readonly isRollover: boolean;293 readonly asRollover: {294 readonly rolloverBalance: u128;295 } & Struct;296 readonly isDeposit: boolean;297 readonly asDeposit: {298 readonly value: u128;299 } & Struct;300 readonly isSpendApproved: boolean;301 readonly asSpendApproved: {302 readonly proposalIndex: u32;303 readonly amount: u128;304 readonly beneficiary: AccountId32;305 } & Struct;306 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';307 }308309 /** @name PalletSudoEvent (32) */310 interface PalletSudoEvent extends Enum {311 readonly isSudid: boolean;312 readonly asSudid: {313 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;314 } & Struct;315 readonly isKeyChanged: boolean;316 readonly asKeyChanged: {317 readonly oldSudoer: Option<AccountId32>;318 } & Struct;319 readonly isSudoAsDone: boolean;320 readonly asSudoAsDone: {321 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;322 } & Struct;323 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';324 }325326 /** @name OrmlVestingModuleEvent (36) */327 interface OrmlVestingModuleEvent extends Enum {328 readonly isVestingScheduleAdded: boolean;329 readonly asVestingScheduleAdded: {330 readonly from: AccountId32;331 readonly to: AccountId32;332 readonly vestingSchedule: OrmlVestingVestingSchedule;333 } & Struct;334 readonly isClaimed: boolean;335 readonly asClaimed: {336 readonly who: AccountId32;337 readonly amount: u128;338 } & Struct;339 readonly isVestingSchedulesUpdated: boolean;340 readonly asVestingSchedulesUpdated: {341 readonly who: AccountId32;342 } & Struct;343 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';344 }345346 /** @name OrmlVestingVestingSchedule (37) */347 interface OrmlVestingVestingSchedule extends Struct {348 readonly start: u32;349 readonly period: u32;350 readonly periodCount: u32;351 readonly perPeriod: Compact<u128>;352 }353354 /** @name OrmlXtokensModuleEvent (39) */355 interface OrmlXtokensModuleEvent extends Enum {356 readonly isTransferredMultiAssets: boolean;357 readonly asTransferredMultiAssets: {358 readonly sender: AccountId32;359 readonly assets: XcmV1MultiassetMultiAssets;360 readonly fee: XcmV1MultiAsset;361 readonly dest: XcmV1MultiLocation;362 } & Struct;363 readonly type: 'TransferredMultiAssets';364 }365366 /** @name XcmV1MultiassetMultiAssets (40) */367 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}368369 /** @name XcmV1MultiAsset (42) */370 interface XcmV1MultiAsset extends Struct {371 readonly id: XcmV1MultiassetAssetId;372 readonly fun: XcmV1MultiassetFungibility;373 }374375 /** @name XcmV1MultiassetAssetId (43) */376 interface XcmV1MultiassetAssetId extends Enum {377 readonly isConcrete: boolean;378 readonly asConcrete: XcmV1MultiLocation;379 readonly isAbstract: boolean;380 readonly asAbstract: Bytes;381 readonly type: 'Concrete' | 'Abstract';382 }383384 /** @name XcmV1MultiLocation (44) */385 interface XcmV1MultiLocation extends Struct {386 readonly parents: u8;387 readonly interior: XcmV1MultilocationJunctions;388 }389390 /** @name XcmV1MultilocationJunctions (45) */391 interface XcmV1MultilocationJunctions extends Enum {392 readonly isHere: boolean;393 readonly isX1: boolean;394 readonly asX1: XcmV1Junction;395 readonly isX2: boolean;396 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;397 readonly isX3: boolean;398 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;399 readonly isX4: boolean;400 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;401 readonly isX5: boolean;402 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;403 readonly isX6: boolean;404 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;405 readonly isX7: boolean;406 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;407 readonly isX8: boolean;408 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;409 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';410 }411412 /** @name XcmV1Junction (46) */413 interface XcmV1Junction extends Enum {414 readonly isParachain: boolean;415 readonly asParachain: Compact<u32>;416 readonly isAccountId32: boolean;417 readonly asAccountId32: {418 readonly network: XcmV0JunctionNetworkId;419 readonly id: U8aFixed;420 } & Struct;421 readonly isAccountIndex64: boolean;422 readonly asAccountIndex64: {423 readonly network: XcmV0JunctionNetworkId;424 readonly index: Compact<u64>;425 } & Struct;426 readonly isAccountKey20: boolean;427 readonly asAccountKey20: {428 readonly network: XcmV0JunctionNetworkId;429 readonly key: U8aFixed;430 } & Struct;431 readonly isPalletInstance: boolean;432 readonly asPalletInstance: u8;433 readonly isGeneralIndex: boolean;434 readonly asGeneralIndex: Compact<u128>;435 readonly isGeneralKey: boolean;436 readonly asGeneralKey: Bytes;437 readonly isOnlyChild: boolean;438 readonly isPlurality: boolean;439 readonly asPlurality: {440 readonly id: XcmV0JunctionBodyId;441 readonly part: XcmV0JunctionBodyPart;442 } & Struct;443 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';444 }445446 /** @name XcmV0JunctionNetworkId (48) */447 interface XcmV0JunctionNetworkId extends Enum {448 readonly isAny: boolean;449 readonly isNamed: boolean;450 readonly asNamed: Bytes;451 readonly isPolkadot: boolean;452 readonly isKusama: boolean;453 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';454 }455456 /** @name XcmV0JunctionBodyId (52) */457 interface XcmV0JunctionBodyId extends Enum {458 readonly isUnit: boolean;459 readonly isNamed: boolean;460 readonly asNamed: Bytes;461 readonly isIndex: boolean;462 readonly asIndex: Compact<u32>;463 readonly isExecutive: boolean;464 readonly isTechnical: boolean;465 readonly isLegislative: boolean;466 readonly isJudicial: boolean;467 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';468 }469470 /** @name XcmV0JunctionBodyPart (53) */471 interface XcmV0JunctionBodyPart extends Enum {472 readonly isVoice: boolean;473 readonly isMembers: boolean;474 readonly asMembers: {475 readonly count: Compact<u32>;476 } & Struct;477 readonly isFraction: boolean;478 readonly asFraction: {479 readonly nom: Compact<u32>;480 readonly denom: Compact<u32>;481 } & Struct;482 readonly isAtLeastProportion: boolean;483 readonly asAtLeastProportion: {484 readonly nom: Compact<u32>;485 readonly denom: Compact<u32>;486 } & Struct;487 readonly isMoreThanProportion: boolean;488 readonly asMoreThanProportion: {489 readonly nom: Compact<u32>;490 readonly denom: Compact<u32>;491 } & Struct;492 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';493 }494495 /** @name XcmV1MultiassetFungibility (54) */496 interface XcmV1MultiassetFungibility extends Enum {497 readonly isFungible: boolean;498 readonly asFungible: Compact<u128>;499 readonly isNonFungible: boolean;500 readonly asNonFungible: XcmV1MultiassetAssetInstance;501 readonly type: 'Fungible' | 'NonFungible';502 }503504 /** @name XcmV1MultiassetAssetInstance (55) */505 interface XcmV1MultiassetAssetInstance extends Enum {506 readonly isUndefined: boolean;507 readonly isIndex: boolean;508 readonly asIndex: Compact<u128>;509 readonly isArray4: boolean;510 readonly asArray4: U8aFixed;511 readonly isArray8: boolean;512 readonly asArray8: U8aFixed;513 readonly isArray16: boolean;514 readonly asArray16: U8aFixed;515 readonly isArray32: boolean;516 readonly asArray32: U8aFixed;517 readonly isBlob: boolean;518 readonly asBlob: Bytes;519 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';520 }521522 /** @name OrmlTokensModuleEvent (58) */523 interface OrmlTokensModuleEvent extends Enum {524 readonly isEndowed: boolean;525 readonly asEndowed: {526 readonly currencyId: PalletForeignAssetsAssetIds;527 readonly who: AccountId32;528 readonly amount: u128;529 } & Struct;530 readonly isDustLost: boolean;531 readonly asDustLost: {532 readonly currencyId: PalletForeignAssetsAssetIds;533 readonly who: AccountId32;534 readonly amount: u128;535 } & Struct;536 readonly isTransfer: boolean;537 readonly asTransfer: {538 readonly currencyId: PalletForeignAssetsAssetIds;539 readonly from: AccountId32;540 readonly to: AccountId32;541 readonly amount: u128;542 } & Struct;543 readonly isReserved: boolean;544 readonly asReserved: {545 readonly currencyId: PalletForeignAssetsAssetIds;546 readonly who: AccountId32;547 readonly amount: u128;548 } & Struct;549 readonly isUnreserved: boolean;550 readonly asUnreserved: {551 readonly currencyId: PalletForeignAssetsAssetIds;552 readonly who: AccountId32;553 readonly amount: u128;554 } & Struct;555 readonly isReserveRepatriated: boolean;556 readonly asReserveRepatriated: {557 readonly currencyId: PalletForeignAssetsAssetIds;558 readonly from: AccountId32;559 readonly to: AccountId32;560 readonly amount: u128;561 readonly status: FrameSupportTokensMiscBalanceStatus;562 } & Struct;563 readonly isBalanceSet: boolean;564 readonly asBalanceSet: {565 readonly currencyId: PalletForeignAssetsAssetIds;566 readonly who: AccountId32;567 readonly free: u128;568 readonly reserved: u128;569 } & Struct;570 readonly isTotalIssuanceSet: boolean;571 readonly asTotalIssuanceSet: {572 readonly currencyId: PalletForeignAssetsAssetIds;573 readonly amount: u128;574 } & Struct;575 readonly isWithdrawn: boolean;576 readonly asWithdrawn: {577 readonly currencyId: PalletForeignAssetsAssetIds;578 readonly who: AccountId32;579 readonly amount: u128;580 } & Struct;581 readonly isSlashed: boolean;582 readonly asSlashed: {583 readonly currencyId: PalletForeignAssetsAssetIds;584 readonly who: AccountId32;585 readonly freeAmount: u128;586 readonly reservedAmount: u128;587 } & Struct;588 readonly isDeposited: boolean;589 readonly asDeposited: {590 readonly currencyId: PalletForeignAssetsAssetIds;591 readonly who: AccountId32;592 readonly amount: u128;593 } & Struct;594 readonly isLockSet: boolean;595 readonly asLockSet: {596 readonly lockId: U8aFixed;597 readonly currencyId: PalletForeignAssetsAssetIds;598 readonly who: AccountId32;599 readonly amount: u128;600 } & Struct;601 readonly isLockRemoved: boolean;602 readonly asLockRemoved: {603 readonly lockId: U8aFixed;604 readonly currencyId: PalletForeignAssetsAssetIds;605 readonly who: AccountId32;606 } & Struct;607 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';608 }609610 /** @name PalletForeignAssetsAssetIds (59) */611 interface PalletForeignAssetsAssetIds extends Enum {612 readonly isForeignAssetId: boolean;613 readonly asForeignAssetId: u32;614 readonly isNativeAssetId: boolean;615 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;616 readonly type: 'ForeignAssetId' | 'NativeAssetId';617 }618619 /** @name PalletForeignAssetsNativeCurrency (60) */620 interface PalletForeignAssetsNativeCurrency extends Enum {621 readonly isHere: boolean;622 readonly isParent: boolean;623 readonly type: 'Here' | 'Parent';624 }625626 /** @name CumulusPalletXcmpQueueEvent (61) */627 interface CumulusPalletXcmpQueueEvent extends Enum {628 readonly isSuccess: boolean;629 readonly asSuccess: {630 readonly messageHash: Option<H256>;631 readonly weight: u64;632 } & Struct;633 readonly isFail: boolean;634 readonly asFail: {635 readonly messageHash: Option<H256>;636 readonly error: XcmV2TraitsError;637 readonly weight: u64;638 } & Struct;639 readonly isBadVersion: boolean;640 readonly asBadVersion: {641 readonly messageHash: Option<H256>;642 } & Struct;643 readonly isBadFormat: boolean;644 readonly asBadFormat: {645 readonly messageHash: Option<H256>;646 } & Struct;647 readonly isUpwardMessageSent: boolean;648 readonly asUpwardMessageSent: {649 readonly messageHash: Option<H256>;650 } & Struct;651 readonly isXcmpMessageSent: boolean;652 readonly asXcmpMessageSent: {653 readonly messageHash: Option<H256>;654 } & Struct;655 readonly isOverweightEnqueued: boolean;656 readonly asOverweightEnqueued: {657 readonly sender: u32;658 readonly sentAt: u32;659 readonly index: u64;660 readonly required: u64;661 } & Struct;662 readonly isOverweightServiced: boolean;663 readonly asOverweightServiced: {664 readonly index: u64;665 readonly used: u64;666 } & Struct;667 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';668 }669670 /** @name XcmV2TraitsError (63) */671 interface XcmV2TraitsError extends Enum {672 readonly isOverflow: boolean;673 readonly isUnimplemented: boolean;674 readonly isUntrustedReserveLocation: boolean;675 readonly isUntrustedTeleportLocation: boolean;676 readonly isMultiLocationFull: boolean;677 readonly isMultiLocationNotInvertible: boolean;678 readonly isBadOrigin: boolean;679 readonly isInvalidLocation: boolean;680 readonly isAssetNotFound: boolean;681 readonly isFailedToTransactAsset: boolean;682 readonly isNotWithdrawable: boolean;683 readonly isLocationCannotHold: boolean;684 readonly isExceedsMaxMessageSize: boolean;685 readonly isDestinationUnsupported: boolean;686 readonly isTransport: boolean;687 readonly isUnroutable: boolean;688 readonly isUnknownClaim: boolean;689 readonly isFailedToDecode: boolean;690 readonly isMaxWeightInvalid: boolean;691 readonly isNotHoldingFees: boolean;692 readonly isTooExpensive: boolean;693 readonly isTrap: boolean;694 readonly asTrap: u64;695 readonly isUnhandledXcmVersion: boolean;696 readonly isWeightLimitReached: boolean;697 readonly asWeightLimitReached: u64;698 readonly isBarrier: boolean;699 readonly isWeightNotComputable: boolean;700 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';701 }702703 /** @name PalletXcmEvent (65) */704 interface PalletXcmEvent extends Enum {705 readonly isAttempted: boolean;706 readonly asAttempted: XcmV2TraitsOutcome;707 readonly isSent: boolean;708 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;709 readonly isUnexpectedResponse: boolean;710 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;711 readonly isResponseReady: boolean;712 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;713 readonly isNotified: boolean;714 readonly asNotified: ITuple<[u64, u8, u8]>;715 readonly isNotifyOverweight: boolean;716 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;717 readonly isNotifyDispatchError: boolean;718 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;719 readonly isNotifyDecodeFailed: boolean;720 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;721 readonly isInvalidResponder: boolean;722 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;723 readonly isInvalidResponderVersion: boolean;724 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;725 readonly isResponseTaken: boolean;726 readonly asResponseTaken: u64;727 readonly isAssetsTrapped: boolean;728 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;729 readonly isVersionChangeNotified: boolean;730 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;731 readonly isSupportedVersionChanged: boolean;732 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;733 readonly isNotifyTargetSendFail: boolean;734 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;735 readonly isNotifyTargetMigrationFail: boolean;736 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;737 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';738 }739740 /** @name XcmV2TraitsOutcome (66) */741 interface XcmV2TraitsOutcome extends Enum {742 readonly isComplete: boolean;743 readonly asComplete: u64;744 readonly isIncomplete: boolean;745 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;746 readonly isError: boolean;747 readonly asError: XcmV2TraitsError;748 readonly type: 'Complete' | 'Incomplete' | 'Error';749 }750751 /** @name XcmV2Xcm (67) */752 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}753754 /** @name XcmV2Instruction (69) */755 interface XcmV2Instruction extends Enum {756 readonly isWithdrawAsset: boolean;757 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;758 readonly isReserveAssetDeposited: boolean;759 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;760 readonly isReceiveTeleportedAsset: boolean;761 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;762 readonly isQueryResponse: boolean;763 readonly asQueryResponse: {764 readonly queryId: Compact<u64>;765 readonly response: XcmV2Response;766 readonly maxWeight: Compact<u64>;767 } & Struct;768 readonly isTransferAsset: boolean;769 readonly asTransferAsset: {770 readonly assets: XcmV1MultiassetMultiAssets;771 readonly beneficiary: XcmV1MultiLocation;772 } & Struct;773 readonly isTransferReserveAsset: boolean;774 readonly asTransferReserveAsset: {775 readonly assets: XcmV1MultiassetMultiAssets;776 readonly dest: XcmV1MultiLocation;777 readonly xcm: XcmV2Xcm;778 } & Struct;779 readonly isTransact: boolean;780 readonly asTransact: {781 readonly originType: XcmV0OriginKind;782 readonly requireWeightAtMost: Compact<u64>;783 readonly call: XcmDoubleEncoded;784 } & Struct;785 readonly isHrmpNewChannelOpenRequest: boolean;786 readonly asHrmpNewChannelOpenRequest: {787 readonly sender: Compact<u32>;788 readonly maxMessageSize: Compact<u32>;789 readonly maxCapacity: Compact<u32>;790 } & Struct;791 readonly isHrmpChannelAccepted: boolean;792 readonly asHrmpChannelAccepted: {793 readonly recipient: Compact<u32>;794 } & Struct;795 readonly isHrmpChannelClosing: boolean;796 readonly asHrmpChannelClosing: {797 readonly initiator: Compact<u32>;798 readonly sender: Compact<u32>;799 readonly recipient: Compact<u32>;800 } & Struct;801 readonly isClearOrigin: boolean;802 readonly isDescendOrigin: boolean;803 readonly asDescendOrigin: XcmV1MultilocationJunctions;804 readonly isReportError: boolean;805 readonly asReportError: {806 readonly queryId: Compact<u64>;807 readonly dest: XcmV1MultiLocation;808 readonly maxResponseWeight: Compact<u64>;809 } & Struct;810 readonly isDepositAsset: boolean;811 readonly asDepositAsset: {812 readonly assets: XcmV1MultiassetMultiAssetFilter;813 readonly maxAssets: Compact<u32>;814 readonly beneficiary: XcmV1MultiLocation;815 } & Struct;816 readonly isDepositReserveAsset: boolean;817 readonly asDepositReserveAsset: {818 readonly assets: XcmV1MultiassetMultiAssetFilter;819 readonly maxAssets: Compact<u32>;820 readonly dest: XcmV1MultiLocation;821 readonly xcm: XcmV2Xcm;822 } & Struct;823 readonly isExchangeAsset: boolean;824 readonly asExchangeAsset: {825 readonly give: XcmV1MultiassetMultiAssetFilter;826 readonly receive: XcmV1MultiassetMultiAssets;827 } & Struct;828 readonly isInitiateReserveWithdraw: boolean;829 readonly asInitiateReserveWithdraw: {830 readonly assets: XcmV1MultiassetMultiAssetFilter;831 readonly reserve: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isInitiateTeleport: boolean;835 readonly asInitiateTeleport: {836 readonly assets: XcmV1MultiassetMultiAssetFilter;837 readonly dest: XcmV1MultiLocation;838 readonly xcm: XcmV2Xcm;839 } & Struct;840 readonly isQueryHolding: boolean;841 readonly asQueryHolding: {842 readonly queryId: Compact<u64>;843 readonly dest: XcmV1MultiLocation;844 readonly assets: XcmV1MultiassetMultiAssetFilter;845 readonly maxResponseWeight: Compact<u64>;846 } & Struct;847 readonly isBuyExecution: boolean;848 readonly asBuyExecution: {849 readonly fees: XcmV1MultiAsset;850 readonly weightLimit: XcmV2WeightLimit;851 } & Struct;852 readonly isRefundSurplus: boolean;853 readonly isSetErrorHandler: boolean;854 readonly asSetErrorHandler: XcmV2Xcm;855 readonly isSetAppendix: boolean;856 readonly asSetAppendix: XcmV2Xcm;857 readonly isClearError: boolean;858 readonly isClaimAsset: boolean;859 readonly asClaimAsset: {860 readonly assets: XcmV1MultiassetMultiAssets;861 readonly ticket: XcmV1MultiLocation;862 } & Struct;863 readonly isTrap: boolean;864 readonly asTrap: Compact<u64>;865 readonly isSubscribeVersion: boolean;866 readonly asSubscribeVersion: {867 readonly queryId: Compact<u64>;868 readonly maxResponseWeight: Compact<u64>;869 } & Struct;870 readonly isUnsubscribeVersion: boolean;871 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';872 }873874 /** @name XcmV2Response (70) */875 interface XcmV2Response extends Enum {876 readonly isNull: boolean;877 readonly isAssets: boolean;878 readonly asAssets: XcmV1MultiassetMultiAssets;879 readonly isExecutionResult: boolean;880 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;881 readonly isVersion: boolean;882 readonly asVersion: u32;883 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';884 }885886 /** @name XcmV0OriginKind (73) */887 interface XcmV0OriginKind extends Enum {888 readonly isNative: boolean;889 readonly isSovereignAccount: boolean;890 readonly isSuperuser: boolean;891 readonly isXcm: boolean;892 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';893 }894895 /** @name XcmDoubleEncoded (74) */896 interface XcmDoubleEncoded extends Struct {897 readonly encoded: Bytes;898 }899900 /** @name XcmV1MultiassetMultiAssetFilter (75) */901 interface XcmV1MultiassetMultiAssetFilter extends Enum {902 readonly isDefinite: boolean;903 readonly asDefinite: XcmV1MultiassetMultiAssets;904 readonly isWild: boolean;905 readonly asWild: XcmV1MultiassetWildMultiAsset;906 readonly type: 'Definite' | 'Wild';907 }908909 /** @name XcmV1MultiassetWildMultiAsset (76) */910 interface XcmV1MultiassetWildMultiAsset extends Enum {911 readonly isAll: boolean;912 readonly isAllOf: boolean;913 readonly asAllOf: {914 readonly id: XcmV1MultiassetAssetId;915 readonly fun: XcmV1MultiassetWildFungibility;916 } & Struct;917 readonly type: 'All' | 'AllOf';918 }919920 /** @name XcmV1MultiassetWildFungibility (77) */921 interface XcmV1MultiassetWildFungibility extends Enum {922 readonly isFungible: boolean;923 readonly isNonFungible: boolean;924 readonly type: 'Fungible' | 'NonFungible';925 }926927 /** @name XcmV2WeightLimit (78) */928 interface XcmV2WeightLimit extends Enum {929 readonly isUnlimited: boolean;930 readonly isLimited: boolean;931 readonly asLimited: Compact<u64>;932 readonly type: 'Unlimited' | 'Limited';933 }934935 /** @name XcmVersionedMultiAssets (80) */936 interface XcmVersionedMultiAssets extends Enum {937 readonly isV0: boolean;938 readonly asV0: Vec<XcmV0MultiAsset>;939 readonly isV1: boolean;940 readonly asV1: XcmV1MultiassetMultiAssets;941 readonly type: 'V0' | 'V1';942 }943944 /** @name XcmV0MultiAsset (82) */945 interface XcmV0MultiAsset extends Enum {946 readonly isNone: boolean;947 readonly isAll: boolean;948 readonly isAllFungible: boolean;949 readonly isAllNonFungible: boolean;950 readonly isAllAbstractFungible: boolean;951 readonly asAllAbstractFungible: {952 readonly id: Bytes;953 } & Struct;954 readonly isAllAbstractNonFungible: boolean;955 readonly asAllAbstractNonFungible: {956 readonly class: Bytes;957 } & Struct;958 readonly isAllConcreteFungible: boolean;959 readonly asAllConcreteFungible: {960 readonly id: XcmV0MultiLocation;961 } & Struct;962 readonly isAllConcreteNonFungible: boolean;963 readonly asAllConcreteNonFungible: {964 readonly class: XcmV0MultiLocation;965 } & Struct;966 readonly isAbstractFungible: boolean;967 readonly asAbstractFungible: {968 readonly id: Bytes;969 readonly amount: Compact<u128>;970 } & Struct;971 readonly isAbstractNonFungible: boolean;972 readonly asAbstractNonFungible: {973 readonly class: Bytes;974 readonly instance: XcmV1MultiassetAssetInstance;975 } & Struct;976 readonly isConcreteFungible: boolean;977 readonly asConcreteFungible: {978 readonly id: XcmV0MultiLocation;979 readonly amount: Compact<u128>;980 } & Struct;981 readonly isConcreteNonFungible: boolean;982 readonly asConcreteNonFungible: {983 readonly class: XcmV0MultiLocation;984 readonly instance: XcmV1MultiassetAssetInstance;985 } & Struct;986 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';987 }988989 /** @name XcmV0MultiLocation (83) */990 interface XcmV0MultiLocation extends Enum {991 readonly isNull: boolean;992 readonly isX1: boolean;993 readonly asX1: XcmV0Junction;994 readonly isX2: boolean;995 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;996 readonly isX3: boolean;997 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;998 readonly isX4: boolean;999 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1000 readonly isX5: boolean;1001 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1002 readonly isX6: boolean;1003 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1004 readonly isX7: boolean;1005 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1006 readonly isX8: boolean;1007 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1008 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1009 }10101011 /** @name XcmV0Junction (84) */1012 interface XcmV0Junction extends Enum {1013 readonly isParent: boolean;1014 readonly isParachain: boolean;1015 readonly asParachain: Compact<u32>;1016 readonly isAccountId32: boolean;1017 readonly asAccountId32: {1018 readonly network: XcmV0JunctionNetworkId;1019 readonly id: U8aFixed;1020 } & Struct;1021 readonly isAccountIndex64: boolean;1022 readonly asAccountIndex64: {1023 readonly network: XcmV0JunctionNetworkId;1024 readonly index: Compact<u64>;1025 } & Struct;1026 readonly isAccountKey20: boolean;1027 readonly asAccountKey20: {1028 readonly network: XcmV0JunctionNetworkId;1029 readonly key: U8aFixed;1030 } & Struct;1031 readonly isPalletInstance: boolean;1032 readonly asPalletInstance: u8;1033 readonly isGeneralIndex: boolean;1034 readonly asGeneralIndex: Compact<u128>;1035 readonly isGeneralKey: boolean;1036 readonly asGeneralKey: Bytes;1037 readonly isOnlyChild: boolean;1038 readonly isPlurality: boolean;1039 readonly asPlurality: {1040 readonly id: XcmV0JunctionBodyId;1041 readonly part: XcmV0JunctionBodyPart;1042 } & Struct;1043 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1044 }10451046 /** @name XcmVersionedMultiLocation (85) */1047 interface XcmVersionedMultiLocation extends Enum {1048 readonly isV0: boolean;1049 readonly asV0: XcmV0MultiLocation;1050 readonly isV1: boolean;1051 readonly asV1: XcmV1MultiLocation;1052 readonly type: 'V0' | 'V1';1053 }10541055 /** @name CumulusPalletXcmEvent (86) */1056 interface CumulusPalletXcmEvent extends Enum {1057 readonly isInvalidFormat: boolean;1058 readonly asInvalidFormat: U8aFixed;1059 readonly isUnsupportedVersion: boolean;1060 readonly asUnsupportedVersion: U8aFixed;1061 readonly isExecutedDownward: boolean;1062 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1063 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1064 }10651066 /** @name CumulusPalletDmpQueueEvent (87) */1067 interface CumulusPalletDmpQueueEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: {1070 readonly messageId: U8aFixed;1071 } & Struct;1072 readonly isUnsupportedVersion: boolean;1073 readonly asUnsupportedVersion: {1074 readonly messageId: U8aFixed;1075 } & Struct;1076 readonly isExecutedDownward: boolean;1077 readonly asExecutedDownward: {1078 readonly messageId: U8aFixed;1079 readonly outcome: XcmV2TraitsOutcome;1080 } & Struct;1081 readonly isWeightExhausted: boolean;1082 readonly asWeightExhausted: {1083 readonly messageId: U8aFixed;1084 readonly remainingWeight: u64;1085 readonly requiredWeight: u64;1086 } & Struct;1087 readonly isOverweightEnqueued: boolean;1088 readonly asOverweightEnqueued: {1089 readonly messageId: U8aFixed;1090 readonly overweightIndex: u64;1091 readonly requiredWeight: u64;1092 } & Struct;1093 readonly isOverweightServiced: boolean;1094 readonly asOverweightServiced: {1095 readonly overweightIndex: u64;1096 readonly weightUsed: u64;1097 } & Struct;1098 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1099 }11001101 /** @name PalletUniqueRawEvent (88) */1102 interface PalletUniqueRawEvent extends Enum {1103 readonly isCollectionSponsorRemoved: boolean;1104 readonly asCollectionSponsorRemoved: u32;1105 readonly isCollectionAdminAdded: boolean;1106 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1107 readonly isCollectionOwnedChanged: boolean;1108 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1109 readonly isCollectionSponsorSet: boolean;1110 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1111 readonly isSponsorshipConfirmed: boolean;1112 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1113 readonly isCollectionAdminRemoved: boolean;1114 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1115 readonly isAllowListAddressRemoved: boolean;1116 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1117 readonly isAllowListAddressAdded: boolean;1118 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1119 readonly isCollectionLimitSet: boolean;1120 readonly asCollectionLimitSet: u32;1121 readonly isCollectionPermissionSet: boolean;1122 readonly asCollectionPermissionSet: u32;1123 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1124 }11251126 /** @name PalletEvmAccountBasicCrossAccountIdRepr (89) */1127 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1128 readonly isSubstrate: boolean;1129 readonly asSubstrate: AccountId32;1130 readonly isEthereum: boolean;1131 readonly asEthereum: H160;1132 readonly type: 'Substrate' | 'Ethereum';1133 }11341135 /** @name PalletUniqueSchedulerEvent (92) */1136 interface PalletUniqueSchedulerEvent extends Enum {1137 readonly isScheduled: boolean;1138 readonly asScheduled: {1139 readonly when: u32;1140 readonly index: u32;1141 } & Struct;1142 readonly isCanceled: boolean;1143 readonly asCanceled: {1144 readonly when: u32;1145 readonly index: u32;1146 } & Struct;1147 readonly isDispatched: boolean;1148 readonly asDispatched: {1149 readonly task: ITuple<[u32, u32]>;1150 readonly id: Option<U8aFixed>;1151 readonly result: Result<Null, SpRuntimeDispatchError>;1152 } & Struct;1153 readonly isCallLookupFailed: boolean;1154 readonly asCallLookupFailed: {1155 readonly task: ITuple<[u32, u32]>;1156 readonly id: Option<U8aFixed>;1157 readonly error: FrameSupportScheduleLookupError;1158 } & Struct;1159 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';1160 }11611162 /** @name FrameSupportScheduleLookupError (95) */1163 interface FrameSupportScheduleLookupError extends Enum {1164 readonly isUnknown: boolean;1165 readonly isBadFormat: boolean;1166 readonly type: 'Unknown' | 'BadFormat';1167 }11681169 /** @name PalletCommonEvent (96) */1170 interface PalletCommonEvent extends Enum {1171 readonly isCollectionCreated: boolean;1172 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1173 readonly isCollectionDestroyed: boolean;1174 readonly asCollectionDestroyed: u32;1175 readonly isItemCreated: boolean;1176 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1177 readonly isItemDestroyed: boolean;1178 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1179 readonly isTransfer: boolean;1180 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1181 readonly isApproved: boolean;1182 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1183 readonly isCollectionPropertySet: boolean;1184 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1185 readonly isCollectionPropertyDeleted: boolean;1186 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1187 readonly isTokenPropertySet: boolean;1188 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1189 readonly isTokenPropertyDeleted: boolean;1190 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1191 readonly isPropertyPermissionSet: boolean;1192 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1193 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1194 }11951196 /** @name PalletStructureEvent (99) */1197 interface PalletStructureEvent extends Enum {1198 readonly isExecuted: boolean;1199 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1200 readonly type: 'Executed';1201 }12021203 /** @name PalletRmrkCoreEvent (100) */1204 interface PalletRmrkCoreEvent extends Enum {1205 readonly isCollectionCreated: boolean;1206 readonly asCollectionCreated: {1207 readonly issuer: AccountId32;1208 readonly collectionId: u32;1209 } & Struct;1210 readonly isCollectionDestroyed: boolean;1211 readonly asCollectionDestroyed: {1212 readonly issuer: AccountId32;1213 readonly collectionId: u32;1214 } & Struct;1215 readonly isIssuerChanged: boolean;1216 readonly asIssuerChanged: {1217 readonly oldIssuer: AccountId32;1218 readonly newIssuer: AccountId32;1219 readonly collectionId: u32;1220 } & Struct;1221 readonly isCollectionLocked: boolean;1222 readonly asCollectionLocked: {1223 readonly issuer: AccountId32;1224 readonly collectionId: u32;1225 } & Struct;1226 readonly isNftMinted: boolean;1227 readonly asNftMinted: {1228 readonly owner: AccountId32;1229 readonly collectionId: u32;1230 readonly nftId: u32;1231 } & Struct;1232 readonly isNftBurned: boolean;1233 readonly asNftBurned: {1234 readonly owner: AccountId32;1235 readonly nftId: u32;1236 } & Struct;1237 readonly isNftSent: boolean;1238 readonly asNftSent: {1239 readonly sender: AccountId32;1240 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1241 readonly collectionId: u32;1242 readonly nftId: u32;1243 readonly approvalRequired: bool;1244 } & Struct;1245 readonly isNftAccepted: boolean;1246 readonly asNftAccepted: {1247 readonly sender: AccountId32;1248 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1249 readonly collectionId: u32;1250 readonly nftId: u32;1251 } & Struct;1252 readonly isNftRejected: boolean;1253 readonly asNftRejected: {1254 readonly sender: AccountId32;1255 readonly collectionId: u32;1256 readonly nftId: u32;1257 } & Struct;1258 readonly isPropertySet: boolean;1259 readonly asPropertySet: {1260 readonly collectionId: u32;1261 readonly maybeNftId: Option<u32>;1262 readonly key: Bytes;1263 readonly value: Bytes;1264 } & Struct;1265 readonly isResourceAdded: boolean;1266 readonly asResourceAdded: {1267 readonly nftId: u32;1268 readonly resourceId: u32;1269 } & Struct;1270 readonly isResourceRemoval: boolean;1271 readonly asResourceRemoval: {1272 readonly nftId: u32;1273 readonly resourceId: u32;1274 } & Struct;1275 readonly isResourceAccepted: boolean;1276 readonly asResourceAccepted: {1277 readonly nftId: u32;1278 readonly resourceId: u32;1279 } & Struct;1280 readonly isResourceRemovalAccepted: boolean;1281 readonly asResourceRemovalAccepted: {1282 readonly nftId: u32;1283 readonly resourceId: u32;1284 } & Struct;1285 readonly isPrioritySet: boolean;1286 readonly asPrioritySet: {1287 readonly collectionId: u32;1288 readonly nftId: u32;1289 } & Struct;1290 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1291 }12921293 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1294 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1295 readonly isAccountId: boolean;1296 readonly asAccountId: AccountId32;1297 readonly isCollectionAndNftTuple: boolean;1298 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1299 readonly type: 'AccountId' | 'CollectionAndNftTuple';1300 }13011302 /** @name PalletRmrkEquipEvent (106) */1303 interface PalletRmrkEquipEvent extends Enum {1304 readonly isBaseCreated: boolean;1305 readonly asBaseCreated: {1306 readonly issuer: AccountId32;1307 readonly baseId: u32;1308 } & Struct;1309 readonly isEquippablesUpdated: boolean;1310 readonly asEquippablesUpdated: {1311 readonly baseId: u32;1312 readonly slotId: u32;1313 } & Struct;1314 readonly type: 'BaseCreated' | 'EquippablesUpdated';1315 }13161317 /** @name PalletAppPromotionEvent (107) */1318 interface PalletAppPromotionEvent extends Enum {1319 readonly isStakingRecalculation: boolean;1320 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1321 readonly isStake: boolean;1322 readonly asStake: ITuple<[AccountId32, u128]>;1323 readonly isUnstake: boolean;1324 readonly asUnstake: ITuple<[AccountId32, u128]>;1325 readonly isSetAdmin: boolean;1326 readonly asSetAdmin: AccountId32;1327 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1328 }13291330 /** @name PalletForeignAssetsModuleEvent (108) */1331 interface PalletForeignAssetsModuleEvent extends Enum {1332 readonly isForeignAssetRegistered: boolean;1333 readonly asForeignAssetRegistered: {1334 readonly assetId: u32;1335 readonly assetAddress: XcmV1MultiLocation;1336 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1337 } & Struct;1338 readonly isForeignAssetUpdated: boolean;1339 readonly asForeignAssetUpdated: {1340 readonly assetId: u32;1341 readonly assetAddress: XcmV1MultiLocation;1342 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1343 } & Struct;1344 readonly isAssetRegistered: boolean;1345 readonly asAssetRegistered: {1346 readonly assetId: PalletForeignAssetsAssetIds;1347 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1348 } & Struct;1349 readonly isAssetUpdated: boolean;1350 readonly asAssetUpdated: {1351 readonly assetId: PalletForeignAssetsAssetIds;1352 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1353 } & Struct;1354 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1355 }13561357 /** @name PalletForeignAssetsModuleAssetMetadata (109) */1358 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1359 readonly name: Bytes;1360 readonly symbol: Bytes;1361 readonly decimals: u8;1362 readonly minimalBalance: u128;1363 }13641365 /** @name PalletEvmEvent (110) */1366 interface PalletEvmEvent extends Enum {1367 readonly isLog: boolean;1368 readonly asLog: EthereumLog;1369 readonly isCreated: boolean;1370 readonly asCreated: H160;1371 readonly isCreatedFailed: boolean;1372 readonly asCreatedFailed: H160;1373 readonly isExecuted: boolean;1374 readonly asExecuted: H160;1375 readonly isExecutedFailed: boolean;1376 readonly asExecutedFailed: H160;1377 readonly isBalanceDeposit: boolean;1378 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1379 readonly isBalanceWithdraw: boolean;1380 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1381 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1382 }13831384 /** @name EthereumLog (111) */1385 interface EthereumLog extends Struct {1386 readonly address: H160;1387 readonly topics: Vec<H256>;1388 readonly data: Bytes;1389 }13901391 /** @name PalletEthereumEvent (115) */1392 interface PalletEthereumEvent extends Enum {1393 readonly isExecuted: boolean;1394 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1395 readonly type: 'Executed';1396 }13971398 /** @name EvmCoreErrorExitReason (116) */1399 interface EvmCoreErrorExitReason extends Enum {1400 readonly isSucceed: boolean;1401 readonly asSucceed: EvmCoreErrorExitSucceed;1402 readonly isError: boolean;1403 readonly asError: EvmCoreErrorExitError;1404 readonly isRevert: boolean;1405 readonly asRevert: EvmCoreErrorExitRevert;1406 readonly isFatal: boolean;1407 readonly asFatal: EvmCoreErrorExitFatal;1408 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1409 }14101411 /** @name EvmCoreErrorExitSucceed (117) */1412 interface EvmCoreErrorExitSucceed extends Enum {1413 readonly isStopped: boolean;1414 readonly isReturned: boolean;1415 readonly isSuicided: boolean;1416 readonly type: 'Stopped' | 'Returned' | 'Suicided';1417 }14181419 /** @name EvmCoreErrorExitError (118) */1420 interface EvmCoreErrorExitError extends Enum {1421 readonly isStackUnderflow: boolean;1422 readonly isStackOverflow: boolean;1423 readonly isInvalidJump: boolean;1424 readonly isInvalidRange: boolean;1425 readonly isDesignatedInvalid: boolean;1426 readonly isCallTooDeep: boolean;1427 readonly isCreateCollision: boolean;1428 readonly isCreateContractLimit: boolean;1429 readonly isOutOfOffset: boolean;1430 readonly isOutOfGas: boolean;1431 readonly isOutOfFund: boolean;1432 readonly isPcUnderflow: boolean;1433 readonly isCreateEmpty: boolean;1434 readonly isOther: boolean;1435 readonly asOther: Text;1436 readonly isInvalidCode: boolean;1437 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1438 }14391440 /** @name EvmCoreErrorExitRevert (121) */1441 interface EvmCoreErrorExitRevert extends Enum {1442 readonly isReverted: boolean;1443 readonly type: 'Reverted';1444 }14451446 /** @name EvmCoreErrorExitFatal (122) */1447 interface EvmCoreErrorExitFatal extends Enum {1448 readonly isNotSupported: boolean;1449 readonly isUnhandledInterrupt: boolean;1450 readonly isCallErrorAsFatal: boolean;1451 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1452 readonly isOther: boolean;1453 readonly asOther: Text;1454 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1455 }14561457 /** @name PalletEvmContractHelpersEvent (123) */1458 interface PalletEvmContractHelpersEvent extends Enum {1459 readonly isContractSponsorSet: boolean;1460 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1461 readonly isContractSponsorshipConfirmed: boolean;1462 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1463 readonly isContractSponsorRemoved: boolean;1464 readonly asContractSponsorRemoved: H160;1465 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1466 }14671468 /** @name FrameSystemPhase (124) */1469 interface FrameSystemPhase extends Enum {1470 readonly isApplyExtrinsic: boolean;1471 readonly asApplyExtrinsic: u32;1472 readonly isFinalization: boolean;1473 readonly isInitialization: boolean;1474 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1475 }14761477 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1478 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1479 readonly specVersion: Compact<u32>;1480 readonly specName: Text;1481 }14821483 /** @name FrameSystemCall (127) */1484 interface FrameSystemCall extends Enum {1485 readonly isFillBlock: boolean;1486 readonly asFillBlock: {1487 readonly ratio: Perbill;1488 } & Struct;1489 readonly isRemark: boolean;1490 readonly asRemark: {1491 readonly remark: Bytes;1492 } & Struct;1493 readonly isSetHeapPages: boolean;1494 readonly asSetHeapPages: {1495 readonly pages: u64;1496 } & Struct;1497 readonly isSetCode: boolean;1498 readonly asSetCode: {1499 readonly code: Bytes;1500 } & Struct;1501 readonly isSetCodeWithoutChecks: boolean;1502 readonly asSetCodeWithoutChecks: {1503 readonly code: Bytes;1504 } & Struct;1505 readonly isSetStorage: boolean;1506 readonly asSetStorage: {1507 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1508 } & Struct;1509 readonly isKillStorage: boolean;1510 readonly asKillStorage: {1511 readonly keys_: Vec<Bytes>;1512 } & Struct;1513 readonly isKillPrefix: boolean;1514 readonly asKillPrefix: {1515 readonly prefix: Bytes;1516 readonly subkeys: u32;1517 } & Struct;1518 readonly isRemarkWithEvent: boolean;1519 readonly asRemarkWithEvent: {1520 readonly remark: Bytes;1521 } & Struct;1522 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1523 }15241525 /** @name FrameSystemLimitsBlockWeights (132) */1526 interface FrameSystemLimitsBlockWeights extends Struct {1527 readonly baseBlock: u64;1528 readonly maxBlock: u64;1529 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1530 }15311532 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (133) */1533 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1534 readonly normal: FrameSystemLimitsWeightsPerClass;1535 readonly operational: FrameSystemLimitsWeightsPerClass;1536 readonly mandatory: FrameSystemLimitsWeightsPerClass;1537 }15381539 /** @name FrameSystemLimitsWeightsPerClass (134) */1540 interface FrameSystemLimitsWeightsPerClass extends Struct {1541 readonly baseExtrinsic: u64;1542 readonly maxExtrinsic: Option<u64>;1543 readonly maxTotal: Option<u64>;1544 readonly reserved: Option<u64>;1545 }15461547 /** @name FrameSystemLimitsBlockLength (136) */1548 interface FrameSystemLimitsBlockLength extends Struct {1549 readonly max: FrameSupportWeightsPerDispatchClassU32;1550 }15511552 /** @name FrameSupportWeightsPerDispatchClassU32 (137) */1553 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1554 readonly normal: u32;1555 readonly operational: u32;1556 readonly mandatory: u32;1557 }15581559 /** @name FrameSupportWeightsRuntimeDbWeight (138) */1560 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1561 readonly read: u64;1562 readonly write: u64;1563 }15641565 /** @name SpVersionRuntimeVersion (139) */1566 interface SpVersionRuntimeVersion extends Struct {1567 readonly specName: Text;1568 readonly implName: Text;1569 readonly authoringVersion: u32;1570 readonly specVersion: u32;1571 readonly implVersion: u32;1572 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1573 readonly transactionVersion: u32;1574 readonly stateVersion: u8;1575 }15761577 /** @name FrameSystemError (144) */1578 interface FrameSystemError extends Enum {1579 readonly isInvalidSpecName: boolean;1580 readonly isSpecVersionNeedsToIncrease: boolean;1581 readonly isFailedToExtractRuntimeVersion: boolean;1582 readonly isNonDefaultComposite: boolean;1583 readonly isNonZeroRefCount: boolean;1584 readonly isCallFiltered: boolean;1585 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1586 }15871588 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */1589 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1590 readonly parentHead: Bytes;1591 readonly relayParentNumber: u32;1592 readonly relayParentStorageRoot: H256;1593 readonly maxPovSize: u32;1594 }15951596 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */1597 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1598 readonly isPresent: boolean;1599 readonly type: 'Present';1600 }16011602 /** @name SpTrieStorageProof (149) */1603 interface SpTrieStorageProof extends Struct {1604 readonly trieNodes: BTreeSet<Bytes>;1605 }16061607 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */1608 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1609 readonly dmqMqcHead: H256;1610 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1611 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1612 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1613 }16141615 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */1616 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1617 readonly maxCapacity: u32;1618 readonly maxTotalSize: u32;1619 readonly maxMessageSize: u32;1620 readonly msgCount: u32;1621 readonly totalSize: u32;1622 readonly mqcHead: Option<H256>;1623 }16241625 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */1626 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1627 readonly maxCodeSize: u32;1628 readonly maxHeadDataSize: u32;1629 readonly maxUpwardQueueCount: u32;1630 readonly maxUpwardQueueSize: u32;1631 readonly maxUpwardMessageSize: u32;1632 readonly maxUpwardMessageNumPerCandidate: u32;1633 readonly hrmpMaxMessageNumPerCandidate: u32;1634 readonly validationUpgradeCooldown: u32;1635 readonly validationUpgradeDelay: u32;1636 }16371638 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */1639 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1640 readonly recipient: u32;1641 readonly data: Bytes;1642 }16431644 /** @name CumulusPalletParachainSystemCall (162) */1645 interface CumulusPalletParachainSystemCall extends Enum {1646 readonly isSetValidationData: boolean;1647 readonly asSetValidationData: {1648 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1649 } & Struct;1650 readonly isSudoSendUpwardMessage: boolean;1651 readonly asSudoSendUpwardMessage: {1652 readonly message: Bytes;1653 } & Struct;1654 readonly isAuthorizeUpgrade: boolean;1655 readonly asAuthorizeUpgrade: {1656 readonly codeHash: H256;1657 } & Struct;1658 readonly isEnactAuthorizedUpgrade: boolean;1659 readonly asEnactAuthorizedUpgrade: {1660 readonly code: Bytes;1661 } & Struct;1662 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1663 }16641665 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */1666 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1667 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1668 readonly relayChainState: SpTrieStorageProof;1669 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1670 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1671 }16721673 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */1674 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1675 readonly sentAt: u32;1676 readonly msg: Bytes;1677 }16781679 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */1680 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1681 readonly sentAt: u32;1682 readonly data: Bytes;1683 }16841685 /** @name CumulusPalletParachainSystemError (171) */1686 interface CumulusPalletParachainSystemError extends Enum {1687 readonly isOverlappingUpgrades: boolean;1688 readonly isProhibitedByPolkadot: boolean;1689 readonly isTooBig: boolean;1690 readonly isValidationDataNotAvailable: boolean;1691 readonly isHostConfigurationNotAvailable: boolean;1692 readonly isNotScheduled: boolean;1693 readonly isNothingAuthorized: boolean;1694 readonly isUnauthorized: boolean;1695 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1696 }16971698 /** @name PalletBalancesBalanceLock (173) */1699 interface PalletBalancesBalanceLock extends Struct {1700 readonly id: U8aFixed;1701 readonly amount: u128;1702 readonly reasons: PalletBalancesReasons;1703 }17041705 /** @name PalletBalancesReasons (174) */1706 interface PalletBalancesReasons extends Enum {1707 readonly isFee: boolean;1708 readonly isMisc: boolean;1709 readonly isAll: boolean;1710 readonly type: 'Fee' | 'Misc' | 'All';1711 }17121713 /** @name PalletBalancesReserveData (177) */1714 interface PalletBalancesReserveData extends Struct {1715 readonly id: U8aFixed;1716 readonly amount: u128;1717 }17181719 /** @name PalletBalancesReleases (179) */1720 interface PalletBalancesReleases extends Enum {1721 readonly isV100: boolean;1722 readonly isV200: boolean;1723 readonly type: 'V100' | 'V200';1724 }17251726 /** @name PalletBalancesCall (180) */1727 interface PalletBalancesCall extends Enum {1728 readonly isTransfer: boolean;1729 readonly asTransfer: {1730 readonly dest: MultiAddress;1731 readonly value: Compact<u128>;1732 } & Struct;1733 readonly isSetBalance: boolean;1734 readonly asSetBalance: {1735 readonly who: MultiAddress;1736 readonly newFree: Compact<u128>;1737 readonly newReserved: Compact<u128>;1738 } & Struct;1739 readonly isForceTransfer: boolean;1740 readonly asForceTransfer: {1741 readonly source: MultiAddress;1742 readonly dest: MultiAddress;1743 readonly value: Compact<u128>;1744 } & Struct;1745 readonly isTransferKeepAlive: boolean;1746 readonly asTransferKeepAlive: {1747 readonly dest: MultiAddress;1748 readonly value: Compact<u128>;1749 } & Struct;1750 readonly isTransferAll: boolean;1751 readonly asTransferAll: {1752 readonly dest: MultiAddress;1753 readonly keepAlive: bool;1754 } & Struct;1755 readonly isForceUnreserve: boolean;1756 readonly asForceUnreserve: {1757 readonly who: MultiAddress;1758 readonly amount: u128;1759 } & Struct;1760 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1761 }17621763 /** @name PalletBalancesError (183) */1764 interface PalletBalancesError extends Enum {1765 readonly isVestingBalance: boolean;1766 readonly isLiquidityRestrictions: boolean;1767 readonly isInsufficientBalance: boolean;1768 readonly isExistentialDeposit: boolean;1769 readonly isKeepAlive: boolean;1770 readonly isExistingVestingSchedule: boolean;1771 readonly isDeadAccount: boolean;1772 readonly isTooManyReserves: boolean;1773 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1774 }17751776 /** @name PalletTimestampCall (185) */1777 interface PalletTimestampCall extends Enum {1778 readonly isSet: boolean;1779 readonly asSet: {1780 readonly now: Compact<u64>;1781 } & Struct;1782 readonly type: 'Set';1783 }17841785 /** @name PalletTransactionPaymentReleases (187) */1786 interface PalletTransactionPaymentReleases extends Enum {1787 readonly isV1Ancient: boolean;1788 readonly isV2: boolean;1789 readonly type: 'V1Ancient' | 'V2';1790 }17911792 /** @name PalletTreasuryProposal (188) */1793 interface PalletTreasuryProposal extends Struct {1794 readonly proposer: AccountId32;1795 readonly value: u128;1796 readonly beneficiary: AccountId32;1797 readonly bond: u128;1798 }17991800 /** @name PalletTreasuryCall (191) */1801 interface PalletTreasuryCall extends Enum {1802 readonly isProposeSpend: boolean;1803 readonly asProposeSpend: {1804 readonly value: Compact<u128>;1805 readonly beneficiary: MultiAddress;1806 } & Struct;1807 readonly isRejectProposal: boolean;1808 readonly asRejectProposal: {1809 readonly proposalId: Compact<u32>;1810 } & Struct;1811 readonly isApproveProposal: boolean;1812 readonly asApproveProposal: {1813 readonly proposalId: Compact<u32>;1814 } & Struct;1815 readonly isSpend: boolean;1816 readonly asSpend: {1817 readonly amount: Compact<u128>;1818 readonly beneficiary: MultiAddress;1819 } & Struct;1820 readonly isRemoveApproval: boolean;1821 readonly asRemoveApproval: {1822 readonly proposalId: Compact<u32>;1823 } & Struct;1824 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1825 }18261827 /** @name FrameSupportPalletId (194) */1828 interface FrameSupportPalletId extends U8aFixed {}18291830 /** @name PalletTreasuryError (195) */1831 interface PalletTreasuryError extends Enum {1832 readonly isInsufficientProposersBalance: boolean;1833 readonly isInvalidIndex: boolean;1834 readonly isTooManyApprovals: boolean;1835 readonly isInsufficientPermission: boolean;1836 readonly isProposalNotApproved: boolean;1837 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1838 }18391840 /** @name PalletSudoCall (196) */1841 interface PalletSudoCall extends Enum {1842 readonly isSudo: boolean;1843 readonly asSudo: {1844 readonly call: Call;1845 } & Struct;1846 readonly isSudoUncheckedWeight: boolean;1847 readonly asSudoUncheckedWeight: {1848 readonly call: Call;1849 readonly weight: u64;1850 } & Struct;1851 readonly isSetKey: boolean;1852 readonly asSetKey: {1853 readonly new_: MultiAddress;1854 } & Struct;1855 readonly isSudoAs: boolean;1856 readonly asSudoAs: {1857 readonly who: MultiAddress;1858 readonly call: Call;1859 } & Struct;1860 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1861 }18621863 /** @name OrmlVestingModuleCall (198) */1864 interface OrmlVestingModuleCall extends Enum {1865 readonly isClaim: boolean;1866 readonly isVestedTransfer: boolean;1867 readonly asVestedTransfer: {1868 readonly dest: MultiAddress;1869 readonly schedule: OrmlVestingVestingSchedule;1870 } & Struct;1871 readonly isUpdateVestingSchedules: boolean;1872 readonly asUpdateVestingSchedules: {1873 readonly who: MultiAddress;1874 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1875 } & Struct;1876 readonly isClaimFor: boolean;1877 readonly asClaimFor: {1878 readonly dest: MultiAddress;1879 } & Struct;1880 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1881 }18821883 /** @name OrmlXtokensModuleCall (200) */1884 interface OrmlXtokensModuleCall extends Enum {1885 readonly isTransfer: boolean;1886 readonly asTransfer: {1887 readonly currencyId: PalletForeignAssetsAssetIds;1888 readonly amount: u128;1889 readonly dest: XcmVersionedMultiLocation;1890 readonly destWeight: u64;1891 } & Struct;1892 readonly isTransferMultiasset: boolean;1893 readonly asTransferMultiasset: {1894 readonly asset: XcmVersionedMultiAsset;1895 readonly dest: XcmVersionedMultiLocation;1896 readonly destWeight: u64;1897 } & Struct;1898 readonly isTransferWithFee: boolean;1899 readonly asTransferWithFee: {1900 readonly currencyId: PalletForeignAssetsAssetIds;1901 readonly amount: u128;1902 readonly fee: u128;1903 readonly dest: XcmVersionedMultiLocation;1904 readonly destWeight: u64;1905 } & Struct;1906 readonly isTransferMultiassetWithFee: boolean;1907 readonly asTransferMultiassetWithFee: {1908 readonly asset: XcmVersionedMultiAsset;1909 readonly fee: XcmVersionedMultiAsset;1910 readonly dest: XcmVersionedMultiLocation;1911 readonly destWeight: u64;1912 } & Struct;1913 readonly isTransferMulticurrencies: boolean;1914 readonly asTransferMulticurrencies: {1915 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1916 readonly feeItem: u32;1917 readonly dest: XcmVersionedMultiLocation;1918 readonly destWeight: u64;1919 } & Struct;1920 readonly isTransferMultiassets: boolean;1921 readonly asTransferMultiassets: {1922 readonly assets: XcmVersionedMultiAssets;1923 readonly feeItem: u32;1924 readonly dest: XcmVersionedMultiLocation;1925 readonly destWeight: u64;1926 } & Struct;1927 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1928 }19291930 /** @name XcmVersionedMultiAsset (201) */1931 interface XcmVersionedMultiAsset extends Enum {1932 readonly isV0: boolean;1933 readonly asV0: XcmV0MultiAsset;1934 readonly isV1: boolean;1935 readonly asV1: XcmV1MultiAsset;1936 readonly type: 'V0' | 'V1';1937 }19381939 /** @name OrmlTokensModuleCall (204) */1940 interface OrmlTokensModuleCall extends Enum {1941 readonly isTransfer: boolean;1942 readonly asTransfer: {1943 readonly dest: MultiAddress;1944 readonly currencyId: PalletForeignAssetsAssetIds;1945 readonly amount: Compact<u128>;1946 } & Struct;1947 readonly isTransferAll: boolean;1948 readonly asTransferAll: {1949 readonly dest: MultiAddress;1950 readonly currencyId: PalletForeignAssetsAssetIds;1951 readonly keepAlive: bool;1952 } & Struct;1953 readonly isTransferKeepAlive: boolean;1954 readonly asTransferKeepAlive: {1955 readonly dest: MultiAddress;1956 readonly currencyId: PalletForeignAssetsAssetIds;1957 readonly amount: Compact<u128>;1958 } & Struct;1959 readonly isForceTransfer: boolean;1960 readonly asForceTransfer: {1961 readonly source: MultiAddress;1962 readonly dest: MultiAddress;1963 readonly currencyId: PalletForeignAssetsAssetIds;1964 readonly amount: Compact<u128>;1965 } & Struct;1966 readonly isSetBalance: boolean;1967 readonly asSetBalance: {1968 readonly who: MultiAddress;1969 readonly currencyId: PalletForeignAssetsAssetIds;1970 readonly newFree: Compact<u128>;1971 readonly newReserved: Compact<u128>;1972 } & Struct;1973 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1974 }19751976 /** @name CumulusPalletXcmpQueueCall (205) */1977 interface CumulusPalletXcmpQueueCall extends Enum {1978 readonly isServiceOverweight: boolean;1979 readonly asServiceOverweight: {1980 readonly index: u64;1981 readonly weightLimit: u64;1982 } & Struct;1983 readonly isSuspendXcmExecution: boolean;1984 readonly isResumeXcmExecution: boolean;1985 readonly isUpdateSuspendThreshold: boolean;1986 readonly asUpdateSuspendThreshold: {1987 readonly new_: u32;1988 } & Struct;1989 readonly isUpdateDropThreshold: boolean;1990 readonly asUpdateDropThreshold: {1991 readonly new_: u32;1992 } & Struct;1993 readonly isUpdateResumeThreshold: boolean;1994 readonly asUpdateResumeThreshold: {1995 readonly new_: u32;1996 } & Struct;1997 readonly isUpdateThresholdWeight: boolean;1998 readonly asUpdateThresholdWeight: {1999 readonly new_: u64;2000 } & Struct;2001 readonly isUpdateWeightRestrictDecay: boolean;2002 readonly asUpdateWeightRestrictDecay: {2003 readonly new_: u64;2004 } & Struct;2005 readonly isUpdateXcmpMaxIndividualWeight: boolean;2006 readonly asUpdateXcmpMaxIndividualWeight: {2007 readonly new_: u64;2008 } & Struct;2009 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2010 }20112012 /** @name PalletXcmCall (206) */2013 interface PalletXcmCall extends Enum {2014 readonly isSend: boolean;2015 readonly asSend: {2016 readonly dest: XcmVersionedMultiLocation;2017 readonly message: XcmVersionedXcm;2018 } & Struct;2019 readonly isTeleportAssets: boolean;2020 readonly asTeleportAssets: {2021 readonly dest: XcmVersionedMultiLocation;2022 readonly beneficiary: XcmVersionedMultiLocation;2023 readonly assets: XcmVersionedMultiAssets;2024 readonly feeAssetItem: u32;2025 } & Struct;2026 readonly isReserveTransferAssets: boolean;2027 readonly asReserveTransferAssets: {2028 readonly dest: XcmVersionedMultiLocation;2029 readonly beneficiary: XcmVersionedMultiLocation;2030 readonly assets: XcmVersionedMultiAssets;2031 readonly feeAssetItem: u32;2032 } & Struct;2033 readonly isExecute: boolean;2034 readonly asExecute: {2035 readonly message: XcmVersionedXcm;2036 readonly maxWeight: u64;2037 } & Struct;2038 readonly isForceXcmVersion: boolean;2039 readonly asForceXcmVersion: {2040 readonly location: XcmV1MultiLocation;2041 readonly xcmVersion: u32;2042 } & Struct;2043 readonly isForceDefaultXcmVersion: boolean;2044 readonly asForceDefaultXcmVersion: {2045 readonly maybeXcmVersion: Option<u32>;2046 } & Struct;2047 readonly isForceSubscribeVersionNotify: boolean;2048 readonly asForceSubscribeVersionNotify: {2049 readonly location: XcmVersionedMultiLocation;2050 } & Struct;2051 readonly isForceUnsubscribeVersionNotify: boolean;2052 readonly asForceUnsubscribeVersionNotify: {2053 readonly location: XcmVersionedMultiLocation;2054 } & Struct;2055 readonly isLimitedReserveTransferAssets: boolean;2056 readonly asLimitedReserveTransferAssets: {2057 readonly dest: XcmVersionedMultiLocation;2058 readonly beneficiary: XcmVersionedMultiLocation;2059 readonly assets: XcmVersionedMultiAssets;2060 readonly feeAssetItem: u32;2061 readonly weightLimit: XcmV2WeightLimit;2062 } & Struct;2063 readonly isLimitedTeleportAssets: boolean;2064 readonly asLimitedTeleportAssets: {2065 readonly dest: XcmVersionedMultiLocation;2066 readonly beneficiary: XcmVersionedMultiLocation;2067 readonly assets: XcmVersionedMultiAssets;2068 readonly feeAssetItem: u32;2069 readonly weightLimit: XcmV2WeightLimit;2070 } & Struct;2071 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2072 }20732074 /** @name XcmVersionedXcm (207) */2075 interface XcmVersionedXcm extends Enum {2076 readonly isV0: boolean;2077 readonly asV0: XcmV0Xcm;2078 readonly isV1: boolean;2079 readonly asV1: XcmV1Xcm;2080 readonly isV2: boolean;2081 readonly asV2: XcmV2Xcm;2082 readonly type: 'V0' | 'V1' | 'V2';2083 }20842085 /** @name XcmV0Xcm (208) */2086 interface XcmV0Xcm extends Enum {2087 readonly isWithdrawAsset: boolean;2088 readonly asWithdrawAsset: {2089 readonly assets: Vec<XcmV0MultiAsset>;2090 readonly effects: Vec<XcmV0Order>;2091 } & Struct;2092 readonly isReserveAssetDeposit: boolean;2093 readonly asReserveAssetDeposit: {2094 readonly assets: Vec<XcmV0MultiAsset>;2095 readonly effects: Vec<XcmV0Order>;2096 } & Struct;2097 readonly isTeleportAsset: boolean;2098 readonly asTeleportAsset: {2099 readonly assets: Vec<XcmV0MultiAsset>;2100 readonly effects: Vec<XcmV0Order>;2101 } & Struct;2102 readonly isQueryResponse: boolean;2103 readonly asQueryResponse: {2104 readonly queryId: Compact<u64>;2105 readonly response: XcmV0Response;2106 } & Struct;2107 readonly isTransferAsset: boolean;2108 readonly asTransferAsset: {2109 readonly assets: Vec<XcmV0MultiAsset>;2110 readonly dest: XcmV0MultiLocation;2111 } & Struct;2112 readonly isTransferReserveAsset: boolean;2113 readonly asTransferReserveAsset: {2114 readonly assets: Vec<XcmV0MultiAsset>;2115 readonly dest: XcmV0MultiLocation;2116 readonly effects: Vec<XcmV0Order>;2117 } & Struct;2118 readonly isTransact: boolean;2119 readonly asTransact: {2120 readonly originType: XcmV0OriginKind;2121 readonly requireWeightAtMost: u64;2122 readonly call: XcmDoubleEncoded;2123 } & Struct;2124 readonly isHrmpNewChannelOpenRequest: boolean;2125 readonly asHrmpNewChannelOpenRequest: {2126 readonly sender: Compact<u32>;2127 readonly maxMessageSize: Compact<u32>;2128 readonly maxCapacity: Compact<u32>;2129 } & Struct;2130 readonly isHrmpChannelAccepted: boolean;2131 readonly asHrmpChannelAccepted: {2132 readonly recipient: Compact<u32>;2133 } & Struct;2134 readonly isHrmpChannelClosing: boolean;2135 readonly asHrmpChannelClosing: {2136 readonly initiator: Compact<u32>;2137 readonly sender: Compact<u32>;2138 readonly recipient: Compact<u32>;2139 } & Struct;2140 readonly isRelayedFrom: boolean;2141 readonly asRelayedFrom: {2142 readonly who: XcmV0MultiLocation;2143 readonly message: XcmV0Xcm;2144 } & Struct;2145 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2146 }21472148 /** @name XcmV0Order (210) */2149 interface XcmV0Order extends Enum {2150 readonly isNull: boolean;2151 readonly isDepositAsset: boolean;2152 readonly asDepositAsset: {2153 readonly assets: Vec<XcmV0MultiAsset>;2154 readonly dest: XcmV0MultiLocation;2155 } & Struct;2156 readonly isDepositReserveAsset: boolean;2157 readonly asDepositReserveAsset: {2158 readonly assets: Vec<XcmV0MultiAsset>;2159 readonly dest: XcmV0MultiLocation;2160 readonly effects: Vec<XcmV0Order>;2161 } & Struct;2162 readonly isExchangeAsset: boolean;2163 readonly asExchangeAsset: {2164 readonly give: Vec<XcmV0MultiAsset>;2165 readonly receive: Vec<XcmV0MultiAsset>;2166 } & Struct;2167 readonly isInitiateReserveWithdraw: boolean;2168 readonly asInitiateReserveWithdraw: {2169 readonly assets: Vec<XcmV0MultiAsset>;2170 readonly reserve: XcmV0MultiLocation;2171 readonly effects: Vec<XcmV0Order>;2172 } & Struct;2173 readonly isInitiateTeleport: boolean;2174 readonly asInitiateTeleport: {2175 readonly assets: Vec<XcmV0MultiAsset>;2176 readonly dest: XcmV0MultiLocation;2177 readonly effects: Vec<XcmV0Order>;2178 } & Struct;2179 readonly isQueryHolding: boolean;2180 readonly asQueryHolding: {2181 readonly queryId: Compact<u64>;2182 readonly dest: XcmV0MultiLocation;2183 readonly assets: Vec<XcmV0MultiAsset>;2184 } & Struct;2185 readonly isBuyExecution: boolean;2186 readonly asBuyExecution: {2187 readonly fees: XcmV0MultiAsset;2188 readonly weight: u64;2189 readonly debt: u64;2190 readonly haltOnError: bool;2191 readonly xcm: Vec<XcmV0Xcm>;2192 } & Struct;2193 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2194 }21952196 /** @name XcmV0Response (212) */2197 interface XcmV0Response extends Enum {2198 readonly isAssets: boolean;2199 readonly asAssets: Vec<XcmV0MultiAsset>;2200 readonly type: 'Assets';2201 }22022203 /** @name XcmV1Xcm (213) */2204 interface XcmV1Xcm extends Enum {2205 readonly isWithdrawAsset: boolean;2206 readonly asWithdrawAsset: {2207 readonly assets: XcmV1MultiassetMultiAssets;2208 readonly effects: Vec<XcmV1Order>;2209 } & Struct;2210 readonly isReserveAssetDeposited: boolean;2211 readonly asReserveAssetDeposited: {2212 readonly assets: XcmV1MultiassetMultiAssets;2213 readonly effects: Vec<XcmV1Order>;2214 } & Struct;2215 readonly isReceiveTeleportedAsset: boolean;2216 readonly asReceiveTeleportedAsset: {2217 readonly assets: XcmV1MultiassetMultiAssets;2218 readonly effects: Vec<XcmV1Order>;2219 } & Struct;2220 readonly isQueryResponse: boolean;2221 readonly asQueryResponse: {2222 readonly queryId: Compact<u64>;2223 readonly response: XcmV1Response;2224 } & Struct;2225 readonly isTransferAsset: boolean;2226 readonly asTransferAsset: {2227 readonly assets: XcmV1MultiassetMultiAssets;2228 readonly beneficiary: XcmV1MultiLocation;2229 } & Struct;2230 readonly isTransferReserveAsset: boolean;2231 readonly asTransferReserveAsset: {2232 readonly assets: XcmV1MultiassetMultiAssets;2233 readonly dest: XcmV1MultiLocation;2234 readonly effects: Vec<XcmV1Order>;2235 } & Struct;2236 readonly isTransact: boolean;2237 readonly asTransact: {2238 readonly originType: XcmV0OriginKind;2239 readonly requireWeightAtMost: u64;2240 readonly call: XcmDoubleEncoded;2241 } & Struct;2242 readonly isHrmpNewChannelOpenRequest: boolean;2243 readonly asHrmpNewChannelOpenRequest: {2244 readonly sender: Compact<u32>;2245 readonly maxMessageSize: Compact<u32>;2246 readonly maxCapacity: Compact<u32>;2247 } & Struct;2248 readonly isHrmpChannelAccepted: boolean;2249 readonly asHrmpChannelAccepted: {2250 readonly recipient: Compact<u32>;2251 } & Struct;2252 readonly isHrmpChannelClosing: boolean;2253 readonly asHrmpChannelClosing: {2254 readonly initiator: Compact<u32>;2255 readonly sender: Compact<u32>;2256 readonly recipient: Compact<u32>;2257 } & Struct;2258 readonly isRelayedFrom: boolean;2259 readonly asRelayedFrom: {2260 readonly who: XcmV1MultilocationJunctions;2261 readonly message: XcmV1Xcm;2262 } & Struct;2263 readonly isSubscribeVersion: boolean;2264 readonly asSubscribeVersion: {2265 readonly queryId: Compact<u64>;2266 readonly maxResponseWeight: Compact<u64>;2267 } & Struct;2268 readonly isUnsubscribeVersion: boolean;2269 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2270 }22712272 /** @name XcmV1Order (215) */2273 interface XcmV1Order extends Enum {2274 readonly isNoop: boolean;2275 readonly isDepositAsset: boolean;2276 readonly asDepositAsset: {2277 readonly assets: XcmV1MultiassetMultiAssetFilter;2278 readonly maxAssets: u32;2279 readonly beneficiary: XcmV1MultiLocation;2280 } & Struct;2281 readonly isDepositReserveAsset: boolean;2282 readonly asDepositReserveAsset: {2283 readonly assets: XcmV1MultiassetMultiAssetFilter;2284 readonly maxAssets: u32;2285 readonly dest: XcmV1MultiLocation;2286 readonly effects: Vec<XcmV1Order>;2287 } & Struct;2288 readonly isExchangeAsset: boolean;2289 readonly asExchangeAsset: {2290 readonly give: XcmV1MultiassetMultiAssetFilter;2291 readonly receive: XcmV1MultiassetMultiAssets;2292 } & Struct;2293 readonly isInitiateReserveWithdraw: boolean;2294 readonly asInitiateReserveWithdraw: {2295 readonly assets: XcmV1MultiassetMultiAssetFilter;2296 readonly reserve: XcmV1MultiLocation;2297 readonly effects: Vec<XcmV1Order>;2298 } & Struct;2299 readonly isInitiateTeleport: boolean;2300 readonly asInitiateTeleport: {2301 readonly assets: XcmV1MultiassetMultiAssetFilter;2302 readonly dest: XcmV1MultiLocation;2303 readonly effects: Vec<XcmV1Order>;2304 } & Struct;2305 readonly isQueryHolding: boolean;2306 readonly asQueryHolding: {2307 readonly queryId: Compact<u64>;2308 readonly dest: XcmV1MultiLocation;2309 readonly assets: XcmV1MultiassetMultiAssetFilter;2310 } & Struct;2311 readonly isBuyExecution: boolean;2312 readonly asBuyExecution: {2313 readonly fees: XcmV1MultiAsset;2314 readonly weight: u64;2315 readonly debt: u64;2316 readonly haltOnError: bool;2317 readonly instructions: Vec<XcmV1Xcm>;2318 } & Struct;2319 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2320 }23212322 /** @name XcmV1Response (217) */2323 interface XcmV1Response extends Enum {2324 readonly isAssets: boolean;2325 readonly asAssets: XcmV1MultiassetMultiAssets;2326 readonly isVersion: boolean;2327 readonly asVersion: u32;2328 readonly type: 'Assets' | 'Version';2329 }23302331 /** @name CumulusPalletXcmCall (231) */2332 type CumulusPalletXcmCall = Null;23332334 /** @name CumulusPalletDmpQueueCall (232) */2335 interface CumulusPalletDmpQueueCall extends Enum {2336 readonly isServiceOverweight: boolean;2337 readonly asServiceOverweight: {2338 readonly index: u64;2339 readonly weightLimit: u64;2340 } & Struct;2341 readonly type: 'ServiceOverweight';2342 }23432344 /** @name PalletInflationCall (233) */2345 interface PalletInflationCall extends Enum {2346 readonly isStartInflation: boolean;2347 readonly asStartInflation: {2348 readonly inflationStartRelayBlock: u32;2349 } & Struct;2350 readonly type: 'StartInflation';2351 }23522353 /** @name PalletUniqueCall (234) */2354 interface PalletUniqueCall extends Enum {2355 readonly isCreateCollection: boolean;2356 readonly asCreateCollection: {2357 readonly collectionName: Vec<u16>;2358 readonly collectionDescription: Vec<u16>;2359 readonly tokenPrefix: Bytes;2360 readonly mode: UpDataStructsCollectionMode;2361 } & Struct;2362 readonly isCreateCollectionEx: boolean;2363 readonly asCreateCollectionEx: {2364 readonly data: UpDataStructsCreateCollectionData;2365 } & Struct;2366 readonly isDestroyCollection: boolean;2367 readonly asDestroyCollection: {2368 readonly collectionId: u32;2369 } & Struct;2370 readonly isAddToAllowList: boolean;2371 readonly asAddToAllowList: {2372 readonly collectionId: u32;2373 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2374 } & Struct;2375 readonly isRemoveFromAllowList: boolean;2376 readonly asRemoveFromAllowList: {2377 readonly collectionId: u32;2378 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2379 } & Struct;2380 readonly isChangeCollectionOwner: boolean;2381 readonly asChangeCollectionOwner: {2382 readonly collectionId: u32;2383 readonly newOwner: AccountId32;2384 } & Struct;2385 readonly isAddCollectionAdmin: boolean;2386 readonly asAddCollectionAdmin: {2387 readonly collectionId: u32;2388 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2389 } & Struct;2390 readonly isRemoveCollectionAdmin: boolean;2391 readonly asRemoveCollectionAdmin: {2392 readonly collectionId: u32;2393 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2394 } & Struct;2395 readonly isSetCollectionSponsor: boolean;2396 readonly asSetCollectionSponsor: {2397 readonly collectionId: u32;2398 readonly newSponsor: AccountId32;2399 } & Struct;2400 readonly isConfirmSponsorship: boolean;2401 readonly asConfirmSponsorship: {2402 readonly collectionId: u32;2403 } & Struct;2404 readonly isRemoveCollectionSponsor: boolean;2405 readonly asRemoveCollectionSponsor: {2406 readonly collectionId: u32;2407 } & Struct;2408 readonly isCreateItem: boolean;2409 readonly asCreateItem: {2410 readonly collectionId: u32;2411 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2412 readonly data: UpDataStructsCreateItemData;2413 } & Struct;2414 readonly isCreateMultipleItems: boolean;2415 readonly asCreateMultipleItems: {2416 readonly collectionId: u32;2417 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2418 readonly itemsData: Vec<UpDataStructsCreateItemData>;2419 } & Struct;2420 readonly isSetCollectionProperties: boolean;2421 readonly asSetCollectionProperties: {2422 readonly collectionId: u32;2423 readonly properties: Vec<UpDataStructsProperty>;2424 } & Struct;2425 readonly isDeleteCollectionProperties: boolean;2426 readonly asDeleteCollectionProperties: {2427 readonly collectionId: u32;2428 readonly propertyKeys: Vec<Bytes>;2429 } & Struct;2430 readonly isSetTokenProperties: boolean;2431 readonly asSetTokenProperties: {2432 readonly collectionId: u32;2433 readonly tokenId: u32;2434 readonly properties: Vec<UpDataStructsProperty>;2435 } & Struct;2436 readonly isDeleteTokenProperties: boolean;2437 readonly asDeleteTokenProperties: {2438 readonly collectionId: u32;2439 readonly tokenId: u32;2440 readonly propertyKeys: Vec<Bytes>;2441 } & Struct;2442 readonly isSetTokenPropertyPermissions: boolean;2443 readonly asSetTokenPropertyPermissions: {2444 readonly collectionId: u32;2445 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2446 } & Struct;2447 readonly isCreateMultipleItemsEx: boolean;2448 readonly asCreateMultipleItemsEx: {2449 readonly collectionId: u32;2450 readonly data: UpDataStructsCreateItemExData;2451 } & Struct;2452 readonly isSetTransfersEnabledFlag: boolean;2453 readonly asSetTransfersEnabledFlag: {2454 readonly collectionId: u32;2455 readonly value: bool;2456 } & Struct;2457 readonly isBurnItem: boolean;2458 readonly asBurnItem: {2459 readonly collectionId: u32;2460 readonly itemId: u32;2461 readonly value: u128;2462 } & Struct;2463 readonly isBurnFrom: boolean;2464 readonly asBurnFrom: {2465 readonly collectionId: u32;2466 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2467 readonly itemId: u32;2468 readonly value: u128;2469 } & Struct;2470 readonly isTransfer: boolean;2471 readonly asTransfer: {2472 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2473 readonly collectionId: u32;2474 readonly itemId: u32;2475 readonly value: u128;2476 } & Struct;2477 readonly isApprove: boolean;2478 readonly asApprove: {2479 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2480 readonly collectionId: u32;2481 readonly itemId: u32;2482 readonly amount: u128;2483 } & Struct;2484 readonly isTransferFrom: boolean;2485 readonly asTransferFrom: {2486 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2487 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2488 readonly collectionId: u32;2489 readonly itemId: u32;2490 readonly value: u128;2491 } & Struct;2492 readonly isSetCollectionLimits: boolean;2493 readonly asSetCollectionLimits: {2494 readonly collectionId: u32;2495 readonly newLimit: UpDataStructsCollectionLimits;2496 } & Struct;2497 readonly isSetCollectionPermissions: boolean;2498 readonly asSetCollectionPermissions: {2499 readonly collectionId: u32;2500 readonly newPermission: UpDataStructsCollectionPermissions;2501 } & Struct;2502 readonly isRepartition: boolean;2503 readonly asRepartition: {2504 readonly collectionId: u32;2505 readonly tokenId: u32;2506 readonly amount: u128;2507 } & Struct;2508 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';2509 }25102511 /** @name UpDataStructsCollectionMode (239) */2512 interface UpDataStructsCollectionMode extends Enum {2513 readonly isNft: boolean;2514 readonly isFungible: boolean;2515 readonly asFungible: u8;2516 readonly isReFungible: boolean;2517 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2518 }25192520 /** @name UpDataStructsCreateCollectionData (240) */2521 interface UpDataStructsCreateCollectionData extends Struct {2522 readonly mode: UpDataStructsCollectionMode;2523 readonly access: Option<UpDataStructsAccessMode>;2524 readonly name: Vec<u16>;2525 readonly description: Vec<u16>;2526 readonly tokenPrefix: Bytes;2527 readonly pendingSponsor: Option<AccountId32>;2528 readonly limits: Option<UpDataStructsCollectionLimits>;2529 readonly permissions: Option<UpDataStructsCollectionPermissions>;2530 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2531 readonly properties: Vec<UpDataStructsProperty>;2532 }25332534 /** @name UpDataStructsAccessMode (242) */2535 interface UpDataStructsAccessMode extends Enum {2536 readonly isNormal: boolean;2537 readonly isAllowList: boolean;2538 readonly type: 'Normal' | 'AllowList';2539 }25402541 /** @name UpDataStructsCollectionLimits (244) */2542 interface UpDataStructsCollectionLimits extends Struct {2543 readonly accountTokenOwnershipLimit: Option<u32>;2544 readonly sponsoredDataSize: Option<u32>;2545 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2546 readonly tokenLimit: Option<u32>;2547 readonly sponsorTransferTimeout: Option<u32>;2548 readonly sponsorApproveTimeout: Option<u32>;2549 readonly ownerCanTransfer: Option<bool>;2550 readonly ownerCanDestroy: Option<bool>;2551 readonly transfersEnabled: Option<bool>;2552 }25532554 /** @name UpDataStructsSponsoringRateLimit (246) */2555 interface UpDataStructsSponsoringRateLimit extends Enum {2556 readonly isSponsoringDisabled: boolean;2557 readonly isBlocks: boolean;2558 readonly asBlocks: u32;2559 readonly type: 'SponsoringDisabled' | 'Blocks';2560 }25612562 /** @name UpDataStructsCollectionPermissions (249) */2563 interface UpDataStructsCollectionPermissions extends Struct {2564 readonly access: Option<UpDataStructsAccessMode>;2565 readonly mintMode: Option<bool>;2566 readonly nesting: Option<UpDataStructsNestingPermissions>;2567 }25682569 /** @name UpDataStructsNestingPermissions (251) */2570 interface UpDataStructsNestingPermissions extends Struct {2571 readonly tokenOwner: bool;2572 readonly collectionAdmin: bool;2573 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2574 }25752576 /** @name UpDataStructsOwnerRestrictedSet (253) */2577 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}25782579 /** @name UpDataStructsPropertyKeyPermission (258) */2580 interface UpDataStructsPropertyKeyPermission extends Struct {2581 readonly key: Bytes;2582 readonly permission: UpDataStructsPropertyPermission;2583 }25842585 /** @name UpDataStructsPropertyPermission (259) */2586 interface UpDataStructsPropertyPermission extends Struct {2587 readonly mutable: bool;2588 readonly collectionAdmin: bool;2589 readonly tokenOwner: bool;2590 }25912592 /** @name UpDataStructsProperty (262) */2593 interface UpDataStructsProperty extends Struct {2594 readonly key: Bytes;2595 readonly value: Bytes;2596 }25972598 /** @name UpDataStructsCreateItemData (265) */2599 interface UpDataStructsCreateItemData extends Enum {2600 readonly isNft: boolean;2601 readonly asNft: UpDataStructsCreateNftData;2602 readonly isFungible: boolean;2603 readonly asFungible: UpDataStructsCreateFungibleData;2604 readonly isReFungible: boolean;2605 readonly asReFungible: UpDataStructsCreateReFungibleData;2606 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2607 }26082609 /** @name UpDataStructsCreateNftData (266) */2610 interface UpDataStructsCreateNftData extends Struct {2611 readonly properties: Vec<UpDataStructsProperty>;2612 }26132614 /** @name UpDataStructsCreateFungibleData (267) */2615 interface UpDataStructsCreateFungibleData extends Struct {2616 readonly value: u128;2617 }26182619 /** @name UpDataStructsCreateReFungibleData (268) */2620 interface UpDataStructsCreateReFungibleData extends Struct {2621 readonly pieces: u128;2622 readonly properties: Vec<UpDataStructsProperty>;2623 }26242625 /** @name UpDataStructsCreateItemExData (271) */2626 interface UpDataStructsCreateItemExData extends Enum {2627 readonly isNft: boolean;2628 readonly asNft: Vec<UpDataStructsCreateNftExData>;2629 readonly isFungible: boolean;2630 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2631 readonly isRefungibleMultipleItems: boolean;2632 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2633 readonly isRefungibleMultipleOwners: boolean;2634 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2635 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2636 }26372638 /** @name UpDataStructsCreateNftExData (273) */2639 interface UpDataStructsCreateNftExData extends Struct {2640 readonly properties: Vec<UpDataStructsProperty>;2641 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2642 }26432644 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */2645 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2646 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2647 readonly pieces: u128;2648 readonly properties: Vec<UpDataStructsProperty>;2649 }26502651 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */2652 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2653 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2654 readonly properties: Vec<UpDataStructsProperty>;2655 }26562657 /** @name PalletUniqueSchedulerCall (283) */2658 interface PalletUniqueSchedulerCall extends Enum {2659 readonly isScheduleNamed: boolean;2660 readonly asScheduleNamed: {2661 readonly id: U8aFixed;2662 readonly when: u32;2663 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2664 readonly priority: u8;2665 readonly call: FrameSupportScheduleMaybeHashed;2666 } & Struct;2667 readonly isCancelNamed: boolean;2668 readonly asCancelNamed: {2669 readonly id: U8aFixed;2670 } & Struct;2671 readonly isScheduleNamedAfter: boolean;2672 readonly asScheduleNamedAfter: {2673 readonly id: U8aFixed;2674 readonly after: u32;2675 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2676 readonly priority: u8;2677 readonly call: FrameSupportScheduleMaybeHashed;2678 } & Struct;2679 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2680 }26812682 /** @name FrameSupportScheduleMaybeHashed (285) */2683 interface FrameSupportScheduleMaybeHashed extends Enum {2684 readonly isValue: boolean;2685 readonly asValue: Call;2686 readonly isHash: boolean;2687 readonly asHash: H256;2688 readonly type: 'Value' | 'Hash';2689 }26902691 /** @name PalletConfigurationCall (286) */2692 interface PalletConfigurationCall extends Enum {2693 readonly isSetWeightToFeeCoefficientOverride: boolean;2694 readonly asSetWeightToFeeCoefficientOverride: {2695 readonly coeff: Option<u32>;2696 } & Struct;2697 readonly isSetMinGasPriceOverride: boolean;2698 readonly asSetMinGasPriceOverride: {2699 readonly coeff: Option<u64>;2700 } & Struct;2701 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2702 }27032704 /** @name PalletTemplateTransactionPaymentCall (287) */2705 type PalletTemplateTransactionPaymentCall = Null;27062707 /** @name PalletStructureCall (288) */2708 type PalletStructureCall = Null;27092710 /** @name PalletRmrkCoreCall (289) */2711 interface PalletRmrkCoreCall extends Enum {2712 readonly isCreateCollection: boolean;2713 readonly asCreateCollection: {2714 readonly metadata: Bytes;2715 readonly max: Option<u32>;2716 readonly symbol: Bytes;2717 } & Struct;2718 readonly isDestroyCollection: boolean;2719 readonly asDestroyCollection: {2720 readonly collectionId: u32;2721 } & Struct;2722 readonly isChangeCollectionIssuer: boolean;2723 readonly asChangeCollectionIssuer: {2724 readonly collectionId: u32;2725 readonly newIssuer: MultiAddress;2726 } & Struct;2727 readonly isLockCollection: boolean;2728 readonly asLockCollection: {2729 readonly collectionId: u32;2730 } & Struct;2731 readonly isMintNft: boolean;2732 readonly asMintNft: {2733 readonly owner: Option<AccountId32>;2734 readonly collectionId: u32;2735 readonly recipient: Option<AccountId32>;2736 readonly royaltyAmount: Option<Permill>;2737 readonly metadata: Bytes;2738 readonly transferable: bool;2739 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2740 } & Struct;2741 readonly isBurnNft: boolean;2742 readonly asBurnNft: {2743 readonly collectionId: u32;2744 readonly nftId: u32;2745 readonly maxBurns: u32;2746 } & Struct;2747 readonly isSend: boolean;2748 readonly asSend: {2749 readonly rmrkCollectionId: u32;2750 readonly rmrkNftId: u32;2751 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2752 } & Struct;2753 readonly isAcceptNft: boolean;2754 readonly asAcceptNft: {2755 readonly rmrkCollectionId: u32;2756 readonly rmrkNftId: u32;2757 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2758 } & Struct;2759 readonly isRejectNft: boolean;2760 readonly asRejectNft: {2761 readonly rmrkCollectionId: u32;2762 readonly rmrkNftId: u32;2763 } & Struct;2764 readonly isAcceptResource: boolean;2765 readonly asAcceptResource: {2766 readonly rmrkCollectionId: u32;2767 readonly rmrkNftId: u32;2768 readonly resourceId: u32;2769 } & Struct;2770 readonly isAcceptResourceRemoval: boolean;2771 readonly asAcceptResourceRemoval: {2772 readonly rmrkCollectionId: u32;2773 readonly rmrkNftId: u32;2774 readonly resourceId: u32;2775 } & Struct;2776 readonly isSetProperty: boolean;2777 readonly asSetProperty: {2778 readonly rmrkCollectionId: Compact<u32>;2779 readonly maybeNftId: Option<u32>;2780 readonly key: Bytes;2781 readonly value: Bytes;2782 } & Struct;2783 readonly isSetPriority: boolean;2784 readonly asSetPriority: {2785 readonly rmrkCollectionId: u32;2786 readonly rmrkNftId: u32;2787 readonly priorities: Vec<u32>;2788 } & Struct;2789 readonly isAddBasicResource: boolean;2790 readonly asAddBasicResource: {2791 readonly rmrkCollectionId: u32;2792 readonly nftId: u32;2793 readonly resource: RmrkTraitsResourceBasicResource;2794 } & Struct;2795 readonly isAddComposableResource: boolean;2796 readonly asAddComposableResource: {2797 readonly rmrkCollectionId: u32;2798 readonly nftId: u32;2799 readonly resource: RmrkTraitsResourceComposableResource;2800 } & Struct;2801 readonly isAddSlotResource: boolean;2802 readonly asAddSlotResource: {2803 readonly rmrkCollectionId: u32;2804 readonly nftId: u32;2805 readonly resource: RmrkTraitsResourceSlotResource;2806 } & Struct;2807 readonly isRemoveResource: boolean;2808 readonly asRemoveResource: {2809 readonly rmrkCollectionId: u32;2810 readonly nftId: u32;2811 readonly resourceId: u32;2812 } & Struct;2813 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2814 }28152816 /** @name RmrkTraitsResourceResourceTypes (295) */2817 interface RmrkTraitsResourceResourceTypes extends Enum {2818 readonly isBasic: boolean;2819 readonly asBasic: RmrkTraitsResourceBasicResource;2820 readonly isComposable: boolean;2821 readonly asComposable: RmrkTraitsResourceComposableResource;2822 readonly isSlot: boolean;2823 readonly asSlot: RmrkTraitsResourceSlotResource;2824 readonly type: 'Basic' | 'Composable' | 'Slot';2825 }28262827 /** @name RmrkTraitsResourceBasicResource (297) */2828 interface RmrkTraitsResourceBasicResource extends Struct {2829 readonly src: Option<Bytes>;2830 readonly metadata: Option<Bytes>;2831 readonly license: Option<Bytes>;2832 readonly thumb: Option<Bytes>;2833 }28342835 /** @name RmrkTraitsResourceComposableResource (299) */2836 interface RmrkTraitsResourceComposableResource extends Struct {2837 readonly parts: Vec<u32>;2838 readonly base: u32;2839 readonly src: Option<Bytes>;2840 readonly metadata: Option<Bytes>;2841 readonly license: Option<Bytes>;2842 readonly thumb: Option<Bytes>;2843 }28442845 /** @name RmrkTraitsResourceSlotResource (300) */2846 interface RmrkTraitsResourceSlotResource extends Struct {2847 readonly base: u32;2848 readonly src: Option<Bytes>;2849 readonly metadata: Option<Bytes>;2850 readonly slot: u32;2851 readonly license: Option<Bytes>;2852 readonly thumb: Option<Bytes>;2853 }28542855 /** @name PalletRmrkEquipCall (303) */2856 interface PalletRmrkEquipCall extends Enum {2857 readonly isCreateBase: boolean;2858 readonly asCreateBase: {2859 readonly baseType: Bytes;2860 readonly symbol: Bytes;2861 readonly parts: Vec<RmrkTraitsPartPartType>;2862 } & Struct;2863 readonly isThemeAdd: boolean;2864 readonly asThemeAdd: {2865 readonly baseId: u32;2866 readonly theme: RmrkTraitsTheme;2867 } & Struct;2868 readonly isEquippable: boolean;2869 readonly asEquippable: {2870 readonly baseId: u32;2871 readonly slotId: u32;2872 readonly equippables: RmrkTraitsPartEquippableList;2873 } & Struct;2874 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2875 }28762877 /** @name RmrkTraitsPartPartType (306) */2878 interface RmrkTraitsPartPartType extends Enum {2879 readonly isFixedPart: boolean;2880 readonly asFixedPart: RmrkTraitsPartFixedPart;2881 readonly isSlotPart: boolean;2882 readonly asSlotPart: RmrkTraitsPartSlotPart;2883 readonly type: 'FixedPart' | 'SlotPart';2884 }28852886 /** @name RmrkTraitsPartFixedPart (308) */2887 interface RmrkTraitsPartFixedPart extends Struct {2888 readonly id: u32;2889 readonly z: u32;2890 readonly src: Bytes;2891 }28922893 /** @name RmrkTraitsPartSlotPart (309) */2894 interface RmrkTraitsPartSlotPart extends Struct {2895 readonly id: u32;2896 readonly equippable: RmrkTraitsPartEquippableList;2897 readonly src: Bytes;2898 readonly z: u32;2899 }29002901 /** @name RmrkTraitsPartEquippableList (310) */2902 interface RmrkTraitsPartEquippableList extends Enum {2903 readonly isAll: boolean;2904 readonly isEmpty: boolean;2905 readonly isCustom: boolean;2906 readonly asCustom: Vec<u32>;2907 readonly type: 'All' | 'Empty' | 'Custom';2908 }29092910 /** @name RmrkTraitsTheme (312) */2911 interface RmrkTraitsTheme extends Struct {2912 readonly name: Bytes;2913 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2914 readonly inherit: bool;2915 }29162917 /** @name RmrkTraitsThemeThemeProperty (314) */2918 interface RmrkTraitsThemeThemeProperty extends Struct {2919 readonly key: Bytes;2920 readonly value: Bytes;2921 }29222923 /** @name PalletAppPromotionCall (316) */2924 interface PalletAppPromotionCall extends Enum {2925 readonly isSetAdminAddress: boolean;2926 readonly asSetAdminAddress: {2927 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2928 } & Struct;2929 readonly isStake: boolean;2930 readonly asStake: {2931 readonly amount: u128;2932 } & Struct;2933 readonly isUnstake: boolean;2934 readonly isSponsorCollection: boolean;2935 readonly asSponsorCollection: {2936 readonly collectionId: u32;2937 } & Struct;2938 readonly isStopSponsoringCollection: boolean;2939 readonly asStopSponsoringCollection: {2940 readonly collectionId: u32;2941 } & Struct;2942 readonly isSponsorContract: boolean;2943 readonly asSponsorContract: {2944 readonly contractId: H160;2945 } & Struct;2946 readonly isStopSponsoringContract: boolean;2947 readonly asStopSponsoringContract: {2948 readonly contractId: H160;2949 } & Struct;2950 readonly isPayoutStakers: boolean;2951 readonly asPayoutStakers: {2952 readonly stakersNumber: Option<u8>;2953 } & Struct;2954 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2955 }29562957 /** @name PalletForeignAssetsModuleCall (318) */2958 interface PalletForeignAssetsModuleCall extends Enum {2959 readonly isRegisterForeignAsset: boolean;2960 readonly asRegisterForeignAsset: {2961 readonly owner: AccountId32;2962 readonly location: XcmVersionedMultiLocation;2963 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2964 } & Struct;2965 readonly isUpdateForeignAsset: boolean;2966 readonly asUpdateForeignAsset: {2967 readonly foreignAssetId: u32;2968 readonly location: XcmVersionedMultiLocation;2969 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2970 } & Struct;2971 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2972 }29732974 /** @name PalletEvmCall (319) */2975 interface PalletEvmCall extends Enum {2976 readonly isWithdraw: boolean;2977 readonly asWithdraw: {2978 readonly address: H160;2979 readonly value: u128;2980 } & Struct;2981 readonly isCall: boolean;2982 readonly asCall: {2983 readonly source: H160;2984 readonly target: H160;2985 readonly input: Bytes;2986 readonly value: U256;2987 readonly gasLimit: u64;2988 readonly maxFeePerGas: U256;2989 readonly maxPriorityFeePerGas: Option<U256>;2990 readonly nonce: Option<U256>;2991 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2992 } & Struct;2993 readonly isCreate: boolean;2994 readonly asCreate: {2995 readonly source: H160;2996 readonly init: Bytes;2997 readonly value: U256;2998 readonly gasLimit: u64;2999 readonly maxFeePerGas: U256;3000 readonly maxPriorityFeePerGas: Option<U256>;3001 readonly nonce: Option<U256>;3002 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3003 } & Struct;3004 readonly isCreate2: boolean;3005 readonly asCreate2: {3006 readonly source: H160;3007 readonly init: Bytes;3008 readonly salt: H256;3009 readonly value: U256;3010 readonly gasLimit: u64;3011 readonly maxFeePerGas: U256;3012 readonly maxPriorityFeePerGas: Option<U256>;3013 readonly nonce: Option<U256>;3014 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3015 } & Struct;3016 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3017 }30183019 /** @name PalletEthereumCall (323) */3020 interface PalletEthereumCall extends Enum {3021 readonly isTransact: boolean;3022 readonly asTransact: {3023 readonly transaction: EthereumTransactionTransactionV2;3024 } & Struct;3025 readonly type: 'Transact';3026 }30273028 /** @name EthereumTransactionTransactionV2 (324) */3029 interface EthereumTransactionTransactionV2 extends Enum {3030 readonly isLegacy: boolean;3031 readonly asLegacy: EthereumTransactionLegacyTransaction;3032 readonly isEip2930: boolean;3033 readonly asEip2930: EthereumTransactionEip2930Transaction;3034 readonly isEip1559: boolean;3035 readonly asEip1559: EthereumTransactionEip1559Transaction;3036 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3037 }30383039 /** @name EthereumTransactionLegacyTransaction (325) */3040 interface EthereumTransactionLegacyTransaction extends Struct {3041 readonly nonce: U256;3042 readonly gasPrice: U256;3043 readonly gasLimit: U256;3044 readonly action: EthereumTransactionTransactionAction;3045 readonly value: U256;3046 readonly input: Bytes;3047 readonly signature: EthereumTransactionTransactionSignature;3048 }30493050 /** @name EthereumTransactionTransactionAction (326) */3051 interface EthereumTransactionTransactionAction extends Enum {3052 readonly isCall: boolean;3053 readonly asCall: H160;3054 readonly isCreate: boolean;3055 readonly type: 'Call' | 'Create';3056 }30573058 /** @name EthereumTransactionTransactionSignature (327) */3059 interface EthereumTransactionTransactionSignature extends Struct {3060 readonly v: u64;3061 readonly r: H256;3062 readonly s: H256;3063 }30643065 /** @name EthereumTransactionEip2930Transaction (329) */3066 interface EthereumTransactionEip2930Transaction extends Struct {3067 readonly chainId: u64;3068 readonly nonce: U256;3069 readonly gasPrice: U256;3070 readonly gasLimit: U256;3071 readonly action: EthereumTransactionTransactionAction;3072 readonly value: U256;3073 readonly input: Bytes;3074 readonly accessList: Vec<EthereumTransactionAccessListItem>;3075 readonly oddYParity: bool;3076 readonly r: H256;3077 readonly s: H256;3078 }30793080 /** @name EthereumTransactionAccessListItem (331) */3081 interface EthereumTransactionAccessListItem extends Struct {3082 readonly address: H160;3083 readonly storageKeys: Vec<H256>;3084 }30853086 /** @name EthereumTransactionEip1559Transaction (332) */3087 interface EthereumTransactionEip1559Transaction extends Struct {3088 readonly chainId: u64;3089 readonly nonce: U256;3090 readonly maxPriorityFeePerGas: U256;3091 readonly maxFeePerGas: U256;3092 readonly gasLimit: U256;3093 readonly action: EthereumTransactionTransactionAction;3094 readonly value: U256;3095 readonly input: Bytes;3096 readonly accessList: Vec<EthereumTransactionAccessListItem>;3097 readonly oddYParity: bool;3098 readonly r: H256;3099 readonly s: H256;3100 }31013102 /** @name PalletEvmMigrationCall (333) */3103 interface PalletEvmMigrationCall extends Enum {3104 readonly isBegin: boolean;3105 readonly asBegin: {3106 readonly address: H160;3107 } & Struct;3108 readonly isSetData: boolean;3109 readonly asSetData: {3110 readonly address: H160;3111 readonly data: Vec<ITuple<[H256, H256]>>;3112 } & Struct;3113 readonly isFinish: boolean;3114 readonly asFinish: {3115 readonly address: H160;3116 readonly code: Bytes;3117 } & Struct;3118 readonly type: 'Begin' | 'SetData' | 'Finish';3119 }31203121 /** @name PalletSudoError (336) */3122 interface PalletSudoError extends Enum {3123 readonly isRequireSudo: boolean;3124 readonly type: 'RequireSudo';3125 }31263127 /** @name OrmlVestingModuleError (338) */3128 interface OrmlVestingModuleError extends Enum {3129 readonly isZeroVestingPeriod: boolean;3130 readonly isZeroVestingPeriodCount: boolean;3131 readonly isInsufficientBalanceToLock: boolean;3132 readonly isTooManyVestingSchedules: boolean;3133 readonly isAmountLow: boolean;3134 readonly isMaxVestingSchedulesExceeded: boolean;3135 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3136 }31373138 /** @name OrmlXtokensModuleError (339) */3139 interface OrmlXtokensModuleError extends Enum {3140 readonly isAssetHasNoReserve: boolean;3141 readonly isNotCrossChainTransfer: boolean;3142 readonly isInvalidDest: boolean;3143 readonly isNotCrossChainTransferableCurrency: boolean;3144 readonly isUnweighableMessage: boolean;3145 readonly isXcmExecutionFailed: boolean;3146 readonly isCannotReanchor: boolean;3147 readonly isInvalidAncestry: boolean;3148 readonly isInvalidAsset: boolean;3149 readonly isDestinationNotInvertible: boolean;3150 readonly isBadVersion: boolean;3151 readonly isDistinctReserveForAssetAndFee: boolean;3152 readonly isZeroFee: boolean;3153 readonly isZeroAmount: boolean;3154 readonly isTooManyAssetsBeingSent: boolean;3155 readonly isAssetIndexNonExistent: boolean;3156 readonly isFeeNotEnough: boolean;3157 readonly isNotSupportedMultiLocation: boolean;3158 readonly isMinXcmFeeNotDefined: boolean;3159 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3160 }31613162 /** @name OrmlTokensBalanceLock (342) */3163 interface OrmlTokensBalanceLock extends Struct {3164 readonly id: U8aFixed;3165 readonly amount: u128;3166 }31673168 /** @name OrmlTokensAccountData (344) */3169 interface OrmlTokensAccountData extends Struct {3170 readonly free: u128;3171 readonly reserved: u128;3172 readonly frozen: u128;3173 }31743175 /** @name OrmlTokensReserveData (346) */3176 interface OrmlTokensReserveData extends Struct {3177 readonly id: Null;3178 readonly amount: u128;3179 }31803181 /** @name OrmlTokensModuleError (348) */3182 interface OrmlTokensModuleError extends Enum {3183 readonly isBalanceTooLow: boolean;3184 readonly isAmountIntoBalanceFailed: boolean;3185 readonly isLiquidityRestrictions: boolean;3186 readonly isMaxLocksExceeded: boolean;3187 readonly isKeepAlive: boolean;3188 readonly isExistentialDeposit: boolean;3189 readonly isDeadAccount: boolean;3190 readonly isTooManyReserves: boolean;3191 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3192 }31933194 /** @name CumulusPalletXcmpQueueInboundChannelDetails (350) */3195 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3196 readonly sender: u32;3197 readonly state: CumulusPalletXcmpQueueInboundState;3198 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3199 }32003201 /** @name CumulusPalletXcmpQueueInboundState (351) */3202 interface CumulusPalletXcmpQueueInboundState extends Enum {3203 readonly isOk: boolean;3204 readonly isSuspended: boolean;3205 readonly type: 'Ok' | 'Suspended';3206 }32073208 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (354) */3209 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3210 readonly isConcatenatedVersionedXcm: boolean;3211 readonly isConcatenatedEncodedBlob: boolean;3212 readonly isSignals: boolean;3213 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3214 }32153216 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (357) */3217 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3218 readonly recipient: u32;3219 readonly state: CumulusPalletXcmpQueueOutboundState;3220 readonly signalsExist: bool;3221 readonly firstIndex: u16;3222 readonly lastIndex: u16;3223 }32243225 /** @name CumulusPalletXcmpQueueOutboundState (358) */3226 interface CumulusPalletXcmpQueueOutboundState extends Enum {3227 readonly isOk: boolean;3228 readonly isSuspended: boolean;3229 readonly type: 'Ok' | 'Suspended';3230 }32313232 /** @name CumulusPalletXcmpQueueQueueConfigData (360) */3233 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3234 readonly suspendThreshold: u32;3235 readonly dropThreshold: u32;3236 readonly resumeThreshold: u32;3237 readonly thresholdWeight: u64;3238 readonly weightRestrictDecay: u64;3239 readonly xcmpMaxIndividualWeight: u64;3240 }32413242 /** @name CumulusPalletXcmpQueueError (362) */3243 interface CumulusPalletXcmpQueueError extends Enum {3244 readonly isFailedToSend: boolean;3245 readonly isBadXcmOrigin: boolean;3246 readonly isBadXcm: boolean;3247 readonly isBadOverweightIndex: boolean;3248 readonly isWeightOverLimit: boolean;3249 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3250 }32513252 /** @name PalletXcmError (363) */3253 interface PalletXcmError extends Enum {3254 readonly isUnreachable: boolean;3255 readonly isSendFailure: boolean;3256 readonly isFiltered: boolean;3257 readonly isUnweighableMessage: boolean;3258 readonly isDestinationNotInvertible: boolean;3259 readonly isEmpty: boolean;3260 readonly isCannotReanchor: boolean;3261 readonly isTooManyAssets: boolean;3262 readonly isInvalidOrigin: boolean;3263 readonly isBadVersion: boolean;3264 readonly isBadLocation: boolean;3265 readonly isNoSubscription: boolean;3266 readonly isAlreadySubscribed: boolean;3267 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3268 }32693270 /** @name CumulusPalletXcmError (364) */3271 type CumulusPalletXcmError = Null;32723273 /** @name CumulusPalletDmpQueueConfigData (365) */3274 interface CumulusPalletDmpQueueConfigData extends Struct {3275 readonly maxIndividual: u64;3276 }32773278 /** @name CumulusPalletDmpQueuePageIndexData (366) */3279 interface CumulusPalletDmpQueuePageIndexData extends Struct {3280 readonly beginUsed: u32;3281 readonly endUsed: u32;3282 readonly overweightCount: u64;3283 }32843285 /** @name CumulusPalletDmpQueueError (369) */3286 interface CumulusPalletDmpQueueError extends Enum {3287 readonly isUnknown: boolean;3288 readonly isOverLimit: boolean;3289 readonly type: 'Unknown' | 'OverLimit';3290 }32913292 /** @name PalletUniqueError (373) */3293 interface PalletUniqueError extends Enum {3294 readonly isCollectionDecimalPointLimitExceeded: boolean;3295 readonly isConfirmUnsetSponsorFail: boolean;3296 readonly isEmptyArgument: boolean;3297 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3298 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3299 }33003301 /** @name PalletUniqueSchedulerScheduledV3 (376) */3302 interface PalletUniqueSchedulerScheduledV3 extends Struct {3303 readonly maybeId: Option<U8aFixed>;3304 readonly priority: u8;3305 readonly call: FrameSupportScheduleMaybeHashed;3306 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3307 readonly origin: OpalRuntimeOriginCaller;3308 }33093310 /** @name OpalRuntimeOriginCaller (377) */3311 interface OpalRuntimeOriginCaller extends Enum {3312 readonly isSystem: boolean;3313 readonly asSystem: FrameSupportDispatchRawOrigin;3314 readonly isVoid: boolean;3315 readonly isPolkadotXcm: boolean;3316 readonly asPolkadotXcm: PalletXcmOrigin;3317 readonly isCumulusXcm: boolean;3318 readonly asCumulusXcm: CumulusPalletXcmOrigin;3319 readonly isEthereum: boolean;3320 readonly asEthereum: PalletEthereumRawOrigin;3321 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3322 }33233324 /** @name FrameSupportDispatchRawOrigin (378) */3325 interface FrameSupportDispatchRawOrigin extends Enum {3326 readonly isRoot: boolean;3327 readonly isSigned: boolean;3328 readonly asSigned: AccountId32;3329 readonly isNone: boolean;3330 readonly type: 'Root' | 'Signed' | 'None';3331 }33323333 /** @name PalletXcmOrigin (379) */3334 interface PalletXcmOrigin extends Enum {3335 readonly isXcm: boolean;3336 readonly asXcm: XcmV1MultiLocation;3337 readonly isResponse: boolean;3338 readonly asResponse: XcmV1MultiLocation;3339 readonly type: 'Xcm' | 'Response';3340 }33413342 /** @name CumulusPalletXcmOrigin (380) */3343 interface CumulusPalletXcmOrigin extends Enum {3344 readonly isRelay: boolean;3345 readonly isSiblingParachain: boolean;3346 readonly asSiblingParachain: u32;3347 readonly type: 'Relay' | 'SiblingParachain';3348 }33493350 /** @name PalletEthereumRawOrigin (381) */3351 interface PalletEthereumRawOrigin extends Enum {3352 readonly isEthereumTransaction: boolean;3353 readonly asEthereumTransaction: H160;3354 readonly type: 'EthereumTransaction';3355 }33563357 /** @name SpCoreVoid (382) */3358 type SpCoreVoid = Null;33593360 /** @name PalletUniqueSchedulerError (383) */3361 interface PalletUniqueSchedulerError extends Enum {3362 readonly isFailedToSchedule: boolean;3363 readonly isNotFound: boolean;3364 readonly isTargetBlockNumberInPast: boolean;3365 readonly isRescheduleNoChange: boolean;3366 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3367 }33683369 /** @name UpDataStructsCollection (384) */3370 interface UpDataStructsCollection extends Struct {3371 readonly owner: AccountId32;3372 readonly mode: UpDataStructsCollectionMode;3373 readonly name: Vec<u16>;3374 readonly description: Vec<u16>;3375 readonly tokenPrefix: Bytes;3376 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3377 readonly limits: UpDataStructsCollectionLimits;3378 readonly permissions: UpDataStructsCollectionPermissions;3379 readonly flags: U8aFixed;3380 }33813382 /** @name UpDataStructsSponsorshipStateAccountId32 (385) */3383 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3384 readonly isDisabled: boolean;3385 readonly isUnconfirmed: boolean;3386 readonly asUnconfirmed: AccountId32;3387 readonly isConfirmed: boolean;3388 readonly asConfirmed: AccountId32;3389 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3390 }33913392 /** @name UpDataStructsProperties (387) */3393 interface UpDataStructsProperties extends Struct {3394 readonly map: UpDataStructsPropertiesMapBoundedVec;3395 readonly consumedSpace: u32;3396 readonly spaceLimit: u32;3397 }33983399 /** @name UpDataStructsPropertiesMapBoundedVec (388) */3400 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}34013402 /** @name UpDataStructsPropertiesMapPropertyPermission (393) */3403 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}34043405 /** @name UpDataStructsCollectionStats (400) */3406 interface UpDataStructsCollectionStats extends Struct {3407 readonly created: u32;3408 readonly destroyed: u32;3409 readonly alive: u32;3410 }34113412 /** @name UpDataStructsTokenChild (401) */3413 interface UpDataStructsTokenChild extends Struct {3414 readonly token: u32;3415 readonly collection: u32;3416 }34173418 /** @name PhantomTypeUpDataStructs (402) */3419 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}34203421 /** @name UpDataStructsTokenData (404) */3422 interface UpDataStructsTokenData extends Struct {3423 readonly properties: Vec<UpDataStructsProperty>;3424 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3425 readonly pieces: u128;3426 }34273428 /** @name UpDataStructsRpcCollection (406) */3429 interface UpDataStructsRpcCollection extends Struct {3430 readonly owner: AccountId32;3431 readonly mode: UpDataStructsCollectionMode;3432 readonly name: Vec<u16>;3433 readonly description: Vec<u16>;3434 readonly tokenPrefix: Bytes;3435 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3436 readonly limits: UpDataStructsCollectionLimits;3437 readonly permissions: UpDataStructsCollectionPermissions;3438 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3439 readonly properties: Vec<UpDataStructsProperty>;3440 readonly readOnly: bool;3441 readonly foreign: bool;3442 }34433444 /** @name RmrkTraitsCollectionCollectionInfo (407) */3445 interface RmrkTraitsCollectionCollectionInfo extends Struct {3446 readonly issuer: AccountId32;3447 readonly metadata: Bytes;3448 readonly max: Option<u32>;3449 readonly symbol: Bytes;3450 readonly nftsCount: u32;3451 }34523453 /** @name RmrkTraitsNftNftInfo (408) */3454 interface RmrkTraitsNftNftInfo extends Struct {3455 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3456 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3457 readonly metadata: Bytes;3458 readonly equipped: bool;3459 readonly pending: bool;3460 }34613462 /** @name RmrkTraitsNftRoyaltyInfo (410) */3463 interface RmrkTraitsNftRoyaltyInfo extends Struct {3464 readonly recipient: AccountId32;3465 readonly amount: Permill;3466 }34673468 /** @name RmrkTraitsResourceResourceInfo (411) */3469 interface RmrkTraitsResourceResourceInfo extends Struct {3470 readonly id: u32;3471 readonly resource: RmrkTraitsResourceResourceTypes;3472 readonly pending: bool;3473 readonly pendingRemoval: bool;3474 }34753476 /** @name RmrkTraitsPropertyPropertyInfo (412) */3477 interface RmrkTraitsPropertyPropertyInfo extends Struct {3478 readonly key: Bytes;3479 readonly value: Bytes;3480 }34813482 /** @name RmrkTraitsBaseBaseInfo (413) */3483 interface RmrkTraitsBaseBaseInfo extends Struct {3484 readonly issuer: AccountId32;3485 readonly baseType: Bytes;3486 readonly symbol: Bytes;3487 }34883489 /** @name RmrkTraitsNftNftChild (414) */3490 interface RmrkTraitsNftNftChild extends Struct {3491 readonly collectionId: u32;3492 readonly nftId: u32;3493 }34943495 /** @name PalletCommonError (416) */3496 interface PalletCommonError extends Enum {3497 readonly isCollectionNotFound: boolean;3498 readonly isMustBeTokenOwner: boolean;3499 readonly isNoPermission: boolean;3500 readonly isCantDestroyNotEmptyCollection: boolean;3501 readonly isPublicMintingNotAllowed: boolean;3502 readonly isAddressNotInAllowlist: boolean;3503 readonly isCollectionNameLimitExceeded: boolean;3504 readonly isCollectionDescriptionLimitExceeded: boolean;3505 readonly isCollectionTokenPrefixLimitExceeded: boolean;3506 readonly isTotalCollectionsLimitExceeded: boolean;3507 readonly isCollectionAdminCountExceeded: boolean;3508 readonly isCollectionLimitBoundsExceeded: boolean;3509 readonly isOwnerPermissionsCantBeReverted: boolean;3510 readonly isTransferNotAllowed: boolean;3511 readonly isAccountTokenLimitExceeded: boolean;3512 readonly isCollectionTokenLimitExceeded: boolean;3513 readonly isMetadataFlagFrozen: boolean;3514 readonly isTokenNotFound: boolean;3515 readonly isTokenValueTooLow: boolean;3516 readonly isApprovedValueTooLow: boolean;3517 readonly isCantApproveMoreThanOwned: boolean;3518 readonly isAddressIsZero: boolean;3519 readonly isUnsupportedOperation: boolean;3520 readonly isNotSufficientFounds: boolean;3521 readonly isUserIsNotAllowedToNest: boolean;3522 readonly isSourceCollectionIsNotAllowedToNest: boolean;3523 readonly isCollectionFieldSizeExceeded: boolean;3524 readonly isNoSpaceForProperty: boolean;3525 readonly isPropertyLimitReached: boolean;3526 readonly isPropertyKeyIsTooLong: boolean;3527 readonly isInvalidCharacterInPropertyKey: boolean;3528 readonly isEmptyPropertyKey: boolean;3529 readonly isCollectionIsExternal: boolean;3530 readonly isCollectionIsInternal: boolean;3531 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3532 }35333534 /** @name PalletFungibleError (418) */3535 interface PalletFungibleError extends Enum {3536 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3537 readonly isFungibleItemsHaveNoId: boolean;3538 readonly isFungibleItemsDontHaveData: boolean;3539 readonly isFungibleDisallowsNesting: boolean;3540 readonly isSettingPropertiesNotAllowed: boolean;3541 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3542 }35433544 /** @name PalletRefungibleItemData (419) */3545 interface PalletRefungibleItemData extends Struct {3546 readonly constData: Bytes;3547 }35483549 /** @name PalletRefungibleError (424) */3550 interface PalletRefungibleError extends Enum {3551 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3552 readonly isWrongRefungiblePieces: boolean;3553 readonly isRepartitionWhileNotOwningAllPieces: boolean;3554 readonly isRefungibleDisallowsNesting: boolean;3555 readonly isSettingPropertiesNotAllowed: boolean;3556 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3557 }35583559 /** @name PalletNonfungibleItemData (425) */3560 interface PalletNonfungibleItemData extends Struct {3561 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3562 }35633564 /** @name UpDataStructsPropertyScope (427) */3565 interface UpDataStructsPropertyScope extends Enum {3566 readonly isNone: boolean;3567 readonly isRmrk: boolean;3568 readonly type: 'None' | 'Rmrk';3569 }35703571 /** @name PalletNonfungibleError (429) */3572 interface PalletNonfungibleError extends Enum {3573 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3574 readonly isNonfungibleItemsHaveNoAmount: boolean;3575 readonly isCantBurnNftWithChildren: boolean;3576 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3577 }35783579 /** @name PalletStructureError (430) */3580 interface PalletStructureError extends Enum {3581 readonly isOuroborosDetected: boolean;3582 readonly isDepthLimit: boolean;3583 readonly isBreadthLimit: boolean;3584 readonly isTokenNotFound: boolean;3585 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3586 }35873588 /** @name PalletRmrkCoreError (431) */3589 interface PalletRmrkCoreError extends Enum {3590 readonly isCorruptedCollectionType: boolean;3591 readonly isRmrkPropertyKeyIsTooLong: boolean;3592 readonly isRmrkPropertyValueIsTooLong: boolean;3593 readonly isRmrkPropertyIsNotFound: boolean;3594 readonly isUnableToDecodeRmrkData: boolean;3595 readonly isCollectionNotEmpty: boolean;3596 readonly isNoAvailableCollectionId: boolean;3597 readonly isNoAvailableNftId: boolean;3598 readonly isCollectionUnknown: boolean;3599 readonly isNoPermission: boolean;3600 readonly isNonTransferable: boolean;3601 readonly isCollectionFullOrLocked: boolean;3602 readonly isResourceDoesntExist: boolean;3603 readonly isCannotSendToDescendentOrSelf: boolean;3604 readonly isCannotAcceptNonOwnedNft: boolean;3605 readonly isCannotRejectNonOwnedNft: boolean;3606 readonly isCannotRejectNonPendingNft: boolean;3607 readonly isResourceNotPending: boolean;3608 readonly isNoAvailableResourceId: boolean;3609 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3610 }36113612 /** @name PalletRmrkEquipError (433) */3613 interface PalletRmrkEquipError extends Enum {3614 readonly isPermissionError: boolean;3615 readonly isNoAvailableBaseId: boolean;3616 readonly isNoAvailablePartId: boolean;3617 readonly isBaseDoesntExist: boolean;3618 readonly isNeedsDefaultThemeFirst: boolean;3619 readonly isPartDoesntExist: boolean;3620 readonly isNoEquippableOnFixedPart: boolean;3621 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3622 }36233624 /** @name PalletAppPromotionError (439) */3625 interface PalletAppPromotionError extends Enum {3626 readonly isAdminNotSet: boolean;3627 readonly isNoPermission: boolean;3628 readonly isNotSufficientFunds: boolean;3629 readonly isPendingForBlockOverflow: boolean;3630 readonly isSponsorNotSet: boolean;3631 readonly isIncorrectLockedBalanceOperation: boolean;3632 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3633 }36343635 /** @name PalletForeignAssetsModuleError (440) */3636 interface PalletForeignAssetsModuleError extends Enum {3637 readonly isBadLocation: boolean;3638 readonly isMultiLocationExisted: boolean;3639 readonly isAssetIdNotExists: boolean;3640 readonly isAssetIdExisted: boolean;3641 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3642 }36433644 /** @name PalletEvmError (443) */3645 interface PalletEvmError extends Enum {3646 readonly isBalanceLow: boolean;3647 readonly isFeeOverflow: boolean;3648 readonly isPaymentOverflow: boolean;3649 readonly isWithdrawFailed: boolean;3650 readonly isGasPriceTooLow: boolean;3651 readonly isInvalidNonce: boolean;3652 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3653 }36543655 /** @name FpRpcTransactionStatus (446) */3656 interface FpRpcTransactionStatus extends Struct {3657 readonly transactionHash: H256;3658 readonly transactionIndex: u32;3659 readonly from: H160;3660 readonly to: Option<H160>;3661 readonly contractAddress: Option<H160>;3662 readonly logs: Vec<EthereumLog>;3663 readonly logsBloom: EthbloomBloom;3664 }36653666 /** @name EthbloomBloom (448) */3667 interface EthbloomBloom extends U8aFixed {}36683669 /** @name EthereumReceiptReceiptV3 (450) */3670 interface EthereumReceiptReceiptV3 extends Enum {3671 readonly isLegacy: boolean;3672 readonly asLegacy: EthereumReceiptEip658ReceiptData;3673 readonly isEip2930: boolean;3674 readonly asEip2930: EthereumReceiptEip658ReceiptData;3675 readonly isEip1559: boolean;3676 readonly asEip1559: EthereumReceiptEip658ReceiptData;3677 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3678 }36793680 /** @name EthereumReceiptEip658ReceiptData (451) */3681 interface EthereumReceiptEip658ReceiptData extends Struct {3682 readonly statusCode: u8;3683 readonly usedGas: U256;3684 readonly logsBloom: EthbloomBloom;3685 readonly logs: Vec<EthereumLog>;3686 }36873688 /** @name EthereumBlock (452) */3689 interface EthereumBlock extends Struct {3690 readonly header: EthereumHeader;3691 readonly transactions: Vec<EthereumTransactionTransactionV2>;3692 readonly ommers: Vec<EthereumHeader>;3693 }36943695 /** @name EthereumHeader (453) */3696 interface EthereumHeader extends Struct {3697 readonly parentHash: H256;3698 readonly ommersHash: H256;3699 readonly beneficiary: H160;3700 readonly stateRoot: H256;3701 readonly transactionsRoot: H256;3702 readonly receiptsRoot: H256;3703 readonly logsBloom: EthbloomBloom;3704 readonly difficulty: U256;3705 readonly number: U256;3706 readonly gasLimit: U256;3707 readonly gasUsed: U256;3708 readonly timestamp: u64;3709 readonly extraData: Bytes;3710 readonly mixHash: H256;3711 readonly nonce: EthereumTypesHashH64;3712 }37133714 /** @name EthereumTypesHashH64 (454) */3715 interface EthereumTypesHashH64 extends U8aFixed {}37163717 /** @name PalletEthereumError (459) */3718 interface PalletEthereumError extends Enum {3719 readonly isInvalidSignature: boolean;3720 readonly isPreLogExists: boolean;3721 readonly type: 'InvalidSignature' | 'PreLogExists';3722 }37233724 /** @name PalletEvmCoderSubstrateError (460) */3725 interface PalletEvmCoderSubstrateError extends Enum {3726 readonly isOutOfGas: boolean;3727 readonly isOutOfFund: boolean;3728 readonly type: 'OutOfGas' | 'OutOfFund';3729 }37303731 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (461) */3732 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3733 readonly isDisabled: boolean;3734 readonly isUnconfirmed: boolean;3735 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3736 readonly isConfirmed: boolean;3737 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3738 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3739 }37403741 /** @name PalletEvmContractHelpersSponsoringModeT (462) */3742 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3743 readonly isDisabled: boolean;3744 readonly isAllowlisted: boolean;3745 readonly isGenerous: boolean;3746 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3747 }37483749 /** @name PalletEvmContractHelpersError (468) */3750 interface PalletEvmContractHelpersError extends Enum {3751 readonly isNoPermission: boolean;3752 readonly isNoPendingSponsor: boolean;3753 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3754 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3755 }37563757 /** @name PalletEvmMigrationError (469) */3758 interface PalletEvmMigrationError extends Enum {3759 readonly isAccountNotEmpty: boolean;3760 readonly isAccountIsNotMigrating: boolean;3761 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3762 }37633764 /** @name SpRuntimeMultiSignature (471) */3765 interface SpRuntimeMultiSignature extends Enum {3766 readonly isEd25519: boolean;3767 readonly asEd25519: SpCoreEd25519Signature;3768 readonly isSr25519: boolean;3769 readonly asSr25519: SpCoreSr25519Signature;3770 readonly isEcdsa: boolean;3771 readonly asEcdsa: SpCoreEcdsaSignature;3772 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3773 }37743775 /** @name SpCoreEd25519Signature (472) */3776 interface SpCoreEd25519Signature extends U8aFixed {}37773778 /** @name SpCoreSr25519Signature (474) */3779 interface SpCoreSr25519Signature extends U8aFixed {}37803781 /** @name SpCoreEcdsaSignature (475) */3782 interface SpCoreEcdsaSignature extends U8aFixed {}37833784 /** @name FrameSystemExtensionsCheckSpecVersion (478) */3785 type FrameSystemExtensionsCheckSpecVersion = Null;37863787 /** @name FrameSystemExtensionsCheckTxVersion (479) */3788 type FrameSystemExtensionsCheckTxVersion = Null;37893790 /** @name FrameSystemExtensionsCheckGenesis (480) */3791 type FrameSystemExtensionsCheckGenesis = Null;37923793 /** @name FrameSystemExtensionsCheckNonce (483) */3794 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}37953796 /** @name FrameSystemExtensionsCheckWeight (484) */3797 type FrameSystemExtensionsCheckWeight = Null;37983799 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (485) */3800 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}38013802 /** @name OpalRuntimeRuntime (486) */3803 type OpalRuntimeRuntime = Null;38043805 /** @name PalletEthereumFakeTransactionFinalizer (487) */3806 type PalletEthereumFakeTransactionFinalizer = Null;38073808} // declare moduletests/src/refungible.test.tsdiffbeforeafterboth--- a/tests/src/refungible.test.ts
+++ b/tests/src/refungible.test.ts
@@ -62,7 +62,7 @@
.to.eventually.be.rejectedWith(/refungible\.WrongRefungiblePieces/);
});
- itSub('RPC method tokenOnewrs for refungible collection and token', async ({helper}) => {
+ itSub('RPC method tokenOwners for refungible collection and token', async ({helper}) => {
const ethAcc = {Ethereum: '0x67fb3503a61b284dc83fa96dceec4192db47dc7c'};
const facelessCrowd = (await helper.arrange.createAccounts(Array(7).fill(0n), donor)).map(keyring => {return {Substrate: keyring.address};});
@@ -212,7 +212,8 @@
const token = await collection.mintToken(alice, 100n);
await token.repartition(alice, 200n);
const chainEvents = helper.chainLog.slice(-1)[0].events;
- expect(chainEvents).to.deep.include({
+ const event = chainEvents.find((event: any) => event.section === 'common' && event.method === 'ItemCreated');
+ expect(event).to.deep.include({
section: 'common',
method: 'ItemCreated',
index: [66, 2],
@@ -222,7 +223,6 @@
{substrate: alice.address},
100n,
],
- phase: {applyExtrinsic: 2},
});
});
@@ -231,9 +231,10 @@
const token = await collection.mintToken(alice, 100n);
await token.repartition(alice, 50n);
const chainEvents = helper.chainLog.slice(-1)[0].events;
- expect(chainEvents).to.deep.include({
+ const event = chainEvents.find((event: any) => event.section === 'common' && event.method === 'ItemDestroyed');
+ expect(event).to.deep.include({
+ section: 'common',
method: 'ItemDestroyed',
- section: 'common',
index: [66, 3],
data: [
collection.collectionId,
@@ -241,7 +242,6 @@
{substrate: alice.address},
50n,
],
- phase: {applyExtrinsic: 2},
});
});
tests/src/xcm/xcmOpal.test.tsdiffbeforeafterboth--- a/tests/src/xcm/xcmOpal.test.ts
+++ b/tests/src/xcm/xcmOpal.test.ts
@@ -21,7 +21,7 @@
import {ApiOptions} from '@polkadot/api/types';
import {IKeyringPair} from '@polkadot/types/types';
import usingApi, {executeTransaction} from './../substrate/substrate-api';
-import {bigIntToDecimals, describe_xcm, getGenericResult, paraSiblingSovereignAccount, normalizeAccountId} from './../deprecated-helpers/helpers';
+import {bigIntToDecimals, describeXCM, getGenericResult, paraSiblingSovereignAccount, normalizeAccountId} from './../deprecated-helpers/helpers';
import waitNewBlocks from './../substrate/wait-new-blocks';
import getBalance from './../substrate/get-balance';
@@ -49,7 +49,7 @@
// 10,000.00 (ten thousands) USDT
const ASSET_AMOUNT = 1_000_000_000_000_000_000_000n;
-describe_xcm('[XCM] Integration test: Exchanging USDT with Westmint', () => {
+describeXCM('[XCM] Integration test: Exchanging USDT with Westmint', () => {
let alice: IKeyringPair;
let bob: IKeyringPair;
tests/src/xcm/xcmQuartz.test.tsdiffbeforeafterboth--- a/tests/src/xcm/xcmQuartz.test.ts
+++ b/tests/src/xcm/xcmQuartz.test.ts
@@ -21,7 +21,7 @@
import {ApiOptions} from '@polkadot/api/types';
import {IKeyringPair} from '@polkadot/types/types';
import usingApi, {submitTransactionAsync} from '../substrate/substrate-api';
-import {getGenericResult, generateKeyringPair, waitEvent, describe_xcm, bigIntToDecimals} from '../deprecated-helpers/helpers';
+import {getGenericResult, generateKeyringPair, waitEvent, describeXCM, bigIntToDecimals} from '../deprecated-helpers/helpers';
import {MultiLocation} from '@polkadot/types/interfaces';
import {blake2AsHex} from '@polkadot/util-crypto';
import waitNewBlocks from '../substrate/wait-new-blocks';
@@ -61,7 +61,7 @@
return parachainApiOptions(RELAY_PORT);
}
-describe_xcm('[XCM] Integration test: Exchanging tokens with Karura', () => {
+describeXCM('[XCM] Integration test: Exchanging tokens with Karura', () => {
let alice: IKeyringPair;
let randomAccount: IKeyringPair;
@@ -292,7 +292,7 @@
});
// These tests are relevant only when the foreign asset pallet is disabled
-describe_xcm('[XCM] Integration test: Quartz rejects non-native tokens', () => {
+describeXCM('[XCM] Integration test: Quartz rejects non-native tokens', () => {
let alice: IKeyringPair;
before(async () => {
@@ -433,7 +433,7 @@
});
});
-describe_xcm('[XCM] Integration test: Exchanging QTZ with Moonriver', () => {
+describeXCM('[XCM] Integration test: Exchanging QTZ with Moonriver', () => {
// Quartz constants
let quartzAlice: IKeyringPair;
tests/src/xcm/xcmUnique.test.tsdiffbeforeafterboth--- a/tests/src/xcm/xcmUnique.test.ts
+++ b/tests/src/xcm/xcmUnique.test.ts
@@ -21,7 +21,7 @@
import {ApiOptions} from '@polkadot/api/types';
import {IKeyringPair} from '@polkadot/types/types';
import usingApi, {submitTransactionAsync} from '../substrate/substrate-api';
-import {getGenericResult, generateKeyringPair, waitEvent, describe_xcm, bigIntToDecimals} from '../deprecated-helpers/helpers';
+import {getGenericResult, generateKeyringPair, waitEvent, describeXCM, bigIntToDecimals} from '../deprecated-helpers/helpers';
import {MultiLocation} from '@polkadot/types/interfaces';
import {blake2AsHex} from '@polkadot/util-crypto';
import waitNewBlocks from '../substrate/wait-new-blocks';
@@ -61,7 +61,7 @@
return parachainApiOptions(RELAY_PORT);
}
-describe_xcm('[XCM] Integration test: Exchanging tokens with Acala', () => {
+describeXCM('[XCM] Integration test: Exchanging tokens with Acala', () => {
let alice: IKeyringPair;
let randomAccount: IKeyringPair;
@@ -292,7 +292,7 @@
});
// These tests are relevant only when the foreign asset pallet is disabled
-describe_xcm('[XCM] Integration test: Unique rejects non-native tokens', () => {
+describeXCM('[XCM] Integration test: Unique rejects non-native tokens', () => {
let alice: IKeyringPair;
before(async () => {
@@ -433,7 +433,7 @@
});
});
-describe_xcm('[XCM] Integration test: Exchanging UNQ with Moonbeam', () => {
+describeXCM('[XCM] Integration test: Exchanging UNQ with Moonbeam', () => {
// Unique constants
let uniqueAlice: IKeyringPair;
tests/yarn.lockdiffbeforeafterboth--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -17,49 +17,49 @@
dependencies:
"@babel/highlight" "^7.18.6"
-"@babel/compat-data@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.0.tgz#2a592fd89bacb1fcde68de31bee4f2f2dacb0e86"
- integrity sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==
+"@babel/compat-data@^7.19.3":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747"
+ integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==
-"@babel/core@^7.18.10":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.0.tgz#d2f5f4f2033c00de8096be3c9f45772563e150c3"
- integrity sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==
+"@babel/core@^7.19.3":
+ version "7.19.3"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.3.tgz#2519f62a51458f43b682d61583c3810e7dcee64c"
+ integrity sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.19.0"
- "@babel/helper-compilation-targets" "^7.19.0"
+ "@babel/generator" "^7.19.3"
+ "@babel/helper-compilation-targets" "^7.19.3"
"@babel/helper-module-transforms" "^7.19.0"
"@babel/helpers" "^7.19.0"
- "@babel/parser" "^7.19.0"
+ "@babel/parser" "^7.19.3"
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.0"
- "@babel/types" "^7.19.0"
+ "@babel/traverse" "^7.19.3"
+ "@babel/types" "^7.19.3"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.1"
semver "^6.3.0"
-"@babel/generator@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.0.tgz#785596c06425e59334df2ccee63ab166b738419a"
- integrity sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==
+"@babel/generator@^7.19.3", "@babel/generator@^7.19.4":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.4.tgz#60050cf3f0a593d7b2471b4be4f62a56b949237f"
+ integrity sha512-5T2lY5vXqS+5UEit/5TwcIUeCnwgCljcF8IQRT6XRQPBrvLeq5V8W+URv+GvwoF3FP8tkhp++evVyDzkDGzNmA==
dependencies:
- "@babel/types" "^7.19.0"
+ "@babel/types" "^7.19.4"
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
-"@babel/helper-compilation-targets@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.0.tgz#537ec8339d53e806ed422f1e06c8f17d55b96bb0"
- integrity sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==
+"@babel/helper-compilation-targets@^7.19.3":
+ version "7.19.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca"
+ integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==
dependencies:
- "@babel/compat-data" "^7.19.0"
+ "@babel/compat-data" "^7.19.3"
"@babel/helper-validator-option" "^7.18.6"
- browserslist "^4.20.2"
+ browserslist "^4.21.3"
semver "^6.3.0"
"@babel/helper-environment-visitor@^7.18.9":
@@ -104,11 +104,11 @@
"@babel/types" "^7.19.0"
"@babel/helper-simple-access@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea"
- integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7"
+ integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.19.4"
"@babel/helper-split-export-declaration@^7.18.6":
version "7.18.6"
@@ -117,15 +117,15 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-string-parser@^7.18.10":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56"
- integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==
+"@babel/helper-string-parser@^7.19.4":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
+ integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
-"@babel/helper-validator-identifier@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
- integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==
+"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
+ version "7.19.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
+ integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
"@babel/helper-validator-option@^7.18.6":
version "7.18.6"
@@ -133,13 +133,13 @@
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
"@babel/helpers@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.0.tgz#f30534657faf246ae96551d88dd31e9d1fa1fc18"
- integrity sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5"
+ integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==
dependencies:
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.0"
- "@babel/types" "^7.19.0"
+ "@babel/traverse" "^7.19.4"
+ "@babel/types" "^7.19.4"
"@babel/highlight@^7.18.6":
version "7.18.6"
@@ -150,10 +150,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.18.10", "@babel/parser@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.0.tgz#497fcafb1d5b61376959c1c338745ef0577aa02c"
- integrity sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw==
+"@babel/parser@^7.18.10", "@babel/parser@^7.19.3", "@babel/parser@^7.19.4":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.4.tgz#03c4339d2b8971eb3beca5252bafd9b9f79db3dc"
+ integrity sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA==
"@babel/register@^7.18.9":
version "7.18.9"
@@ -166,10 +166,10 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
-"@babel/runtime@^7.18.9":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.0.tgz#22b11c037b094d27a8a2504ea4dcff00f50e2259"
- integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==
+"@babel/runtime@^7.18.9", "@babel/runtime@^7.19.0":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78"
+ integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==
dependencies:
regenerator-runtime "^0.13.4"
@@ -182,29 +182,29 @@
"@babel/parser" "^7.18.10"
"@babel/types" "^7.18.10"
-"@babel/traverse@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.0.tgz#eb9c561c7360005c592cc645abafe0c3c4548eed"
- integrity sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==
+"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.3", "@babel/traverse@^7.19.4":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.4.tgz#f117820e18b1e59448a6c1fa9d0ff08f7ac459a8"
+ integrity sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.19.0"
+ "@babel/generator" "^7.19.4"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.19.0"
- "@babel/types" "^7.19.0"
+ "@babel/parser" "^7.19.4"
+ "@babel/types" "^7.19.4"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.0.tgz#75f21d73d73dc0351f3368d28db73465f4814600"
- integrity sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==
+"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.3", "@babel/types@^7.19.4":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"
+ integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==
dependencies:
- "@babel/helper-string-parser" "^7.18.10"
- "@babel/helper-validator-identifier" "^7.18.6"
+ "@babel/helper-string-parser" "^7.19.4"
+ "@babel/helper-validator-identifier" "^7.19.1"
to-fast-properties "^2.0.0"
"@cspotcode/source-map-support@^0.8.0":
@@ -214,10 +214,10 @@
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
-"@eslint/eslintrc@^1.3.1":
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.1.tgz#de0807bfeffc37b964a7d0400e0c348ce5a2543d"
- integrity sha512-OhSY22oQQdw3zgPOOwdoj01l/Dzl1Z+xyUP33tkSN+aqyEhymJCcPHyXt+ylW8FSe0TfRC2VG+ROQOapD0aZSQ==
+"@eslint/eslintrc@^1.3.3":
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95"
+ integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
@@ -354,9 +354,9 @@
integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==
"@ethersproject/networks@^5.7.0":
- version "5.7.0"
- resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.0.tgz#df72a392f1a63a57f87210515695a31a245845ad"
- integrity sha512-MG6oHSQHd4ebvJrleEQQ4HhVu8Ichr0RDYEfHzsVAVjHNM+w36x9wp9r+hf1JstMXtseXDtkiVoARAG6M959AA==
+ version "5.7.1"
+ resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6"
+ integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==
dependencies:
"@ethersproject/logger" "^5.7.0"
@@ -412,9 +412,9 @@
"@ethersproject/signing-key" "^5.7.0"
"@ethersproject/web@^5.7.0":
- version "5.7.0"
- resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.0.tgz#40850c05260edad8b54827923bbad23d96aac0bc"
- integrity sha512-ApHcbbj+muRASVDSCl/tgxaH2LBkRMEYfLOLVa0COipx0+nlu0QKet7U2lEg0vdkh8XRSLf2nd1f1Uk9SrVSGA==
+ version "5.7.1"
+ resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae"
+ integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==
dependencies:
"@ethersproject/base64" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
@@ -422,19 +422,14 @@
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
-"@humanwhocodes/config-array@^0.10.4":
- version "0.10.4"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.4.tgz#01e7366e57d2ad104feea63e72248f22015c520c"
- integrity sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==
+"@humanwhocodes/config-array@^0.10.5":
+ version "0.10.7"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz#6d53769fd0c222767e6452e8ebda825c22e9f0dc"
+ integrity sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
debug "^4.1.1"
minimatch "^3.0.4"
-
-"@humanwhocodes/gitignore-to-minimatch@^1.0.2":
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz#316b0a63b91c10e53f242efb4ace5c3b34e8728d"
- integrity sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==
"@humanwhocodes/module-importer@^1.0.1":
version "1.0.1"
@@ -463,7 +458,7 @@
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
-"@jridgewell/resolve-uri@^3.0.3":
+"@jridgewell/resolve-uri@3.1.0", "@jridgewell/resolve-uri@^3.0.3":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
@@ -473,7 +468,7 @@
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
-"@jridgewell/sourcemap-codec@^1.4.10":
+"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":
version "1.4.14"
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
@@ -487,22 +482,22 @@
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping@^0.3.9":
- version "0.3.15"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz#aba35c48a38d3fd84b37e66c9c0423f9744f9774"
- integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==
+ version "0.3.16"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.16.tgz#a7982f16c18cae02be36274365433e5b49d7b23f"
+ integrity sha512-LCQ+NeThyJ4k1W2d+vIKdxuSt9R3pQSZ4P92m7EakaYuXcVWbHuT5bjNcqLd4Rdgi6xYWYDvBJZJLZSLanjDcA==
dependencies:
- "@jridgewell/resolve-uri" "^3.0.3"
- "@jridgewell/sourcemap-codec" "^1.4.10"
+ "@jridgewell/resolve-uri" "3.1.0"
+ "@jridgewell/sourcemap-codec" "1.4.14"
-"@noble/hashes@1.1.2":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183"
- integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==
+"@noble/hashes@1.1.3":
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.1.3.tgz#360afc77610e0a61f3417e497dcf36862e4f8111"
+ integrity sha512-CE0FCR57H2acVI5UOzIGSSIYxZ6v/HOhDR0Ro9VLyhnzLwx0o8W1mmgaqlEUx4049qJDlIBRztv5k+MM8vbO3A==
-"@noble/secp256k1@1.6.3":
- version "1.6.3"
- resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.6.3.tgz#7eed12d9f4404b416999d0c87686836c4c5c9b94"
- integrity sha512-T04e4iTurVy7I8Sw4+c5OSN9/RkPlo1uKxAomtxQNLq8j1uPAqnsqG1bqvY3Jv7c13gyr6dui0zmh/I3+f/JaQ==
+"@noble/secp256k1@1.7.0":
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.7.0.tgz#d15357f7c227e751d90aa06b05a0e5cf993ba8c1"
+ integrity sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw==
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
@@ -525,139 +520,139 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@polkadot/api-augment@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.2.2.tgz#fab9dd96f9322ae658245cd8711fd2d8db5c2412"
- integrity sha512-yDtp1ecRWMCFXTjmKOvqXI6VHTYvHormRwJwE85VGQbMsZFDWFVbQXZOxsqkfx2rJye/25seVRWxQS+7oKzqkA==
+"@polkadot/api-augment@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.5.1.tgz#f4ae75837782dd09c2f7468f78c17626c359797d"
+ integrity sha512-9NQ2miIKVJvyhR2Zhk0XcHA+pgnWhQ0815lqcq0kz9ny5JHUFeGlNtxECw7AEnxoiC81EqpfWkOHpJpfiIcOmw==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/api-base" "9.2.2"
- "@polkadot/rpc-augment" "9.2.2"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-augment" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/util" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/api-base" "9.5.1"
+ "@polkadot/rpc-augment" "9.5.1"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-augment" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/util" "^10.1.10"
-"@polkadot/api-base@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.2.2.tgz#f84cbf1eb1893e9c8eb538369c8b349f3d64d5fd"
- integrity sha512-Dqbh0MQo/ByAqOC56ga1VkVCpEjfWtxPHz3ni8oXJp0YvjA/4qKkZRM2ejoN07XKOMFNBZC4hnmNplyaCnVHfw==
+"@polkadot/api-base@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.5.1.tgz#f6084ebd21c4c43e3c11a7d638621d27162c5fcc"
+ integrity sha512-3qsMsIhYbU3zp+YnP5h6Hg98y3B+FrxgPW7r2Uk6Kp1uSPmIzhMCyGuxur/BAcDVbd3KME+zWLHJDYOdyhuUwQ==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/rpc-core" "9.2.2"
- "@polkadot/types" "9.2.2"
- "@polkadot/util" "^10.1.4"
- rxjs "^7.5.6"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/rpc-core" "9.5.1"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/util" "^10.1.10"
+ rxjs "^7.5.7"
-"@polkadot/api-contract@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-9.2.2.tgz#1b8c1c6a4fb2f5e21d0c9549062c8242453a15b5"
- integrity sha512-NE2QbBtX7e/lXdOG5wFqArjnbujcVWppoksvX1SrG2GKdhM2Y/shHLNV7uCYMq3tqmmCKOcp0RKE85Owu/7LQA==
+"@polkadot/api-contract@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-9.5.1.tgz#ba45c9150610477f5d05509414f7330b6175ecdd"
+ integrity sha512-BfI1Yi2R0eZ076F4v4UZklQ+8WS0g8QZ9g2716FoNTGGYogUeMQ/8gZWIJaAyylCypN/ucNLdpSmSTnhR59jCw==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/api" "9.2.2"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/types-create" "9.2.2"
- "@polkadot/util" "^10.1.4"
- "@polkadot/util-crypto" "^10.1.4"
- rxjs "^7.5.6"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/api" "9.5.1"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/types-create" "9.5.1"
+ "@polkadot/util" "^10.1.10"
+ "@polkadot/util-crypto" "^10.1.10"
+ rxjs "^7.5.7"
-"@polkadot/api-derive@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.2.2.tgz#70b510d8140f081ef145b9bdf4f8a03108183192"
- integrity sha512-8Du6Wxro5yhAgwJ7R8xWCrDFnAWGv6aDWVnpckUZWs9LRw5wGNN4GJD4WB/715H9ZZXzQ/sDW5lXo3ux19SE7w==
+"@polkadot/api-derive@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.5.1.tgz#8542b989c34249df5ec3b836ec10b910897620df"
+ integrity sha512-fKlKQe8WZ3jrm44w/zptMofljW5qj+jZxnryK08CAH/MINlZArPfCtn+EJla2ND9aTnRMUWlEBtytyCPImI/Hg==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/api" "9.2.2"
- "@polkadot/api-augment" "9.2.2"
- "@polkadot/api-base" "9.2.2"
- "@polkadot/rpc-core" "9.2.2"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/util" "^10.1.4"
- "@polkadot/util-crypto" "^10.1.4"
- rxjs "^7.5.6"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/api" "9.5.1"
+ "@polkadot/api-augment" "9.5.1"
+ "@polkadot/api-base" "9.5.1"
+ "@polkadot/rpc-core" "9.5.1"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/util" "^10.1.10"
+ "@polkadot/util-crypto" "^10.1.10"
+ rxjs "^7.5.7"
-"@polkadot/api@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.2.2.tgz#3ecd80110acf5e479ce510d301e3a7ce2c1b8f17"
- integrity sha512-dRXfdGhV3XWRtsYt+OskAwSAimTRC1k/oh3yO1vYc7C9cmqssw0LMEib9mlVh7qHprD30db7NleTOSFU6Bt2ag==
+"@polkadot/api@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.5.1.tgz#3501dac23bf82986dfe0a8c22857eb86610eca61"
+ integrity sha512-A2i/+mCl6cbFJ84ExMcWosUDfq0gVvzyKftkbRMs0oDzvHVVucTm0nCCzBgi/ltvSsFq8oJQ4pVqNTfT/IXgeQ==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/api-augment" "9.2.2"
- "@polkadot/api-base" "9.2.2"
- "@polkadot/api-derive" "9.2.2"
- "@polkadot/keyring" "^10.1.4"
- "@polkadot/rpc-augment" "9.2.2"
- "@polkadot/rpc-core" "9.2.2"
- "@polkadot/rpc-provider" "9.2.2"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-augment" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/types-create" "9.2.2"
- "@polkadot/types-known" "9.2.2"
- "@polkadot/util" "^10.1.4"
- "@polkadot/util-crypto" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/api-augment" "9.5.1"
+ "@polkadot/api-base" "9.5.1"
+ "@polkadot/api-derive" "9.5.1"
+ "@polkadot/keyring" "^10.1.10"
+ "@polkadot/rpc-augment" "9.5.1"
+ "@polkadot/rpc-core" "9.5.1"
+ "@polkadot/rpc-provider" "9.5.1"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-augment" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/types-create" "9.5.1"
+ "@polkadot/types-known" "9.5.1"
+ "@polkadot/util" "^10.1.10"
+ "@polkadot/util-crypto" "^10.1.10"
eventemitter3 "^4.0.7"
- rxjs "^7.5.6"
+ rxjs "^7.5.7"
-"@polkadot/keyring@^10.1.4":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.1.7.tgz#d51be1dc5807c961889847d8f0e10e4bbdd19d3f"
- integrity sha512-lArwaAS3hDs+HHupDIC4r2mFaAfmNQV2YzwL2wM5zhOqB2RugN03BFrgwNll0y9/Bg8rYDqM3Y5BvVMzgMZ6XA==
+"@polkadot/keyring@^10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.1.10.tgz#f9d97ab528e612df4820e0df1837faae51c15904"
+ integrity sha512-crKYBbwmPcFoTP6mby2+o1QWsjAyi5QlKzU8tXuXOApP6SBuqmDujIuLOKNG2vZoftNdVldsVL0WmKVYtBeuQg==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/util" "10.1.7"
- "@polkadot/util-crypto" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/util" "10.1.10"
+ "@polkadot/util-crypto" "10.1.10"
-"@polkadot/networks@10.1.7", "@polkadot/networks@^10.1.4":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.1.7.tgz#33b38d70409e2daf0990ef18ff150c6718ffb700"
- integrity sha512-ol864SZ/GwAF72GQOPRy+Y9r6NtgJJjMBlDLESvV5VK64eEB0MRSSyiOdd7y/4SumR9crrrNimx3ynACFgxZ8A==
+"@polkadot/networks@10.1.10", "@polkadot/networks@^10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.1.10.tgz#421ce200f8b26759edd1d9d9408d934527f5b455"
+ integrity sha512-Db78t2XnFIZbdSdu1aFuj3/1cNwcSzG/+wNrpCQ9dPhnGPy5S1GVbmU8pyxTftPKdTFc+8RdBr+5bc0d5ijGiA==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/util" "10.1.7"
- "@substrate/ss58-registry" "^1.28.0"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/util" "10.1.10"
+ "@substrate/ss58-registry" "^1.31.0"
-"@polkadot/rpc-augment@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.2.2.tgz#7246e6a43536296ad19be8460a81e434d718ff4c"
- integrity sha512-LbluIgoFtFtN/PTLk0kPErPgMPwj1+ySLn1bNlWjshoE00NeYAIltin9j11iT9g4Zpb+ppSWpsrhO/5crGqERQ==
+"@polkadot/rpc-augment@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.5.1.tgz#a4d8d7c6132375c9f4d50c7cb4c6813ff700937f"
+ integrity sha512-7Qm6oIoVIqv6VOaIqDal45hUTb3TVZ58S3zkSr60p/dPMlGCaFMcojtfcQErHtCW0hgvzFNsDl9ShpXRcPWu7g==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/rpc-core" "9.2.2"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/util" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/rpc-core" "9.5.1"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/util" "^10.1.10"
-"@polkadot/rpc-core@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.2.2.tgz#96b9fd033ecf0d4edf5f2f48c958a1991776b332"
- integrity sha512-D+rmC7etJVvlDb7debjF1HDvjqvRnx/b3j7zKpJ3IjjVKWiYyCgQvcyyLyX4lH1f3PHOfEJZP6Q8FNA8B2U7XA==
+"@polkadot/rpc-core@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.5.1.tgz#7c327d735b742aaaee856bce6288331d0b2b042f"
+ integrity sha512-8CXgBVTEUjeuN5VOwS6MjTeqpN+9qrNJAAwNEba36/72g6Wgg3flza11kx0luQ6OLPVgCM7OcAjZ17p16phXDA==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/rpc-augment" "9.2.2"
- "@polkadot/rpc-provider" "9.2.2"
- "@polkadot/types" "9.2.2"
- "@polkadot/util" "^10.1.4"
- rxjs "^7.5.6"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/rpc-augment" "9.5.1"
+ "@polkadot/rpc-provider" "9.5.1"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/util" "^10.1.10"
+ rxjs "^7.5.7"
-"@polkadot/rpc-provider@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.2.2.tgz#14453b8e80d4f0826dbcbf4e749d5a9397cb6905"
- integrity sha512-QnUql17q9ByP+7IyouXJDUPjkvOB1ciCGTwzf98WlOQxr/OEwcaWx0axHSVtMQyhX06ciVIbyI9hIjV5cfT78A==
+"@polkadot/rpc-provider@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.5.1.tgz#1857b655a461820025b85cf3a7e7a58066ede137"
+ integrity sha512-CxyEo1SzwbcByUsrW5RUm5GTLNK7yjmVlTMseex8zQLO4+4erqUoQzr6TTIPSt4LWyk+TjbZdtGtlt7p6i2nJg==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/keyring" "^10.1.4"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-support" "9.2.2"
- "@polkadot/util" "^10.1.4"
- "@polkadot/util-crypto" "^10.1.4"
- "@polkadot/x-fetch" "^10.1.4"
- "@polkadot/x-global" "^10.1.4"
- "@polkadot/x-ws" "^10.1.4"
- "@substrate/connect" "0.7.10"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/keyring" "^10.1.10"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-support" "9.5.1"
+ "@polkadot/util" "^10.1.10"
+ "@polkadot/util-crypto" "^10.1.10"
+ "@polkadot/x-fetch" "^10.1.10"
+ "@polkadot/x-global" "^10.1.10"
+ "@polkadot/x-ws" "^10.1.10"
+ "@substrate/connect" "0.7.14"
eventemitter3 "^4.0.7"
mock-socket "^9.1.5"
nock "^13.2.9"
@@ -669,119 +664,119 @@
dependencies:
"@types/chrome" "^0.0.171"
-"@polkadot/typegen@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.2.2.tgz#e99ec0c8b6a73e302ab6015008c16a969908a794"
- integrity sha512-Bh7cvvT45Vw0A5yJDb4Pp+gIsMaqDg1x/p7QpBFf/RbPL6bORC3hBOxwa36m+RyWhYggNycoxfnKz5eAsdjCFQ==
+"@polkadot/typegen@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.5.1.tgz#deb74a4bbabd205d68f2b3d59793b3234cfc8c00"
+ integrity sha512-SKLiXHUpSCBop8dd1P/LCN2R5GpM41QSOmRyNVnhgOKPtmB/vxS2pVNvMDl7dOhQkANCO6E2CWZiIPeWlu/G7Q==
dependencies:
- "@babel/core" "^7.18.10"
+ "@babel/core" "^7.19.3"
"@babel/register" "^7.18.9"
- "@babel/runtime" "^7.18.9"
- "@polkadot/api" "9.2.2"
- "@polkadot/api-augment" "9.2.2"
- "@polkadot/rpc-augment" "9.2.2"
- "@polkadot/rpc-provider" "9.2.2"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-augment" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/types-create" "9.2.2"
- "@polkadot/types-support" "9.2.2"
- "@polkadot/util" "^10.1.4"
- "@polkadot/util-crypto" "^10.1.4"
- "@polkadot/x-ws" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/api" "9.5.1"
+ "@polkadot/api-augment" "9.5.1"
+ "@polkadot/rpc-augment" "9.5.1"
+ "@polkadot/rpc-provider" "9.5.1"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-augment" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/types-create" "9.5.1"
+ "@polkadot/types-support" "9.5.1"
+ "@polkadot/util" "^10.1.10"
+ "@polkadot/util-crypto" "^10.1.10"
+ "@polkadot/x-ws" "^10.1.10"
handlebars "^4.7.7"
websocket "^1.0.34"
- yargs "^17.5.1"
+ yargs "^17.6.0"
-"@polkadot/types-augment@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.2.2.tgz#3ec2aff0a86287f9f9f4ddb0aa5430450d4a684f"
- integrity sha512-OyAC/WxNYrJjVp8NXklAeg/380BnFCBo4YgEOT4EhXK8fWzKzanvFAFROKAg78JQBI4LRJKkRyAEWIEzMNGR1Q==
+"@polkadot/types-augment@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.5.1.tgz#907d05da7cf0891cdf6d59e2387a3394a978a5c9"
+ integrity sha512-1AzQpGe5bGttYbbjR1UhV19htsFjgqJ651eyT3YdRqo1hotZ2GwTCkGXuTJtcmQQH9G09xUUwS3nx8WsSyQ70A==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/util" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/util" "^10.1.10"
-"@polkadot/types-codec@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.2.2.tgz#8ab24d6208cce7e6abf3c352742045062b7ff588"
- integrity sha512-p6E31UQ9Hq0KwKXz5wBXvzrus3v7fY3yHR9EkR8eZvG7rBIHST42JPlfXIxKmnkkXkMxIX1LNSHQy0A8EikVxQ==
+"@polkadot/types-codec@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.5.1.tgz#d0c04a9f7dd8337dce4fe806e634c4ef99f954cc"
+ integrity sha512-7Dy8TeApu4lN8DqdMZLuh34ocdHQh9jzAob6cQl1fl1ypOiCO/SwPjFkj0Xnhh7QQz9X9w63jZzbaFR3PPT+0g==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/util" "^10.1.4"
- "@polkadot/x-bigint" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/util" "^10.1.10"
+ "@polkadot/x-bigint" "^10.1.10"
-"@polkadot/types-create@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.2.2.tgz#d1e3cf945a0c95b31999673add738c4d585543d8"
- integrity sha512-byGoFbkwpMHuqRwZXoD3lrTRkgIB89GlZlXJIfBuNeGE84nWktPCuZw3hBm5LO/qIgp5RFjdfeOCmBvxQ0fzQg==
+"@polkadot/types-create@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.5.1.tgz#06f71f08b3c68fb3bbdabe838325c955384d59bd"
+ integrity sha512-pUQ1U0mho5aKRdi4iR9DP9ldIoj9U+ApHIeYyxkBY8RexMQOpkt8PZfpFhg4z2H5vZj/sgNIBXq65HjXuyu+9w==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/util" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/util" "^10.1.10"
-"@polkadot/types-known@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.2.2.tgz#0d3d70eb37796aac06c874cd2b2bc97464f00e6a"
- integrity sha512-WHkgoMJg0ZzxOainMjvGhaIa8/m/zwmhH1P+0UqLoZf+oE9EUkjPJaG5oETz4YUa3Nb8uuHfdMl6c5xN3DMIaQ==
+"@polkadot/types-known@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.5.1.tgz#0eb596078733a96f2cff3d5b4258966f4a6e4a5a"
+ integrity sha512-SedfPDxJREYPATa7X2Fv26z6UVPYv6v9Z9P4nulnC6Yl8C2+Q4A/VIqTtgsJc0DU1YT3gM8ofVxircfHqqRVNA==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/networks" "^10.1.4"
- "@polkadot/types" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/types-create" "9.2.2"
- "@polkadot/util" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/networks" "^10.1.10"
+ "@polkadot/types" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/types-create" "9.5.1"
+ "@polkadot/util" "^10.1.10"
-"@polkadot/types-support@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.2.2.tgz#d695b54b466bb47c0b376d07e9853d1ae3b17d5e"
- integrity sha512-JNcdTyMKGETV7pjE4eZ8eBs82c4ZSY7n1R1/xT/tNZNA6uNdukBxOOkyRHdu5ugEehwCMSpOgruMCNH9e77zLg==
+"@polkadot/types-support@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.5.1.tgz#5383cd84375aedd67bf0ccd2fa230d811f4b9dc9"
+ integrity sha512-mjenEGNT/ReY1xFexb37NDgV7QHHBBfWt31ZQMZKDkQL+R2P0rXFpmitcE3eOCV3oY4mf+GaU2N/ZfnsFl3tPQ==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/util" "^10.1.4"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/util" "^10.1.10"
-"@polkadot/types@9.2.2":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.2.2.tgz#b74d098ed8c725f961c3d95b610c49bde1cf5334"
- integrity sha512-sDpS/m9oeihkYAYljZzp7xfMkJDLP5nLHSKkLdrh6H9XDVQnKgzJ19/kuAHsU8FCa9E37Al3aSQf/+NR+kCfZw==
+"@polkadot/types@9.5.1":
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.5.1.tgz#5f3891ce45d8d78aa0b5bc65d7517d98342699b0"
+ integrity sha512-xuhYq+O4JRl2iqLVEwKVHnfOA9AfwoNlHzrFx2DChDcIWdmgmUDASq9TkZhBP+jx81SieMH7iTf4zY6UwPKYQw==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/keyring" "^10.1.4"
- "@polkadot/types-augment" "9.2.2"
- "@polkadot/types-codec" "9.2.2"
- "@polkadot/types-create" "9.2.2"
- "@polkadot/util" "^10.1.4"
- "@polkadot/util-crypto" "^10.1.4"
- rxjs "^7.5.6"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/keyring" "^10.1.10"
+ "@polkadot/types-augment" "9.5.1"
+ "@polkadot/types-codec" "9.5.1"
+ "@polkadot/types-create" "9.5.1"
+ "@polkadot/util" "^10.1.10"
+ "@polkadot/util-crypto" "^10.1.10"
+ rxjs "^7.5.7"
-"@polkadot/util-crypto@10.1.7", "@polkadot/util-crypto@^10.1.4":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.1.7.tgz#fe5ea006bf23ae19319f3ac9236905a984a65e2f"
- integrity sha512-zGmSU7a0wdWfpDtfc+Q7fUuW+extu9o1Uh4JpkuwwZ/dxmyW5xlfqVsIScM1pdPyjJsyamX8KwsKiVsW4slasg==
+"@polkadot/util-crypto@10.1.10", "@polkadot/util-crypto@^10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.1.10.tgz#ae00c794dda6a2f5e40cdaaa87987312461dc59f"
+ integrity sha512-w9h/wf4wZXeUkRnihhnfqlaKuoQtrjkjK3C5liCQkr9vx5zOsmg/nMSDP8UUFJX0msPPYpFeNvzn7oDIs6qSZA==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@noble/hashes" "1.1.2"
- "@noble/secp256k1" "1.6.3"
- "@polkadot/networks" "10.1.7"
- "@polkadot/util" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@noble/hashes" "1.1.3"
+ "@noble/secp256k1" "1.7.0"
+ "@polkadot/networks" "10.1.10"
+ "@polkadot/util" "10.1.10"
"@polkadot/wasm-crypto" "^6.3.1"
- "@polkadot/x-bigint" "10.1.7"
- "@polkadot/x-randomvalues" "10.1.7"
+ "@polkadot/x-bigint" "10.1.10"
+ "@polkadot/x-randomvalues" "10.1.10"
"@scure/base" "1.1.1"
ed2curve "^0.3.0"
tweetnacl "^1.0.3"
-"@polkadot/util@10.1.7", "@polkadot/util@^10.1.4":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.1.7.tgz#c54ca2a5b29cb834b40d8a876baefa3a0efb93af"
- integrity sha512-s7gDLdNb4HUpoe3faXwoO6HwiUp8pi66voYKiUYRh1kEtW1o9vGBgyZPHPGC/FBgILzTJKii/9XxnSex60zBTA==
+"@polkadot/util@10.1.10", "@polkadot/util@^10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.1.10.tgz#dc79c93d70e699e8cc1b09e636af7e4a64c5f0f0"
+ integrity sha512-BQoTfSxZ3BWAgWDjgKBVdyw1AJGaoOeAidCA+LZcHV6wlMu5643AZPUnoMrW413MbbpxsIhJXtNttqOwjo8MjA==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/x-bigint" "10.1.7"
- "@polkadot/x-global" "10.1.7"
- "@polkadot/x-textdecoder" "10.1.7"
- "@polkadot/x-textencoder" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/x-bigint" "10.1.10"
+ "@polkadot/x-global" "10.1.10"
+ "@polkadot/x-textdecoder" "10.1.10"
+ "@polkadot/x-textencoder" "10.1.10"
"@types/bn.js" "^5.1.1"
bn.js "^5.2.1"
@@ -836,62 +831,62 @@
dependencies:
"@babel/runtime" "^7.18.9"
-"@polkadot/x-bigint@10.1.7", "@polkadot/x-bigint@^10.1.4":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.1.7.tgz#1338689476ffdbb9f9cb243df1954ae8186134b9"
- integrity sha512-uaClHpI6cnDumIfejUKvNTkB43JleEb0V6OIufDKJ/e1aCLE3f/Ws9ggwL8ea05lQP5k5xqOzbPdizi/UvrgKQ==
+"@polkadot/x-bigint@10.1.10", "@polkadot/x-bigint@^10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.1.10.tgz#97dcccda2e24776aad3ae49f3268c03332138246"
+ integrity sha512-4Jt0BO0WTby6r9A2DgkDxf/LFaICQHvSl1VSFtBf0Z0GV2n4OxkBX5x/1bdEdGEvYT5rM7RbR3xI7EL+W1ixHA==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/x-global" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/x-global" "10.1.10"
-"@polkadot/x-fetch@^10.1.4":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.1.7.tgz#1b76051a495563403a20ef235a8558c6d91b11a6"
- integrity sha512-NL+xrlqUoCLwCIAvQLwOA189gSUgeSGOFjCmZ9uMkBqf35KXeZoHWse6YaoseTSlnAal3dQOGbXnYWZ4Ck2OSA==
+"@polkadot/x-fetch@^10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.1.10.tgz#6551e44211cf21a1ca076eedc4676754345e1504"
+ integrity sha512-LvTxAN6GaJzfgZ74WFYPZrIkMEThpX5u7O4ILiExcJt87E19cSWlYSHDa5n+OLjUpq0lBV2ueF90iUblt6aHpg==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/x-global" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/x-global" "10.1.10"
"@types/node-fetch" "^2.6.2"
node-fetch "^3.2.10"
-"@polkadot/x-global@10.1.7", "@polkadot/x-global@^10.1.4":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.1.7.tgz#91a472ac2f83fd0858dcd0df528844a5b650790e"
- integrity sha512-k2ZUZyBVgDnP/Ysxapa0mthn63j6gsN2V0kZejEQPyOfCHtQQkse3jFvAWdslpWoR8j2k8SN5O6reHc0F4f7mA==
+"@polkadot/x-global@10.1.10", "@polkadot/x-global@^10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.1.10.tgz#eedf63f1f3918c7f2bd8ef0907e051783f1a626e"
+ integrity sha512-WFfgaZSrzPlKLdnOus2mIFGzUbSDIQK6RMCfFfM9SmF3DkoxN40z5Nkni4PztfKr22stlkhmhnX/Lp/NxpuT6Q==
dependencies:
- "@babel/runtime" "^7.18.9"
+ "@babel/runtime" "^7.19.0"
-"@polkadot/x-randomvalues@10.1.7":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.1.7.tgz#d537f1f7bf3fb03e6c08ae6e6ac36e069c1f9844"
- integrity sha512-3er4UYOlozLGgFYWwcbmcFslmO8m82u4cAGR4AaEag0VdV7jLO/M5lTmivT/3rtLSww6sjkEfr522GM2Q5lmFg==
+"@polkadot/x-randomvalues@10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.1.10.tgz#a10f98f2c4d744612b68ee697e43f1e4d6e1f89a"
+ integrity sha512-KM4sCI/DNLIXlmnkeJIuYvh3pPuWvnkbR1a6TUB12J1izUJ+uGV+cAFRR4/EZk3oEsG/Tgivbs56meEOo3ws5A==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/x-global" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/x-global" "10.1.10"
-"@polkadot/x-textdecoder@10.1.7":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.1.7.tgz#1dd4e6141b1669acdd321a4da1fc6fdc271b7908"
- integrity sha512-iAFOHludmZFOyVL8sQFv4TDqbcqQU5gwwYv74duTA+WQBgbSITJrBahSCV/rXOjUqds9pzQO3qBFzziznNnkiQ==
+"@polkadot/x-textdecoder@10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.1.10.tgz#a6d0010b092bdefc69c70dcb34d76ec8993980b2"
+ integrity sha512-cAk37faYXx8IICeaq/tdl+aiIXwo3SLrx9XNoQqhX02g+SEs3ARM7zJcohj/p8ynWAI+ezNcsKn1wh174nquHw==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/x-global" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/x-global" "10.1.10"
-"@polkadot/x-textencoder@10.1.7":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.1.7.tgz#b208601f33b936c7a059f126dbb6b26a87f45864"
- integrity sha512-GzjaWZDbgzZ0IQT60xuZ7cZ0wnlNVYMqpfI9KvBc58X9dPI3TIMwzbXDVzZzpjY1SAqJGs4hJse9HMWZazfhew==
+"@polkadot/x-textencoder@10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.1.10.tgz#35b2e778b3dbb6816bb37f1848b772c4cd3c43d1"
+ integrity sha512-Auaql6BL5UHtWakZUQyj4y/BrM0tm4bYG5vXCMQCA1Gg0ky+46DhgpRrAQ9F7NNgWg1A6dA2I9KuAA4BTbNx0w==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/x-global" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/x-global" "10.1.10"
-"@polkadot/x-ws@^10.1.4":
- version "10.1.7"
- resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.1.7.tgz#b1fbfe3e16fa809f35f24ef47fde145b018d8cdc"
- integrity sha512-aNkotxHx3qPVjiItD9lbNONs4GNzqeeZ98wHtCjd9JWl/g+xNkOVF3xQ8++1qSHPBEYSwKh9URjQH2+CD2XlvQ==
+"@polkadot/x-ws@^10.1.10":
+ version "10.1.10"
+ resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.1.10.tgz#27b55a988a0f60db7f79fed8268802406f522813"
+ integrity sha512-JxDgfm0ox2XPAtdTeJXYl6qq7LY/KOPi69wRpFMczWaYUsZubO6EiRzgzjuFlHY4/oxfjS/D+YbzcjefTxHz6g==
dependencies:
- "@babel/runtime" "^7.18.9"
- "@polkadot/x-global" "10.1.7"
+ "@babel/runtime" "^7.19.0"
+ "@polkadot/x-global" "10.1.10"
"@types/websocket" "^1.0.5"
websocket "^1.0.34"
@@ -910,27 +905,27 @@
resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.1.tgz#fa5738039586c648013caa6a0c95c43265dbe77d"
integrity sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==
-"@substrate/connect@0.7.10":
- version "0.7.10"
- resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.10.tgz#db49a62188cd830a8dc8848240e635da21f333ff"
- integrity sha512-WNdW18e0I696/AQjrAXdMD9W8YaKLTcPr2Cu8scSwiUT40in84KEzi+g+P367cE2etAc+Dvu8vNDEQTbUPNqEg==
+"@substrate/connect@0.7.14":
+ version "0.7.14"
+ resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.14.tgz#c090e952e9cdd93185a94d24fbc424ea20fe7bbe"
+ integrity sha512-uW5uBmihpivshmmmw+rsg7qOV0KqVSep4rWOXFMP8aFQinvmqw4JqxP21og4H/7JZxttYUBFQVsdtXHGKJ0aVQ==
dependencies:
"@substrate/connect-extension-protocol" "^1.0.1"
- "@substrate/smoldot-light" "0.6.27"
+ "@substrate/smoldot-light" "0.6.34"
eventemitter3 "^4.0.7"
-"@substrate/smoldot-light@0.6.27":
- version "0.6.27"
- resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.6.27.tgz#7e66ad4bfddce4168a6008f6be8c771c881ae585"
- integrity sha512-Wy3fbyfZqR3HLynuxeBkUunZsrbqpsmFN+D0/8cVIHZbO7WDwJsmCUc32yO5r+v6s/T97L7FOJHEyMWmRfnKAQ==
+"@substrate/smoldot-light@0.6.34":
+ version "0.6.34"
+ resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.6.34.tgz#273dba622102281fd0fdb0e375198bff2ec584c3"
+ integrity sha512-+HK9MaJ0HelJmpf4YYR+salJ7dhVBltmhGlyz5l8OXS9DW18fe0Z2wxEo8P5kX9CUxlCXEb8J9JBRQAYBPHbwQ==
dependencies:
pako "^2.0.4"
- websocket "^1.0.32"
+ ws "^8.8.1"
-"@substrate/ss58-registry@^1.28.0":
- version "1.29.0"
- resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.29.0.tgz#0dea078271b5318c5eff7176e1df1f9b2c27e43f"
- integrity sha512-KTqwZgTjtWPhCAUJJx9qswP/p9cRKUU9GOHYUDKNdISFDiFafWmpI54JHfYLkgjvkSKEUgRZnvLpe0LMF1fXvw==
+"@substrate/ss58-registry@^1.31.0":
+ version "1.31.0"
+ resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.31.0.tgz#489e3a496081dc3ee7ef5ef2eb513962d5d29351"
+ integrity sha512-OSOmdjaq9foXfHBy9aLVMwGheygvsiZlv4dggnLOYOuhSmNCsSB/PaW4DBz+/tSdK1Fo9+ZiFW6cF24RA+m0sw==
"@szmarczak/http-timer@^4.0.5":
version "4.0.6"
@@ -1023,9 +1018,9 @@
integrity sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ==
"@types/har-format@*":
- version "1.2.8"
- resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.8.tgz#e6908b76d4c88be3db642846bb8b455f0bfb1c4e"
- integrity sha512-OP6L9VuZNdskgNN3zFQQ54ceYD8OLq5IbqO4VK91ORLfOm7WdT/CiT/pHEBSQEqCInJ2y3O6iCm/zGtPElpgJQ==
+ version "1.2.9"
+ resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.9.tgz#b9b3a9bfc33a078e7d898a00b09662910577f4a4"
+ integrity sha512-rffW6MhQ9yoa75bdNi+rjZBAvu2HhehWJXlhuWXnWdENeuKe82wUgAwxYOb7KRKKmxYN+D/iRKd2NDQMLqlUmg==
"@types/http-cache-semantics@*":
version "4.0.1"
@@ -1044,10 +1039,10 @@
dependencies:
"@types/node" "*"
-"@types/mocha@^9.1.1":
- version "9.1.1"
- resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4"
- integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw==
+"@types/mocha@^10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.0.tgz#3d9018c575f0e3f7386c1de80ee66cc21fbb7a52"
+ integrity sha512-rADY+HtTOA52l9VZWtgQfn4p+UDVM2eDVkMZT1I6syp0YKxW2F9v+0pbRZLsvskhQv/vMb6ZfCay81GHbz5SHg==
"@types/node-fetch@^2.6.2":
version "2.6.2"
@@ -1058,9 +1053,9 @@
form-data "^3.0.0"
"@types/node@*":
- version "18.7.16"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.16.tgz#0eb3cce1e37c79619943d2fd903919fc30850601"
- integrity sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==
+ version "18.8.3"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.8.3.tgz#ce750ab4017effa51aed6a7230651778d54e327c"
+ integrity sha512-0os9vz6BpGwxGe9LOhgP/ncvYN5Tx1fNcd2TM3rD/aCGBkysb+ZWpXEocG24h6ZzOi13+VB8HndAQFezsSOw1w==
"@types/node@^12.12.6":
version "12.20.55"
@@ -1101,84 +1096,83 @@
"@types/node" "*"
"@typescript-eslint/eslint-plugin@^5.26.0":
- version "5.36.2"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.36.2.tgz#6df092a20e0f9ec748b27f293a12cb39d0c1fe4d"
- integrity sha512-OwwR8LRwSnI98tdc2z7mJYgY60gf7I9ZfGjN5EjCwwns9bdTuQfAXcsjSB2wSQ/TVNYSGKf4kzVXbNGaZvwiXw==
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.39.0.tgz#778b2d9e7f293502c7feeea6c74dca8eb3e67511"
+ integrity sha512-xVfKOkBm5iWMNGKQ2fwX5GVgBuHmZBO1tCRwXmY5oAIsPscfwm2UADDuNB8ZVYCtpQvJK4xpjrK7jEhcJ0zY9A==
dependencies:
- "@typescript-eslint/scope-manager" "5.36.2"
- "@typescript-eslint/type-utils" "5.36.2"
- "@typescript-eslint/utils" "5.36.2"
+ "@typescript-eslint/scope-manager" "5.39.0"
+ "@typescript-eslint/type-utils" "5.39.0"
+ "@typescript-eslint/utils" "5.39.0"
debug "^4.3.4"
- functional-red-black-tree "^1.0.1"
ignore "^5.2.0"
regexpp "^3.2.0"
semver "^7.3.7"
tsutils "^3.21.0"
"@typescript-eslint/parser@^5.26.0":
- version "5.36.2"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.36.2.tgz#3ddf323d3ac85a25295a55fcb9c7a49ab4680ddd"
- integrity sha512-qS/Kb0yzy8sR0idFspI9Z6+t7mqk/oRjnAYfewG+VN73opAUvmYL3oPIMmgOX6CnQS6gmVIXGshlb5RY/R22pA==
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.39.0.tgz#93fa0bc980a3a501e081824f6097f7ca30aaa22b"
+ integrity sha512-PhxLjrZnHShe431sBAGHaNe6BDdxAASDySgsBCGxcBecVCi8NQWxQZMcizNA4g0pN51bBAn/FUfkWG3SDVcGlA==
dependencies:
- "@typescript-eslint/scope-manager" "5.36.2"
- "@typescript-eslint/types" "5.36.2"
- "@typescript-eslint/typescript-estree" "5.36.2"
+ "@typescript-eslint/scope-manager" "5.39.0"
+ "@typescript-eslint/types" "5.39.0"
+ "@typescript-eslint/typescript-estree" "5.39.0"
debug "^4.3.4"
-"@typescript-eslint/scope-manager@5.36.2":
- version "5.36.2"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.36.2.tgz#a75eb588a3879ae659514780831370642505d1cd"
- integrity sha512-cNNP51L8SkIFSfce8B1NSUBTJTu2Ts4nWeWbFrdaqjmn9yKrAaJUBHkyTZc0cL06OFHpb+JZq5AUHROS398Orw==
+"@typescript-eslint/scope-manager@5.39.0":
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.39.0.tgz#873e1465afa3d6c78d8ed2da68aed266a08008d0"
+ integrity sha512-/I13vAqmG3dyqMVSZPjsbuNQlYS082Y7OMkwhCfLXYsmlI0ca4nkL7wJ/4gjX70LD4P8Hnw1JywUVVAwepURBw==
dependencies:
- "@typescript-eslint/types" "5.36.2"
- "@typescript-eslint/visitor-keys" "5.36.2"
+ "@typescript-eslint/types" "5.39.0"
+ "@typescript-eslint/visitor-keys" "5.39.0"
-"@typescript-eslint/type-utils@5.36.2":
- version "5.36.2"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.36.2.tgz#752373f4babf05e993adf2cd543a763632826391"
- integrity sha512-rPQtS5rfijUWLouhy6UmyNquKDPhQjKsaKH0WnY6hl/07lasj8gPaH2UD8xWkePn6SC+jW2i9c2DZVDnL+Dokw==
+"@typescript-eslint/type-utils@5.39.0":
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.39.0.tgz#0a8c00f95dce4335832ad2dc6bc431c14e32a0a6"
+ integrity sha512-KJHJkOothljQWzR3t/GunL0TPKY+fGJtnpl+pX+sJ0YiKTz3q2Zr87SGTmFqsCMFrLt5E0+o+S6eQY0FAXj9uA==
dependencies:
- "@typescript-eslint/typescript-estree" "5.36.2"
- "@typescript-eslint/utils" "5.36.2"
+ "@typescript-eslint/typescript-estree" "5.39.0"
+ "@typescript-eslint/utils" "5.39.0"
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/types@5.36.2":
- version "5.36.2"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.36.2.tgz#a5066e500ebcfcee36694186ccc57b955c05faf9"
- integrity sha512-9OJSvvwuF1L5eS2EQgFUbECb99F0mwq501w0H0EkYULkhFa19Qq7WFbycdw1PexAc929asupbZcgjVIe6OK/XQ==
+"@typescript-eslint/types@5.39.0":
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.39.0.tgz#f4e9f207ebb4579fd854b25c0bf64433bb5ed78d"
+ integrity sha512-gQMZrnfEBFXK38hYqt8Lkwt8f4U6yq+2H5VDSgP/qiTzC8Nw8JO3OuSUOQ2qW37S/dlwdkHDntkZM6SQhKyPhw==
-"@typescript-eslint/typescript-estree@5.36.2":
- version "5.36.2"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.36.2.tgz#0c93418b36c53ba0bc34c61fe9405c4d1d8fe560"
- integrity sha512-8fyH+RfbKc0mTspfuEjlfqA4YywcwQK2Amcf6TDOwaRLg7Vwdu4bZzyvBZp4bjt1RRjQ5MDnOZahxMrt2l5v9w==
+"@typescript-eslint/typescript-estree@5.39.0":
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.39.0.tgz#c0316aa04a1a1f4f7f9498e3c13ef1d3dc4cf88b"
+ integrity sha512-qLFQP0f398sdnogJoLtd43pUgB18Q50QSA+BTE5h3sUxySzbWDpTSdgt4UyxNSozY/oDK2ta6HVAzvGgq8JYnA==
dependencies:
- "@typescript-eslint/types" "5.36.2"
- "@typescript-eslint/visitor-keys" "5.36.2"
+ "@typescript-eslint/types" "5.39.0"
+ "@typescript-eslint/visitor-keys" "5.39.0"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/utils@5.36.2":
- version "5.36.2"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.36.2.tgz#b01a76f0ab244404c7aefc340c5015d5ce6da74c"
- integrity sha512-uNcopWonEITX96v9pefk9DC1bWMdkweeSsewJ6GeC7L6j2t0SJywisgkr9wUTtXk90fi2Eljj90HSHm3OGdGRg==
+"@typescript-eslint/utils@5.39.0":
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.39.0.tgz#b7063cca1dcf08d1d21b0d91db491161ad0be110"
+ integrity sha512-+DnY5jkpOpgj+EBtYPyHRjXampJfC0yUZZzfzLuUWVZvCuKqSdJVC8UhdWipIw7VKNTfwfAPiOWzYkAwuIhiAg==
dependencies:
"@types/json-schema" "^7.0.9"
- "@typescript-eslint/scope-manager" "5.36.2"
- "@typescript-eslint/types" "5.36.2"
- "@typescript-eslint/typescript-estree" "5.36.2"
+ "@typescript-eslint/scope-manager" "5.39.0"
+ "@typescript-eslint/types" "5.39.0"
+ "@typescript-eslint/typescript-estree" "5.39.0"
eslint-scope "^5.1.1"
eslint-utils "^3.0.0"
-"@typescript-eslint/visitor-keys@5.36.2":
- version "5.36.2"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.36.2.tgz#2f8f78da0a3bad3320d2ac24965791ac39dace5a"
- integrity sha512-BtRvSR6dEdrNt7Net2/XDjbYKU5Ml6GqJgVfXT0CxTCJlnIqK7rAGreuWKMT2t8cFUT2Msv5oxw0GMRD7T5J7A==
+"@typescript-eslint/visitor-keys@5.39.0":
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.39.0.tgz#8f41f7d241b47257b081ddba5d3ce80deaae61e2"
+ integrity sha512-yyE3RPwOG+XJBLrhvsxAidUgybJVQ/hG8BhiJo0k8JSAYfk/CshVcxf0HwP4Jt7WZZ6vLmxdo1p6EyN3tzFTkg==
dependencies:
- "@typescript-eslint/types" "5.36.2"
+ "@typescript-eslint/types" "5.39.0"
eslint-visitor-keys "^3.3.0"
"@ungap/promise-all-settled@1.1.2":
@@ -1187,9 +1181,9 @@
integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
abortcontroller-polyfill@^1.7.3:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.3.tgz#1b5b487bd6436b5b764fd52a612509702c3144b5"
- integrity sha512-zetDJxd89y3X99Kvo4qFx8GKlt6GsvN3UcRZHwU6iFA/0KiOmhkTVhe8oRoTBiTVPZu09x3vCra47+w8Yz1+2Q==
+ version "1.7.5"
+ resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz#6738495f4e901fbb57b6c0611d0c75f76c485bed"
+ integrity sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==
accepts@~1.3.8:
version "1.3.8"
@@ -1352,7 +1346,7 @@
dependencies:
tweetnacl "^0.14.3"
-bignumber.js@^9.0.0, bignumber.js@^9.0.2:
+bignumber.js@^9.0.0, bignumber.js@^9.1.0:
version "9.1.0"
resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62"
integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==
@@ -1387,10 +1381,10 @@
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70"
integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==
-body-parser@1.20.0, body-parser@^1.16.0:
- version "1.20.0"
- resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5"
- integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==
+body-parser@1.20.1, body-parser@^1.16.0:
+ version "1.20.1"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668"
+ integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==
dependencies:
bytes "3.1.2"
content-type "~1.0.4"
@@ -1400,7 +1394,7 @@
http-errors "2.0.0"
iconv-lite "0.4.24"
on-finished "2.4.1"
- qs "6.10.3"
+ qs "6.11.0"
raw-body "2.5.1"
type-is "~1.6.18"
unpipe "1.0.0"
@@ -1491,15 +1485,15 @@
readable-stream "^3.6.0"
safe-buffer "^5.2.0"
-browserslist@^4.20.2:
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.3.tgz#5df277694eb3c48bc5c4b05af3e8b7e09c5a6d1a"
- integrity sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==
+browserslist@^4.21.3:
+ version "4.21.4"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
+ integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
dependencies:
- caniuse-lite "^1.0.30001370"
- electron-to-chromium "^1.4.202"
+ caniuse-lite "^1.0.30001400"
+ electron-to-chromium "^1.4.251"
node-releases "^2.0.6"
- update-browserslist-db "^1.0.5"
+ update-browserslist-db "^1.0.9"
bs58@^4.0.0:
version "4.0.1"
@@ -1593,10 +1587,10 @@
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
-caniuse-lite@^1.0.30001370:
- version "1.0.30001393"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001393.tgz#1aa161e24fe6af2e2ccda000fc2b94be0b0db356"
- integrity sha512-N/od11RX+Gsk+1qY/jbPa0R6zJupEa0lxeBG598EbrtblxVCTJsQwbRBm6+V+rxpc5lHKdsXb9RY83cZIPLseA==
+caniuse-lite@^1.0.30001400:
+ version "1.0.30001418"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001418.tgz#5f459215192a024c99e3e3a53aac310fc7cf24e6"
+ integrity sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==
caseless@~0.12.0:
version "0.12.0"
@@ -1703,6 +1697,15 @@
strip-ansi "^6.0.0"
wrap-ansi "^7.0.0"
+cliui@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
+ integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.1"
+ wrap-ansi "^7.0.0"
+
clone-deep@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
@@ -2057,10 +2060,10 @@
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
-electron-to-chromium@^1.4.202:
- version "1.4.246"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.246.tgz#802132d1bbd3ff32ce82fcd6a6ed6ab59b4366dc"
- integrity sha512-/wFCHUE+Hocqr/LlVGsuKLIw4P2lBWwFIDcNMDpJGzyIysQV4aycpoOitAs32FT94EHKnNqDR/CVZJFbXEufJA==
+electron-to-chromium@^1.4.251:
+ version "1.4.276"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.276.tgz#17837b19dafcc43aba885c4689358b298c19b520"
+ integrity sha512-EpuHPqu8YhonqLBXHoU6hDJCD98FCe6KDoet3/gY1qsQ6usjJoHqBH2YIVs8FXaAtHwVL8Uqa/fsYao/vq9VWQ==
elliptic@6.5.4, elliptic@^6.4.0, elliptic@^6.5.3, elliptic@^6.5.4:
version "6.5.4"
@@ -2093,21 +2096,21 @@
once "^1.4.0"
es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0:
- version "1.20.2"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.2.tgz#8495a07bc56d342a3b8ea3ab01bd986700c2ccb3"
- integrity sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==
+ version "1.20.4"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861"
+ integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==
dependencies:
call-bind "^1.0.2"
es-to-primitive "^1.2.1"
function-bind "^1.1.1"
function.prototype.name "^1.1.5"
- get-intrinsic "^1.1.2"
+ get-intrinsic "^1.1.3"
get-symbol-description "^1.0.0"
has "^1.0.3"
has-property-descriptors "^1.0.0"
has-symbols "^1.0.3"
internal-slot "^1.0.3"
- is-callable "^1.2.4"
+ is-callable "^1.2.7"
is-negative-zero "^2.0.2"
is-regex "^1.1.4"
is-shared-array-buffer "^1.0.2"
@@ -2117,6 +2120,7 @@
object-keys "^1.1.1"
object.assign "^4.1.4"
regexp.prototype.flags "^1.4.3"
+ safe-regex-test "^1.0.0"
string.prototype.trimend "^1.0.5"
string.prototype.trimstart "^1.0.5"
unbox-primitive "^1.0.2"
@@ -2215,13 +2219,12 @@
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
eslint@^8.16.0:
- version "8.23.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.23.0.tgz#a184918d288820179c6041bb3ddcc99ce6eea040"
- integrity sha512-pBG/XOn0MsJcKcTRLr27S5HpzQo4kLr+HjLQIyK4EiCsijDl/TB+h5uEuJU6bQ8Edvwz1XWOjpaP2qgnXGpTcA==
+ version "8.25.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.25.0.tgz#00eb962f50962165d0c4ee3327708315eaa8058b"
+ integrity sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A==
dependencies:
- "@eslint/eslintrc" "^1.3.1"
- "@humanwhocodes/config-array" "^0.10.4"
- "@humanwhocodes/gitignore-to-minimatch" "^1.0.2"
+ "@eslint/eslintrc" "^1.3.3"
+ "@humanwhocodes/config-array" "^0.10.5"
"@humanwhocodes/module-importer" "^1.0.1"
ajv "^6.10.0"
chalk "^4.0.0"
@@ -2238,7 +2241,6 @@
fast-deep-equal "^3.1.3"
file-entry-cache "^6.0.1"
find-up "^5.0.0"
- functional-red-black-tree "^1.0.1"
glob-parent "^6.0.1"
globals "^13.15.0"
globby "^11.1.0"
@@ -2247,6 +2249,7 @@
import-fresh "^3.0.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
+ js-sdsl "^4.1.4"
js-yaml "^4.1.0"
json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.4.1"
@@ -2397,13 +2400,13 @@
safe-buffer "^5.1.1"
express@^4.14.0:
- version "4.18.1"
- resolved "https://registry.yarnpkg.com/express/-/express-4.18.1.tgz#7797de8b9c72c857b9cd0e14a5eea80666267caf"
- integrity sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==
+ version "4.18.2"
+ resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59"
+ integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==
dependencies:
accepts "~1.3.8"
array-flatten "1.1.1"
- body-parser "1.20.0"
+ body-parser "1.20.1"
content-disposition "0.5.4"
content-type "~1.0.4"
cookie "0.5.0"
@@ -2422,7 +2425,7 @@
parseurl "~1.3.3"
path-to-regexp "0.1.7"
proxy-addr "~2.0.7"
- qs "6.10.3"
+ qs "6.11.0"
range-parser "~1.2.1"
safe-buffer "5.2.1"
send "0.18.0"
@@ -2575,9 +2578,9 @@
integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
follow-redirects@^1.12.1:
- version "1.15.1"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz#0ca6a452306c9b276e4d3127483e29575e207ad5"
- integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==
+ version "1.15.2"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
+ integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
for-each@^0.3.3:
version "0.3.3"
@@ -2672,11 +2675,6 @@
es-abstract "^1.19.0"
functions-have-names "^1.2.2"
-functional-red-black-tree@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
- integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
-
functions-have-names@^1.2.2:
version "1.2.3"
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
@@ -2697,10 +2695,10 @@
resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598"
- integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
+ integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
dependencies:
function-bind "^1.1.1"
has "^1.0.3"
@@ -3086,10 +3084,10 @@
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
-is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
- integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
+is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
+ integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
is-date-object@^1.0.1:
version "1.0.5"
@@ -3233,6 +3231,11 @@
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==
+js-sdsl@^4.1.4:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a"
+ integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==
+
js-sha3@0.8.0, js-sha3@^0.8.0:
version "0.8.0"
resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840"
@@ -4025,10 +4028,10 @@
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
-qs@6.10.3:
- version "6.10.3"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e"
- integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==
+qs@6.11.0:
+ version "6.11.0"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
+ integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
dependencies:
side-channel "^1.0.4"
@@ -4203,10 +4206,10 @@
dependencies:
queue-microtask "^1.2.2"
-rxjs@^7.5.6:
- version "7.5.6"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc"
- integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==
+rxjs@^7.5.7:
+ version "7.5.7"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39"
+ integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==
dependencies:
tslib "^2.1.0"
@@ -4220,6 +4223,15 @@
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+safe-regex-test@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
+ integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.3"
+ is-regex "^1.1.4"
+
"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
@@ -4250,9 +4262,9 @@
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
semver@^7.3.7:
- version "7.3.7"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
- integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
+ version "7.3.8"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
+ integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
dependencies:
lru-cache "^6.0.0"
@@ -4368,10 +4380,10 @@
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
-solc@0.8.14-fixed:
- version "0.8.14-fixed"
- resolved "https://registry.yarnpkg.com/solc/-/solc-0.8.14-fixed.tgz#a730a1e8259ac06313f6b7287df046ebe1dddc13"
- integrity sha512-jFYa2fKbk95olckuDbhs9kbtaUhLRllM7aC++mLinJBUcdHbaHVM8LxHaJpOIDdnHBV9TpIP4XBybVugqMDyhA==
+solc@0.8.17:
+ version "0.8.17"
+ resolved "https://registry.yarnpkg.com/solc/-/solc-0.8.17.tgz#c748fec6a64bf029ec406aa9b37e75938d1115ae"
+ integrity sha512-Dtidk2XtTTmkB3IKdyeg6wLYopJnBVxdoykN8oP8VY3PQjN16BScYoUJTXFm2OP7P0hXNAqWiJNmmfuELtLf8g==
dependencies:
command-exists "^1.2.8"
commander "^8.1.0"
@@ -4666,14 +4678,14 @@
is-typedarray "^1.0.0"
typescript@^4.7.2:
- version "4.8.3"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88"
- integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==
+ version "4.8.4"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
+ integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
uglify-js@^3.1.4:
- version "3.17.0"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.0.tgz#55bd6e9d19ce5eef0d5ad17cd1f587d85b180a85"
- integrity sha512-aTeNPVmgIMPpm1cxXr2Q/nEbvkmV8yq66F3om7X3P/cvOXQ0TMQ64Wk63iyT1gPlmdmGzjGpyLh1f3y8MZWXGg==
+ version "3.17.3"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377"
+ integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==
ultron@~1.1.0:
version "1.1.1"
@@ -4700,10 +4712,10 @@
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
-update-browserslist-db@^1.0.5:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.7.tgz#16279639cff1d0f800b14792de43d97df2d11b7d"
- integrity sha512-iN/XYesmZ2RmmWAiI4Z5rq0YqSiv0brj9Ce9CfhNE4xIW2h+MFxcgkxIzZ+ShkFPUkjU3gQ+3oypadD3RAMtrg==
+update-browserslist-db@^1.0.9:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
+ integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
dependencies:
escalade "^3.1.1"
picocolors "^1.0.0"
@@ -4793,85 +4805,85 @@
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
-web3-bzz@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.7.5.tgz#edeb262c3a6619109763077a94172513cf07cdde"
- integrity sha512-Z53sY0YK/losqjJncmL4vP0zZI9r6tiXg6o7R6e1JD2Iy7FH3serQvU+qXmPjqEBzsnhf8wTG+YcBPB3RHpr0Q==
+web3-bzz@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.8.0.tgz#2023676d7c17ea36512bf76eb310755a02a3d464"
+ integrity sha512-caDtdKeLi7+2Vb+y+cq2yyhkNjnxkFzVW0j1DtemarBg3dycG1iEl75CVQMLNO6Wkg+HH9tZtRnUyFIe5LIUeQ==
dependencies:
"@types/node" "^12.12.6"
got "12.1.0"
swarm-js "^0.1.40"
-web3-core-helpers@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.7.5.tgz#e97b3ecac787ade4b9390807a86aca78ed97872b"
- integrity sha512-lDDjTks6Q6aNUO87RYrY2xub3UWTKr/RIWxpHJODEqkLxZS1dWdyliJ6aIx3031VQwsNT5HE7NvABe/t0p3iDQ==
+web3-core-helpers@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.8.0.tgz#5dcfdda1a4ea277041d912003198f1334ca29d7c"
+ integrity sha512-nMAVwZB3rEp/khHI2BvFy0e/xCryf501p5NGjswmJtEM+Zrd3Biaw52JrB1qAZZIzCA8cmLKaOgdfamoDOpWdw==
dependencies:
- web3-eth-iban "1.7.5"
- web3-utils "1.7.5"
+ web3-eth-iban "1.8.0"
+ web3-utils "1.8.0"
-web3-core-method@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.7.5.tgz#ffe8883c169468f0e4d13509377f2d8876d9b7be"
- integrity sha512-ApTvq1Llzlbxmy0n4L7QaE6NodIsR80VJqk8qN4kLg30SGznt/pNJFebryLI2kpyDmxSgj1TjEWzmHJBp6FhYg==
+web3-core-method@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.8.0.tgz#9c2da8896808917d1679c319f19e2174ba17086c"
+ integrity sha512-c94RAzo3gpXwf2rf8rL8C77jOzNWF4mXUoUfZYYsiY35cJFd46jQDPI00CB5+ZbICTiA5mlVzMj4e7jAsTqiLA==
dependencies:
"@ethersproject/transactions" "^5.6.2"
- web3-core-helpers "1.7.5"
- web3-core-promievent "1.7.5"
- web3-core-subscriptions "1.7.5"
- web3-utils "1.7.5"
+ web3-core-helpers "1.8.0"
+ web3-core-promievent "1.8.0"
+ web3-core-subscriptions "1.8.0"
+ web3-utils "1.8.0"
-web3-core-promievent@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.7.5.tgz#56a9b06a20e20a0a89d2ab7f88d44c8ae01d5b62"
- integrity sha512-uZ1VRErVuhiLtHlyt3oEH/JSvAf6bWPndChHR9PG7i1Zfqm6ZVCeM91ICTPmiL8ddsGQOxASpnJk4vhApcTIww==
+web3-core-promievent@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.8.0.tgz#979765fd4d37ab0f158f0ee54037b279b737bd53"
+ integrity sha512-FGLyjAuOaAQ+ZhV6iuw9tg/9WvIkSZXKHQ4mdTyQ8MxVraOtFivOCbuLLsGgapfHYX+RPxsc1j1YzQjKoupagQ==
dependencies:
eventemitter3 "4.0.4"
-web3-core-requestmanager@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.7.5.tgz#be18fc99642689aeb2e016fa43fb47bb9e8c94ce"
- integrity sha512-3KpfxW/wVH4mgwWEsSJGHKrtRVoijWlDxtUrm17xgtqRNZ2mFolifKnHAUKa0fY48C9CrxmcCiMIi3W4G6WYRw==
+web3-core-requestmanager@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.8.0.tgz#06189df80cf52d24a195a7ef655031afe8192df3"
+ integrity sha512-2AoYCs3Owl5foWcf4uKPONyqFygSl9T54L8b581U16nsUirjhoTUGK/PBhMDVcLCmW4QQmcY5A8oPFpkQc1TTg==
dependencies:
util "^0.12.0"
- web3-core-helpers "1.7.5"
- web3-providers-http "1.7.5"
- web3-providers-ipc "1.7.5"
- web3-providers-ws "1.7.5"
+ web3-core-helpers "1.8.0"
+ web3-providers-http "1.8.0"
+ web3-providers-ipc "1.8.0"
+ web3-providers-ws "1.8.0"
-web3-core-subscriptions@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.7.5.tgz#c0e25610768ea9d9f9107b4ac74b6b6573125e00"
- integrity sha512-YK6utQ7Wwjbe4XZOIA8quWGBPi1lFDS1A+jQYwxKKrCvm6BloBNc3FhvrcSYlDhLe/kOy8+2Je8i9amndgT4ww==
+web3-core-subscriptions@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.8.0.tgz#ff66ae4467c8cb4716367248bcefb1845c0f8b83"
+ integrity sha512-7lHVRzDdg0+Gcog55lG6Q3D8JV+jN+4Ly6F8cSn9xFUAwOkdbgdWsjknQG7t7CDWy21DQkvdiY2BJF8S68AqOA==
dependencies:
eventemitter3 "4.0.4"
- web3-core-helpers "1.7.5"
+ web3-core-helpers "1.8.0"
-web3-core@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.7.5.tgz#8ee2ca490230a30ca970cb9f308eb65b76405e1d"
- integrity sha512-UgOWXZr1fR/3cUQJKWbfMwRxj1/N7o6RSd/dHqdXBlOD+62EjNZItFmLRg5veq5kp9YfXzrNw9bnDkXfsL+nKQ==
+web3-core@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.8.0.tgz#90afce527ac1b1dff8cbed2acbc0336530b8aacf"
+ integrity sha512-9sCA+Z02ci6zoY2bAquFiDjujRwmSKHiSGi4B8IstML8okSytnzXk1izHYSynE7ahIkguhjWAuXFvX76F5rAbA==
dependencies:
"@types/bn.js" "^5.1.0"
"@types/node" "^12.12.6"
bignumber.js "^9.0.0"
- web3-core-helpers "1.7.5"
- web3-core-method "1.7.5"
- web3-core-requestmanager "1.7.5"
- web3-utils "1.7.5"
+ web3-core-helpers "1.8.0"
+ web3-core-method "1.8.0"
+ web3-core-requestmanager "1.8.0"
+ web3-utils "1.8.0"
-web3-eth-abi@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.7.5.tgz#db9d6dbcc043a6e922252f3228686e9bbd50d7c9"
- integrity sha512-qWHvF7sayxql9BD1yqK9sZRLBQ66eJzGeaU53Y1PRq2iFPrhY6NUWxQ3c3ps0rg+dyObvRbloviWpKXcS4RE/A==
+web3-eth-abi@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.8.0.tgz#47fdff00bfdfa72064c9c612ff6369986598196d"
+ integrity sha512-xPeMb2hS9YLQK/Q5YZpkcmzoRGM+/R8bogSrYHhNC3hjZSSU0YRH+1ZKK0f9YF4qDZaPMI8tKWIMSCDIpjG6fg==
dependencies:
"@ethersproject/abi" "^5.6.3"
- web3-utils "1.7.5"
+ web3-utils "1.8.0"
-web3-eth-accounts@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.7.5.tgz#b37ee3aeebcc6bce3337636aeb272cbba0ece547"
- integrity sha512-AzMLoTj3RGwKpyp3x3TtHrEeU4VpR99iMOD6NKrWSDumS6QEi0lCo+y7QZhdTlINw3iIA3SFIdvbAOO4NCHSDg==
+web3-eth-accounts@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.8.0.tgz#960d947ee87a49d6c706dc6312334fbfbd6ff812"
+ integrity sha512-HQ/MDSv4bexwJLvnqsM6xpGE7c2NVOqyhzOZFyMUKXbIwIq85T3TaLnM9pCN7XqMpDcfxqiZ3q43JqQVkzHdmw==
dependencies:
"@ethereumjs/common" "^2.5.0"
"@ethereumjs/tx" "^3.3.2"
@@ -4880,127 +4892,127 @@
ethereumjs-util "^7.0.10"
scrypt-js "^3.0.1"
uuid "3.3.2"
- web3-core "1.7.5"
- web3-core-helpers "1.7.5"
- web3-core-method "1.7.5"
- web3-utils "1.7.5"
+ web3-core "1.8.0"
+ web3-core-helpers "1.8.0"
+ web3-core-method "1.8.0"
+ web3-utils "1.8.0"
-web3-eth-contract@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.7.5.tgz#a032419579bcec062513a3d089ad0e89ac63d731"
- integrity sha512-qab7NPJRKRlTs58ozsqK8YIEwWpxIm3vD/okSIKBGkFx5gIHWW+vGmMh5PDSfefLJM9rCd+T+Lc0LYvtME7uqg==
+web3-eth-contract@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.8.0.tgz#58f4ce0bde74e5ce87663502e409a92abad7b2c5"
+ integrity sha512-6xeXhW2YoCrz2Ayf2Vm4srWiMOB6LawkvxWJDnUWJ8SMATg4Pgu42C/j8rz/enXbYWt2IKuj0kk8+QszxQbK+Q==
dependencies:
"@types/bn.js" "^5.1.0"
- web3-core "1.7.5"
- web3-core-helpers "1.7.5"
- web3-core-method "1.7.5"
- web3-core-promievent "1.7.5"
- web3-core-subscriptions "1.7.5"
- web3-eth-abi "1.7.5"
- web3-utils "1.7.5"
+ web3-core "1.8.0"
+ web3-core-helpers "1.8.0"
+ web3-core-method "1.8.0"
+ web3-core-promievent "1.8.0"
+ web3-core-subscriptions "1.8.0"
+ web3-eth-abi "1.8.0"
+ web3-utils "1.8.0"
-web3-eth-ens@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.7.5.tgz#fa0e287f5e6fae20531117b7467e21b482d58cab"
- integrity sha512-k1Q0msdRv/wac2egpZBIwG3n/sa/KdrVmVJvFm471gLTL4xfUizV5qJjkDVf+ikf9JyDvWJTs5eWNUUbOFIw/A==
+web3-eth-ens@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.8.0.tgz#f1937371eac54b087ebe2e871780c2710d39998d"
+ integrity sha512-/eFbQEwvsMOEiOhw9/iuRXCsPkqAmHHWuFOrThQkozRgcnSTRnvxkkRC/b6koiT5/HaKeUs4yQDg+/ixsIxZxA==
dependencies:
content-hash "^2.5.2"
eth-ens-namehash "2.0.8"
- web3-core "1.7.5"
- web3-core-helpers "1.7.5"
- web3-core-promievent "1.7.5"
- web3-eth-abi "1.7.5"
- web3-eth-contract "1.7.5"
- web3-utils "1.7.5"
+ web3-core "1.8.0"
+ web3-core-helpers "1.8.0"
+ web3-core-promievent "1.8.0"
+ web3-eth-abi "1.8.0"
+ web3-eth-contract "1.8.0"
+ web3-utils "1.8.0"
-web3-eth-iban@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.7.5.tgz#1a50efa42cabf1b731396d38bef6a8bf92b5ee1f"
- integrity sha512-mn2W5t/1IpL8OZvzAabLKT4kvwRnZSJ9K0tctndl9sDNWkfITYQibEEhUaNNA50Q5fJKgVudHI/m0gwIVTyG8Q==
+web3-eth-iban@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.8.0.tgz#3af8a0c95b5f7b0b81ab0bcd2075c1e5dda31520"
+ integrity sha512-4RbvUxcMpo/e5811sE3a6inJ2H4+FFqUVmlRYs0RaXaxiHweahSRBNcpO0UWgmlePTolj0rXqPT2oEr0DuC8kg==
dependencies:
bn.js "^5.2.1"
- web3-utils "1.7.5"
+ web3-utils "1.8.0"
-web3-eth-personal@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.7.5.tgz#615a3ddcf97aeea93e2a4569753c033fd7a495c5"
- integrity sha512-txh2P/eN8I4AOUKFi9++KKddoD0tWfCuu9Y1Kc41jSRbk6smO88Fum0KWNmYFYhSCX2qiknS1DfqsONl3igoKQ==
+web3-eth-personal@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.8.0.tgz#433c35e2e042844402a12d543c4126ea1494b478"
+ integrity sha512-L7FT4nR3HmsfZyIAhFpEctKkYGOjRC2h6iFKs9gnFCHZga8yLcYcGaYOBIoYtaKom99MuGBoosayWt/Twh7F5A==
dependencies:
"@types/node" "^12.12.6"
- web3-core "1.7.5"
- web3-core-helpers "1.7.5"
- web3-core-method "1.7.5"
- web3-net "1.7.5"
- web3-utils "1.7.5"
+ web3-core "1.8.0"
+ web3-core-helpers "1.8.0"
+ web3-core-method "1.8.0"
+ web3-net "1.8.0"
+ web3-utils "1.8.0"
-web3-eth@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.7.5.tgz#36906f50a6c35570cbc08871a33caa83dc131c9c"
- integrity sha512-BucjvqZyDWYkGlsFX+OnOBub0YutlC1KZiNGibdmvtNX0NQK+8iw1uzAoL9yTTwCSszL7lnkFe8N+HCOl9B4Dw==
+web3-eth@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.8.0.tgz#006974a5d5e30644d05814111f9e162a72e4a09c"
+ integrity sha512-hist52os3OT4TQFB/GxPSMxTh3995sz6LPvQpPvj7ktSbpg9RNSFaSsPlCT63wUAHA3PZb1FemkAIeQM5t72Lw==
dependencies:
- web3-core "1.7.5"
- web3-core-helpers "1.7.5"
- web3-core-method "1.7.5"
- web3-core-subscriptions "1.7.5"
- web3-eth-abi "1.7.5"
- web3-eth-accounts "1.7.5"
- web3-eth-contract "1.7.5"
- web3-eth-ens "1.7.5"
- web3-eth-iban "1.7.5"
- web3-eth-personal "1.7.5"
- web3-net "1.7.5"
- web3-utils "1.7.5"
+ web3-core "1.8.0"
+ web3-core-helpers "1.8.0"
+ web3-core-method "1.8.0"
+ web3-core-subscriptions "1.8.0"
+ web3-eth-abi "1.8.0"
+ web3-eth-accounts "1.8.0"
+ web3-eth-contract "1.8.0"
+ web3-eth-ens "1.8.0"
+ web3-eth-iban "1.8.0"
+ web3-eth-personal "1.8.0"
+ web3-net "1.8.0"
+ web3-utils "1.8.0"
-web3-net@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.7.5.tgz#87fbc00a9ca40515bf60c847c0092498887cfdc8"
- integrity sha512-xwuCb2YWw49PmW81AJQ/G+Xi2ikRsYyZXSgyPt4LmZuKjiqg/6kSdK8lZvUi3Pi3wM+QDBXbpr73M/WEkW0KvA==
+web3-net@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.8.0.tgz#9acff92d7c647d801bc68df0ff4416f104dbe789"
+ integrity sha512-kX6EAacK7QrOe7DOh0t5yHS5q2kxZmTCxPVwSz9io9xBeE4n4UhmzGJ/VfhP2eM3OPKYeypcR3LEO6zZ8xn2vw==
dependencies:
- web3-core "1.7.5"
- web3-core-method "1.7.5"
- web3-utils "1.7.5"
+ web3-core "1.8.0"
+ web3-core-method "1.8.0"
+ web3-utils "1.8.0"
-web3-providers-http@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.7.5.tgz#144bb0c29007d1b766bafb0e20f80be050c7aa80"
- integrity sha512-vPgr4Kzy0M3CHtoP/Bh7qwK/D9h2fhjpoqctdMWVJseOfeTgfOphCKN0uwV8w2VpZgDPXA8aeTdBx5OjmDdStA==
+web3-providers-http@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.8.0.tgz#3fd1e569ead2095343fac17d53160a3bae674c23"
+ integrity sha512-/MqxwRzExohBWW97mqlCSW/+NHydGRyoEDUS1bAIF2YjfKFwyRtHgrEzOojzkC9JvB+8LofMvbXk9CcltpZapw==
dependencies:
abortcontroller-polyfill "^1.7.3"
cross-fetch "^3.1.4"
es6-promise "^4.2.8"
- web3-core-helpers "1.7.5"
+ web3-core-helpers "1.8.0"
-web3-providers-ipc@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.7.5.tgz#5b0f9b4f7340416953b8816d2e42e3f548d47372"
- integrity sha512-aNHx+RAROzO+apDEzy8Zncj78iqWBadIXtpmFDg7uiTn8i+oO+IcP1Yni7jyzkltsysVJHgHWG4kPx50ANCK3Q==
+web3-providers-ipc@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.8.0.tgz#d339a24c4d764e459e425d3ac868a551ac33e3ea"
+ integrity sha512-tAXHtVXNUOgehaBU8pzAlB3qhjn/PRpjdzEjzHNFqtRRTwzSEKOJxFeEhaUA4FzHnTlbnrs8ujHWUitcp1elfg==
dependencies:
oboe "2.1.5"
- web3-core-helpers "1.7.5"
+ web3-core-helpers "1.8.0"
-web3-providers-ws@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.7.5.tgz#196b9e56a4a48f9bee54def56875ea53dec7c711"
- integrity sha512-9uJNVVkIGC8PmM9kNbgPth56HDMSSsxZh3ZEENdwO3LNWemaADiQYUDCsD/dMVkn0xsGLHP5dgAy4Q5msqySLg==
+web3-providers-ws@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.8.0.tgz#a0a73e0606981ea32bed40d215000a64753899de"
+ integrity sha512-bcZtSifsqyJxwkfQYamfdIRp4nhj9eJd7cxHg1uUkfLJK125WP96wyJL1xbPt7qt0MpfnTFn8/UuIqIB6nFENg==
dependencies:
eventemitter3 "4.0.4"
- web3-core-helpers "1.7.5"
+ web3-core-helpers "1.8.0"
websocket "^1.0.32"
-web3-shh@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.7.5.tgz#742e27f5c44bea6d7adef3a49b085e0fcd6aa621"
- integrity sha512-aCIWJyLMH5H76OybU4ZpUCJ93yNOPATGhJ+KboRPU8QZDzS2CcVhtEzyl27bbvw+rSnVroMLqBgTXBB4mmKI7A==
+web3-shh@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.8.0.tgz#b4abbf4f59d097ce2f74360e61e2e5c0bd6507c7"
+ integrity sha512-DNRgSa9Jf9xYFUGKSMylrf+zt3MPjhI2qF+UWX07o0y3+uf8zalDGiJOWvIS4upAsdPiKKVJ7co+Neof47OMmg==
dependencies:
- web3-core "1.7.5"
- web3-core-method "1.7.5"
- web3-core-subscriptions "1.7.5"
- web3-net "1.7.5"
+ web3-core "1.8.0"
+ web3-core-method "1.8.0"
+ web3-core-subscriptions "1.8.0"
+ web3-net "1.8.0"
-web3-utils@1.7.5:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.7.5.tgz#081a952ac6e0322e25ac97b37358a43c7372ef6a"
- integrity sha512-9AqNOziQky4wNQadEwEfHiBdOZqopIHzQQVzmvvv6fJwDSMhP+khqmAZC7YTiGjs0MboyZ8tWNivqSO1699XQw==
+web3-utils@1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.8.0.tgz#0a506f8c6af9a2ad6ba79689892662769534fc03"
+ integrity sha512-7nUIl7UWpLVka2f09CMbKOSEvorvHnaugIabU4mj7zfMvm0tSByLcEu3eyV9qgS11qxxLuOkzBIwCstTflhmpQ==
dependencies:
bn.js "^5.2.1"
ethereum-bloom-filters "^1.0.6"
@@ -5011,17 +5023,17 @@
utf8 "3.0.0"
web3@^1.7.3:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/web3/-/web3-1.7.5.tgz#4e185d2058195b5775109b3f27cdea65a34a036e"
- integrity sha512-3jHZTWyXt975AOXgnZKayiSWDLpoSKk9fZtLk1hURQtt7AdSbXPT8AK9ooBCm0Dt3GYaOeNcHGaiHC3gtyqhLg==
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/web3/-/web3-1.8.0.tgz#3ca5f0b32de6a1f626407740411219035b5fde64"
+ integrity sha512-sldr9stK/SALSJTgI/8qpnDuBJNMGjVR84hJ+AcdQ+MLBGLMGsCDNubCoyO6qgk1/Y9SQ7ignegOI/7BPLoiDA==
dependencies:
- web3-bzz "1.7.5"
- web3-core "1.7.5"
- web3-eth "1.7.5"
- web3-eth-personal "1.7.5"
- web3-net "1.7.5"
- web3-shh "1.7.5"
- web3-utils "1.7.5"
+ web3-bzz "1.8.0"
+ web3-core "1.8.0"
+ web3-eth "1.8.0"
+ web3-eth-personal "1.8.0"
+ web3-net "1.8.0"
+ web3-shh "1.8.0"
+ web3-utils "1.8.0"
webidl-conversions@^3.0.0:
version "3.0.1"
@@ -5116,6 +5128,11 @@
safe-buffer "~5.1.0"
ultron "~1.1.0"
+ws@^8.8.1:
+ version "8.9.0"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e"
+ integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==
+
xhr-request-promise@^0.1.2:
version "0.1.3"
resolved "https://registry.yarnpkg.com/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz#2d5f4b16d8c6c893be97f1a62b0ed4cf3ca5f96c"
@@ -5209,12 +5226,12 @@
y18n "^5.0.5"
yargs-parser "^20.2.2"
-yargs@^17.5.1:
- version "17.5.1"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e"
- integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==
+yargs@^17.6.0:
+ version "17.6.0"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c"
+ integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==
dependencies:
- cliui "^7.0.2"
+ cliui "^8.0.1"
escalade "^3.1.1"
get-caller-file "^2.0.5"
require-directory "^2.1.1"