From 7bd89745d94b3f4254e44a324102358911457129 Mon Sep 17 00:00:00 2001 From: Ron Date: Fri, 17 Jan 2025 11:41:50 +0800 Subject: [PATCH] History data from subsquid indexer (#1362) * History api from subsquid * Cleanup * Add timestamp * Update libraries to be consistent with UI * Update package.json for test * Add bridgeHubXcmDelivered into result * Add legacy transfer history back --- web/package.json | 2 +- web/packages/api/package.json | 14 +- web/packages/api/src/history_v2.ts | 269 ++ web/packages/api/src/index.ts | 2 + web/packages/api/src/subsquid.ts | 126 + web/packages/api/src/utils.ts | 7 + web/packages/contract-types/package.json | 4 +- web/packages/operations/package.json | 16 +- .../operations/src/global_transfer_history.ts | 3 +- .../src/global_transfer_history_v2.ts | 21 + web/packages/test-helpers/package.json | 19 +- .../src/generateBeefyCheckpoint.ts | 14 - .../src/generateBeefyTestFixture.ts | 6 +- web/packages/test-helpers/src/helpers.ts | 33 +- web/packages/test/package.json | 29 +- web/pnpm-lock.yaml | 2304 ++++------------- 16 files changed, 942 insertions(+), 1927 deletions(-) create mode 100644 web/packages/api/src/history_v2.ts create mode 100644 web/packages/api/src/subsquid.ts create mode 100644 web/packages/operations/src/global_transfer_history_v2.ts diff --git a/web/package.json b/web/package.json index da83f4bdd6..70b7b5c9af 100644 --- a/web/package.json +++ b/web/package.json @@ -2,7 +2,7 @@ "name": "@snowbridge/web", "private": true, "engines": { - "node": "^20 || ^18", + "node": ">=20", "pnpm": ">=8" }, "scripts": { diff --git a/web/packages/api/package.json b/web/packages/api/package.json index dd84fc536a..d36625db9c 100644 --- a/web/packages/api/package.json +++ b/web/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@snowbridge/api", - "version": "0.1.25", + "version": "0.1.26-alpha.1", "description": "Snowbridge API client", "license": "Apache-2.0", "repository": { @@ -27,14 +27,14 @@ "typescript": "^5.4.5" }, "dependencies": { - "@polkadot/api": "^14.2.1", - "@polkadot/keyring": "^13.2.2", - "@polkadot/types": "^14.2.1", - "@polkadot/util": "^13.2.2", - "@polkadot/util-crypto": "^13.2.2", + "@polkadot/api": "^14.3.1", + "@polkadot/keyring": "^13.2.3", + "@polkadot/types": "^14.3.1", + "@polkadot/util": "^13.2.3", + "@polkadot/util-crypto": "^13.2.3", "@snowbridge/contract-types": "workspace:*", "@typechain/ethers-v6": "^0.5.1", - "ethers": "^6.13.3", + "ethers": "^6.13.5", "rxjs": "^7.8.1" } } diff --git a/web/packages/api/src/history_v2.ts b/web/packages/api/src/history_v2.ts new file mode 100644 index 0000000000..2ee63dcab9 --- /dev/null +++ b/web/packages/api/src/history_v2.ts @@ -0,0 +1,269 @@ +import { + fetchToPolkadotTransfers, + fetchToEthereumTransfers, + fetchBridgeHubOutboundMessageAccepted, + fetchEthereumInboundMessageDispatched, + fetchBridgeHubInboundMessageReceived, + fetchMessageProcessedOnPolkadot, +} from "./subsquid" +import { forwardedTopicId, getEventIndex } from "./utils" + +export enum TransferStatus { + Pending, + Complete, + Failed, +} + +export type TransferInfo = { + when: Date + sourceAddress: string + beneficiaryAddress: string + tokenAddress: string + destinationParachain?: number + destinationFee?: string + amount: string +} + +export type ToPolkadotTransferResult = { + id: string + status: TransferStatus + info: TransferInfo + submitted: { + blockHash: string + blockNumber: number + logIndex: number + transactionHash: string + transactionIndex: number + channelId: string + messageId: string + nonce: number + parentBeaconSlot?: number + } + beaconClientIncluded?: { + extrinsic_index: string + extrinsic_hash: string + event_index: string + block_timestamp: number + beaconSlot: number + beaconBlockHash: string + } + inboundMessageReceived?: { + extrinsic_index: string + extrinsic_hash: string + event_index: string + block_timestamp: number + messageId: string + channelId: string + nonce: number + } + assetHubMessageProcessed?: { + extrinsic_hash: string + event_index: string + block_timestamp: number + success: boolean + sibling: number + } +} + +export type ToEthereumTransferResult = { + id: string + status: TransferStatus + info: TransferInfo + submitted: { + extrinsic_index: string + extrinsic_hash: string + block_hash: string + account_id: string + block_num: number + block_timestamp: number + messageId: string + bridgeHubMessageId: string + success: boolean + relayChain?: { + block_hash: string + block_num: number + } + } + bridgeHubXcmDelivered?: { + extrinsic_hash: string + event_index: string + block_timestamp: number + siblingParachain: number + success: boolean + } + bridgeHubChannelDelivered?: { + extrinsic_hash: string + event_index: string + block_timestamp: number + channelId: string + success: boolean + } + bridgeHubMessageQueued?: { + extrinsic_hash: string + event_index: string + block_timestamp: number + } + bridgeHubMessageAccepted?: { + extrinsic_hash: string + event_index: string + block_timestamp: number + nonce: number + } + ethereumBeefyIncluded?: { + blockNumber: number + blockHash: string + transactionHash: string + transactionIndex: number + logIndex: number + relayChainblockNumber: number + mmrRoot: string + } + ethereumMessageDispatched?: { + blockNumber: number + blockHash: string + transactionHash: string + transactionIndex: number + logIndex: number + messageId: string + channelId: string + nonce: number + success: boolean + } +} + +export const toPolkadotHistory = async (): Promise => { + const ethOutboundMessages = await fetchToPolkadotTransfers() + const results: ToPolkadotTransferResult[] = [] + for (const outboundMessage of ethOutboundMessages) { + const result: ToPolkadotTransferResult = { + id: outboundMessage.id, + status: TransferStatus.Pending, + info: { + when: new Date(outboundMessage.timestamp), + sourceAddress: outboundMessage.senderAddress, + beneficiaryAddress: outboundMessage.destinationAddress, + tokenAddress: outboundMessage.tokenAddress, + destinationParachain: outboundMessage.destinationParaId, + destinationFee: "", + amount: outboundMessage.amount, + }, + submitted: { + blockHash: "", + blockNumber: outboundMessage.blockNumber, + logIndex: 0, + transactionHash: outboundMessage.txHash, + transactionIndex: 0, + channelId: outboundMessage.channelId, + messageId: outboundMessage.messageId, + nonce: outboundMessage.nonce, + }, + } + let inboundMessageReceived = await fetchBridgeHubInboundMessageReceived(result.id) + if (inboundMessageReceived) { + result.inboundMessageReceived = { + extrinsic_index: "", + extrinsic_hash: "", + event_index: getEventIndex(inboundMessageReceived.id), + block_timestamp: inboundMessageReceived.timestamp, + messageId: inboundMessageReceived.messageId, + channelId: inboundMessageReceived.channelId, + nonce: inboundMessageReceived.nonce, + } + } + + const assetHubMessageProcessed = await fetchMessageProcessedOnPolkadot(result.id) + if (assetHubMessageProcessed) { + result.assetHubMessageProcessed = { + extrinsic_hash: "", + event_index: getEventIndex(assetHubMessageProcessed.id), + block_timestamp: assetHubMessageProcessed.timestamp, + success: assetHubMessageProcessed.success, + sibling: 0, + } + if (!result.assetHubMessageProcessed.success) { + result.status = TransferStatus.Failed + continue + } + + result.status = TransferStatus.Complete + } + + results.push(result) + } + return results +} + +export const toEthereumHistory = async (): Promise => { + const allTransfers = await fetchToEthereumTransfers() + const results: ToEthereumTransferResult[] = [] + for (const transfer of allTransfers) { + let bridgeHubMessageId = forwardedTopicId(transfer.id) + const result: ToEthereumTransferResult = { + id: transfer.id, + status: TransferStatus.Pending, + info: { + when: new Date(transfer.timestamp), + sourceAddress: transfer.senderAddress, + tokenAddress: transfer.tokenAddress, + beneficiaryAddress: transfer.destinationAddress, + amount: transfer.amount, + }, + submitted: { + extrinsic_index: "", + extrinsic_hash: transfer.txHash, + block_hash: "", + account_id: transfer.senderAddress, + block_num: transfer.blockNumber, + block_timestamp: transfer.timestamp, + messageId: transfer.id, + bridgeHubMessageId, + success: true, + }, + } + let bridgeHubXcmDelivered = await fetchMessageProcessedOnPolkadot(bridgeHubMessageId) + if (bridgeHubXcmDelivered) { + result.bridgeHubXcmDelivered = { + block_timestamp: bridgeHubXcmDelivered.timestamp, + event_index: getEventIndex(bridgeHubXcmDelivered.id), + extrinsic_hash: "", + siblingParachain: 1000, + success: bridgeHubXcmDelivered.success, + } + if (!result.bridgeHubXcmDelivered.success) { + result.status = TransferStatus.Failed + continue + } + } + + let outboundQueueAccepted = await fetchBridgeHubOutboundMessageAccepted(transfer.id) + if (outboundQueueAccepted) { + result.bridgeHubMessageQueued = { + block_timestamp: outboundQueueAccepted.timestamp, + event_index: getEventIndex(outboundQueueAccepted.id), + extrinsic_hash: "", + } + } + + let ethereumMessageDispatched = await fetchEthereumInboundMessageDispatched(transfer.id) + if (ethereumMessageDispatched) { + result.ethereumMessageDispatched = { + blockNumber: ethereumMessageDispatched.blockNumber, + blockHash: "", + transactionHash: ethereumMessageDispatched.txHash, + transactionIndex: 0, + logIndex: 0, + messageId: ethereumMessageDispatched.messageId, + channelId: ethereumMessageDispatched.channelId, + nonce: ethereumMessageDispatched.nonce, + success: ethereumMessageDispatched.success, + } + if (!result.ethereumMessageDispatched.success) { + result.status = TransferStatus.Failed + continue + } + result.status = TransferStatus.Complete + } + results.push(result) + } + return results +} diff --git a/web/packages/api/src/index.ts b/web/packages/api/src/index.ts index 22108da865..6b853d0534 100644 --- a/web/packages/api/src/index.ts +++ b/web/packages/api/src/index.ts @@ -175,3 +175,5 @@ export * as assets from "./assets" export * as environment from "./environment" export * as subscan from "./subscan" export * as history from "./history" +export * as historyV2 from "./history_v2" +export * as subsquid from "./subsquid" diff --git a/web/packages/api/src/subsquid.ts b/web/packages/api/src/subsquid.ts new file mode 100644 index 0000000000..98f7ac13b1 --- /dev/null +++ b/web/packages/api/src/subsquid.ts @@ -0,0 +1,126 @@ +const graphqlApiUrl = process.env["GRAPHQL_API_URL"] || "https://data.snowbridge.network/graphql" +const graphqlQuerySize = process.env["GRAPHQL_QUERY_SIZE"] || "100" + +export const fetchToPolkadotTransfers = async () => { + let query = `query { transferStatusToPolkadots(limit: ${graphqlQuerySize}, orderBy: blockNumber_DESC) { + id + status + blockNumber + bridgedBlockNumber + channelId + destinationAddress + destinationBlockNumber + destinationParaId + forwardedBlockNumber + messageId + nonce + senderAddress + timestamp + tokenAddress + txHash + amount + } + }` + let result = await queryByGraphQL(query) + return result.transferStatusToPolkadots +} + +export const fetchToEthereumTransfers = async () => { + let query = `query { transferStatusToEthereums(limit: ${graphqlQuerySize}, orderBy: blockNumber_DESC) { + id + status + blockNumber + bridgedBlockNumber + channelId + destinationAddress + destinationBlockNumber + forwardedBlockNumber + messageId + nonce + senderAddress + sourceParaId + timestamp + tokenAddress + txHash + amount + } + }` + let result = await queryByGraphQL(query) + return result.transferStatusToEthereums +} + +export const fetchBridgeHubOutboundMessageAccepted = async (messageID: string) => { + let query = `query { outboundMessageAcceptedOnBridgeHubs(where: {messageId_eq:"${messageID}"}) { + id + nonce + blockNumber + timestamp + } + }` + let result = await queryByGraphQL(query) + return result?.outboundMessageAcceptedOnBridgeHubs[0] +} + +export const fetchEthereumInboundMessageDispatched = async (messageID: string) => { + let query = `query {inboundMessageDispatchedOnEthereums(where: {messageId_eq: "${messageID}"}) { + id + channelId + blockNumber + messageId + nonce + success + timestamp + txHash + } + }` + let result = await queryByGraphQL(query) + return result?.inboundMessageDispatchedOnEthereums[0] +} + +export const fetchBridgeHubInboundMessageReceived = async (messageID: string) => { + let query = `query { inboundMessageReceivedOnBridgeHubs(where: {messageId_eq:"${messageID}"}) { + id + channelId + blockNumber + messageId + nonce + timestamp + } + }` + let result = await queryByGraphQL(query) + return result?.inboundMessageReceivedOnBridgeHubs[0] +} + +export const fetchMessageProcessedOnPolkadot = async (messageID: string) => { + let query = `query { messageProcessedOnPolkadots(where: {messageId_eq:"${messageID}"}) { + id + blockNumber + messageId + paraId + timestamp + success + } + }` + let result = await queryByGraphQL(query) + return result?.messageProcessedOnPolkadots[0] +} + +export const fetchEstimatedDeliveryTime = async (channelId: string) => { + let query = `query { toEthereumElapse(channelId:"${channelId}") { elapse } toPolkadotElapse(channelId:"${channelId}") { elapse } }` + let result = await queryByGraphQL(query) + return result +} + +export const queryByGraphQL = async (query: string) => { + let response = await fetch(graphqlApiUrl, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + query, + }), + }) + let data = await response.json() + return data?.data +} diff --git a/web/packages/api/src/utils.ts b/web/packages/api/src/utils.ts index fc319d9996..e78dbaae82 100644 --- a/web/packages/api/src/utils.ts +++ b/web/packages/api/src/utils.ts @@ -131,3 +131,10 @@ export const fetchEstimatedDeliveryTime = async (graphqlUrl: string, channelId: let data = await response.json() return data?.data } + +export const getEventIndex = (id: string) => { + let parts = id.split("-") + let blockNumber = parseInt(parts[0]) + let eventIndex = parseInt(parts[2]) + return `${blockNumber}-${eventIndex}` +} diff --git a/web/packages/contract-types/package.json b/web/packages/contract-types/package.json index 7697660737..899271cc2c 100644 --- a/web/packages/contract-types/package.json +++ b/web/packages/contract-types/package.json @@ -1,6 +1,6 @@ { "name": "@snowbridge/contract-types", - "version": "0.1.25", + "version": "0.1.26-alpha.1", "description": "Snowbridge contract type bindings", "license": "Apache-2.0", "repository": { @@ -22,6 +22,6 @@ "typescript": "^5.4.5" }, "dependencies": { - "ethers": "^6.13.3" + "ethers": "^6.13.5" } } diff --git a/web/packages/operations/package.json b/web/packages/operations/package.json index 57f4f59778..fd5039cce1 100644 --- a/web/packages/operations/package.json +++ b/web/packages/operations/package.json @@ -19,6 +19,8 @@ "smokeTest": "npx ts-node src/transfer_token.ts start", "transferToPolkadot": "npx ts-node src/transfer_to_polkadot.ts start", "transferToEthereum": "npx ts-node src/transfer_to_ethereum.ts start", + "history": "npx ts-node src/global_transfer_history.ts", + "historyV2": "npx ts-node src/global_transfer_history_v2.ts", "format": "prettier src --write" }, "devDependencies": { @@ -37,12 +39,12 @@ "@ethersproject/providers": "^5.7.2", "@ethersproject/units": "^5.7.0", "@fastify/rate-limit": "^9.1.0", - "@polkadot/api": "^14.2.1", - "@polkadot/keyring": "^13.2.2", - "@polkadot/types": "^14.2.1", - "@polkadot/types-codec": "^14.2.1", - "@polkadot/util": "^13.2.2", - "@polkadot/util-crypto": "^13.2.2", + "@polkadot/api": "^14.3.1", + "@polkadot/keyring": "^13.3.1", + "@polkadot/types": "^14.3.1", + "@polkadot/types-codec": "^14.3.1", + "@polkadot/util": "^13.3.1", + "@polkadot/util-crypto": "^13.3.1", "@snowbridge/api": "workspace:*", "@snowbridge/contract-types": "workspace:*", "@types/keccak": "^3.0.4", @@ -54,7 +56,7 @@ "axios": "^1.6.8", "bitfield": "^4.2.0", "dotenv": "^16.4.5", - "ethers": "^6.13.3", + "ethers": "^6.13.5", "fastify": "^4.27.0", "keccak": "^3.0.4", "lodash": "^4.17.21", diff --git a/web/packages/operations/src/global_transfer_history.ts b/web/packages/operations/src/global_transfer_history.ts index e936b1f21f..44a74e4a0d 100644 --- a/web/packages/operations/src/global_transfer_history.ts +++ b/web/packages/operations/src/global_transfer_history.ts @@ -1,3 +1,4 @@ +import "dotenv/config" import { contextFactory, destroyContext, environment, subscan, history } from "@snowbridge/api" import { BeefyClient__factory, IGateway__factory } from "@snowbridge/contract-types" import { AlchemyProvider } from "ethers" @@ -5,7 +6,7 @@ import { AlchemyProvider } from "ethers" const monitor = async () => { const subscanKey = process.env.REACT_APP_SUBSCAN_KEY ?? "" - let env = "rococo_sepolia" + let env = "westend_sepolia" if (process.env.NODE_ENV !== undefined) { env = process.env.NODE_ENV } diff --git a/web/packages/operations/src/global_transfer_history_v2.ts b/web/packages/operations/src/global_transfer_history_v2.ts new file mode 100644 index 0000000000..bbc3466793 --- /dev/null +++ b/web/packages/operations/src/global_transfer_history_v2.ts @@ -0,0 +1,21 @@ +import "dotenv/config" +import { historyV2 } from "@snowbridge/api" + +const monitor = async () => { + const toEthereum = await historyV2.toEthereumHistory() + console.log(JSON.stringify(toEthereum, null, 2)) + + const toPolkadot = await historyV2.toPolkadotHistory() + console.log(JSON.stringify(toPolkadot, null, 2)) + + const transfers = [...toEthereum, ...toPolkadot] + transfers.sort((a, b) => b.info.when.getTime() - a.info.when.getTime()) + console.log(JSON.stringify(transfers, null, 2)) +} + +monitor() + .then(() => process.exit(0)) + .catch((error) => { + console.error("Error:", error) + process.exit(1) + }) diff --git a/web/packages/test-helpers/package.json b/web/packages/test-helpers/package.json index d4f82bcbe0..22f1d38997 100644 --- a/web/packages/test-helpers/package.json +++ b/web/packages/test-helpers/package.json @@ -28,27 +28,20 @@ "typescript": "^5.1.6" }, "dependencies": { - "@ethersproject/abi": "^5.0.0", - "@ethersproject/bytes": "^5.0.0", - "@ethersproject/providers": "^5.4.7", - "@ethersproject/units": "^5.4.7", - "@polkadot/api": "^10.12.1", - "@polkadot/types": "^10.12.1", - "@polkadot/types-codec": "^10.12.1", + "@polkadot/api": "^14.3.1", + "@polkadot/types": "^14.3.1", + "@polkadot/types-codec": "^14.3.1", "@snowbridge/contract-types": "workspace:*", - "@typechain/ethers-v5": "^10.1.1", + "@typechain/ethers-v6": "^0.5.1", "@types/keccak": "^3.0.1", "@types/lodash": "^4.14.186", "@types/secp256k1": "^4.0.3", "@types/seedrandom": "^3.0.2", "bitfield": "^4.1.0", - "ethereumjs-abi": "^0.6.8", - "ethereumjs-util": "^7.0.10", - "ethers": "^5.7.2", + "ethers": "^6.13.5", "keccak": "^3.0.2", "lodash": "^4.17.21", - "merkletreejs": "^0.2.18", - "rlp": "^2.2.6", + "merkletreejs": "^0.4.1", "secp256k1": "^4.0.2", "seedrandom": "^3.0.5" } diff --git a/web/packages/test-helpers/src/generateBeefyCheckpoint.ts b/web/packages/test-helpers/src/generateBeefyCheckpoint.ts index 05692ede65..4a7465c555 100755 --- a/web/packages/test-helpers/src/generateBeefyCheckpoint.ts +++ b/web/packages/test-helpers/src/generateBeefyCheckpoint.ts @@ -1,5 +1,4 @@ import { ApiPromise, WsProvider } from "@polkadot/api" -import { MerkleTree } from "merkletreejs" import createKeccakHash from "keccak" import { publicKeyConvert } from "secp256k1" import type { ValidatorSetId, BeefyId } from "@polkadot/types/interfaces/beefy/types" @@ -92,19 +91,6 @@ async function generateBeefyCheckpoint() { console.log("Beefy state writing to dest file: " + BeefyStateFile) } -function hasher(data: Buffer): Buffer { - return createKeccakHash("keccak256").update(data).digest() -} - -function createMerkleTree(leaves: Buffer[]) { - const leafHashes = leaves.map((value) => hasher(value)) - const tree = new MerkleTree(leafHashes, hasher, { - sortLeaves: false, - sortPairs: false, - }) - return tree -} - // We recommend this pattern to be able to use async/await everywhere // and properly handle errors. generateBeefyCheckpoint() diff --git a/web/packages/test-helpers/src/generateBeefyTestFixture.ts b/web/packages/test-helpers/src/generateBeefyTestFixture.ts index ff91dd86f2..f8660135bc 100755 --- a/web/packages/test-helpers/src/generateBeefyTestFixture.ts +++ b/web/packages/test-helpers/src/generateBeefyTestFixture.ts @@ -1,10 +1,10 @@ import { ValidatorSet, createRandomSubset, readSetBits } from "./helpers" -import { BigNumber, ethers } from "ethers" +import { ethers } from "ethers" import type { BeefyClient } from "@snowbridge/contract-types" import { accounts } from "./wallets" import path from "path" import fs from "fs" -const encoder = new ethers.utils.AbiCoder() +const encoder = new ethers.AbiCoder() const generateValidatorProof = async ( bitfieldFile: string, @@ -15,7 +15,7 @@ const generateValidatorProof = async ( const testFixture = JSON.parse(fs.readFileSync(bitfieldFile, "utf8")) const bitField = encoder.decode(["uint256[]"], testFixture.final.finalBitFieldRaw)[0] console.log(bitField) - let finalBitfield: BigNumber[] = [] + let finalBitfield: BigInt[] = [] for (let i = 0; i < bitField.length; i++) { finalBitfield.push(bitField[i]) } diff --git a/web/packages/test-helpers/src/helpers.ts b/web/packages/test-helpers/src/helpers.ts index 940366645d..7682ad8c15 100644 --- a/web/packages/test-helpers/src/helpers.ts +++ b/web/packages/test-helpers/src/helpers.ts @@ -1,15 +1,11 @@ -import rlp from "rlp" - -import { keccakFromHexString, keccak } from "ethereumjs-util" import { MerkleTree } from "merkletreejs" -import { ethers, Event, Wallet } from "ethers" +import { ethers, keccak256, Wallet, BaseWallet, getBytes } from "ethers" import _ from "lodash" import secp256k1 from "secp256k1" import seedrandom from "seedrandom" -import { keccak256, entropyToMnemonic } from "ethers/lib/utils" import type { BeefyClient } from "@snowbridge/contract-types" -let readSetBits = (bitfield: ethers.BigNumber[]): number[] => { +let readSetBits = (bitfield: BigInt[]): number[] => { let bits = bitfield .map((i) => { let bf = BigInt(i.toString()).toString(2).split("") @@ -33,20 +29,16 @@ let readSetBits = (bitfield: ethers.BigNumber[]): number[] => { return indices } -let encodeLog = (log: Event) => { - return rlp.encode([log.address, log.topics, log.data]).toString("hex") -} - class ValidatorSet { - wallets: Wallet[] + wallets: BaseWallet[] id: number root: string length: number proofs: string[][] constructor(id: number, length: number, privateKeys?: string[]) { - let wallets: Wallet[] = [], - wallet: Wallet, + let wallets: BaseWallet[] = [], + wallet: BaseWallet, randomSet = true if (privateKeys && privateKeys.length) { length = privateKeys.length @@ -54,8 +46,8 @@ class ValidatorSet { } for (let i = 0; i < length; i++) { if (randomSet) { - wallet = ethers.Wallet.fromMnemonic( - entropyToMnemonic(keccak256(Buffer.from(`${i}`))) + wallet = Wallet.fromPhrase( + ethers.Mnemonic.entropyToPhrase(keccak256(Buffer.from(`${i}`))) ) } else { wallet = new ethers.Wallet(privateKeys![i]) @@ -63,8 +55,8 @@ class ValidatorSet { wallets.push(wallet) } - let leaves = wallets.map((w) => keccakFromHexString(w.address)) - let tree = new MerkleTree(leaves, keccak, { + let leaves = wallets.map((w) => keccak256(w.address)) + let tree = new MerkleTree(leaves, keccak256, { sortLeaves: false, sortPairs: false, }) @@ -78,10 +70,7 @@ class ValidatorSet { createSignatureProof(index: number, commitmentHash: string): BeefyClient.ValidatorProofStruct { let wallet = this.wallets[index] - let signature = secp256k1.ecdsaSign( - ethers.utils.arrayify(commitmentHash), - ethers.utils.arrayify(wallet.privateKey) - ) + let signature = secp256k1.ecdsaSign(getBytes(commitmentHash), getBytes(wallet.privateKey)) let buf = new Uint8Array(signature.signature.buffer) let r = buf.slice(0, 32) @@ -108,4 +97,4 @@ function createRandomSubset(population: number, size: number) { return { participants, absentees } } -export { encodeLog, createRandomSubset, ValidatorSet, readSetBits } +export { createRandomSubset, ValidatorSet, readSetBits } diff --git a/web/packages/test/package.json b/web/packages/test/package.json index 3af3804207..8b94eddaec 100644 --- a/web/packages/test/package.json +++ b/web/packages/test/package.json @@ -9,32 +9,7 @@ "directory": "web/packages/test" }, "devDependencies": { - "@polkadot/api": "^14.2.1", - "@polkadot/types": "^14.2.1", - "@polkadot/api-cli": "^0.60.1", - "@polkadot/keyring": "^13.2.2", - "@polkadot/util": "^13.2.2", - "@polkadot/util-crypto": "^13.2.2", - "@types/keccak": "^3.0.1", - "@types/node": "^18.16.8", - "@types/yargs": "^17.0.24", - "@zombienet/cli": "^1.3.109", - "bignumber.js": "^9.1.1", - "bn.js": "^5.2.1", - "c-kzg": "^1.1.3", - "chai": "^4.3.7", - "chai-as-promised": "^7.1.1", - "chai-bignumber": "^3.1.0", - "esm": "^3.2.25", - "ethers": "^5.7.2", - "fastify": "4.24.3", - "keccak": "^3.0.3", - "mocha": "^8.4.0", - "node-fetch": "^3.3.1", - "rlp": "^2.2.7", - "ts-node": "^10.9.1", - "typescript": "^4.9.5", - "ws": "^7.5.9", - "yargs": "^17.7.2" + "@zombienet/cli": "^1.3.118", + "@polkadot/api-cli": "0.62.1" } } diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index bd6d4aca53..de34a2bfb7 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -13,7 +13,7 @@ importers: version: 0.6.36(typescript@5.5.4)(zod@3.23.8) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@18.19.45)(typescript@5.5.4) + version: 10.9.2(@types/node@22.7.5)(typescript@5.5.4) tsconfig-paths: specifier: ^4.2.0 version: 4.2.0 @@ -27,29 +27,29 @@ importers: packages/api: dependencies: '@polkadot/api': - specifier: ^14.2.1 - version: 14.2.2 + specifier: ^14.3.1 + version: 14.3.1 '@polkadot/keyring': - specifier: ^13.2.2 - version: 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + specifier: ^13.2.3 + version: 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) '@polkadot/types': - specifier: ^14.2.1 - version: 14.2.2 + specifier: ^14.3.1 + version: 14.3.1 '@polkadot/util': - specifier: ^13.2.2 - version: 13.2.2 + specifier: ^13.2.3 + version: 13.3.1 '@polkadot/util-crypto': - specifier: ^13.2.2 - version: 13.2.2(@polkadot/util@13.2.2) + specifier: ^13.2.3 + version: 13.3.1(@polkadot/util@13.3.1) '@snowbridge/contract-types': specifier: workspace:* version: link:../contract-types '@typechain/ethers-v6': specifier: ^0.5.1 - version: 0.5.1(ethers@6.13.3)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4) + version: 0.5.1(ethers@6.13.5)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4) ethers: - specifier: ^6.13.3 - version: 6.13.3 + specifier: ^6.13.5 + version: 6.13.5 rxjs: specifier: ^7.8.1 version: 7.8.1 @@ -85,12 +85,12 @@ importers: packages/contract-types: dependencies: ethers: - specifier: ^6.13.3 - version: 6.13.3 + specifier: ^6.13.5 + version: 6.13.5 devDependencies: '@typechain/ethers-v6': specifier: ^0.5.1 - version: 0.5.1(ethers@6.13.3)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4) + version: 0.5.1(ethers@6.13.5)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4) '@types/node': specifier: ^18.19.31 version: 18.19.45 @@ -125,23 +125,23 @@ importers: specifier: ^9.1.0 version: 9.1.0 '@polkadot/api': - specifier: ^14.2.1 - version: 14.2.2 + specifier: ^14.3.1 + version: 14.3.1 '@polkadot/keyring': - specifier: ^13.2.2 - version: 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + specifier: ^13.3.1 + version: 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) '@polkadot/types': - specifier: ^14.2.1 - version: 14.2.2 + specifier: ^14.3.1 + version: 14.3.1 '@polkadot/types-codec': - specifier: ^14.2.1 - version: 14.2.2 + specifier: ^14.3.1 + version: 14.3.1 '@polkadot/util': - specifier: ^13.2.2 - version: 13.2.2 + specifier: ^13.3.1 + version: 13.3.1 '@polkadot/util-crypto': - specifier: ^13.2.2 - version: 13.2.2(@polkadot/util@13.2.2) + specifier: ^13.3.1 + version: 13.3.1(@polkadot/util@13.3.1) '@snowbridge/api': specifier: workspace:* version: link:../api @@ -176,8 +176,8 @@ importers: specifier: ^16.4.5 version: 16.4.5 ethers: - specifier: ^6.13.3 - version: 6.13.3 + specifier: ^6.13.5 + version: 6.13.5 fastify: specifier: ^4.27.0 version: 4.28.1 @@ -227,117 +227,30 @@ importers: packages/test: devDependencies: - '@polkadot/api': - specifier: ^14.2.1 - version: 14.2.2 '@polkadot/api-cli': - specifier: ^0.60.1 - version: 0.60.1 - '@polkadot/keyring': - specifier: ^13.2.2 - version: 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types': - specifier: ^14.2.1 - version: 14.2.2 - '@polkadot/util': - specifier: ^13.2.2 - version: 13.2.2 - '@polkadot/util-crypto': - specifier: ^13.2.2 - version: 13.2.2(@polkadot/util@13.2.2) - '@types/keccak': - specifier: ^3.0.1 - version: 3.0.4 - '@types/node': - specifier: ^18.16.8 - version: 18.19.45 - '@types/yargs': - specifier: ^17.0.24 - version: 17.0.33 + specifier: 0.62.1 + version: 0.62.1 '@zombienet/cli': - specifier: ^1.3.109 - version: 1.3.109(@polkadot/util@13.2.2)(@types/node@18.19.45)(chokidar@3.6.0) - bignumber.js: - specifier: ^9.1.1 - version: 9.1.2 - bn.js: - specifier: ^5.2.1 - version: 5.2.1 - c-kzg: - specifier: ^1.1.3 - version: 1.1.3 - chai: - specifier: ^4.3.7 - version: 4.5.0 - chai-as-promised: - specifier: ^7.1.1 - version: 7.1.2(chai@4.5.0) - chai-bignumber: - specifier: ^3.1.0 - version: 3.1.0 - esm: - specifier: ^3.2.25 - version: 3.2.25 - ethers: - specifier: ^5.7.2 - version: 5.7.2 - fastify: - specifier: 4.24.3 - version: 4.24.3 - keccak: - specifier: ^3.0.3 - version: 3.0.4 - mocha: - specifier: ^8.4.0 - version: 8.4.0 - node-fetch: - specifier: ^3.3.1 - version: 3.3.2 - rlp: - specifier: ^2.2.7 - version: 2.2.7 - ts-node: - specifier: ^10.9.1 - version: 10.9.2(@types/node@18.19.45)(typescript@4.9.5) - typescript: - specifier: ^4.9.5 - version: 4.9.5 - ws: - specifier: ^7.5.9 - version: 7.5.10 - yargs: - specifier: ^17.7.2 - version: 17.7.2 + specifier: ^1.3.118 + version: 1.3.118(@polkadot/util@13.3.1)(@types/node@22.7.5)(chokidar@3.6.0) packages/test-helpers: dependencies: - '@ethersproject/abi': - specifier: ^5.0.0 - version: 5.7.0 - '@ethersproject/bytes': - specifier: ^5.0.0 - version: 5.7.0 - '@ethersproject/providers': - specifier: ^5.4.7 - version: 5.7.2 - '@ethersproject/units': - specifier: ^5.4.7 - version: 5.7.0 '@polkadot/api': - specifier: ^10.12.1 - version: 10.13.1 + specifier: ^14.3.1 + version: 14.3.1 '@polkadot/types': - specifier: ^10.12.1 - version: 10.13.1 + specifier: ^14.3.1 + version: 14.3.1 '@polkadot/types-codec': - specifier: ^10.12.1 - version: 10.13.1 + specifier: ^14.3.1 + version: 14.3.1 '@snowbridge/contract-types': specifier: workspace:* version: link:../contract-types - '@typechain/ethers-v5': - specifier: ^10.1.1 - version: 10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2)(ethers@5.7.2)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4) + '@typechain/ethers-v6': + specifier: ^0.5.1 + version: 0.5.1(ethers@6.13.5)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4) '@types/keccak': specifier: ^3.0.1 version: 3.0.4 @@ -353,15 +266,9 @@ importers: bitfield: specifier: ^4.1.0 version: 4.2.0 - ethereumjs-abi: - specifier: ^0.6.8 - version: 0.6.8 - ethereumjs-util: - specifier: ^7.0.10 - version: 7.1.5 ethers: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^6.13.5 + version: 6.13.5 keccak: specifier: ^3.0.2 version: 3.0.4 @@ -369,11 +276,8 @@ importers: specifier: ^4.17.21 version: 4.17.21 merkletreejs: - specifier: ^0.2.18 - version: 0.2.32 - rlp: - specifier: ^2.2.6 - version: 2.2.7 + specifier: ^0.4.1 + version: 0.4.1 secp256k1: specifier: ^4.0.2 version: 4.0.3 @@ -776,26 +680,12 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@polkadot-api/client@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-0fqK6pUKcGHSG2pBvY+gfSS+1mMdjd/qRygAcKI5d05tKsnZLRnmhb9laDguKmGEIB0Bz9vQqNK3gIN/cfvVwg==} - peerDependencies: - rxjs: '>=7.8.0' - - '@polkadot-api/json-rpc-provider-proxy@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-0hZ8vtjcsyCX8AyqP2sqUHa1TFFfxGWmlXJkit0Nqp9b32MwZqn5eaUAiV2rNuEpoglKOdKnkGtUF8t5MoodKw==} - '@polkadot-api/json-rpc-provider-proxy@0.1.0': resolution: {integrity: sha512-8GSFE5+EF73MCuLQm8tjrbCqlgclcHBSRaswvXziJ0ZW7iw3UEMsKkkKvELayWyBuOPa2T5i1nj6gFOeIsqvrg==} '@polkadot-api/json-rpc-provider@0.0.1': resolution: {integrity: sha512-/SMC/l7foRjpykLTUTacIH05H3mr9ip8b5xxfwXlVezXrNVLp3Cv0GX6uItkKd+ZjzVPf3PFrDF2B2/HLSNESA==} - '@polkadot-api/json-rpc-provider@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-EaUS9Fc3wsiUr6ZS43PQqaRScW7kM6DYbuM/ou0aYjm8N9MBqgDbGm2oL6RE1vAVmOfEuHcXZuZkhzWtyvQUtA==} - - '@polkadot-api/metadata-builders@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-BD7rruxChL1VXt0icC2gD45OtT9ofJlql0qIllHSRYgama1CR2Owt+ApInQxB+lWqM+xNOznZRpj8CXNDvKIMg==} - '@polkadot-api/metadata-builders@0.3.2': resolution: {integrity: sha512-TKpfoT6vTb+513KDzMBTfCb/ORdgRnsS3TDFpOhAhZ08ikvK+hjHMt5plPiAX/OWkm1Wc9I3+K6W0hX5Ab7MVg==} @@ -805,281 +695,144 @@ packages: '@polkadot-api/substrate-client': 0.1.4 rxjs: '>=7.8.0' - '@polkadot-api/substrate-bindings@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-N4vdrZopbsw8k57uG58ofO7nLXM4Ai7835XqakN27MkjXMp5H830A1KJE0L9sGQR7ukOCDEIHHcwXVrzmJ/PBg==} - '@polkadot-api/substrate-bindings@0.6.0': resolution: {integrity: sha512-lGuhE74NA1/PqdN7fKFdE5C1gNYX357j1tWzdlPXI0kQ7h3kN0zfxNOpPUN7dIrPcOFZ6C0tRRVrBylXkI6xPw==} - '@polkadot-api/substrate-client@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-lcdvd2ssUmB1CPzF8s2dnNOqbrDa+nxaaGbuts+Vo8yjgSKwds2Lo7Oq+imZN4VKW7t9+uaVcKFLMF7PdH0RWw==} - '@polkadot-api/substrate-client@0.1.4': resolution: {integrity: sha512-MljrPobN0ZWTpn++da9vOvt+Ex+NlqTlr/XT7zi9sqPtDJiQcYl+d29hFAgpaeTqbeQKZwz3WDE9xcEfLE8c5A==} - '@polkadot-api/utils@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-0CYaCjfLQJTCRCiYvZ81OncHXEKPzAexCMoVloR+v2nl/O2JRya/361MtPkeNLC6XBoaEgLAG9pWQpH3WePzsw==} - '@polkadot-api/utils@0.1.0': resolution: {integrity: sha512-MXzWZeuGxKizPx2Xf/47wx9sr/uxKw39bVJUptTJdsaQn/TGq+z310mHzf1RCGvC1diHM8f593KrnDgc9oNbJA==} - '@polkadot/api-augment@10.13.1': - resolution: {integrity: sha512-IAKaCp19QxgOG4HKk9RAgUgC/VNVqymZ2GXfMNOZWImZhxRIbrK+raH5vN2MbWwtVHpjxyXvGsd1RRhnohI33A==} - engines: {node: '>=18'} - - '@polkadot/api-augment@12.4.2': - resolution: {integrity: sha512-BkG2tQpUUO0iUm65nSqP8hwHkNfN8jQw8apqflJNt9H8EkEL6v7sqwbLvGqtlxM9wzdxbg7lrWp3oHg4rOP31g==} - engines: {node: '>=18'} - - '@polkadot/api-augment@14.1.1': - resolution: {integrity: sha512-n6aexVgdlHfh3d12qFYpooxzS9yjKq/oxLNXKvhpV3CMg36Hlq4ULDdtI6L3sB8I3nwdBEWaXyBvbpKvPZGUxQ==} - engines: {node: '>=18'} - - '@polkadot/api-augment@14.2.2': - resolution: {integrity: sha512-hSp5lh8VrEAoSLfQBgShiByTLcc+1xwoUO593Zuz8Rr/juOovNV3RDv4EgM55GGelQrhpYQ2+sreo6OiJX1BWg==} - engines: {node: '>=18'} - - '@polkadot/api-base@10.13.1': - resolution: {integrity: sha512-Okrw5hjtEjqSMOG08J6qqEwlUQujTVClvY1/eZkzKwNzPelWrtV6vqfyJklB7zVhenlxfxqhZKKcY7zWSW/q5Q==} + '@polkadot/api-augment@14.3.1': + resolution: {integrity: sha512-PE6DW+8kRhbnGKn7qCF7yM6eEt/kqrY8bh1i0RZcPY9QgwXW4bZZrtMK4WssX6Z70NTEoOW6xHYIjc7gFZuz8g==} engines: {node: '>=18'} - '@polkadot/api-base@12.4.2': - resolution: {integrity: sha512-XYI7Po8i6C4lYZah7Xo0v7zOAawBUfkmtx0YxsLY/665Sup8oqzEj666xtV9qjBzR9coNhQonIFOn+9fh27Ncw==} + '@polkadot/api-augment@15.3.1': + resolution: {integrity: sha512-FIS9ZRxcQHmP25ODXEFnnl9N/BRbtpkMG59qSTIicFdhU8bWThqiD66q93KcdEJ/an3YKxXFvcOJLB2uFHyULg==} engines: {node: '>=18'} - '@polkadot/api-base@14.1.1': - resolution: {integrity: sha512-gMj0uIlAv6RkRMzmhl61KU1/Pcadrarxn0lBdDTcVua3KEWLuncI+VbiN3cEd/aW6QUTgcDFpppm8nfwD9eVzQ==} + '@polkadot/api-base@14.3.1': + resolution: {integrity: sha512-GZT6rTpT3HYZ/C3rLPjoX3rX3DOxNG/zgts+jKjNrCumAeZkVq5JErKIX8/3f2TVaE2Kbqniy3d1TH/AL4HBPA==} engines: {node: '>=18'} - '@polkadot/api-base@14.2.2': - resolution: {integrity: sha512-oti5rb1tVqFhVA53pTAB+Ga7c5050jpxLi0uo4E5iq3kxv/i5cLOaC+zaCpCmWlwqTHxVJxZ5dO/VywmwqbGqA==} + '@polkadot/api-base@15.3.1': + resolution: {integrity: sha512-hRf+LDZ7XT3ptKqsE1pEIwrkN0d5MELB0QcSJUD/Gmts/9u0r53rp3ehijL2YO7JWT/9AY7Lk3ZXaAAKHbqObg==} engines: {node: '>=18'} - '@polkadot/api-cli@0.60.1': - resolution: {integrity: sha512-FtgYJK22zuTQhUrPDrA+X+9prZ+OGKROOXo0SQt49QL4LyXgpix90un7LVy/dSxdOi0b6ly7OQx4w+z9oRB0Mg==} + '@polkadot/api-cli@0.62.1': + resolution: {integrity: sha512-60Rn8Z4i5+pTdeUEKmHe5nm+GVJ6FjDTdmYfuMzBphMicYkriL7Y1z6Wd0xPol1KDctSbt/3g6fzTsJE1VdTlA==} engines: {node: '>=18'} hasBin: true - '@polkadot/api-derive@10.13.1': - resolution: {integrity: sha512-ef0H0GeCZ4q5Om+c61eLLLL29UxFC2/u/k8V1K2JOIU+2wD5LF7sjAoV09CBMKKHfkLenRckVk2ukm4rBqFRpg==} - engines: {node: '>=18'} - - '@polkadot/api-derive@12.4.2': - resolution: {integrity: sha512-R0AMANEnqs5AiTaiQX2FXCxUlOibeDSgqlkyG1/0KDsdr6PO/l3dJOgEO+grgAwh4hdqzk4I9uQpdKxG83f2Gw==} - engines: {node: '>=18'} - - '@polkadot/api-derive@14.2.2': - resolution: {integrity: sha512-o7f0YNq/Fwfi+cm+ZMiH3adHaJupxbVGqsbrsj9az2cyn5Y31lcIVcuCz7eM5e89aWnn5WPfQsgaq7XV0OD19g==} - engines: {node: '>=18'} - - '@polkadot/api@10.13.1': - resolution: {integrity: sha512-YrKWR4TQR5CDyGkF0mloEUo7OsUA+bdtENpJGOtNavzOQUDEbxFE0PVzokzZfVfHhHX2CojPVmtzmmLxztyJkg==} + '@polkadot/api-derive@14.3.1': + resolution: {integrity: sha512-PhqUEJCY54vXtIaoYqGUtJY06wHd/K0cBmBz9yCLxp8UZkLoGWhfJRTruI25Jnucf9awS5cZKYqbsoDrL09Oqg==} engines: {node: '>=18'} - '@polkadot/api@12.4.2': - resolution: {integrity: sha512-e1KS048471iBWZU10TJNEYOZqLO+8h8ajmVqpaIBOVkamN7tmacBxmHgq0+IA8VrGxjxtYNa1xF5Sqrg76uBEg==} + '@polkadot/api-derive@15.3.1': + resolution: {integrity: sha512-iXnImBQC67sZNTDbSggAbRv7zKub0jBY7+ACxT3DL0PTQxe6/5OXPBZqz6UKK6E22dOok/D3WpZNT6rlf5dF6g==} engines: {node: '>=18'} - '@polkadot/api@14.2.2': - resolution: {integrity: sha512-MACWbU8TpGvjPF7FFw7K1IkpjTzq3CtQritlB7pmI+QCezJo3f0KV0v3jYhO1jCSii3F62L9XOaoS7c6tfU8kw==} + '@polkadot/api@14.3.1': + resolution: {integrity: sha512-ZBKSXEVJa1S1bnmpnA7KT/fX3sJDIJOdVD9Hp3X+G73yvXzuK5k1Mn5z9bD/AcMs/HAGcbuYU+b9+b9IByH9YQ==} engines: {node: '>=18'} - '@polkadot/keyring@12.6.2': - resolution: {integrity: sha512-O3Q7GVmRYm8q7HuB3S0+Yf/q/EB2egKRRU3fv9b3B7V+A52tKzA+vIwEmNVaD1g5FKW9oB97rmpggs0zaKFqHw==} + '@polkadot/api@15.3.1': + resolution: {integrity: sha512-RPJeAZLDEj9qY+vBL88gNrx5CSxzNw4Ns1v/GEcGIA8ZZ96TQTMTHFTs0jbS8o2oKGuiXlh/q2URviEGyRus8Q==} engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2 - '@polkadot/keyring@13.2.2': - resolution: {integrity: sha512-h4bPU92CALAAC+QOp6+zttuhI5H0GKOUzj1qwnmoPVoWxh21FoekLAXO1YJlsKxciTDdK5OhjdNPOIqcF0GCXA==} + '@polkadot/keyring@13.3.1': + resolution: {integrity: sha512-PT3uG9MqciPyoEz/f23RRMSlht77fo1hZaA1Vbcs1Rz7h7qFC0+7jFI9Ak30EJh9V0I2YugfzqAe3NjjyDxlvw==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1 - '@polkadot/networks@12.6.2': - resolution: {integrity: sha512-1oWtZm1IvPWqvMrldVH6NI2gBoCndl5GEwx7lAuQWGr7eNL+6Bdc5K3Z9T0MzFvDGoi2/CBqjX9dRKo39pDC/w==} + '@polkadot/networks@13.3.1': + resolution: {integrity: sha512-g/0OmCMUrbbW4RQ/xajTYd2SMJvFKY4kmMvpxtNN57hWQpY7c5oDXSz57jGH2uwvcBWeDfaNokcS+9hJL1RBcA==} engines: {node: '>=18'} - '@polkadot/networks@13.2.1': - resolution: {integrity: sha512-T04RTY+w8X+JB0MNAIrSFr3WX/eIUrCyYTsuf6jpg89efubpWYvfchiLTDcQrA2KfdqTBl3bQ1wgKqmWMMKNzg==} + '@polkadot/rpc-augment@14.3.1': + resolution: {integrity: sha512-Z8Hp8fFHwFCiTX0bBCDqCZ4U26wLIJl1NRSjJTsAr+SS68pYZBDGCwhKztpKGqndk1W1akRUaxrkGqYdIFmspQ==} engines: {node: '>=18'} - '@polkadot/networks@13.2.2': - resolution: {integrity: sha512-di3dLB9BcLQ9ARcDe/nizl7jZZnQbQlxB8kXtAXqTIVFtshtKT+zYcji6dTX7xX9/O9tZB7qnrvuIuI0MkwJ5A==} + '@polkadot/rpc-augment@15.3.1': + resolution: {integrity: sha512-HIf+ke2IdAJ46erKKOXvn/Qirb3j/wbu5SozfvVi926OjTOGD9WbE0SfwyBixtLSqJKvLBEcuhDNaQBwO5aPeA==} engines: {node: '>=18'} - '@polkadot/rpc-augment@10.13.1': - resolution: {integrity: sha512-iLsWUW4Jcx3DOdVrSHtN0biwxlHuTs4QN2hjJV0gd0jo7W08SXhWabZIf9mDmvUJIbR7Vk+9amzvegjRyIf5+A==} + '@polkadot/rpc-core@14.3.1': + resolution: {integrity: sha512-FV2NPhFwFxmX8LqibDcGc6IKTBqmvwr7xwF2OA60Br4cX+AQzMSVpFlfQcETll+0M+LnRhqGKGkP0EQWXaSowA==} engines: {node: '>=18'} - '@polkadot/rpc-augment@12.4.2': - resolution: {integrity: sha512-IEco5pnso+fYkZNMlMAN5i4XAxdXPv0PZ0HNuWlCwF/MmRvWl8pq5JFtY1FiByHEbeuHwMIUhHM5SDKQ85q9Hg==} + '@polkadot/rpc-core@15.3.1': + resolution: {integrity: sha512-iiqMIVU8LLb3qSx/8OLgH2xE8bYTmdoXtgmoW23pAnPLxA13M6MaKtggG6zLYZezrB/WnZFJOlWmvxZ8klXJNQ==} engines: {node: '>=18'} - '@polkadot/rpc-augment@14.1.1': - resolution: {integrity: sha512-jeDYDepe6IOzgUFD+vLEuLrWGqw/dJIcxb8uf/YpnsvzA8kbPZx3BcIhboIpI8HpdKdn6f5mflSTVgDUpUPmNg==} + '@polkadot/rpc-provider@14.3.1': + resolution: {integrity: sha512-NF/Z/7lzT+jp5LZzC49g+YIjRzXVI0hFag3+B+4zh6E/kKADdF59EHj2Im4LDhRGOnEO9AE4H6/UjNEbZ94JtA==} engines: {node: '>=18'} - '@polkadot/rpc-augment@14.2.2': - resolution: {integrity: sha512-chnl3+iGWNz4l2o1BICV8BwJH+TgeScC4TU2xPOV/2e5iNTENBkbNwP1OOO+84blK0sRpgKQsWx8n9gnosEjZg==} + '@polkadot/rpc-provider@15.3.1': + resolution: {integrity: sha512-rYnzrwN1FA4q7xLDjwhzbsLBXYeNz+HVPfbqTQHyuo4uqUeEsiOxGzXomSsTOEcV97Clod5S3GYPzVqaZjzwQQ==} engines: {node: '>=18'} - '@polkadot/rpc-core@10.13.1': - resolution: {integrity: sha512-eoejSHa+/tzHm0vwic62/aptTGbph8vaBpbvLIK7gd00+rT813ROz5ckB1CqQBFB23nHRLuzzX/toY8ID3xrKw==} + '@polkadot/types-augment@14.3.1': + resolution: {integrity: sha512-SC4M6TBlgCglNz+gRbvfoVRDz0Vyeev6v0HeAdw0H6ayEW4BXUdo5bFr0092bdS5uTrEPgiSyUry5TJs2KoXig==} engines: {node: '>=18'} - '@polkadot/rpc-core@12.4.2': - resolution: {integrity: sha512-yaveqxNcmyluyNgsBT5tpnCa/md0CGbOtRK7K82LWsz7gsbh0x80GBbJrQGxsUybg1gPeZbO1q9IigwA6fY8ag==} + '@polkadot/types-augment@15.3.1': + resolution: {integrity: sha512-p3CCbEDh9o33OX9Olgt6bSJeabYptGHnn7aevUYl7xQ1OenAqn7wTJ61ClXt/ZtE2ikP7HUGMtbh5FjlJI+YSA==} engines: {node: '>=18'} - '@polkadot/rpc-core@14.1.1': - resolution: {integrity: sha512-rfV1ArJcAZQ3lzAM9P+yIaXN720yJysNGy14FxupLsFsvzowEnEPs4khS2HgnX6j1RqkElw6va/ZVhOsLPhy9w==} + '@polkadot/types-codec@14.3.1': + resolution: {integrity: sha512-3y3RBGd+8ebscGbNUOjqUjnRE7hgicgid5LtofHK3O1EDcJQJnYBDkJ7fOAi96CDgHsg+f2FWWkBWEPgpOQoMQ==} engines: {node: '>=18'} - '@polkadot/rpc-core@14.2.2': - resolution: {integrity: sha512-EmkBH1pJ/Id0ImO1UsTUj4R4aug7O2a5pEBgGdU+2kvAKvbAgoWpOkQIit8IXfrvl2jkc8Mzsj06/lRcKMiCDA==} + '@polkadot/types-codec@15.3.1': + resolution: {integrity: sha512-nqLFAZoHnwKFNj8ZRBF2X8O+yZR9y0r6tgOgyj3LPF8r0JvakVwmZ2C1AIAFr6YO6LeFfZh4kkkqRGgReGEIMA==} engines: {node: '>=18'} - '@polkadot/rpc-provider@10.13.1': - resolution: {integrity: sha512-oJ7tatVXYJ0L7NpNiGd69D558HG5y5ZDmH2Bp9Dd4kFTQIiV8A39SlWwWUPCjSsen9lqSvvprNLnG/VHTpenbw==} + '@polkadot/types-create@14.3.1': + resolution: {integrity: sha512-F4EBvF3Zvym0xrkAA5Yz01IAVMepMV3w2Dwd0C9IygEAQ5sYLLPHmf72/aXn+Ag+bSyT2wlJHpDc+nEBXNQ3Gw==} engines: {node: '>=18'} - '@polkadot/rpc-provider@12.4.2': - resolution: {integrity: sha512-cAhfN937INyxwW1AdjABySdCKhC7QCIONRDHDea1aLpiuxq/w+QwjxauR9fCNGh3lTaAwwnmZ5WfFU2PtkDMGQ==} + '@polkadot/types-create@15.3.1': + resolution: {integrity: sha512-+bI6hisydb/9jTpFfgYDNF1QE6Ic7VJubbFovnml4uzWpN0sKrh4TFpYP9aja+qRug7gseHzzwAMXZn4GZ0kCw==} engines: {node: '>=18'} - '@polkadot/rpc-provider@14.1.1': - resolution: {integrity: sha512-BY0H1CC7M360uHXU2IfFdgFmcdjmIz6NxPmXRhrT3QGFmJSHuFevjTbIFlPG7YBK5ivochLrcISelRr7HKXYOg==} + '@polkadot/types-known@14.3.1': + resolution: {integrity: sha512-58b3Yc7+sxwNjs8axmrA9OCgnxmEKIq7XCH2VxSgLqTeqbohVtxwUSCW/l8NPrq1nxzj4J2sopu0PPg8/++q4g==} engines: {node: '>=18'} - '@polkadot/rpc-provider@14.2.2': - resolution: {integrity: sha512-Vx7mrN3NyE5fzvw+cm0BjtH6MRdrc9PeqFiJbbpvvPfK4Vi416RMNgYFw9f611bfQTYjr8oO9CTQI8s7knqN3A==} + '@polkadot/types-known@15.3.1': + resolution: {integrity: sha512-lDXu+lE4Fz16TdPQTdiWhKL1iWKKcrcwL/iphZPFx5tYY3KjfCFQ/NVBR9y9pph1rqkJn12KY+185gxbGXrMJw==} engines: {node: '>=18'} - '@polkadot/types-augment@10.13.1': - resolution: {integrity: sha512-TcrLhf95FNFin61qmVgOgayzQB/RqVsSg9thAso1Fh6pX4HSbvI35aGPBAn3SkA6R+9/TmtECirpSNLtIGFn0g==} + '@polkadot/types-support@14.3.1': + resolution: {integrity: sha512-MfVe4iIOJIfBr+gj8Lu8gwIvhnO6gDbG5LeaKAjY6vS6Oh0y5Ztr8NdMIl8ccSpoyt3LqIXjfApeGzHiLzr6bw==} engines: {node: '>=18'} - '@polkadot/types-augment@12.4.2': - resolution: {integrity: sha512-3fDCOy2BEMuAtMYl4crKg76bv/0pDNEuzpAzV4EBUMIlJwypmjy5sg3gUPCMcA+ckX3xb8DhkWU4ceUdS7T2KQ==} + '@polkadot/types-support@15.3.1': + resolution: {integrity: sha512-wm1l52d+yIiHXCxxKMNy328MkRF83XsqtME70i9ngNls3Afm1+Bugl4Yzl4P9bwU8IdUB8/cBXr75hoL4e6h8A==} engines: {node: '>=18'} - '@polkadot/types-augment@14.1.1': - resolution: {integrity: sha512-A73JCwmg5ZuYVHw1k7Lxx4MjjRwQd6Yw/VaRIPqjk3iyG5r9RyFJgsJ7xRafDlKFG0AJ5c6ixvlaHOnBrEAzpQ==} + '@polkadot/types@14.3.1': + resolution: {integrity: sha512-O748XgCLDQYxS5nQ6TJSqW88oC4QNIoNVlWZC2Qq4SmEXuSzaNHQwSVtdyPRJCCc4Oi1DCQvGui4O+EukUl7HA==} engines: {node: '>=18'} - '@polkadot/types-augment@14.2.2': - resolution: {integrity: sha512-FFHgP4TAhJ6XL25FFjT1S2Ai2wfnoGL2VMhYS8TS5XFxH3+1c0DeA4DgPmewJtbDxKwl232UUKzrpJ8jUpCAJg==} + '@polkadot/types@15.3.1': + resolution: {integrity: sha512-vdrTDmoGPy9uJcUYA0gvcflg//VQV4dZ7yDZZ9D5eBQ76OHyGJhnB+AfZX0vy/1ARxGkMQj8MxcUvVjkOOCmnA==} engines: {node: '>=18'} - '@polkadot/types-codec@10.13.1': - resolution: {integrity: sha512-AiQ2Vv2lbZVxEdRCN8XSERiWlOWa2cTDLnpAId78EnCtx4HLKYQSd+Jk9Y4BgO35R79mchK4iG+w6gZ+ukG2bg==} - engines: {node: '>=18'} - - '@polkadot/types-codec@12.4.2': - resolution: {integrity: sha512-DiPGRFWtVMepD9i05eC3orSbGtpN7un/pXOrXu0oriU+oxLkpvZH68ZsPNtJhKdQy03cAYtvB8elJOFJZYqoqQ==} - engines: {node: '>=18'} - - '@polkadot/types-codec@14.1.1': - resolution: {integrity: sha512-O6UyTjEAeZMf/uthF3NjCy4tiAeWjj4tfTEWTx2Z65fNTTbXx1Mq5YBBOWsvzBXGBFK35C8buYa4l8cgQS9MoA==} - engines: {node: '>=18'} - - '@polkadot/types-codec@14.2.2': - resolution: {integrity: sha512-ri1U50VQx2FvBK8iJr5kwA8lIg1zlv7OI0x7th35kHtfRr9icPOp2x1jNsOamfObs7OekTsl7+5Uq33Tl0JR+g==} - engines: {node: '>=18'} - - '@polkadot/types-create@10.13.1': - resolution: {integrity: sha512-Usn1jqrz35SXgCDAqSXy7mnD6j4RvB4wyzTAZipFA6DGmhwyxxIgOzlWQWDb+1PtPKo9vtMzen5IJ+7w5chIeA==} - engines: {node: '>=18'} - - '@polkadot/types-create@12.4.2': - resolution: {integrity: sha512-nOpeAKZLdSqNMfzS3waQXgyPPaNt8rUHEmR5+WNv6c/Ke/vyf710wjxiTewfp0wpBgtdrimlgG4DLX1J9Ms1LA==} - engines: {node: '>=18'} - - '@polkadot/types-create@14.1.1': - resolution: {integrity: sha512-t4gr5NKU8zZetnDvoRnlioEZlkYybBSql+Ep3mQUiJosF5w/SCN6EKV0GPqs0fB1ovqhDQSnwe2xoRjHsiHObA==} - engines: {node: '>=18'} - - '@polkadot/types-create@14.2.2': - resolution: {integrity: sha512-WN1o/zVhVHHjutaivrpd33bc9EllpDFYVtRMZPOeL7GUy4MjpQGcmT0Vce0lARIKKla8RACQWLIEmkbX3UYxrw==} - engines: {node: '>=18'} - - '@polkadot/types-known@10.13.1': - resolution: {integrity: sha512-uHjDW05EavOT5JeU8RbiFWTgPilZ+odsCcuEYIJGmK+es3lk/Qsdns9Zb7U7NJl7eJ6OWmRtyrWsLs+bU+jjIQ==} - engines: {node: '>=18'} - - '@polkadot/types-known@12.4.2': - resolution: {integrity: sha512-bvhO4KQu/dgPmdwQXsweSMRiRisJ7Bp38lZVEIFykfd2qYyRW3OQEbIPKYpx9raD+fDATU0bTiKQnELrSGhYXw==} - engines: {node: '>=18'} - - '@polkadot/types-known@14.2.2': - resolution: {integrity: sha512-inaLBPIB5W0QpKB2/ZtrO61zQDwlOa8aRSGl4XbjEcse0I6nRkFkvEpLf1nJMdJg0aKi3P6pQiW/mkVQsaHLYQ==} - engines: {node: '>=18'} - - '@polkadot/types-support@10.13.1': - resolution: {integrity: sha512-4gEPfz36XRQIY7inKq0HXNVVhR6HvXtm7yrEmuBuhM86LE0lQQBkISUSgR358bdn2OFSLMxMoRNoh3kcDvdGDQ==} - engines: {node: '>=18'} - - '@polkadot/types-support@12.4.2': - resolution: {integrity: sha512-bz6JSt23UEZ2eXgN4ust6z5QF9pO5uNH7UzCP+8I/Nm85ZipeBYj2Wu6pLlE3Hw30hWZpuPxMDOKoEhN5bhLgw==} - engines: {node: '>=18'} - - '@polkadot/types-support@14.1.1': - resolution: {integrity: sha512-DJgJ/2n3eWFlgH1K/U7G4NSbgdsx4Lb1fK4yVlZ9t81lJWWiAeb/FodHJb8jlQ6Jezx5S71fRripXfg+FdyCDA==} - engines: {node: '>=18'} - - '@polkadot/types-support@14.2.2': - resolution: {integrity: sha512-K0k8tzmB0qsNQ7kRQSWqKTv0W/HNzs5P3vc9VwAzzjJeJFzrLjafSrE+WftYm8Vqvc4XgAQ94vwMJNhZ40TuHQ==} - engines: {node: '>=18'} - - '@polkadot/types@10.13.1': - resolution: {integrity: sha512-Hfvg1ZgJlYyzGSAVrDIpp3vullgxrjOlh/CSThd/PI4TTN1qHoPSFm2hs77k3mKkOzg+LrWsLE0P/LP2XddYcw==} - engines: {node: '>=18'} - - '@polkadot/types@12.4.2': - resolution: {integrity: sha512-ivYtt7hYcRvo69ULb1BJA9BE1uefijXcaR089Dzosr9+sMzvsB1yslNQReOq+Wzq6h6AQj4qex6qVqjWZE6Z4A==} - engines: {node: '>=18'} - - '@polkadot/types@14.1.1': - resolution: {integrity: sha512-bT1wxu2wZsKR8Ih1PHu4SqptOF+MQbh21e+NJVZkIsrjQz1DvKkdcW4G/s0i0vX/QIjnXTJFC84vMzr5cxJm8Q==} - engines: {node: '>=18'} - - '@polkadot/types@14.2.2': - resolution: {integrity: sha512-iu1UEYdr2BfZr/URizopupvIt4Kmr35As1b2pPmxCqMjyIMdAklRgz6s+Z08GH8RGcA0CPHaA8YJRBiwfb/8dg==} - engines: {node: '>=18'} - - '@polkadot/util-crypto@12.6.2': - resolution: {integrity: sha512-FEWI/dJ7wDMNN1WOzZAjQoIcCP/3vz3wvAp5QQm+lOrzOLj0iDmaIGIcBkz8HVm3ErfSe/uKP0KS4jgV/ib+Mg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 12.6.2 - - '@polkadot/util-crypto@13.2.2': - resolution: {integrity: sha512-C4vl07XC43vE6egd9LmSe0uOc7hAvBq6CIoILk5ZB95ABNBQSHOrS1pHugW4rJgVUiZgv8sdl+twmgisuSsSfg==} + '@polkadot/util-crypto@13.3.1': + resolution: {integrity: sha512-FU6yf3IY++DKlf0eqO9/obe2y1zuZ5rbqRs75fyOME/5VXio1fA3GIpW7aFphyneFRd78G8QLh8kn0oIwBGMNg==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 13.2.2 - - '@polkadot/util@12.6.2': - resolution: {integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==} - engines: {node: '>=18'} - - '@polkadot/util@13.2.1': - resolution: {integrity: sha512-+zCyQQeW4llWD5yhvPAawekRpdAU3LZPLD0j3v8nJjsG9cAyiYGZjsVxDFPpD0yixS1Hl70937bPR46761NG9g==} - engines: {node: '>=18'} - - '@polkadot/util@13.2.2': - resolution: {integrity: sha512-zhsGtR0J2a0ODesJNbCYqEXOL2rhPrmv1F6OB2JMdho7iOrkONck3PZaoT/Y0JF7IlHjGV8K6yrw7k9KUtFrEA==} - engines: {node: '>=18'} + '@polkadot/util': 13.3.1 - '@polkadot/wasm-bridge@7.3.2': - resolution: {integrity: sha512-AJEXChcf/nKXd5Q/YLEV5dXQMle3UNT7jcXYmIffZAo/KI394a+/24PaISyQjoNC0fkzS1Q8T5pnGGHmXiVz2g==} + '@polkadot/util@13.3.1': + resolution: {integrity: sha512-5crLP/rUZOJzuo/W8t73J8PxpibJ5vrxY57rR6V+mIpCZd1ORiw0wxeHcV5F9Adpn7yJyuGBwxPbueNR5Rr1Zw==} engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' '@polkadot/wasm-bridge@7.4.1': resolution: {integrity: sha512-tdkJaV453tezBxhF39r4oeG0A39sPKGDJmN81LYLf+Fihb7astzwju+u75BRmDrHZjZIv00un3razJEWCxze6g==} @@ -1088,25 +841,12 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-crypto-asmjs@7.3.2': - resolution: {integrity: sha512-QP5eiUqUFur/2UoF2KKKYJcesc71fXhQFLT3D4ZjG28Mfk2ZPI0QNRUfpcxVQmIUpV5USHg4geCBNuCYsMm20Q==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/wasm-crypto-asmjs@7.4.1': resolution: {integrity: sha512-pwU8QXhUW7IberyHJIQr37IhbB6DPkCG5FhozCiNTq4vFBsFPjm9q8aZh7oX1QHQaiAZa2m2/VjIVE+FHGbvHQ==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' - '@polkadot/wasm-crypto-init@7.3.2': - resolution: {integrity: sha512-FPq73zGmvZtnuJaFV44brze3Lkrki3b4PebxCy9Fplw8nTmisKo9Xxtfew08r0njyYh+uiJRAxPCXadkC9sc8g==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-crypto-init@7.4.1': resolution: {integrity: sha512-AVka33+f7MvXEEIGq5U0dhaA2SaXMXnxVCQyhJTaCnJ5bRDj0Xlm3ijwDEQUiaDql7EikbkkRtmlvs95eSUWYQ==} engines: {node: '>=18'} @@ -1114,25 +854,12 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-crypto-wasm@7.3.2': - resolution: {integrity: sha512-15wd0EMv9IXs5Abp1ZKpKKAVyZPhATIAHfKsyoWCEFDLSOA0/K0QGOxzrAlsrdUkiKZOq7uzSIgIDgW8okx2Mw==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/wasm-crypto-wasm@7.4.1': resolution: {integrity: sha512-PE1OAoupFR0ZOV2O8tr7D1FEUAwaggzxtfs3Aa5gr+yxlSOaWUKeqsOYe1KdrcjmZVV3iINEAXxgrbzCmiuONg==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' - '@polkadot/wasm-crypto@7.3.2': - resolution: {integrity: sha512-+neIDLSJ6jjVXsjyZ5oLSv16oIpwp+PxFqTUaZdZDoA2EyFRQB8pP7+qLsMNk+WJuhuJ4qXil/7XiOnZYZ+wxw==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-crypto@7.4.1': resolution: {integrity: sha512-kHN/kF7hYxm1y0WeFLWeWir6oTzvcFmR4N8fJJokR+ajYbdmrafPN+6iLgQVbhZnDdxyv9jWDuRRsDnBx8tPMQ==} engines: {node: '>=18'} @@ -1140,114 +867,41 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-util@7.3.2': - resolution: {integrity: sha512-bmD+Dxo1lTZyZNxbyPE380wd82QsX+43mgCm40boyKrRppXEyQmWT98v/Poc7chLuskYb6X8IQ6lvvK2bGR4Tg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/wasm-util@7.4.1': resolution: {integrity: sha512-RAcxNFf3zzpkr+LX/ItAsvj+QyM56TomJ0xjUMo4wKkHjwsxkz4dWJtx5knIgQz/OthqSDMR59VNEycQeNuXzA==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' - '@polkadot/x-bigint@12.6.2': - resolution: {integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==} - engines: {node: '>=18'} - - '@polkadot/x-bigint@13.2.1': - resolution: {integrity: sha512-NYfH0fKfZFkjE5wOiLmfj+oJFyzSHLJrJt5DmzWwvbhw3dT4Qz2UgBL0i/Ei6REkpOGCXX2DmNbbZBr6sn4f1Q==} - engines: {node: '>=18'} - - '@polkadot/x-bigint@13.2.2': - resolution: {integrity: sha512-9ENDfG2wYqABWhQYYrbjJK0aPBvCqVPiFhBiKgIg6OTSJKJToa4Di9R8NxelF8eJTtz7DIvgf6gZY/jnKfbtWw==} - engines: {node: '>=18'} - - '@polkadot/x-fetch@12.6.2': - resolution: {integrity: sha512-8wM/Z9JJPWN1pzSpU7XxTI1ldj/AfC8hKioBlUahZ8gUiJaOF7K9XEFCrCDLis/A1BoOu7Ne6WMx/vsJJIbDWw==} - engines: {node: '>=18'} - - '@polkadot/x-fetch@13.0.2': - resolution: {integrity: sha512-B/gf9iriUr6za/Ui7zIFBfHz7UBZ68rJEIteWHx1UHRCZPcLqv+hgpev6xIGrkfFljI0/lI7IwtN2qy6HYzFBg==} + '@polkadot/x-bigint@13.3.1': + resolution: {integrity: sha512-ewc708a7LUdrT92v9DsSAIbcJQBn3aR9/LavF/iyMOq5lZJyPXDSjAnskfMs818R3RLCrKVKfs+aKkxt2eqo8g==} engines: {node: '>=18'} - '@polkadot/x-fetch@13.2.1': - resolution: {integrity: sha512-y/JgDRyH4JZN0QzI4V3Hf7Bah2FOOTw7sbmlo/o/3Tt0zjLnCbSvu7Lf1+fKBDksQWpElUBg3nVJrw4HAIiaRQ==} + '@polkadot/x-fetch@13.3.1': + resolution: {integrity: sha512-J+HM42j0KGqdC/eo7vmsdLPz74MR7+0My4km6TG9HGjKqqztwygtenpopPod2SbRnL4nHiEG0wZzpVOW6HN2gw==} engines: {node: '>=18'} - '@polkadot/x-fetch@13.2.2': - resolution: {integrity: sha512-aDhd2kdx3JWvZSU4Ge966C0111CH8pCsDX7+9IsMGaZhjLF1NEo2xDjs+EwfUbSvNk68A4UVeJsXjG+IVor/ug==} + '@polkadot/x-global@13.3.1': + resolution: {integrity: sha512-861TeIw49a3JvkwlUWrddfG+JaUqtFZDsemYxxZIjjcRJLrKOsoKNqHbiHi2OPrwlX8PwAA/wc5I9Q4XRQ7KEg==} engines: {node: '>=18'} - '@polkadot/x-global@12.6.2': - resolution: {integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==} - engines: {node: '>=18'} - - '@polkadot/x-global@13.0.2': - resolution: {integrity: sha512-OoNIXLB5y8vIKpk4R+XmpDPhipNXWSUvEwUnpQT7NAxNLmzgMq1FhbrwBWWPRNHPrQonp7mqxV/X+v5lv1HW/g==} - engines: {node: '>=18'} - - '@polkadot/x-global@13.2.1': - resolution: {integrity: sha512-Q9PZY+Xw9ffBYcJjwMCQfGgFi5QNv4GJ1ZqIuJMQBAcM21fn8vuFMfGC24R1pAAJAaBMPkQ9xh8R2cpu9SIjRg==} - engines: {node: '>=18'} - - '@polkadot/x-global@13.2.2': - resolution: {integrity: sha512-a+iKD7JXxDRtYVo0bp1+HHlaem6MkUHU2yE0cx2e97p9x+IKyNEY58D0L5P66kszLvhFw+t3Jq+qHIj0+2YxkQ==} - engines: {node: '>=18'} - - '@polkadot/x-randomvalues@12.6.2': - resolution: {integrity: sha512-Vr8uG7rH2IcNJwtyf5ebdODMcr0XjoCpUbI91Zv6AlKVYOGKZlKLYJHIwpTaKKB+7KPWyQrk4Mlym/rS7v9feg==} + '@polkadot/x-randomvalues@13.3.1': + resolution: {integrity: sha512-GIb0au3vIX2U/DRH0PRckM+1I4EIbU8PLX1roGJgN1MAYKWiylJTKPVoBMafMM87o8qauOevJ46uYB/qlfbiWg==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 12.6.2 + '@polkadot/util': 13.3.1 '@polkadot/wasm-util': '*' - '@polkadot/x-randomvalues@13.2.2': - resolution: {integrity: sha512-1UNImkS5PAaGHeIl2DlMjgt2iN7nlclzwrYhmxd0e9Z11RQqavGqi1a02HGREgnUu+wJ7eHmPMVe6K96+cL+aQ==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-util': '*' - - '@polkadot/x-textdecoder@12.6.2': - resolution: {integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==} - engines: {node: '>=18'} - - '@polkadot/x-textdecoder@13.2.1': - resolution: {integrity: sha512-cyKv5T48goBEMsb1lnKrXPpAPXkpWwAa+Ob0w2eEzsjBPzWEeIPMKFuE4VpPRoZ/Sn6v3hwz98WS8ueCO5MXyQ==} - engines: {node: '>=18'} - - '@polkadot/x-textdecoder@13.2.2': - resolution: {integrity: sha512-elpIrgdq22yyvt4fzxwb2IRJEpswPVwizzauRipVy3uUmI/lC2f7D7u9jrC554Xy8UrrAPExX1sWJCxZA8DZ/g==} + '@polkadot/x-textdecoder@13.3.1': + resolution: {integrity: sha512-g2R9O1p0ZsNDhZ3uEBZh6fQaVLlo3yFr0YNqt15v7e9lBI4APvTJ202EINlo2jB5lz/R438/BdjEA3AL+0zUtQ==} engines: {node: '>=18'} - '@polkadot/x-textencoder@12.6.2': - resolution: {integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==} + '@polkadot/x-textencoder@13.3.1': + resolution: {integrity: sha512-DnHLUdoKDYxekfxopuUuPB+j5Mu7Jemejcduu5gz3/89GP/sYPAu0CAVbq9B+hK1yGjBBj31eA4wkAV1oktYmg==} engines: {node: '>=18'} - '@polkadot/x-textencoder@13.2.1': - resolution: {integrity: sha512-tugNLn/9UbA1n64mMWliWI1j5kAnnNIHgJ8khbMKyrHS5K+m8BP/avUrlg3u5ukM1RB1cCoJB9uWcT4Sovf65Q==} - engines: {node: '>=18'} - - '@polkadot/x-textencoder@13.2.2': - resolution: {integrity: sha512-nxlNvK5h0KPCaAE/cx92e8JCPAlmFGbuXC9l03C1Ei1wAnOcWuJWRIk2qOkCEYkpT+G0jITPN4dgk634+pBQSw==} - engines: {node: '>=18'} - - '@polkadot/x-ws@12.6.2': - resolution: {integrity: sha512-cGZWo7K5eRRQCRl2LrcyCYsrc3lRbTlixZh3AzgU8uX4wASVGRlNWi/Hf4TtHNe1ExCDmxabJzdIsABIfrr7xw==} - engines: {node: '>=18'} - - '@polkadot/x-ws@13.0.2': - resolution: {integrity: sha512-nC5e2eY5D5ZR5teQOB7ib+dWLbmNws86cTz3BjKCalSMBBIn6i3V9ElgABpierBmnSJe9D94EyrH1BxdVfDxUg==} - engines: {node: '>=18'} - - '@polkadot/x-ws@13.2.1': - resolution: {integrity: sha512-bLw4AL1UlzhveOPj5p3PPbDlrq+B7QbuNQ7F4UBVtEkaZZKJzhviE0mYGrObaguv1ib2tIIrYc7FNqmH6KpRzQ==} - engines: {node: '>=18'} - - '@polkadot/x-ws@13.2.2': - resolution: {integrity: sha512-WEygcHPB55cKLiNoejJ0Lq3Z1fb4hUO3FmYTXdpHgk0xIOfYDrr7rTlI2cZ4Nb32MofeehN/ZStmEW5Edib6TQ==} + '@polkadot/x-ws@13.3.1': + resolution: {integrity: sha512-ytqkC7FwVs4BlzNFAmPMFp+xD1KIdMMP/mvCSOrnxjlsyM5DVGop4x4c2ZgDUBmrFqmIiVkWDfMIZeOxui2OLQ==} engines: {node: '>=18'} '@protobufjs/aspromise@1.1.2': @@ -1497,24 +1151,13 @@ packages: '@substrate/connect@0.8.11': resolution: {integrity: sha512-ofLs1PAO9AtDdPbdyTYj217Pe+lBfTLltdHDs3ds8no0BseoLeAGxpz1mHfi7zB4IxI3YyAiLjH6U8cw4pj4Nw==} - - '@substrate/connect@0.8.8': - resolution: {integrity: sha512-zwaxuNEVI9bGt0rT8PEJiXOyebLIo6QN1SyiAHRPBOl6g3Sy0KKdSN8Jmyn++oXhVRD8aIe75/V8ZkS81T+BPQ==} deprecated: versions below 1.x are no longer maintained - '@substrate/light-client-extension-helpers@0.0.4': - resolution: {integrity: sha512-vfKcigzL0SpiK+u9sX6dq2lQSDtuFLOxIJx2CKPouPEHIs8C+fpsufn52r19GQn+qDhU8POMPHOVoqLktj8UEA==} - peerDependencies: - smoldot: 2.x - '@substrate/light-client-extension-helpers@1.0.0': resolution: {integrity: sha512-TdKlni1mBBZptOaeVrKnusMg/UBpWUORNDv5fdCaJklP4RJiFOzBCrzC+CyVI5kQzsXBisZ+2pXm+rIjS38kHg==} peerDependencies: smoldot: 2.x - '@substrate/ss58-registry@1.49.0': - resolution: {integrity: sha512-leW6Ix4LD7XgvxT7+aobPWSw+WvPcN2Rxof1rmd0mNC5t2n99k1N7UNEvz7YEFSOUeHWmKIY7F5q8KeIqYoHfA==} - '@substrate/ss58-registry@1.51.0': resolution: {integrity: sha512-TWDurLiPxndFgKjVavCniytBIw+t4ViOi7TYp9h/D0NMmkEc9klFTo+827eyEJ0lELpqO207Ey7uGxUa+BS1jQ==} @@ -1534,15 +1177,6 @@ packages: '@tsconfig/node16@1.0.4': resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - '@typechain/ethers-v5@10.2.1': - resolution: {integrity: sha512-n3tQmCZjRE6IU4h6lqUGiQ1j866n5MTCBJreNEHHVWXa2u9GJTaeYyU1/k+1qLutkyw+sS6VAN+AbeiTqsxd/A==} - peerDependencies: - '@ethersproject/abi': ^5.0.0 - '@ethersproject/providers': ^5.0.0 - ethers: ^5.1.3 - typechain: ^8.1.1 - typescript: '>=4.3.0' - '@typechain/ethers-v6@0.5.1': resolution: {integrity: sha512-F+GklO8jBWlsaVV+9oHaPh5NJdd6rAKN4tklGfInX1Q7h0xPgVLP39Jl3eCulPB5qexI71ZFHwbljx4ZXNfouA==} peerDependencies: @@ -1550,12 +1184,6 @@ packages: typechain: ^8.3.2 typescript: '>=4.7.0' - '@types/bn.js@4.11.6': - resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} - - '@types/bn.js@5.1.5': - resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==} - '@types/bn.js@5.1.6': resolution: {integrity: sha512-Xh8vSwUeMKeYYrj3cX4lGQgFSF/N03r+tv4AiLl1SucqV+uTQpxRcnM8AkXKHwYP9ZPXOYXRr2KPXpVlIvqh9w==} @@ -1583,14 +1211,11 @@ packages: '@types/node-cron@3.0.11': resolution: {integrity: sha512-0ikrnug3/IyneSHqCBeslAhlK2aBfYek1fGo4bP4QnZPmiqSGRK+Oy7ZMisLWkesffJvQ1cqAcBnJC+8+nxIAg==} - '@types/node@18.15.13': - resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} - '@types/node@18.19.45': resolution: {integrity: sha512-VZxPKNNhjKmaC1SUYowuXSRSMGyQGmQjvvA1xE4QZ0xce2kLtEhPDS+kqpCPBZYgqblCLQ2DAjSzmgCM5auvhA==} - '@types/pbkdf2@3.1.2': - resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==} + '@types/node@22.7.5': + resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} '@types/prettier@2.7.3': resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} @@ -1613,12 +1238,6 @@ packages: '@types/ws@8.5.3': resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} - '@types/yargs-parser@21.0.3': - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - - '@types/yargs@17.0.33': - resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@5.62.0': resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1677,22 +1296,19 @@ packages: resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@ungap/promise-all-settled@1.1.2': - resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==} - '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@zombienet/cli@1.3.109': - resolution: {integrity: sha512-JxvXP4zpfMgbWLFn4gDohsSsGtlCLQfjxq91UAwEqth0mL81cg2qplT+exjvG4FQnCuWWM6JxfNWkrVWGlJkMQ==} + '@zombienet/cli@1.3.118': + resolution: {integrity: sha512-eFjfyeN9MBw5G8+rPGOLTonRCMv+rmqTqx3sAwHOjsnxEaJ/Bk2fQfmyDES80GHBVUGZC9ZQJRnewjNwe48fTw==} engines: {node: '>=18'} hasBin: true - '@zombienet/dsl-parser-wrapper@0.1.10': - resolution: {integrity: sha512-2r2SjanMcNTQiiwTtj/TRO89ek4KoIKGKhgcdHm8+uXPVWuU3tIh/unN8+m51Jnm2jhCLkQQwa5aidvSC02wOg==} + '@zombienet/dsl-parser-wrapper@0.1.11': + resolution: {integrity: sha512-gUDuFLMjB30ghUFWeOIP4i7S+XthPik07tkmg0EJR5Jm2WWAfHP7zaaPFGrxBFlsCwlgLlbDOLRvNfKUNMXnfg==} - '@zombienet/orchestrator@0.0.90': - resolution: {integrity: sha512-2LPrg0+zSwznaPkKfY6u76/88LWmSUen7R13tLNUoagGRIPZVdQ72bRduYTW/oFBI9S9ei906OkRP2OzyxWz/Q==} + '@zombienet/orchestrator@0.0.97': + resolution: {integrity: sha512-rBID1rFq8JV0mOnksvXADk5QRjfp1ZES0nQUBBLYjY/un7Le60wbSuQCUi7/Zxm8qUSfeH7CE0U5aTXDfdBVGw==} engines: {node: '>=18'} '@zombienet/utils@0.0.25': @@ -1768,18 +1384,10 @@ packages: ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} - ansi-colors@4.1.1: - resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} - engines: {node: '>=6'} - ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} - ansi-regex@3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} - ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -1877,9 +1485,6 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - base-x@3.0.10: - resolution: {integrity: sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ==} - base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} @@ -1915,9 +1520,6 @@ packages: resolution: {integrity: sha512-kUTatQb/mBd8uhvdLrUkouGDBUQiJaIOvPlptUwOWp6MFqih4d1MiVf0m3ATxfZSzu+LjW/awFeABltYa62uIA==} engines: {node: '>=8'} - blakejs@1.2.1: - resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} - bn.js@4.11.6: resolution: {integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==} @@ -1950,15 +1552,6 @@ packages: browser-stdout@1.3.1: resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} - browserify-aes@1.2.0: - resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} - - bs58@4.0.1: - resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} - - bs58check@2.1.2: - resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==} - buffer-alloc-unsafe@1.1.0: resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==} @@ -1971,15 +1564,9 @@ packages: buffer-reverse@1.0.1: resolution: {integrity: sha512-M87YIUBsZ6N924W57vDwT/aOu8hw7ZgdByz6ijksLjmHJELBASmYTTlNHRgjE+pTsT9oJXGaDSgqqwfdHotDUg==} - buffer-xor@1.0.3: - resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} - buffer@6.0.3: resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - c-kzg@1.1.3: - resolution: {integrity: sha512-tnsnRIWIYEDnYXjXK6fC86dcnSfulUb6LPiTcWX/jJe5X3iJcPxrUG0KIw/AqW+xZNTSBKVMNv3hOixaOEn2/w==} - cache-base@1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} engines: {node: '>=0.10.0'} @@ -2000,14 +1587,6 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - chai-as-promised@7.1.2: - resolution: {integrity: sha512-aBDHZxRzYnUYuIAIPBH2s511DjlKPzXNlXSGFC8CwmroWQLfrW0LtE1nK3MAwwNhJPa9raEjNCmRoFpG0Hurdw==} - peerDependencies: - chai: '>= 2.1.2 < 6' - - chai-bignumber@3.1.0: - resolution: {integrity: sha512-omxEc80jAU+pZwRmoWr3aEzeLad4JW3iBhLRQlgISvghBdIxrMT7mVAGsDz4WSyCkKowENshH2j9OABAhld7QQ==} - chai@4.5.0: resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} engines: {node: '>=4'} @@ -2027,10 +1606,6 @@ packages: resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies - chokidar@3.5.1: - resolution: {integrity: sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==} - engines: {node: '>= 8.10.0'} - chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} @@ -2135,9 +1710,6 @@ packages: create-hash@1.2.0: resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} - create-hmac@1.1.7: - resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} - create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} @@ -2151,6 +1723,9 @@ packages: crypto-js@3.3.0: resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} + crypto-js@4.2.0: + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} + css-tree@2.3.1: resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} @@ -2175,15 +1750,6 @@ packages: supports-color: optional: true - debug@4.3.1: - resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.3.6: resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} engines: {node: '>=6.0'} @@ -2246,10 +1812,6 @@ packages: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} - diff@5.0.0: - resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} - engines: {node: '>=0.3.1'} - diff@5.2.0: resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} engines: {node: '>=0.3.1'} @@ -2331,10 +1893,6 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true - esm@3.2.25: - resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} - engines: {node: '>=6'} - espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -2362,27 +1920,14 @@ packages: ethereum-bloom-filters@1.2.0: resolution: {integrity: sha512-28hyiE7HVsWubqhpVLVmZXFd4ITeHi+BUu05o9isf0GUpMtzBUi+8/gFrGaGYzvGAJQmJ3JKj77Mk9G98T84rA==} - ethereum-cryptography@0.1.3: - resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==} - ethereum-cryptography@2.2.1: resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==} - ethereumjs-abi@0.6.8: - resolution: {integrity: sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==} - - ethereumjs-util@6.2.1: - resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==} - - ethereumjs-util@7.1.5: - resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==} - engines: {node: '>=10.0.0'} - ethers@5.7.2: resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} - ethers@6.13.3: - resolution: {integrity: sha512-/DzbZOLVtoO4fKvvQwpEucHAQgIwBGWuRvBdwE/lMXgXvvHHTSkn7XqAQ2b+gjJzZDJjWA9OD05bVceVOsBHbg==} + ethers@6.13.5: + resolution: {integrity: sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==} engines: {node: '>=14.0.0'} ethjs-unit@0.1.6: @@ -2408,9 +1953,6 @@ packages: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} - evp_bytestokey@1.0.3: - resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} - execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} @@ -2473,9 +2015,6 @@ packages: fastify-plugin@4.5.1: resolution: {integrity: sha512-stRHYGeuqpEZTL1Ef0Ovr2ltazUT9g844X5z/zEBFLG8RYlpDiOCIG+ATvYEp+/zmc7sN29mcIMp8gvYplYPIQ==} - fastify@4.24.3: - resolution: {integrity: sha512-6HHJ+R2x2LS3y1PqxnwEIjOTZxFl+8h4kSC/TuDPXtA+v2JnV9yEtOsNSKK1RMD7sIR2y1ZsA4BEFaid/cK5pg==} - fastify@4.28.1: resolution: {integrity: sha512-kFWUtpNr4i7t5vY2EJPCN2KgMVpuqfU4NjnJNCgiNB900oiDeYqaNDRcAfeBbOF5hGixixxcKnOU4KN9z6QncQ==} @@ -2504,10 +2043,6 @@ packages: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} - find-my-way@7.7.0: - resolution: {integrity: sha512-+SrHpvQ52Q6W9f3wJoJBbAQULJuNEEQwBvlvYwACDhBTLOTMiQ0HYWh4+vC3OivGP2ENcTI1oKlFA2OepJNjhQ==} - engines: {node: '>=14'} - find-my-way@8.2.0: resolution: {integrity: sha512-HdWXgFYc6b1BJcOBDBwjqWuHJj1WYiqrxSh25qtU4DabpMFdj/gSunNBQb83t+8Zt67D7CXEzJWTkxaShMTMOA==} engines: {node: '>=14'} @@ -2587,7 +2122,7 @@ packages: resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} engines: {node: '>= 4.0'} os: [darwin] - deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 + deprecated: Upgrade to fsevents v2 to mitigate potential security issues fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} @@ -2635,10 +2170,6 @@ packages: resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} engines: {node: '>=10.13.0'} - glob@7.1.6: - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} - deprecated: Glob versions prior to v9 are no longer supported - glob@7.1.7: resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} deprecated: Glob versions prior to v9 are no longer supported @@ -2673,10 +2204,6 @@ packages: graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - growl@1.10.5: - resolution: {integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==} - engines: {node: '>=4.x'} - has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} @@ -2833,10 +2360,6 @@ packages: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} - is-fullwidth-code-point@2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} - is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -2929,10 +2452,6 @@ packages: js-sha3@0.8.0: resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} - js-yaml@4.0.0: - resolution: {integrity: sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==} - hasBin: true - js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true @@ -3044,10 +2563,6 @@ packages: lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - log-symbols@4.0.0: - resolution: {integrity: sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==} - engines: {node: '>=10'} - log-symbols@4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} @@ -3102,6 +2617,10 @@ packages: resolution: {integrity: sha512-TostQBiwYRIwSE5++jGmacu3ODcKAgqb0Y/pnIohXS7sWxh1gCkSptbmF1a43faehRDpcHf7J/kv0Ml2D/zblQ==} engines: {node: '>= 7.6.0'} + merkletreejs@0.4.1: + resolution: {integrity: sha512-W2VSHeGTdAnWtedee+pgGn7SHvncMdINnMeHAaXrfarSaMNLff/pm7RCr/QXYxN6XzJFgJZY+28ejO0lAosW4A==} + engines: {node: '>= 7.6.0'} + micro-ftch@0.3.1: resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==} @@ -3135,9 +2654,6 @@ packages: minimalistic-crypto-utils@1.0.1: resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} - minimatch@3.0.4: - resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} - minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -3169,11 +2685,6 @@ packages: engines: {node: '>= 14.0.0'} hasBin: true - mocha@8.4.0: - resolution: {integrity: sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==} - engines: {node: '>= 10.12.0'} - hasBin: true - mock-socket@9.3.1: resolution: {integrity: sha512-qxBgB7Qa2sEQgHFjj0dSigq7fX4k6Saisd5Nelwp2q8mlbAFh5dHV9JTTlF8viYJLSSWgMCZFUom8PJcMNBoJw==} engines: {node: '>= 8'} @@ -3193,11 +2704,6 @@ packages: nan@2.20.0: resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} - nanoid@3.1.20: - resolution: {integrity: sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - nanomatch@1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} engines: {node: '>=0.10.0'} @@ -3243,9 +2749,6 @@ packages: node-addon-api@2.0.2: resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} - node-addon-api@5.1.0: - resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} - node-cron@3.0.3: resolution: {integrity: sha512-dOal67//nohNgYWb+nWmg5dkFdIwDm8EpeGYMekPMrngV3637lqnX0lbUcCtgibHTz6SEz7DAIjKvKDFYCnO1A==} engines: {node: '>=6.0.0'} @@ -3385,10 +2888,6 @@ packages: pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - pbkdf2@3.1.2: - resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} - engines: {node: '>=0.12'} - peer-id@0.16.0: resolution: {integrity: sha512-EmL7FurFUduU9m1PS9cfJ5TAuCvxKQ7DKpfx3Yj6IKWyBRtosriFuOag/l3ni/dtPgPLwiA4R9IvpL7hsDLJuQ==} engines: {node: '>=15.0.0'} @@ -3400,16 +2899,9 @@ packages: pino-abstract-transport@1.2.0: resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} - pino-std-serializers@6.2.2: - resolution: {integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==} - pino-std-serializers@7.0.0: resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==} - pino@8.21.0: - resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==} - hasBin: true - pino@9.3.2: resolution: {integrity: sha512-WtARBjgZ7LNEkrGWxMBN/jvlFiE17LTbBoH0konmBU684Kd0uIiDwBXlcTCW7iJnA6HfIKwUssS/2AC6cDEanw==} hasBin: true @@ -3438,9 +2930,6 @@ packages: process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - process-warning@2.3.2: - resolution: {integrity: sha512-n9wh8tvBe5sFmsqlg+XQhaQLumwpqoAUruLwjCopgTmUBjJ/fjtBsJzKleCaIGBOMXYEhp1YfKl4d7rJ5ZKJGA==} - process-warning@3.0.0: resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==} @@ -3507,10 +2996,6 @@ packages: resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} engines: {node: '>=0.10'} - readdirp@3.5.0: - resolution: {integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==} - engines: {node: '>=8.10.0'} - readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} @@ -3572,10 +3057,6 @@ packages: resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} engines: {node: '>=0.12'} - ret@0.2.2: - resolution: {integrity: sha512-M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ==} - engines: {node: '>=4'} - ret@0.4.3: resolution: {integrity: sha512-0f4Memo5QP7WQyUEAYUO3esD/XjOc3Zjjg5CPsAq1p8sIu0XPeMbHJemKA0BO7tV0X7+A0FoEpbmHXWxPyD3wQ==} engines: {node: '>=10'} @@ -3626,9 +3107,6 @@ packages: safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safe-regex2@2.0.0: - resolution: {integrity: sha512-PaUSFsUaNNuKwkBijoAPHAK6/eM6VirvyPWlZ7BAQy4D+hCvh4B6lIG+nPdhbFfIbP+gTGBcrdsOaUs0F+ZBOQ==} - safe-regex2@3.1.0: resolution: {integrity: sha512-RAAZAGbap2kBfbVhvmnTFv73NWLMvDGOITFYTZBAaY8eR+Ir4ef7Up/e7amo+y1+AH+3PtLkrt9mvcTsG9LXug==} @@ -3675,9 +3153,6 @@ packages: engines: {node: '>=10'} hasBin: true - serialize-javascript@5.0.1: - resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} - serialize-javascript@6.0.2: resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} @@ -3714,9 +3189,6 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - smoldot@2.0.22: - resolution: {integrity: sha512-B50vRgTY6v3baYH6uCgL15tfaag5tcS2o/P5q1OiXcKGv1axZDfz2dzzMuIkVpyMR2ug11F6EAtQlmYBQd292g==} - smoldot@2.0.26: resolution: {integrity: sha512-F+qYmH4z2s2FK+CxGj8moYcd1ekSIKH8ywkdqlOz88Dat35iB1DIYL11aILN46YSGMzQW/lbJNS307zBSDN5Ig==} @@ -3737,9 +3209,6 @@ packages: engines: {node: '>=8.0.0'} hasBin: true - sonic-boom@3.8.1: - resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==} - sonic-boom@4.0.1: resolution: {integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==} @@ -3778,10 +3247,6 @@ packages: resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - string-width@2.1.1: - resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} - engines: {node: '>=4'} - string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -3792,10 +3257,6 @@ packages: string_decoder@1.3.0: resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - strip-ansi@4.0.0: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} - engines: {node: '>=4'} - strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -3845,9 +3306,6 @@ packages: text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - thread-stream@2.7.0: - resolution: {integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==} - thread-stream@3.1.0: resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==} @@ -3940,15 +3398,18 @@ packages: tslib@2.0.1: resolution: {integrity: sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==} - tslib@2.4.0: - resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - tslib@2.6.3: resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + tslib@2.7.0: + resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} + tslib@2.8.0: resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==} + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + tsutils@3.21.0: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} @@ -4007,11 +3468,6 @@ packages: peerDependencies: typescript: '>=4.3.0' - typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - typescript@5.5.4: resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} engines: {node: '>=14.17'} @@ -4031,6 +3487,9 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + union-value@1.0.1: resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} engines: {node: '>=0.10.0'} @@ -4215,9 +3674,6 @@ packages: engines: {node: '>= 8'} hasBin: true - wide-align@1.1.3: - resolution: {integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==} - word-wrap@1.2.5: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} @@ -4226,9 +3682,6 @@ packages: resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} engines: {node: '>=8.0.0'} - workerpool@6.1.0: - resolution: {integrity: sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==} - workerpool@6.5.1: resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==} @@ -4303,10 +3756,6 @@ packages: engines: {node: '>= 14'} hasBin: true - yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} - yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} @@ -4356,13 +3805,13 @@ snapshots: '@aws-sdk/types': 3.609.0 '@aws-sdk/util-locate-window': 3.568.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-crypto/sha256-js@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 '@aws-sdk/types': 3.609.0 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-crypto/supports-web-crypto@5.2.0': dependencies: @@ -4463,7 +3912,7 @@ snapshots: '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.0 transitivePeerDependencies: - aws-crt @@ -4551,7 +4000,7 @@ snapshots: '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.0 transitivePeerDependencies: - aws-crt @@ -4566,7 +4015,7 @@ snapshots: '@smithy/types': 3.3.0 '@smithy/util-middleware': 3.0.3 fast-xml-parser: 4.4.1 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/credential-provider-env@3.620.1': dependencies: @@ -4618,7 +4067,7 @@ snapshots: '@smithy/property-provider': 3.1.3 '@smithy/shared-ini-file-loader': 3.1.4 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' @@ -4658,20 +4107,20 @@ snapshots: '@aws-sdk/types': 3.609.0 '@smithy/protocol-http': 4.1.0 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/middleware-logger@3.609.0': dependencies: '@aws-sdk/types': 3.609.0 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/middleware-recursion-detection@3.620.0': dependencies: '@aws-sdk/types': 3.609.0 '@smithy/protocol-http': 4.1.0 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/middleware-user-agent@3.632.0': dependencies: @@ -4679,7 +4128,7 @@ snapshots: '@aws-sdk/util-endpoints': 3.632.0 '@smithy/protocol-http': 4.1.0 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/region-config-resolver@3.614.0': dependencies: @@ -4688,7 +4137,7 @@ snapshots: '@smithy/types': 3.3.0 '@smithy/util-config-provider': 3.0.0 '@smithy/util-middleware': 3.0.3 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/token-providers@3.614.0(@aws-sdk/client-sso-oidc@3.635.0(@aws-sdk/client-sts@3.635.0))': dependencies: @@ -4702,14 +4151,14 @@ snapshots: '@aws-sdk/types@3.609.0': dependencies: '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/util-endpoints@3.632.0': dependencies: '@aws-sdk/types': 3.609.0 '@smithy/types': 3.3.0 '@smithy/util-endpoints': 2.0.5 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/util-locate-window@3.568.0': dependencies: @@ -4720,14 +4169,14 @@ snapshots: '@aws-sdk/types': 3.609.0 '@smithy/types': 3.3.0 bowser: 2.11.0 - tslib: 2.6.3 + tslib: 2.8.0 '@aws-sdk/util-user-agent-node@3.614.0': dependencies: '@aws-sdk/types': 3.609.0 '@smithy/node-config-provider': 3.1.4 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@colors/colors@1.5.0': optional: true @@ -5208,33 +4657,12 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@polkadot-api/client@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0(rxjs@7.8.1)': - dependencies: - '@polkadot-api/metadata-builders': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/substrate-bindings': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/substrate-client': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/utils': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - rxjs: 7.8.1 - optional: true - - '@polkadot-api/json-rpc-provider-proxy@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - optional: true - '@polkadot-api/json-rpc-provider-proxy@0.1.0': optional: true '@polkadot-api/json-rpc-provider@0.0.1': optional: true - '@polkadot-api/json-rpc-provider@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - optional: true - - '@polkadot-api/metadata-builders@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - dependencies: - '@polkadot-api/substrate-bindings': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/utils': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - optional: true - '@polkadot-api/metadata-builders@0.3.2': dependencies: '@polkadot-api/substrate-bindings': 0.6.0 @@ -5250,14 +4678,6 @@ snapshots: rxjs: 7.8.1 optional: true - '@polkadot-api/substrate-bindings@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - dependencies: - '@noble/hashes': 1.4.0 - '@polkadot-api/utils': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@scure/base': 1.1.7 - scale-ts: 1.6.0 - optional: true - '@polkadot-api/substrate-bindings@0.6.0': dependencies: '@noble/hashes': 1.4.0 @@ -5266,82 +4686,48 @@ snapshots: scale-ts: 1.6.0 optional: true - '@polkadot-api/substrate-client@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - optional: true - '@polkadot-api/substrate-client@0.1.4': dependencies: '@polkadot-api/json-rpc-provider': 0.0.1 '@polkadot-api/utils': 0.1.0 optional: true - '@polkadot-api/utils@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - optional: true - '@polkadot-api/utils@0.1.0': optional: true - '@polkadot/api-augment@10.13.1': + '@polkadot/api-augment@14.3.1': dependencies: - '@polkadot/api-base': 10.13.1 - '@polkadot/rpc-augment': 10.13.1 - '@polkadot/types': 10.13.1 - '@polkadot/types-augment': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 + '@polkadot/api-base': 14.3.1 + '@polkadot/rpc-augment': 14.3.1 + '@polkadot/types': 14.3.1 + '@polkadot/types-augment': 14.3.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/util': 13.3.1 tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-augment@12.4.2': + '@polkadot/api-augment@15.3.1': dependencies: - '@polkadot/api-base': 12.4.2 - '@polkadot/rpc-augment': 12.4.2 - '@polkadot/types': 12.4.2 - '@polkadot/types-augment': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 + '@polkadot/api-base': 15.3.1 + '@polkadot/rpc-augment': 15.3.1 + '@polkadot/types': 15.3.1 + '@polkadot/types-augment': 15.3.1 + '@polkadot/types-codec': 15.3.1 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-augment@14.1.1': + '@polkadot/api-base@14.3.1': dependencies: - '@polkadot/api-base': 14.1.1 - '@polkadot/rpc-augment': 14.1.1 - '@polkadot/types': 14.1.1 - '@polkadot/types-augment': 14.1.1 - '@polkadot/types-codec': 14.1.1 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-augment@14.2.2': - dependencies: - '@polkadot/api-base': 14.2.2 - '@polkadot/rpc-augment': 14.2.2 - '@polkadot/types': 14.2.2 - '@polkadot/types-augment': 14.2.2 - '@polkadot/types-codec': 14.2.2 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-base@10.13.1': - dependencies: - '@polkadot/rpc-core': 10.13.1 - '@polkadot/types': 10.13.1 - '@polkadot/util': 12.6.2 + '@polkadot/rpc-core': 14.3.1 + '@polkadot/types': 14.3.1 + '@polkadot/util': 13.3.1 rxjs: 7.8.1 tslib: 2.8.0 transitivePeerDependencies: @@ -5349,84 +4735,43 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-base@12.4.2': + '@polkadot/api-base@15.3.1': dependencies: - '@polkadot/rpc-core': 12.4.2 - '@polkadot/types': 12.4.2 - '@polkadot/util': 13.2.2 + '@polkadot/rpc-core': 15.3.1 + '@polkadot/types': 15.3.1 + '@polkadot/util': 13.3.1 rxjs: 7.8.1 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-base@14.1.1': + '@polkadot/api-cli@0.62.1': dependencies: - '@polkadot/rpc-core': 14.1.1 - '@polkadot/types': 14.1.1 - '@polkadot/util': 13.2.2 - rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-base@14.2.2': - dependencies: - '@polkadot/rpc-core': 14.2.2 - '@polkadot/types': 14.2.2 - '@polkadot/util': 13.2.2 - rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-cli@0.60.1': - dependencies: - '@polkadot/api': 14.2.2 - '@polkadot/api-augment': 14.1.1 - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types': 14.2.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - tslib: 2.8.0 + '@polkadot/api': 15.3.1 + '@polkadot/api-augment': 15.3.1 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + tslib: 2.8.1 yargs: 17.7.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-derive@10.13.1': - dependencies: - '@polkadot/api': 10.13.1 - '@polkadot/api-augment': 10.13.1 - '@polkadot/api-base': 10.13.1 - '@polkadot/rpc-core': 10.13.1 - '@polkadot/types': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-derive@12.4.2': + '@polkadot/api-derive@14.3.1': dependencies: - '@polkadot/api': 12.4.2 - '@polkadot/api-augment': 12.4.2 - '@polkadot/api-base': 12.4.2 - '@polkadot/rpc-core': 12.4.2 - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/api': 14.3.1 + '@polkadot/api-augment': 14.3.1 + '@polkadot/api-base': 14.3.1 + '@polkadot/rpc-core': 14.3.1 + '@polkadot/types': 14.3.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) rxjs: 7.8.1 tslib: 2.8.0 transitivePeerDependencies: @@ -5434,63 +4779,39 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-derive@14.2.2': + '@polkadot/api-derive@15.3.1': dependencies: - '@polkadot/api': 14.2.2 - '@polkadot/api-augment': 14.2.2 - '@polkadot/api-base': 14.2.2 - '@polkadot/rpc-core': 14.2.2 - '@polkadot/types': 14.2.2 - '@polkadot/types-codec': 14.2.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/api': 15.3.1 + '@polkadot/api-augment': 15.3.1 + '@polkadot/api-base': 15.3.1 + '@polkadot/rpc-core': 15.3.1 + '@polkadot/types': 15.3.1 + '@polkadot/types-codec': 15.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) rxjs: 7.8.1 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api@10.13.1': - dependencies: - '@polkadot/api-augment': 10.13.1 - '@polkadot/api-base': 10.13.1 - '@polkadot/api-derive': 10.13.1 - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/rpc-augment': 10.13.1 - '@polkadot/rpc-core': 10.13.1 - '@polkadot/rpc-provider': 10.13.1 - '@polkadot/types': 10.13.1 - '@polkadot/types-augment': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/types-create': 10.13.1 - '@polkadot/types-known': 10.13.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - eventemitter3: 5.0.1 - rxjs: 7.8.1 - tslib: 2.6.3 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api@12.4.2': - dependencies: - '@polkadot/api-augment': 12.4.2 - '@polkadot/api-base': 12.4.2 - '@polkadot/api-derive': 12.4.2 - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/rpc-augment': 12.4.2 - '@polkadot/rpc-core': 12.4.2 - '@polkadot/rpc-provider': 12.4.2 - '@polkadot/types': 12.4.2 - '@polkadot/types-augment': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/types-create': 12.4.2 - '@polkadot/types-known': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/api@14.3.1': + dependencies: + '@polkadot/api-augment': 14.3.1 + '@polkadot/api-base': 14.3.1 + '@polkadot/api-derive': 14.3.1 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/rpc-augment': 14.3.1 + '@polkadot/rpc-core': 14.3.1 + '@polkadot/rpc-provider': 14.3.1 + '@polkadot/types': 14.3.1 + '@polkadot/types-augment': 14.3.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/types-create': 14.3.1 + '@polkadot/types-known': 14.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) eventemitter3: 5.0.1 rxjs: 7.8.1 tslib: 2.8.0 @@ -5499,140 +4820,72 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api@14.2.2': - dependencies: - '@polkadot/api-augment': 14.2.2 - '@polkadot/api-base': 14.2.2 - '@polkadot/api-derive': 14.2.2 - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/rpc-augment': 14.2.2 - '@polkadot/rpc-core': 14.2.2 - '@polkadot/rpc-provider': 14.2.2 - '@polkadot/types': 14.2.2 - '@polkadot/types-augment': 14.2.2 - '@polkadot/types-codec': 14.2.2 - '@polkadot/types-create': 14.2.2 - '@polkadot/types-known': 14.2.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/api@15.3.1': + dependencies: + '@polkadot/api-augment': 15.3.1 + '@polkadot/api-base': 15.3.1 + '@polkadot/api-derive': 15.3.1 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/rpc-augment': 15.3.1 + '@polkadot/rpc-core': 15.3.1 + '@polkadot/rpc-provider': 15.3.1 + '@polkadot/types': 15.3.1 + '@polkadot/types-augment': 15.3.1 + '@polkadot/types-codec': 15.3.1 + '@polkadot/types-create': 15.3.1 + '@polkadot/types-known': 15.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) eventemitter3: 5.0.1 rxjs: 7.8.1 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/keyring@12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)': + '@polkadot/keyring@13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)': dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) tslib: 2.8.0 - '@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': + '@polkadot/networks@13.3.1': dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - tslib: 2.8.0 - - '@polkadot/networks@12.6.2': - dependencies: - '@polkadot/util': 12.6.2 - '@substrate/ss58-registry': 1.49.0 - tslib: 2.8.0 - - '@polkadot/networks@13.2.1': - dependencies: - '@polkadot/util': 13.2.1 - '@substrate/ss58-registry': 1.51.0 - tslib: 2.8.0 - - '@polkadot/networks@13.2.2': - dependencies: - '@polkadot/util': 13.2.2 + '@polkadot/util': 13.3.1 '@substrate/ss58-registry': 1.51.0 tslib: 2.8.0 - '@polkadot/rpc-augment@10.13.1': + '@polkadot/rpc-augment@14.3.1': dependencies: - '@polkadot/rpc-core': 10.13.1 - '@polkadot/types': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 + '@polkadot/rpc-core': 14.3.1 + '@polkadot/types': 14.3.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/util': 13.3.1 tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/rpc-augment@12.4.2': + '@polkadot/rpc-augment@15.3.1': dependencies: - '@polkadot/rpc-core': 12.4.2 - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 + '@polkadot/rpc-core': 15.3.1 + '@polkadot/types': 15.3.1 + '@polkadot/types-codec': 15.3.1 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/rpc-augment@14.1.1': + '@polkadot/rpc-core@14.3.1': dependencies: - '@polkadot/rpc-core': 14.1.1 - '@polkadot/types': 14.1.1 - '@polkadot/types-codec': 14.1.1 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-augment@14.2.2': - dependencies: - '@polkadot/rpc-core': 14.2.2 - '@polkadot/types': 14.2.2 - '@polkadot/types-codec': 14.2.2 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-core@10.13.1': - dependencies: - '@polkadot/rpc-augment': 10.13.1 - '@polkadot/rpc-provider': 10.13.1 - '@polkadot/types': 10.13.1 - '@polkadot/util': 12.6.2 - rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-core@12.4.2': - dependencies: - '@polkadot/rpc-augment': 12.4.2 - '@polkadot/rpc-provider': 12.4.2 - '@polkadot/types': 12.4.2 - '@polkadot/util': 13.2.2 - rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-core@14.1.1': - dependencies: - '@polkadot/rpc-augment': 14.1.1 - '@polkadot/rpc-provider': 14.1.1 - '@polkadot/types': 14.1.1 - '@polkadot/util': 13.2.2 + '@polkadot/rpc-augment': 14.3.1 + '@polkadot/rpc-provider': 14.3.1 + '@polkadot/types': 14.3.1 + '@polkadot/util': 13.3.1 rxjs: 7.8.1 tslib: 2.8.0 transitivePeerDependencies: @@ -5640,71 +4893,29 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-core@14.2.2': + '@polkadot/rpc-core@15.3.1': dependencies: - '@polkadot/rpc-augment': 14.2.2 - '@polkadot/rpc-provider': 14.2.2 - '@polkadot/types': 14.2.2 - '@polkadot/util': 13.2.2 + '@polkadot/rpc-augment': 15.3.1 + '@polkadot/rpc-provider': 15.3.1 + '@polkadot/types': 15.3.1 + '@polkadot/util': 13.3.1 rxjs: 7.8.1 - tslib: 2.8.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-provider@10.13.1': - dependencies: - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/types': 10.13.1 - '@polkadot/types-support': 10.13.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - '@polkadot/x-fetch': 12.6.2 - '@polkadot/x-global': 12.6.2 - '@polkadot/x-ws': 12.6.2 - eventemitter3: 5.0.1 - mock-socket: 9.3.1 - nock: 13.5.5 - tslib: 2.8.0 - optionalDependencies: - '@substrate/connect': 0.8.8 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-provider@12.4.2': - dependencies: - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types': 12.4.2 - '@polkadot/types-support': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@polkadot/x-fetch': 13.0.2 - '@polkadot/x-global': 13.2.1 - '@polkadot/x-ws': 13.0.2 - eventemitter3: 5.0.1 - mock-socket: 9.3.1 - nock: 13.5.5 - tslib: 2.8.0 - optionalDependencies: - '@substrate/connect': 0.8.11 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/rpc-provider@14.1.1': + '@polkadot/rpc-provider@14.3.1': dependencies: - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types': 14.1.1 - '@polkadot/types-support': 14.1.1 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@polkadot/x-fetch': 13.2.1 - '@polkadot/x-global': 13.2.1 - '@polkadot/x-ws': 13.2.1 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 14.3.1 + '@polkadot/types-support': 14.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + '@polkadot/x-fetch': 13.3.1 + '@polkadot/x-global': 13.3.1 + '@polkadot/x-ws': 13.3.1 eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.5 @@ -5716,20 +4927,20 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-provider@14.2.2': + '@polkadot/rpc-provider@15.3.1': dependencies: - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types': 14.2.2 - '@polkadot/types-support': 14.2.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@polkadot/x-fetch': 13.2.2 - '@polkadot/x-global': 13.2.2 - '@polkadot/x-ws': 13.2.2 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.3.1 + '@polkadot/types-support': 15.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + '@polkadot/x-fetch': 13.3.1 + '@polkadot/x-global': 13.3.1 + '@polkadot/x-ws': 13.3.1 eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.5 - tslib: 2.8.0 + tslib: 2.8.1 optionalDependencies: '@substrate/connect': 0.8.11 transitivePeerDependencies: @@ -5737,446 +4948,196 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/types-augment@10.13.1': - dependencies: - '@polkadot/types': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-augment@12.4.2': + '@polkadot/types-augment@14.3.1': dependencies: - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 + '@polkadot/types': 14.3.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/util': 13.3.1 tslib: 2.8.0 - '@polkadot/types-augment@14.1.1': + '@polkadot/types-augment@15.3.1': dependencies: - '@polkadot/types': 14.1.1 - '@polkadot/types-codec': 14.1.1 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 + '@polkadot/types': 15.3.1 + '@polkadot/types-codec': 15.3.1 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/types-augment@14.2.2': + '@polkadot/types-codec@14.3.1': dependencies: - '@polkadot/types': 14.2.2 - '@polkadot/types-codec': 14.2.2 - '@polkadot/util': 13.2.2 + '@polkadot/util': 13.3.1 + '@polkadot/x-bigint': 13.3.1 tslib: 2.8.0 - '@polkadot/types-codec@10.13.1': + '@polkadot/types-codec@15.3.1': dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/x-bigint': 12.6.2 - tslib: 2.6.3 + '@polkadot/util': 13.3.1 + '@polkadot/x-bigint': 13.3.1 + tslib: 2.8.1 - '@polkadot/types-codec@12.4.2': + '@polkadot/types-create@14.3.1': dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/x-bigint': 13.2.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/util': 13.3.1 tslib: 2.8.0 - '@polkadot/types-codec@14.1.1': + '@polkadot/types-create@15.3.1': dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/x-bigint': 13.2.1 - tslib: 2.8.0 + '@polkadot/types-codec': 15.3.1 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/types-codec@14.2.2': + '@polkadot/types-known@14.3.1': dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/x-bigint': 13.2.2 + '@polkadot/networks': 13.3.1 + '@polkadot/types': 14.3.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/types-create': 14.3.1 + '@polkadot/util': 13.3.1 tslib: 2.8.0 - '@polkadot/types-create@10.13.1': + '@polkadot/types-known@15.3.1': dependencies: - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-create@12.4.2': - dependencies: - '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - - '@polkadot/types-create@14.1.1': - dependencies: - '@polkadot/types-codec': 14.1.1 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - - '@polkadot/types-create@14.2.2': - dependencies: - '@polkadot/types-codec': 14.2.2 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - - '@polkadot/types-known@10.13.1': - dependencies: - '@polkadot/networks': 12.6.2 - '@polkadot/types': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/types-create': 10.13.1 - '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-known@12.4.2': - dependencies: - '@polkadot/networks': 13.2.1 - '@polkadot/types': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/types-create': 12.4.2 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - - '@polkadot/types-known@14.2.2': - dependencies: - '@polkadot/networks': 13.2.2 - '@polkadot/types': 14.2.2 - '@polkadot/types-codec': 14.2.2 - '@polkadot/types-create': 14.2.2 - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - - '@polkadot/types-support@10.13.1': - dependencies: - '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/types-support@12.4.2': - dependencies: - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - - '@polkadot/types-support@14.1.1': - dependencies: - '@polkadot/util': 13.2.2 - tslib: 2.8.0 + '@polkadot/networks': 13.3.1 + '@polkadot/types': 15.3.1 + '@polkadot/types-codec': 15.3.1 + '@polkadot/types-create': 15.3.1 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/types-support@14.2.2': + '@polkadot/types-support@14.3.1': dependencies: - '@polkadot/util': 13.2.2 + '@polkadot/util': 13.3.1 tslib: 2.8.0 - '@polkadot/types@10.13.1': + '@polkadot/types-support@15.3.1': dependencies: - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/types-augment': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/types-create': 10.13.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - rxjs: 7.8.1 - tslib: 2.6.3 - - '@polkadot/types@12.4.2': - dependencies: - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types-augment': 12.4.2 - '@polkadot/types-codec': 12.4.2 - '@polkadot/types-create': 12.4.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - rxjs: 7.8.1 - tslib: 2.8.0 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/types@14.1.1': + '@polkadot/types@14.3.1': dependencies: - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types-augment': 14.1.1 - '@polkadot/types-codec': 14.1.1 - '@polkadot/types-create': 14.1.1 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types-augment': 14.3.1 + '@polkadot/types-codec': 14.3.1 + '@polkadot/types-create': 14.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) rxjs: 7.8.1 tslib: 2.8.0 - '@polkadot/types@14.2.2': + '@polkadot/types@15.3.1': dependencies: - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/types-augment': 14.2.2 - '@polkadot/types-codec': 14.2.2 - '@polkadot/types-create': 14.2.2 - '@polkadot/util': 13.2.2 - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types-augment': 15.3.1 + '@polkadot/types-codec': 15.3.1 + '@polkadot/types-create': 15.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) rxjs: 7.8.1 - tslib: 2.8.0 - - '@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2)': - dependencies: - '@noble/curves': 1.5.0 - '@noble/hashes': 1.4.0 - '@polkadot/networks': 12.6.2 - '@polkadot/util': 12.6.2 - '@polkadot/wasm-crypto': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-bigint': 12.6.2 - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) - '@scure/base': 1.1.7 - tslib: 2.8.0 + tslib: 2.8.1 - '@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2)': + '@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1)': dependencies: '@noble/curves': 1.5.0 '@noble/hashes': 1.4.0 - '@polkadot/networks': 13.2.2 - '@polkadot/util': 13.2.2 - '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-bigint': 13.2.2 - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)) + '@polkadot/networks': 13.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-bigint': 13.3.1 + '@polkadot/x-randomvalues': 13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)) '@scure/base': 1.1.7 tslib: 2.8.0 - '@polkadot/util@12.6.2': + '@polkadot/util@13.3.1': dependencies: - '@polkadot/x-bigint': 12.6.2 - '@polkadot/x-global': 12.6.2 - '@polkadot/x-textdecoder': 12.6.2 - '@polkadot/x-textencoder': 12.6.2 + '@polkadot/x-bigint': 13.3.1 + '@polkadot/x-global': 13.3.1 + '@polkadot/x-textdecoder': 13.3.1 + '@polkadot/x-textencoder': 13.3.1 '@types/bn.js': 5.1.6 bn.js: 5.2.1 tslib: 2.8.0 - '@polkadot/util@13.2.1': + '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)))': dependencies: - '@polkadot/x-bigint': 13.2.1 - '@polkadot/x-global': 13.2.1 - '@polkadot/x-textdecoder': 13.2.1 - '@polkadot/x-textencoder': 13.2.1 - '@types/bn.js': 5.1.6 - bn.js: 5.2.1 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-randomvalues': 13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)) tslib: 2.8.0 - '@polkadot/util@13.2.2': + '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.3.1)': dependencies: - '@polkadot/x-bigint': 13.2.2 - '@polkadot/x-global': 13.2.2 - '@polkadot/x-textdecoder': 13.2.2 - '@polkadot/x-textencoder': 13.2.2 - '@types/bn.js': 5.1.6 - bn.js: 5.2.1 + '@polkadot/util': 13.3.1 tslib: 2.8.0 - '@polkadot/wasm-bridge@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': + '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)))': dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + '@polkadot/util': 13.3.1 + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))) + '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-randomvalues': 13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)) tslib: 2.8.0 - '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)))': + '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.3.1)': dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)) + '@polkadot/util': 13.3.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) tslib: 2.8.0 - '@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@12.6.2)': + '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)))': dependencies: - '@polkadot/util': 12.6.2 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))) + '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))) + '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-randomvalues': 13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)) tslib: 2.8.0 - '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.2.2)': + '@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)': dependencies: - '@polkadot/util': 13.2.2 + '@polkadot/util': 13.3.1 tslib: 2.8.0 - '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': + '@polkadot/x-bigint@13.3.1': dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + '@polkadot/x-global': 13.3.1 tslib: 2.8.0 - '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)))': + '@polkadot/x-fetch@13.3.1': dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))) - '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)) - tslib: 2.8.0 - - '@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@12.6.2)': - dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - tslib: 2.8.0 - - '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - tslib: 2.8.0 - - '@polkadot/wasm-crypto@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': - dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-crypto-init': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) - tslib: 2.8.0 - - '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)))': - dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))) - '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))) - '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)) - tslib: 2.8.0 - - '@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)': - dependencies: - '@polkadot/util': 12.6.2 - tslib: 2.8.0 - - '@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2)': - dependencies: - '@polkadot/util': 13.2.2 - tslib: 2.8.0 - - '@polkadot/x-bigint@12.6.2': - dependencies: - '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - - '@polkadot/x-bigint@13.2.1': - dependencies: - '@polkadot/x-global': 13.2.1 - tslib: 2.8.0 - - '@polkadot/x-bigint@13.2.2': - dependencies: - '@polkadot/x-global': 13.2.2 - tslib: 2.8.0 - - '@polkadot/x-fetch@12.6.2': - dependencies: - '@polkadot/x-global': 12.6.2 - node-fetch: 3.3.2 - tslib: 2.8.0 - - '@polkadot/x-fetch@13.0.2': - dependencies: - '@polkadot/x-global': 13.0.2 - node-fetch: 3.3.2 - tslib: 2.8.0 - - '@polkadot/x-fetch@13.2.1': - dependencies: - '@polkadot/x-global': 13.2.1 - node-fetch: 3.3.2 - tslib: 2.8.0 - - '@polkadot/x-fetch@13.2.2': - dependencies: - '@polkadot/x-global': 13.2.2 + '@polkadot/x-global': 13.3.1 node-fetch: 3.3.2 tslib: 2.8.0 - '@polkadot/x-global@12.6.2': - dependencies: - tslib: 2.8.0 - - '@polkadot/x-global@13.0.2': - dependencies: - tslib: 2.8.0 - - '@polkadot/x-global@13.2.1': + '@polkadot/x-global@13.3.1': dependencies: tslib: 2.8.0 - '@polkadot/x-global@13.2.2': + '@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))': dependencies: + '@polkadot/util': 13.3.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-global': 13.3.1 tslib: 2.8.0 - '@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))': + '@polkadot/x-textdecoder@13.3.1': dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-global': 12.6.2 + '@polkadot/x-global': 13.3.1 tslib: 2.8.0 - '@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.2))': + '@polkadot/x-textencoder@13.3.1': dependencies: - '@polkadot/util': 13.2.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) - '@polkadot/x-global': 13.2.2 + '@polkadot/x-global': 13.3.1 tslib: 2.8.0 - '@polkadot/x-textdecoder@12.6.2': + '@polkadot/x-ws@13.3.1': dependencies: - '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - - '@polkadot/x-textdecoder@13.2.1': - dependencies: - '@polkadot/x-global': 13.2.1 - tslib: 2.8.0 - - '@polkadot/x-textdecoder@13.2.2': - dependencies: - '@polkadot/x-global': 13.2.2 - tslib: 2.8.0 - - '@polkadot/x-textencoder@12.6.2': - dependencies: - '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - - '@polkadot/x-textencoder@13.2.1': - dependencies: - '@polkadot/x-global': 13.2.1 - tslib: 2.8.0 - - '@polkadot/x-textencoder@13.2.2': - dependencies: - '@polkadot/x-global': 13.2.2 - tslib: 2.8.0 - - '@polkadot/x-ws@12.6.2': - dependencies: - '@polkadot/x-global': 12.6.2 - tslib: 2.8.0 - ws: 8.18.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - '@polkadot/x-ws@13.0.2': - dependencies: - '@polkadot/x-global': 13.0.2 - tslib: 2.8.0 - ws: 8.18.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - '@polkadot/x-ws@13.2.1': - dependencies: - '@polkadot/x-global': 13.2.1 - tslib: 2.8.0 - ws: 8.18.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - '@polkadot/x-ws@13.2.2': - dependencies: - '@polkadot/x-global': 13.2.2 + '@polkadot/x-global': 13.3.1 tslib: 2.8.0 ws: 8.18.0 transitivePeerDependencies: @@ -6325,7 +5286,7 @@ snapshots: '@smithy/types': 3.3.0 '@smithy/util-config-provider': 3.0.0 '@smithy/util-middleware': 3.0.3 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/core@2.4.0': dependencies: @@ -6338,7 +5299,7 @@ snapshots: '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-middleware': 3.0.3 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/credential-provider-imds@3.2.0': dependencies: @@ -6354,19 +5315,19 @@ snapshots: '@smithy/querystring-builder': 3.0.3 '@smithy/types': 3.3.0 '@smithy/util-base64': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/hash-node@3.0.3': dependencies: '@smithy/types': 3.3.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/invalid-dependency@3.0.3': dependencies: '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/is-array-buffer@2.2.0': dependencies: @@ -6386,13 +5347,13 @@ snapshots: '@smithy/util-middleware': 3.0.3 '@smithy/util-utf8': 3.0.0 fflate: 0.8.1 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/middleware-content-length@3.0.5': dependencies: '@smithy/protocol-http': 4.1.0 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/middleware-endpoint@3.1.0': dependencies: @@ -6402,7 +5363,7 @@ snapshots: '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-middleware': 3.0.3 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/middleware-retry@3.0.15': dependencies: @@ -6413,25 +5374,25 @@ snapshots: '@smithy/types': 3.3.0 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 - tslib: 2.6.3 + tslib: 2.8.0 uuid: 9.0.1 '@smithy/middleware-serde@3.0.3': dependencies: '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/middleware-stack@3.0.3': dependencies: '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/node-config-provider@3.1.4': dependencies: '@smithy/property-provider': 3.1.3 '@smithy/shared-ini-file-loader': 3.1.4 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/node-http-handler@3.1.4': dependencies: @@ -6439,7 +5400,7 @@ snapshots: '@smithy/protocol-http': 4.1.0 '@smithy/querystring-builder': 3.0.3 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/property-provider@3.1.3': dependencies: @@ -6449,7 +5410,7 @@ snapshots: '@smithy/protocol-http@4.1.0': dependencies: '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/querystring-builder@3.0.3': dependencies: @@ -6489,31 +5450,31 @@ snapshots: '@smithy/protocol-http': 4.1.0 '@smithy/types': 3.3.0 '@smithy/util-stream': 3.1.3 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/types@3.3.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/url-parser@3.0.3': dependencies: '@smithy/querystring-parser': 3.0.3 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-base64@3.0.0': dependencies: '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-body-length-browser@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-body-length-node@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-buffer-from@2.2.0': dependencies: @@ -6535,7 +5496,7 @@ snapshots: '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 bowser: 2.11.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-defaults-mode-node@3.0.15': dependencies: @@ -6545,13 +5506,13 @@ snapshots: '@smithy/property-provider': 3.1.3 '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-endpoints@2.0.5': dependencies: '@smithy/node-config-provider': 3.1.4 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-hex-encoding@3.0.0': dependencies: @@ -6560,13 +5521,13 @@ snapshots: '@smithy/util-middleware@3.0.3': dependencies: '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-retry@3.0.3': dependencies: '@smithy/service-error-classification': 3.0.3 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-stream@3.1.3': dependencies: @@ -6591,13 +5552,13 @@ snapshots: '@smithy/util-utf8@3.0.0': dependencies: '@smithy/util-buffer-from': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.0 '@smithy/util-waiter@3.1.2': dependencies: '@smithy/abort-controller': 3.1.1 '@smithy/types': 3.3.0 - tslib: 2.6.3 + tslib: 2.8.0 '@substrate/connect-extension-protocol@2.0.0': optional: true @@ -6616,29 +5577,6 @@ snapshots: - utf-8-validate optional: true - '@substrate/connect@0.8.8': - dependencies: - '@substrate/connect-extension-protocol': 2.0.0 - '@substrate/connect-known-chains': 1.3.0 - '@substrate/light-client-extension-helpers': 0.0.4(smoldot@2.0.22) - smoldot: 2.0.22 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - optional: true - - '@substrate/light-client-extension-helpers@0.0.4(smoldot@2.0.22)': - dependencies: - '@polkadot-api/client': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0(rxjs@7.8.1) - '@polkadot-api/json-rpc-provider': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/json-rpc-provider-proxy': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/substrate-client': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@substrate/connect-extension-protocol': 2.0.0 - '@substrate/connect-known-chains': 1.3.0 - rxjs: 7.8.1 - smoldot: 2.0.22 - optional: true - '@substrate/light-client-extension-helpers@1.0.0(smoldot@2.0.26)': dependencies: '@polkadot-api/json-rpc-provider': 0.0.1 @@ -6651,8 +5589,6 @@ snapshots: smoldot: 2.0.26 optional: true - '@substrate/ss58-registry@1.49.0': {} - '@substrate/ss58-registry@1.51.0': {} '@szmarczak/http-timer@1.1.2': @@ -6667,32 +5603,14 @@ snapshots: '@tsconfig/node16@1.0.4': {} - '@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2)(ethers@5.7.2)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4)': - dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/providers': 5.7.2 - ethers: 5.7.2 - lodash: 4.17.21 - ts-essentials: 7.0.3(typescript@5.5.4) - typechain: 8.3.2(typescript@5.5.4) - typescript: 5.5.4 - - '@typechain/ethers-v6@0.5.1(ethers@6.13.3)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4)': + '@typechain/ethers-v6@0.5.1(ethers@6.13.5)(typechain@8.3.2(typescript@5.5.4))(typescript@5.5.4)': dependencies: - ethers: 6.13.3 + ethers: 6.13.5 lodash: 4.17.21 ts-essentials: 7.0.3(typescript@5.5.4) typechain: 8.3.2(typescript@5.5.4) typescript: 5.5.4 - '@types/bn.js@4.11.6': - dependencies: - '@types/node': 18.19.45 - - '@types/bn.js@5.1.5': - dependencies: - '@types/node': 18.19.45 - '@types/bn.js@5.1.6': dependencies: '@types/node': 18.19.45 @@ -6719,15 +5637,13 @@ snapshots: '@types/node-cron@3.0.11': {} - '@types/node@18.15.13': {} - '@types/node@18.19.45': dependencies: undici-types: 5.26.5 - '@types/pbkdf2@3.1.2': + '@types/node@22.7.5': dependencies: - '@types/node': 18.19.45 + undici-types: 6.19.8 '@types/prettier@2.7.3': {} @@ -6752,12 +5668,6 @@ snapshots: dependencies: '@types/node': 18.19.45 - '@types/yargs-parser@21.0.3': {} - - '@types/yargs@17.0.33': - dependencies: - '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.0 @@ -6842,15 +5752,13 @@ snapshots: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - '@ungap/promise-all-settled@1.1.2': {} - '@ungap/structured-clone@1.2.0': {} - '@zombienet/cli@1.3.109(@polkadot/util@13.2.2)(@types/node@18.19.45)(chokidar@3.6.0)': + '@zombienet/cli@1.3.118(@polkadot/util@13.3.1)(@types/node@22.7.5)(chokidar@3.6.0)': dependencies: - '@zombienet/dsl-parser-wrapper': 0.1.10 - '@zombienet/orchestrator': 0.0.90(@polkadot/util@13.2.2)(@types/node@18.19.45)(chokidar@3.6.0) - '@zombienet/utils': 0.0.25(@types/node@18.19.45)(chokidar@3.6.0)(typescript@5.5.4) + '@zombienet/dsl-parser-wrapper': 0.1.11 + '@zombienet/orchestrator': 0.0.97(@polkadot/util@13.3.1)(@types/node@22.7.5)(chokidar@3.6.0) + '@zombienet/utils': 0.0.25(@types/node@22.7.5)(chokidar@3.6.0)(typescript@5.5.4) cli-progress: 3.12.0 commander: 11.1.0 debug: 4.3.6(supports-color@8.1.1) @@ -6867,14 +5775,14 @@ snapshots: - supports-color - utf-8-validate - '@zombienet/dsl-parser-wrapper@0.1.10': {} + '@zombienet/dsl-parser-wrapper@0.1.11': {} - '@zombienet/orchestrator@0.0.90(@polkadot/util@13.2.2)(@types/node@18.19.45)(chokidar@3.6.0)': + '@zombienet/orchestrator@0.0.97(@polkadot/util@13.3.1)(@types/node@22.7.5)(chokidar@3.6.0)': dependencies: - '@polkadot/api': 12.4.2 - '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) - '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@zombienet/utils': 0.0.25(@types/node@18.19.45)(chokidar@3.6.0)(typescript@5.5.4) + '@polkadot/api': 14.3.1 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + '@zombienet/utils': 0.0.25(@types/node@22.7.5)(chokidar@3.6.0)(typescript@5.5.4) JSONStream: 1.3.5 chai: 4.5.0 debug: 4.3.6(supports-color@8.1.1) @@ -6901,14 +5809,14 @@ snapshots: - supports-color - utf-8-validate - '@zombienet/utils@0.0.25(@types/node@18.19.45)(chokidar@3.6.0)(typescript@5.5.4)': + '@zombienet/utils@0.0.25(@types/node@22.7.5)(chokidar@3.6.0)(typescript@5.5.4)': dependencies: cli-table3: 0.6.5 debug: 4.3.6(supports-color@8.1.1) mocha: 10.7.3 nunjucks: 3.2.4(chokidar@3.6.0) toml: 3.0.0 - ts-node: 10.9.2(@types/node@18.19.45)(typescript@5.5.4) + ts-node: 10.9.2(@types/node@22.7.5)(typescript@5.5.4) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -6978,12 +5886,8 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - ansi-colors@4.1.1: {} - ansi-colors@4.1.3: {} - ansi-regex@3.0.1: {} - ansi-regex@5.0.1: {} ansi-styles@3.2.1: @@ -7069,10 +5973,6 @@ snapshots: balanced-match@1.0.2: {} - base-x@3.0.10: - dependencies: - safe-buffer: 5.2.1 - base64-js@1.5.1: {} base@0.11.2: @@ -7106,8 +6006,6 @@ snapshots: bitfield@4.2.0: {} - blakejs@1.2.1: {} - bn.js@4.11.6: {} bn.js@4.12.0: {} @@ -7148,25 +6046,6 @@ snapshots: browser-stdout@1.3.1: {} - browserify-aes@1.2.0: - dependencies: - buffer-xor: 1.0.3 - cipher-base: 1.0.4 - create-hash: 1.2.0 - evp_bytestokey: 1.0.3 - inherits: 2.0.4 - safe-buffer: 5.2.1 - - bs58@4.0.1: - dependencies: - base-x: 3.0.10 - - bs58check@2.1.2: - dependencies: - bs58: 4.0.1 - create-hash: 1.2.0 - safe-buffer: 5.2.1 - buffer-alloc-unsafe@1.1.0: {} buffer-alloc@1.2.0: @@ -7178,17 +6057,11 @@ snapshots: buffer-reverse@1.0.1: {} - buffer-xor@1.0.3: {} - buffer@6.0.3: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - c-kzg@1.1.3: - dependencies: - node-addon-api: 5.1.0 - cache-base@1.0.1: dependencies: collection-visit: 1.0.0 @@ -7223,13 +6096,6 @@ snapshots: camelcase@6.3.0: {} - chai-as-promised@7.1.2(chai@4.5.0): - dependencies: - chai: 4.5.0 - check-error: 1.0.3 - - chai-bignumber@3.1.0: {} - chai@4.5.0: dependencies: assertion-error: 1.1.0 @@ -7273,18 +6139,6 @@ snapshots: transitivePeerDependencies: - supports-color - chokidar@3.5.1: - dependencies: - anymatch: 3.1.3 - braces: 3.0.3 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.5.0 - optionalDependencies: - fsevents: 2.3.3 - chokidar@3.6.0: dependencies: anymatch: 3.1.3 @@ -7402,15 +6256,6 @@ snapshots: ripemd160: 2.0.2 sha.js: 2.4.11 - create-hmac@1.1.7: - dependencies: - cipher-base: 1.0.4 - create-hash: 1.2.0 - inherits: 2.0.4 - ripemd160: 2.0.2 - safe-buffer: 5.2.1 - sha.js: 2.4.11 - create-require@1.1.1: {} cross-fetch@4.0.0: @@ -7427,6 +6272,8 @@ snapshots: crypto-js@3.3.0: {} + crypto-js@4.2.0: {} + css-tree@2.3.1: dependencies: mdn-data: 2.0.30 @@ -7447,12 +6294,6 @@ snapshots: dependencies: ms: 2.0.0 - debug@4.3.1(supports-color@8.1.1): - dependencies: - ms: 2.1.2 - optionalDependencies: - supports-color: 8.1.1 - debug@4.3.6(supports-color@8.1.1): dependencies: ms: 2.1.2 @@ -7502,8 +6343,6 @@ snapshots: diff@4.0.2: {} - diff@5.0.0: {} - diff@5.2.0: {} dir-glob@3.0.1: @@ -7619,8 +6458,6 @@ snapshots: transitivePeerDependencies: - supports-color - esm@3.2.25: {} - espree@9.6.1: dependencies: acorn: 8.12.1 @@ -7645,24 +6482,6 @@ snapshots: dependencies: '@noble/hashes': 1.4.0 - ethereum-cryptography@0.1.3: - dependencies: - '@types/pbkdf2': 3.1.2 - '@types/secp256k1': 4.0.6 - blakejs: 1.2.1 - browserify-aes: 1.2.0 - bs58check: 2.1.2 - create-hash: 1.2.0 - create-hmac: 1.1.7 - hash.js: 1.1.7 - keccak: 3.0.4 - pbkdf2: 3.1.2 - randombytes: 2.1.0 - safe-buffer: 5.2.1 - scrypt-js: 3.0.1 - secp256k1: 4.0.3 - setimmediate: 1.0.5 - ethereum-cryptography@2.2.1: dependencies: '@noble/curves': 1.4.2 @@ -7670,29 +6489,6 @@ snapshots: '@scure/bip32': 1.4.0 '@scure/bip39': 1.3.0 - ethereumjs-abi@0.6.8: - dependencies: - bn.js: 4.12.0 - ethereumjs-util: 6.2.1 - - ethereumjs-util@6.2.1: - dependencies: - '@types/bn.js': 4.11.6 - bn.js: 4.12.0 - create-hash: 1.2.0 - elliptic: 6.5.7 - ethereum-cryptography: 0.1.3 - ethjs-util: 0.1.6 - rlp: 2.2.7 - - ethereumjs-util@7.1.5: - dependencies: - '@types/bn.js': 5.1.5 - bn.js: 5.2.1 - create-hash: 1.2.0 - ethereum-cryptography: 0.1.3 - rlp: 2.2.7 - ethers@5.7.2: dependencies: '@ethersproject/abi': 5.7.0 @@ -7729,14 +6525,14 @@ snapshots: - bufferutil - utf-8-validate - ethers@6.13.3: + ethers@6.13.5: dependencies: '@adraffy/ens-normalize': 1.10.1 '@noble/curves': 1.2.0 '@noble/hashes': 1.3.2 - '@types/node': 18.15.13 + '@types/node': 22.7.5 aes-js: 4.0.0-beta.5 - tslib: 2.4.0 + tslib: 2.7.0 ws: 8.17.1 transitivePeerDependencies: - bufferutil @@ -7760,11 +6556,6 @@ snapshots: events@3.3.0: {} - evp_bytestokey@1.0.3: - dependencies: - md5.js: 1.3.5 - safe-buffer: 5.2.1 - execa@5.1.1: dependencies: cross-spawn: 7.0.3 @@ -7855,25 +6646,6 @@ snapshots: fastify-plugin@4.5.1: {} - fastify@4.24.3: - dependencies: - '@fastify/ajv-compiler': 3.6.0 - '@fastify/error': 3.4.1 - '@fastify/fast-json-stringify-compiler': 4.3.0 - abstract-logging: 2.0.1 - avvio: 8.4.0 - fast-content-type-parse: 1.1.0 - fast-json-stringify: 5.16.1 - find-my-way: 7.7.0 - light-my-request: 5.13.0 - pino: 8.21.0 - process-warning: 2.3.2 - proxy-addr: 2.0.7 - rfdc: 1.4.1 - secure-json-parse: 2.7.0 - semver: 7.6.3 - toad-cache: 3.7.0 - fastify@4.28.1: dependencies: '@fastify/ajv-compiler': 3.6.0 @@ -7922,12 +6694,6 @@ snapshots: dependencies: to-regex-range: 5.0.1 - find-my-way@7.7.0: - dependencies: - fast-deep-equal: 3.1.3 - fast-querystring: 1.1.2 - safe-regex2: 2.0.0 - find-my-way@8.2.0: dependencies: fast-deep-equal: 3.1.3 @@ -8055,15 +6821,6 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@7.1.6: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.0.4 - once: 1.4.0 - path-is-absolute: 1.0.1 - glob@7.1.7: dependencies: fs.realpath: 1.0.0 @@ -8127,8 +6884,6 @@ snapshots: graphemer@1.4.0: {} - growl@1.10.5: {} - has-flag@3.0.0: {} has-flag@4.0.0: {} @@ -8278,8 +7033,6 @@ snapshots: is-extglob@2.1.1: {} - is-fullwidth-code-point@2.0.0: {} - is-fullwidth-code-point@3.0.0: {} is-generator-function@1.0.10: @@ -8349,10 +7102,6 @@ snapshots: js-sha3@0.8.0: {} - js-yaml@4.0.0: - dependencies: - argparse: 2.0.1 - js-yaml@4.1.0: dependencies: argparse: 2.0.1 @@ -8491,10 +7240,6 @@ snapshots: lodash@4.17.21: {} - log-symbols@4.0.0: - dependencies: - chalk: 4.1.2 - log-symbols@4.1.0: dependencies: chalk: 4.1.2 @@ -8542,6 +7287,12 @@ snapshots: treeify: 1.1.0 web3-utils: 1.10.4 + merkletreejs@0.4.1: + dependencies: + buffer-reverse: 1.0.1 + crypto-js: 4.2.0 + treeify: 1.1.0 + micro-ftch@0.3.1: {} micromatch@3.1.10: @@ -8581,10 +7332,6 @@ snapshots: minimalistic-crypto-utils@1.0.1: {} - minimatch@3.0.4: - dependencies: - brace-expansion: 1.1.11 - minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 @@ -8631,34 +7378,6 @@ snapshots: yargs-parser: 20.2.9 yargs-unparser: 2.0.0 - mocha@8.4.0: - dependencies: - '@ungap/promise-all-settled': 1.1.2 - ansi-colors: 4.1.1 - browser-stdout: 1.3.1 - chokidar: 3.5.1 - debug: 4.3.1(supports-color@8.1.1) - diff: 5.0.0 - escape-string-regexp: 4.0.0 - find-up: 5.0.0 - glob: 7.1.6 - growl: 1.10.5 - he: 1.2.0 - js-yaml: 4.0.0 - log-symbols: 4.0.0 - minimatch: 3.0.4 - ms: 2.1.3 - nanoid: 3.1.20 - serialize-javascript: 5.0.1 - strip-json-comments: 3.1.1 - supports-color: 8.1.1 - which: 2.0.2 - wide-align: 1.1.3 - workerpool: 6.1.0 - yargs: 16.2.0 - yargs-parser: 20.2.4 - yargs-unparser: 2.0.0 - mock-socket@9.3.1: {} ms@2.0.0: {} @@ -8672,8 +7391,6 @@ snapshots: nan@2.20.0: optional: true - nanoid@3.1.20: {} - nanomatch@1.2.13: dependencies: arr-diff: 4.0.0 @@ -8723,8 +7440,6 @@ snapshots: node-addon-api@2.0.2: {} - node-addon-api@5.1.0: {} - node-cron@3.0.3: dependencies: uuid: 8.3.2 @@ -8844,14 +7559,6 @@ snapshots: pathval@1.1.1: {} - pbkdf2@3.1.2: - dependencies: - create-hash: 1.2.0 - create-hmac: 1.1.7 - ripemd160: 2.0.2 - safe-buffer: 5.2.1 - sha.js: 2.4.11 - peer-id@0.16.0: dependencies: class-is: 1.1.0 @@ -8867,24 +7574,8 @@ snapshots: readable-stream: 4.5.2 split2: 4.2.0 - pino-std-serializers@6.2.2: {} - pino-std-serializers@7.0.0: {} - pino@8.21.0: - dependencies: - atomic-sleep: 1.0.0 - fast-redact: 3.5.0 - on-exit-leak-free: 2.1.2 - pino-abstract-transport: 1.2.0 - pino-std-serializers: 6.2.2 - process-warning: 3.0.0 - quick-format-unescaped: 4.0.4 - real-require: 0.2.0 - safe-stable-stringify: 2.4.3 - sonic-boom: 3.8.1 - thread-stream: 2.7.0 - pino@9.3.2: dependencies: atomic-sleep: 1.0.0 @@ -8911,8 +7602,6 @@ snapshots: process-nextick-args@2.0.1: {} - process-warning@2.3.2: {} - process-warning@3.0.0: {} process-warning@4.0.0: {} @@ -9002,10 +7691,6 @@ snapshots: transitivePeerDependencies: - supports-color - readdirp@3.5.0: - dependencies: - picomatch: 2.3.1 - readdirp@3.6.0: dependencies: picomatch: 2.3.1 @@ -9049,8 +7734,6 @@ snapshots: ret@0.1.15: {} - ret@0.2.2: {} - ret@0.4.3: {} reusify@1.0.4: {} @@ -9094,10 +7777,6 @@ snapshots: safe-buffer@5.2.1: {} - safe-regex2@2.0.0: - dependencies: - ret: 0.2.2 - safe-regex2@3.1.0: dependencies: ret: 0.4.3 @@ -9135,10 +7814,6 @@ snapshots: semver@7.6.3: {} - serialize-javascript@5.0.1: - dependencies: - randombytes: 2.1.0 - serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 @@ -9178,14 +7853,6 @@ snapshots: slash@3.0.0: {} - smoldot@2.0.22: - dependencies: - ws: 8.18.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - optional: true - smoldot@2.0.26: dependencies: ws: 8.18.0 @@ -9231,10 +7898,6 @@ snapshots: transitivePeerDependencies: - debug - sonic-boom@3.8.1: - dependencies: - atomic-sleep: 1.0.0 - sonic-boom@4.0.1: dependencies: atomic-sleep: 1.0.0 @@ -9268,11 +7931,6 @@ snapshots: string-similarity@4.0.4: {} - string-width@2.1.1: - dependencies: - is-fullwidth-code-point: 2.0.0 - strip-ansi: 4.0.0 - string-width@4.2.3: dependencies: emoji-regex: 8.0.0 @@ -9287,10 +7945,6 @@ snapshots: dependencies: safe-buffer: 5.2.1 - strip-ansi@4.0.0: - dependencies: - ansi-regex: 3.0.1 - strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 @@ -9332,10 +7986,6 @@ snapshots: text-table@0.2.0: {} - thread-stream@2.7.0: - dependencies: - real-require: 0.2.0 - thread-stream@3.1.0: dependencies: real-require: 0.2.0 @@ -9404,7 +8054,7 @@ snapshots: dependencies: typescript: 5.5.4 - ts-node@10.9.2(@types/node@18.19.45)(typescript@4.9.5): + ts-node@10.9.2(@types/node@18.19.45)(typescript@5.5.4): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -9418,18 +8068,18 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.9.5 + typescript: 5.5.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@18.19.45)(typescript@5.5.4): + ts-node@10.9.2(@types/node@22.7.5)(typescript@5.5.4): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 18.19.45 + '@types/node': 22.7.5 acorn: 8.12.1 acorn-walk: 8.3.3 arg: 4.1.3 @@ -9450,12 +8100,14 @@ snapshots: tslib@2.0.1: {} - tslib@2.4.0: {} - tslib@2.6.3: {} + tslib@2.7.0: {} + tslib@2.8.0: {} + tslib@2.8.1: {} + tsutils@3.21.0(typescript@5.5.4): dependencies: tslib: 1.14.1 @@ -9512,8 +8164,6 @@ snapshots: transitivePeerDependencies: - supports-color - typescript@4.9.5: {} - typescript@5.5.4: {} typical@4.0.0: {} @@ -9526,6 +8176,8 @@ snapshots: undici-types@5.26.5: {} + undici-types@6.19.8: {} + union-value@1.0.1: dependencies: arr-union: 3.1.0 @@ -9857,10 +8509,6 @@ snapshots: dependencies: isexe: 2.0.0 - wide-align@1.1.3: - dependencies: - string-width: 2.1.1 - word-wrap@1.2.5: {} wordwrapjs@4.0.1: @@ -9868,8 +8516,6 @@ snapshots: reduce-flatten: 2.0.0 typical: 5.2.0 - workerpool@6.1.0: {} - workerpool@6.5.1: {} wrap-ansi@7.0.0: @@ -9896,8 +8542,6 @@ snapshots: yaml@2.5.0: {} - yargs-parser@20.2.4: {} - yargs-parser@20.2.9: {} yargs-parser@21.1.1: {} @@ -9917,7 +8561,7 @@ snapshots: require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 20.2.4 + yargs-parser: 20.2.9 yargs@17.7.2: dependencies: