From a37cb614ec6f6768fa04fd9a33698924bc1a5635 Mon Sep 17 00:00:00 2001 From: Mario J Maurello Date: Fri, 25 Oct 2024 12:33:16 +0200 Subject: [PATCH 1/8] add mrl package to dev version publisher --- .github/workflows/publish-dev.yml | 4 ++++ .vscode/settings.json | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/publish-dev.yml b/.github/workflows/publish-dev.yml index 6efd51dc..d38ea458 100644 --- a/.github/workflows/publish-dev.yml +++ b/.github/workflows/publish-dev.yml @@ -55,3 +55,7 @@ jobs: - name: 🚀 Publish sdk working-directory: ./packages/sdk run: pnpm publish --tag dev + + - name: 🚀 Publish mrl + working-directory: ./packages/mrl + run: pnpm publish --tag dev diff --git a/.vscode/settings.json b/.vscode/settings.json index 09a2de14..d4043a81 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -53,6 +53,7 @@ "neuroweb", "nodl", "nodle", + "npmjs", "onfinality", "parachain", "parachains", From 68424b523501beeaf8b41e11a25212e154716437 Mon Sep 17 00:00:00 2001 From: Richard Kenigs Date: Fri, 25 Oct 2024 16:02:50 +0200 Subject: [PATCH 2/8] try to fix npm run dev --- packages/builder/package.json | 2 +- packages/config/package.json | 2 +- packages/mrl/package.json | 2 +- packages/sdk/package.json | 2 +- packages/types/package.json | 2 +- packages/utils/package.json | 2 +- turbo.json | 5 ++++- 7 files changed, 10 insertions(+), 7 deletions(-) diff --git a/packages/builder/package.json b/packages/builder/package.json index 14ba345c..3f5fe8a6 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -4,7 +4,7 @@ "description": "Moonbeam XCM builder", "scripts": { "build": "tsup", - "dev": "pnpm run build -- --watch", + "dev": "tsup --watch", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/packages/config/package.json b/packages/config/package.json index 8d67c9e0..3753a617 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -4,7 +4,7 @@ "description": "All necessary configuration to transfer assets from Moonbeam, Moonriver, Moonbase to other parachains and back", "scripts": { "build": "tsup", - "dev": "pnpm run build -- --watch", + "dev": "tsup --watch", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/packages/mrl/package.json b/packages/mrl/package.json index 3be6de5b..3a84588b 100644 --- a/packages/mrl/package.json +++ b/packages/mrl/package.json @@ -4,7 +4,7 @@ "description": "Moonbeam Routed Liquidity", "scripts": { "build": "tsup", - "dev": "pnpm run build -- --watch", + "dev": "tsup --watch", "typecheck": "tsc --noEmit", "prepack": "prettier --write build/index.d.ts" }, diff --git a/packages/sdk/package.json b/packages/sdk/package.json index cfc54326..4c6e2328 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -4,7 +4,7 @@ "description": "The Moonbeam XCM SDK enables developers to easily deposit and withdraw assets to Moonbeam/Moonriver from the relay chain and other parachains in the Polkadot/Kusama ecosystem", "scripts": { "build": "tsup", - "dev": "pnpm run build -- --watch", + "dev": "tsup --watch", "typecheck": "tsc --noEmit", "test:acc": "vitest --run --testTimeout 300000 ./tests/acceptance", "prepack": "prettier --write build/index.d.ts" diff --git a/packages/types/package.json b/packages/types/package.json index 0988a403..522166fe 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -4,7 +4,7 @@ "description": "Moonbeam XCM Types", "scripts": { "build": "tsup", - "dev": "pnpm run build -- --watch", + "dev": "tsup --watch", "test": "vitest --run", "test:watch": "vitest", "test:update": "vitest -u", diff --git a/packages/utils/package.json b/packages/utils/package.json index 1e955efa..a655149d 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -4,7 +4,7 @@ "description": "Moonbeam XCM utilities", "scripts": { "build": "tsup", - "dev": "pnpm run build -- --watch", + "dev": "tsup --watch", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/turbo.json b/turbo.json index 251e6da8..9758cf35 100644 --- a/turbo.json +++ b/turbo.json @@ -6,7 +6,10 @@ "dependsOn": ["^build"] }, "dev": { - "cache": false + "outputs": ["build/**"], + "dependsOn": ["^build"], + "cache": false, + "persistent": true }, "link": { "cache": false From 68209edb7b9b0ed2bdc7f6bfec949dfd6fee7fe7 Mon Sep 17 00:00:00 2001 From: Mario J Maurello Date: Fri, 25 Oct 2024 16:05:26 +0200 Subject: [PATCH 3/8] add link scripts --- packages/builder/package.json | 1 + packages/config/package.json | 1 + packages/mrl/package.json | 1 + packages/sdk/package.json | 1 + packages/types/package.json | 3 ++- packages/utils/package.json | 1 + 6 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/builder/package.json b/packages/builder/package.json index 3f5fe8a6..30997699 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -5,6 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/packages/config/package.json b/packages/config/package.json index 3753a617..2695a953 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -5,6 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/packages/mrl/package.json b/packages/mrl/package.json index 3a84588b..f9d990be 100644 --- a/packages/mrl/package.json +++ b/packages/mrl/package.json @@ -5,6 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", "prepack": "prettier --write build/index.d.ts" }, diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 4c6e2328..a861f383 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -5,6 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", "test:acc": "vitest --run --testTimeout 300000 ./tests/acceptance", "prepack": "prettier --write build/index.d.ts" diff --git a/packages/types/package.json b/packages/types/package.json index 522166fe..b9ae9c20 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -5,6 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", + "link": "pnpm ln --global", "test": "vitest --run", "test:watch": "vitest", "test:update": "vitest -u", @@ -38,4 +39,4 @@ "peerDependencies": { "viem": "^2.20.0" } -} +} \ No newline at end of file diff --git a/packages/utils/package.json b/packages/utils/package.json index a655149d..5546e583 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -5,6 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", From 8a033d41cd282a5b043480edf0c6079ace54099d Mon Sep 17 00:00:00 2001 From: Mario J Maurello Date: Fri, 25 Oct 2024 17:18:34 +0200 Subject: [PATCH 4/8] disable git prompts in publish dev version --- .github/workflows/publish-dev.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-dev.yml b/.github/workflows/publish-dev.yml index d38ea458..0e979d89 100644 --- a/.github/workflows/publish-dev.yml +++ b/.github/workflows/publish-dev.yml @@ -38,24 +38,24 @@ jobs: - name: 🚀 Publish types working-directory: ./packages/types - run: pnpm publish --tag dev + run: pnpm publish --no-git-checks --tag dev - name: 🚀 Publish utils working-directory: ./packages/utils - run: pnpm publish --tag dev + run: pnpm publish --no-git-checks --tag dev - name: 🚀 Publish builder working-directory: ./packages/builder - run: pnpm publish --tag dev + run: pnpm publish --no-git-checks --tag dev - name: 🚀 Publish config working-directory: ./packages/config - run: pnpm publish --tag dev + run: pnpm publish --no-git-checks --tag dev - name: 🚀 Publish sdk working-directory: ./packages/sdk - run: pnpm publish --tag dev + run: pnpm publish --no-git-checks --tag dev - name: 🚀 Publish mrl working-directory: ./packages/mrl - run: pnpm publish --tag dev + run: pnpm publish --no-git-checks --tag dev From e1059a2e89949b53d26023bb1795a0d21759f3be Mon Sep 17 00:00:00 2001 From: Mario J Maurello Date: Mon, 28 Oct 2024 18:20:47 +0100 Subject: [PATCH 5/8] change link directory --- packages/builder/package.json | 2 +- packages/config/package.json | 2 +- packages/sdk/package.json | 2 +- packages/types/package.json | 4 ++-- packages/utils/package.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/builder/package.json b/packages/builder/package.json index 30997699..e2ac1dcd 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -5,7 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln --global", + "link": "pnpm ln ./", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/packages/config/package.json b/packages/config/package.json index 2695a953..03b5c123 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -5,7 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln --global", + "link": "pnpm ln ./", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/packages/sdk/package.json b/packages/sdk/package.json index a861f383..0a58ecba 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -5,7 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln --global", + "link": "pnpm ln ./", "typecheck": "tsc --noEmit", "test:acc": "vitest --run --testTimeout 300000 ./tests/acceptance", "prepack": "prettier --write build/index.d.ts" diff --git a/packages/types/package.json b/packages/types/package.json index b9ae9c20..1646dce9 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -5,7 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln --global", + "link": "pnpm ln ./", "test": "vitest --run", "test:watch": "vitest", "test:update": "vitest -u", @@ -39,4 +39,4 @@ "peerDependencies": { "viem": "^2.20.0" } -} \ No newline at end of file +} diff --git a/packages/utils/package.json b/packages/utils/package.json index 5546e583..8f4d7149 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -5,7 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln --global", + "link": "pnpm ln ./", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", From 47893581e72f30b379f28b90ee4443a5a2382653 Mon Sep 17 00:00:00 2001 From: Mario J Maurello Date: Tue, 29 Oct 2024 09:52:48 +0100 Subject: [PATCH 6/8] change link path --- packages/mrl/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mrl/package.json b/packages/mrl/package.json index f9d990be..f04745e7 100644 --- a/packages/mrl/package.json +++ b/packages/mrl/package.json @@ -5,7 +5,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln --global", + "link": "pnpm ln ./", "typecheck": "tsc --noEmit", "prepack": "prettier --write build/index.d.ts" }, From 20cced0abb547e46eff8bdbc47439697446f02fb Mon Sep 17 00:00:00 2001 From: Mario J Maurello Date: Wed, 30 Oct 2024 14:16:29 +0100 Subject: [PATCH 7/8] sync deps, remove prettier, link globally --- examples/mrl-simple/package.json | 2 +- package.json | 1 - packages/builder/package.json | 11 +- packages/config/package.json | 5 +- packages/mrl/package.json | 13 +- .../mrl/src/getTransferData/getRedeemData.ts | 5 + packages/sdk/package.json | 7 +- packages/types/package.json | 9 +- packages/utils/package.json | 7 +- pnpm-lock.yaml | 1965 +++++++++-------- 10 files changed, 1104 insertions(+), 921 deletions(-) diff --git a/examples/mrl-simple/package.json b/examples/mrl-simple/package.json index 1ecf7d35..32caee9d 100644 --- a/examples/mrl-simple/package.json +++ b/examples/mrl-simple/package.json @@ -13,6 +13,6 @@ "@moonbeam-network/xcm-utils": "workspace:*" }, "devDependencies": { - "bun": "^1.1.25" + "bun": "^1.1.31" } } diff --git a/package.json b/package.json index 4a2822e8..fe66ed2d 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,6 @@ "dotenv": "^16.4.5", "glob": "^11.0.0", "lefthook": "^1.7.15", - "prettier": "^3.3.3", "syncpack": "^13.0.0", "tsup": "^8.3.0", "turbo": "^2.1.3", diff --git a/packages/builder/package.json b/packages/builder/package.json index 40c9075f..8912bb8c 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -5,12 +5,11 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln ./", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", - "test:update": "vitest -u", - "prepack": "prettier --write build/index.d.ts" + "test:update": "vitest -u" }, "repository": { "directory": "packages/builder", @@ -40,8 +39,8 @@ "@polkadot/types": "^12.4.2", "@polkadot/util": "^13.1.1", "@polkadot/util-crypto": "^13.1.1", - "@wormhole-foundation/sdk-connect": "^0.8.2", - "@wormhole-foundation/sdk-evm": "^0.8.2", - "viem": "^2.20.0" + "@wormhole-foundation/sdk-connect": "^0.10.7", + "@wormhole-foundation/sdk-evm": "^0.10.7", + "viem": "^2.21.7" } } diff --git a/packages/config/package.json b/packages/config/package.json index b403d0e5..f9e5fdf5 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -5,12 +5,11 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln ./", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", - "test:update": "vitest -u", - "prepack": "prettier --write build/index.d.ts" + "test:update": "vitest -u" }, "repository": { "directory": "packages/config", diff --git a/packages/mrl/package.json b/packages/mrl/package.json index f04745e7..8ae8a7dd 100644 --- a/packages/mrl/package.json +++ b/packages/mrl/package.json @@ -5,9 +5,8 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln ./", - "typecheck": "tsc --noEmit", - "prepack": "prettier --write build/index.d.ts" + "link": "pnpm ln --global", + "typecheck": "tsc --noEmit" }, "repository": { "directory": "packages/mrl", @@ -31,7 +30,7 @@ "@moonbeam-network/xcm-config": "workspace:*", "@moonbeam-network/xcm-sdk": "workspace:*", "@moonbeam-network/xcm-types": "workspace:*", - "@moonbeam-network/xcm-utils": "workspace:^", + "@moonbeam-network/xcm-utils": "workspace:*", "big.js": "^6.2.1" }, "peerDependencies": { @@ -39,8 +38,8 @@ "@polkadot/api-augment": "^12.4.2", "@polkadot/types": "^12.4.2", "@polkadot/util": "^13.0.2", - "@wormhole-foundation/sdk-connect": "^0.8.2", - "@wormhole-foundation/sdk-evm": "^0.8.2", - "viem": "^2.20.0" + "@wormhole-foundation/sdk-connect": "^0.10.7", + "@wormhole-foundation/sdk-evm": "^0.10.7", + "viem": "^2.21.7" } } diff --git a/packages/mrl/src/getTransferData/getRedeemData.ts b/packages/mrl/src/getTransferData/getRedeemData.ts index 04e5fd83..b19ae3ef 100644 --- a/packages/mrl/src/getTransferData/getRedeemData.ts +++ b/packages/mrl/src/getTransferData/getRedeemData.ts @@ -13,6 +13,11 @@ export async function getRedeemData({ txId, chain }: WormholeRedeemParams) { const wh = WormholeService.create(chain); const vaa = await wh.getVaa(txId); + if (!vaa) { + // TODO handle softly when retrieving + throw new Error(`VAA not found for WormholeId ${txId}`); + } + const tokenTransfer = await wh.getTokenTransfer(vaa, txId); const isXcm = vaa.payloadName === 'TransferWithPayload'; diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 3c511a46..2699878e 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -5,10 +5,9 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln ./", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", - "test:acc": "vitest --run --testTimeout 300000 ./tests/acceptance", - "prepack": "prettier --write build/index.d.ts" + "test:acc": "vitest --run --testTimeout 300000 ./tests/acceptance" }, "author": "moonbeam-foundation", "license": "MIT", @@ -47,7 +46,7 @@ "@polkadot/api-augment": "^12.4.2", "@polkadot/types": "^12.4.2", "@polkadot/util": "^13.1.1", - "viem": "^2.20.0" + "viem": "^2.21.7" }, "devDependencies": { "@types/big.js": "^6.2.2" diff --git a/packages/types/package.json b/packages/types/package.json index f6489c71..0e4583ec 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -5,11 +5,10 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln ./", + "link": "pnpm ln --global", "test": "vitest --run", "test:watch": "vitest", - "test:update": "vitest -u", - "prepack": "prettier --write build/index.d.ts" + "test:update": "vitest -u" }, "repository": { "directory": "packages/types", @@ -34,9 +33,9 @@ }, "devDependencies": { "@types/big.js": "^6.2.2", - "@wormhole-foundation/sdk-connect": "^0.8.2" + "@wormhole-foundation/sdk-connect": "^0.10.7" }, "peerDependencies": { - "viem": "^2.20.0" + "viem": "^2.21.7" } } diff --git a/packages/utils/package.json b/packages/utils/package.json index f8a2a705..14643d2b 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -5,12 +5,11 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "link": "pnpm ln ./", + "link": "pnpm ln --global", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", - "test:update": "vitest -u", - "prepack": "prettier --write build/index.d.ts" + "test:update": "vitest -u" }, "author": "moonbeam-foundation", "license": "MIT", @@ -40,6 +39,6 @@ "@polkadot/api": "^12.4.2", "@polkadot/apps-config": "^0.143.2", "@polkadot/util": "^13.1.1", - "@polkadot/util-crypto": "^13.0.2" + "@polkadot/util-crypto": "^13.1.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 35b5086b..8a665a40 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,16 +16,16 @@ importers: version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/apps-config': specifier: ^0.143.2 - version: 0.143.2(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) + version: 0.143.2(@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) '@polkadot/types': specifier: ^12.4.2 version: 12.4.2 '@polkadot/util': - specifier: ^13.0.2 - version: 13.0.2 + specifier: ^13.1.1 + version: 13.2.2 '@polkadot/util-crypto': - specifier: ^13.0.2 - version: 13.0.2(@polkadot/util@13.0.2) + specifier: ^13.1.1 + version: 13.2.2(@polkadot/util@13.2.2) '@wormhole-foundation/sdk-connect': specifier: ^0.10.7 version: 0.10.7 @@ -43,8 +43,8 @@ importers: specifier: ^0.5.0 version: 0.5.0 '@changesets/cli': - specifier: ^2.27.8 - version: 2.27.8 + specifier: ^2.27.9 + version: 2.27.9 '@slack/webhook': specifier: ^7.0.3 version: 7.0.3 @@ -52,8 +52,8 @@ importers: specifier: ^6.2.2 version: 6.2.2 bun: - specifier: ^1.1.27 - version: 1.1.27 + specifier: ^1.1.31 + version: 1.1.33 cspell: specifier: ^8.14.2 version: 8.14.2 @@ -66,27 +66,24 @@ importers: lefthook: specifier: ^1.7.15 version: 1.7.15 - prettier: - specifier: ^3.3.3 - version: 3.3.3 syncpack: specifier: ^13.0.0 - version: 13.0.0(typescript@5.6.2) + version: 13.0.0(typescript@5.6.3) tsup: - specifier: ^8.2.4 - version: 8.2.4(postcss@8.4.45)(typescript@5.6.2)(yaml@2.5.1) + specifier: ^8.3.0 + version: 8.3.5(postcss@8.4.45)(typescript@5.6.3)(yaml@2.5.1) turbo: - specifier: ^2.1.2 - version: 2.1.2 + specifier: ^2.1.3 + version: 2.2.3 typescript: - specifier: ^5.6.2 - version: 5.6.2 + specifier: ^5.6.3 + version: 5.6.3 viem: specifier: ^2.21.7 - version: 2.21.7(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + version: 2.21.7(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) vitest: - specifier: ^2.1.1 - version: 2.1.1(@types/node@22.5.4) + specifier: ^2.1.3 + version: 2.1.4(@types/node@22.5.4) examples/mrl-simple: dependencies: @@ -104,8 +101,8 @@ importers: version: link:../../packages/utils devDependencies: bun: - specifier: ^1.1.25 - version: 1.1.27 + specifier: ^1.1.31 + version: 1.1.33 examples/sdk-simple: dependencies: @@ -120,8 +117,8 @@ importers: version: link:../../packages/utils devDependencies: bun: - specifier: ^1.1.25 - version: 1.1.27 + specifier: ^1.1.31 + version: 1.1.33 packages/builder: dependencies: @@ -141,23 +138,23 @@ importers: specifier: ^12.4.2 version: 12.4.2 '@polkadot/util': - specifier: ^13.0.2 - version: 13.0.2 + specifier: ^13.1.1 + version: 13.2.2 '@polkadot/util-crypto': - specifier: ^13.0.2 - version: 13.0.2(@polkadot/util@13.0.2) + specifier: ^13.1.1 + version: 13.2.2(@polkadot/util@13.2.2) '@wormhole-foundation/sdk-connect': - specifier: ^0.8.2 - version: 0.8.2 + specifier: ^0.10.7 + version: 0.10.8 '@wormhole-foundation/sdk-evm': - specifier: ^0.8.2 - version: 0.8.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: ^0.10.7 + version: 0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) big.js: specifier: ^6.2.1 version: 6.2.1 viem: - specifier: ^2.20.0 - version: 2.21.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + specifier: ^2.21.7 + version: 2.21.7(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) packages/config: dependencies: @@ -174,11 +171,11 @@ importers: specifier: ^12.4.2 version: 12.4.2 '@polkadot/util': - specifier: ^13.0.2 - version: 13.0.2 + specifier: ^13.1.1 + version: 13.2.2 '@polkadot/util-crypto': - specifier: ^13.0.2 - version: 13.0.2(@polkadot/util@13.0.2) + specifier: ^13.1.1 + version: 13.2.2(@polkadot/util@13.2.2) packages/mrl: dependencies: @@ -195,7 +192,7 @@ importers: specifier: workspace:* version: link:../types '@moonbeam-network/xcm-utils': - specifier: workspace:^ + specifier: workspace:* version: link:../utils '@polkadot/api': specifier: ^12.4.2 @@ -210,17 +207,17 @@ importers: specifier: ^13.0.2 version: 13.0.2 '@wormhole-foundation/sdk-connect': - specifier: ^0.8.2 - version: 0.8.2 + specifier: ^0.10.7 + version: 0.10.8 '@wormhole-foundation/sdk-evm': - specifier: ^0.8.2 - version: 0.8.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: ^0.10.7 + version: 0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) big.js: specifier: ^6.2.1 version: 6.2.1 viem: - specifier: ^2.20.0 - version: 2.21.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + specifier: ^2.21.7 + version: 2.21.7(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) packages/sdk: dependencies: @@ -246,14 +243,14 @@ importers: specifier: ^12.4.2 version: 12.4.2 '@polkadot/util': - specifier: ^13.0.2 - version: 13.0.2 + specifier: ^13.1.1 + version: 13.2.2 big.js: specifier: ^6.2.1 version: 6.2.1 viem: - specifier: ^2.20.0 - version: 2.21.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + specifier: ^2.21.7 + version: 2.21.7(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) devDependencies: '@types/big.js': specifier: ^6.2.2 @@ -268,15 +265,15 @@ importers: specifier: ^6.2.1 version: 6.2.1 viem: - specifier: ^2.20.0 - version: 2.21.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + specifier: ^2.21.7 + version: 2.21.7(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) devDependencies: '@types/big.js': specifier: ^6.2.2 version: 6.2.2 '@wormhole-foundation/sdk-connect': - specifier: ^0.8.2 - version: 0.8.2 + specifier: ^0.10.7 + version: 0.10.8 packages/utils: dependencies: @@ -285,13 +282,13 @@ importers: version: 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/apps-config': specifier: ^0.143.2 - version: 0.143.2(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) + version: 0.143.2(@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) '@polkadot/util': - specifier: ^13.0.2 - version: 13.0.2 + specifier: ^13.1.1 + version: 13.1.1 '@polkadot/util-crypto': - specifier: ^13.0.2 - version: 13.0.2(@polkadot/util@13.0.2) + specifier: ^13.1.1 + version: 13.2.2(@polkadot/util@13.1.1) big.js: specifier: ^6.2.1 version: 6.2.1 @@ -417,8 +414,8 @@ packages: '@changesets/changelog-github@0.5.0': resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==} - '@changesets/cli@2.27.8': - resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==} + '@changesets/cli@2.27.9': + resolution: {integrity: sha512-q42a/ZbDnxPpCb5Wkm6tMVIxgeI9C/bexntzTeCFBrQEdpisQqk8kCHllYZMDjYtEc1ZzumbMJAG8H0Z4rdvjg==} hasBin: true '@changesets/config@3.0.3': @@ -708,8 +705,8 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.23.1': - resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==} + '@esbuild/aix-ppc64@0.24.0': + resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] @@ -720,8 +717,8 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.23.1': - resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==} + '@esbuild/android-arm64@0.24.0': + resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==} engines: {node: '>=18'} cpu: [arm64] os: [android] @@ -732,8 +729,8 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.23.1': - resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==} + '@esbuild/android-arm@0.24.0': + resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==} engines: {node: '>=18'} cpu: [arm] os: [android] @@ -744,8 +741,8 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.23.1': - resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==} + '@esbuild/android-x64@0.24.0': + resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==} engines: {node: '>=18'} cpu: [x64] os: [android] @@ -756,8 +753,8 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.23.1': - resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==} + '@esbuild/darwin-arm64@0.24.0': + resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] @@ -768,8 +765,8 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.23.1': - resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==} + '@esbuild/darwin-x64@0.24.0': + resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] @@ -780,8 +777,8 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.23.1': - resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==} + '@esbuild/freebsd-arm64@0.24.0': + resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] @@ -792,8 +789,8 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.23.1': - resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==} + '@esbuild/freebsd-x64@0.24.0': + resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] @@ -804,8 +801,8 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.23.1': - resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==} + '@esbuild/linux-arm64@0.24.0': + resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} engines: {node: '>=18'} cpu: [arm64] os: [linux] @@ -816,8 +813,8 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.23.1': - resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==} + '@esbuild/linux-arm@0.24.0': + resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==} engines: {node: '>=18'} cpu: [arm] os: [linux] @@ -828,8 +825,8 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.23.1': - resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==} + '@esbuild/linux-ia32@0.24.0': + resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==} engines: {node: '>=18'} cpu: [ia32] os: [linux] @@ -840,8 +837,8 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.23.1': - resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==} + '@esbuild/linux-loong64@0.24.0': + resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==} engines: {node: '>=18'} cpu: [loong64] os: [linux] @@ -852,8 +849,8 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.23.1': - resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==} + '@esbuild/linux-mips64el@0.24.0': + resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] @@ -864,8 +861,8 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.23.1': - resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==} + '@esbuild/linux-ppc64@0.24.0': + resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] @@ -876,8 +873,8 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.23.1': - resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==} + '@esbuild/linux-riscv64@0.24.0': + resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] @@ -888,8 +885,8 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.23.1': - resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==} + '@esbuild/linux-s390x@0.24.0': + resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==} engines: {node: '>=18'} cpu: [s390x] os: [linux] @@ -900,8 +897,8 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.23.1': - resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==} + '@esbuild/linux-x64@0.24.0': + resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==} engines: {node: '>=18'} cpu: [x64] os: [linux] @@ -912,14 +909,14 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.23.1': - resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==} + '@esbuild/netbsd-x64@0.24.0': + resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.23.1': - resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==} + '@esbuild/openbsd-arm64@0.24.0': + resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] @@ -930,8 +927,8 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.23.1': - resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==} + '@esbuild/openbsd-x64@0.24.0': + resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] @@ -942,8 +939,8 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.23.1': - resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==} + '@esbuild/sunos-x64@0.24.0': + resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==} engines: {node: '>=18'} cpu: [x64] os: [sunos] @@ -954,8 +951,8 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.23.1': - resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==} + '@esbuild/win32-arm64@0.24.0': + resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==} engines: {node: '>=18'} cpu: [arm64] os: [win32] @@ -966,8 +963,8 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.23.1': - resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==} + '@esbuild/win32-ia32@0.24.0': + resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} engines: {node: '>=18'} cpu: [ia32] os: [win32] @@ -978,8 +975,8 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.23.1': - resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==} + '@esbuild/win32-x64@0.24.0': + resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -1099,43 +1096,43 @@ packages: '@open-web3/orml-type-definitions@2.0.1': resolution: {integrity: sha512-wqeSBOKk8UU9CBqYhK2yQh9YqwaS7vai71WuOGFNJnzRT+6WnzY0leaLTionuzfE3M4Y/jTrc8BTL6+PVFCr6Q==} - '@oven/bun-darwin-aarch64@1.1.27': - resolution: {integrity: sha512-h5Mf2+AESEtHHGRdSDQgDU7TY2vMPMeAuwkf/XPMDpaS+EoIUFayj1CXShB25gT16uw/ww/Pl3LaN0sN0tcWhQ==} + '@oven/bun-darwin-aarch64@1.1.33': + resolution: {integrity: sha512-HF2lVCkfKlugBwVVuwYb1AIiewCSKq+6KaojbRzMlZM2V2nBSfBE5wefRxfU76dJQIcnxnplX8GKiCd7rZeUfg==} cpu: [arm64] os: [darwin] - '@oven/bun-darwin-x64-baseline@1.1.27': - resolution: {integrity: sha512-Ld+FBW3VUzGOI9QhsQKnaiYinGcOQg83NpagoeyMASozFJEMyDEr/jxA5KxoSEJRChQrGZowq/7IfoPIcJZIUA==} + '@oven/bun-darwin-x64-baseline@1.1.33': + resolution: {integrity: sha512-gjc4oiFhgqTVhC4LVfhqevuacmHHucmzPK4tsQshU0GdPdbvSihfpbFrK74+uPXipV+pJ2zIg2UK2OJpUblMng==} cpu: [x64] os: [darwin] - '@oven/bun-darwin-x64@1.1.27': - resolution: {integrity: sha512-l+uAcE0kh4+c2VUwKvSpsHFQbzR2eLxGKhONa4AJBNVW4UXIpSdH12Qj9fG4Xqgq7s26zs32jPsl2C2NQsmRag==} + '@oven/bun-darwin-x64@1.1.33': + resolution: {integrity: sha512-Smc0Au8CPPmD4rYEOnhW+lxvVZVcnPkWXPMObl8cPOuV3Ue8cVZQVsbP6deumLfECrDvthsCPVKx2fRPYUixJQ==} cpu: [x64] os: [darwin] - '@oven/bun-linux-aarch64@1.1.27': - resolution: {integrity: sha512-4oaNlx07SFxhO26Lm2cfRjozEQX/qRoWFhnz+EFLlGPUPLB2cNmXCVMtmXJep0u4Jub5pGK9yISwNT1voZ6KMg==} + '@oven/bun-linux-aarch64@1.1.33': + resolution: {integrity: sha512-HpD4t8Ip4BswMVoCmT97fjNUlPP+HNWp18PaarLLx6WhU8A1Ua9XyX1W1UjEYqjrAsEMs972H69e+76ZSRX+Pw==} cpu: [arm64] os: [linux] - '@oven/bun-linux-x64-baseline@1.1.27': - resolution: {integrity: sha512-495DOwgzpr/0ta/AaSRYb7EJeAEAf38cBOUO6oJzCxT5NdWRbZeAo5bmqcrBke1AexnKPA7RUN9Z5+t1TvqjtQ==} + '@oven/bun-linux-x64-baseline@1.1.33': + resolution: {integrity: sha512-u/VKLCdozwjKk+8en3EMK1ZQGSnnYIZR85w8bU60ZPzFau+jV43TkqBTWYi9JzDxNDMR66b18iWuxlPNUBK7ew==} cpu: [x64] os: [linux] - '@oven/bun-linux-x64@1.1.27': - resolution: {integrity: sha512-ktplW245+ke0GIKdBEzZisZ4mwAqdPYmW3RzhDPGB7193jVmaAE1YVUscrWkTAdfl6YMGb99IXThrhcXSddeAw==} + '@oven/bun-linux-x64@1.1.33': + resolution: {integrity: sha512-aODJGbky+osqyh7T4LITqu5CJYq9XAz5f507EJIBwBU3ZbYQ/1eNv+0nu5wHvTafj29g8tlBhgVDpkrWc3u3pA==} cpu: [x64] os: [linux] - '@oven/bun-windows-x64-baseline@1.1.27': - resolution: {integrity: sha512-Qfn80kb9eDZaecCVVVxFpNfuHvo7h4yQlh278u9Vs0vSrHTYG4dxoH4SWkZSzHa44ZwKRpa1TmMfDVhX/HE+mA==} + '@oven/bun-windows-x64-baseline@1.1.33': + resolution: {integrity: sha512-Ouiiv7bVPuoqjFCXc4HiRJ+ttrGiNsXQfv/8Wtsc5bSBuBBCjmKy0I2MpFXZV3YSi8Jp7LEzoYM0Kv1AvX7ySQ==} cpu: [x64] os: [win32] - '@oven/bun-windows-x64@1.1.27': - resolution: {integrity: sha512-LIZRqlyLpMEkmbsA+d/GmQnEdJzMGlFRlVtdQnyjTskW+uMv+lBHmWu7CkdcCCVPtf6wRDYgdkjpQOAw1wle5g==} + '@oven/bun-windows-x64@1.1.33': + resolution: {integrity: sha512-ldFk0tywL1m56RzVXYbO+0s48N1/UGPpAay/yN7zYR5LM/A97YGEtCydc2tULwI7uabQgzDI423LDL184uR6ig==} cpu: [x64] os: [win32] @@ -1210,8 +1207,8 @@ packages: resolution: {integrity: sha512-BkG2tQpUUO0iUm65nSqP8hwHkNfN8jQw8apqflJNt9H8EkEL6v7sqwbLvGqtlxM9wzdxbg7lrWp3oHg4rOP31g==} engines: {node: '>=18'} - '@polkadot/api-augment@14.0.1': - resolution: {integrity: sha512-+ZHq3JaQZ/3Q45r6/YQBeLfoP8S5ibgkOvLKnKA9cJeF7oP5Qgi6pAEnGW0accfnT9PyCEco9fD/ZOLR9Yka7w==} + '@polkadot/api-augment@14.2.1': + resolution: {integrity: sha512-Vi1iuGliJe3rrH2wyfZq/FIYncUqX6ue15Zx0gpj20kRW9hNEU3ywr3NRrr3UXGZRozJZ/C4s0FNneNYvu/KCQ==} engines: {node: '>=18'} '@polkadot/api-augment@7.15.1': @@ -1230,8 +1227,8 @@ packages: resolution: {integrity: sha512-XYI7Po8i6C4lYZah7Xo0v7zOAawBUfkmtx0YxsLY/665Sup8oqzEj666xtV9qjBzR9coNhQonIFOn+9fh27Ncw==} engines: {node: '>=18'} - '@polkadot/api-base@14.0.1': - resolution: {integrity: sha512-OVnDiztKx/1ktae9eCzO1q8lmKEfnQ71fipo8JkDJOMIN4vT1IqL9KQo4e/Xz8UtOfTJ0H8kZ6evaLqdA3ZYOA==} + '@polkadot/api-base@14.2.1': + resolution: {integrity: sha512-HofQlndP8OeO91iU+Ueg7DWo7fmzD5TJs/WHBS2XwSZfZ6rzYnfBxpFM8A51oY+HxXHc5EgvjdhqY2aO2OjZ2w==} engines: {node: '>=18'} '@polkadot/api-base@7.15.1': @@ -1250,8 +1247,8 @@ packages: resolution: {integrity: sha512-R0AMANEnqs5AiTaiQX2FXCxUlOibeDSgqlkyG1/0KDsdr6PO/l3dJOgEO+grgAwh4hdqzk4I9uQpdKxG83f2Gw==} engines: {node: '>=18'} - '@polkadot/api-derive@14.0.1': - resolution: {integrity: sha512-ADQMre3DRRW/0rhJqxOVhQ1vqtyafP2dSZJ0qEAsto12q2WMSF8CZWo7pXe4DxiniDkZx3zVq4z5lqw2aBRLfg==} + '@polkadot/api-derive@14.2.1': + resolution: {integrity: sha512-2JqFcu+qRHpeveu3f/LTxhWw0MNt4M+aNeyttyo5kRRSAL/pmU75E43b4tXq7UZmlmKZZtga8b0dFHoiMTuuwA==} engines: {node: '>=18'} '@polkadot/api-derive@7.15.1': @@ -1270,8 +1267,8 @@ packages: resolution: {integrity: sha512-e1KS048471iBWZU10TJNEYOZqLO+8h8ajmVqpaIBOVkamN7tmacBxmHgq0+IA8VrGxjxtYNa1xF5Sqrg76uBEg==} engines: {node: '>=18'} - '@polkadot/api@14.0.1': - resolution: {integrity: sha512-CDSaUiJpXu9aE6MaTg14K+9Trf8K2PBHcD3Xl5m5KOvJperWgYFxoCqV3rXLIBWt69LgHhMYlq5JSPRHxejIsw==} + '@polkadot/api@14.2.1': + resolution: {integrity: sha512-vYYOvCbGzKWq2auv7e3r71lp0N9hLi4Wfvdb+PjDlUWy4CBydDPgNRL7eC/pJyY4/8zs5dAWVmmu5SQsdpM93g==} engines: {node: '>=18'} '@polkadot/api@7.15.1': @@ -1307,12 +1304,12 @@ packages: '@polkadot/util': 13.0.2 '@polkadot/util-crypto': 13.0.2 - '@polkadot/keyring@13.1.1': - resolution: {integrity: sha512-Wm+9gn946GIPjGzvueObLGBBS9s541HE6mvKdWGEmPFMzH93ESN931RZlOd67my5MWryiSP05h5SHTp7bSaQTA==} + '@polkadot/keyring@13.2.2': + resolution: {integrity: sha512-h4bPU92CALAAC+QOp6+zttuhI5H0GKOUzj1qwnmoPVoWxh21FoekLAXO1YJlsKxciTDdK5OhjdNPOIqcF0GCXA==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 13.1.1 - '@polkadot/util-crypto': 13.1.1 + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2 '@polkadot/keyring@6.11.1': resolution: {integrity: sha512-rW8INl7pO6Dmaffd6Df1yAYCRWa2RmWQ0LGfJeA/M6seVIkI6J3opZqAd4q2Op+h9a7z4TESQGk8yggOEL+Csg==} @@ -1351,8 +1348,8 @@ packages: resolution: {integrity: sha512-ABAL+vug/gIwkdFEzeh87JoJd0YKrxSYg/HjUrZ+Zis2ucxQEKpvtCpJ34ku+YrjacBfVqIAkkwd3ZdIPGq9aQ==} engines: {node: '>=18'} - '@polkadot/networks@13.1.1': - resolution: {integrity: sha512-eEQ4+Mfl1xFtApeU5PdXZ2XBhxNSvUz9yW+YQVGUCkXRjWFbqNRsTOYWGd9uFbiAOXiiiXbtqfZpxSDzIm4XOg==} + '@polkadot/networks@13.2.2': + resolution: {integrity: sha512-di3dLB9BcLQ9ARcDe/nizl7jZZnQbQlxB8kXtAXqTIVFtshtKT+zYcji6dTX7xX9/O9tZB7qnrvuIuI0MkwJ5A==} engines: {node: '>=18'} '@polkadot/networks@6.11.1': @@ -1382,8 +1379,8 @@ packages: resolution: {integrity: sha512-IEco5pnso+fYkZNMlMAN5i4XAxdXPv0PZ0HNuWlCwF/MmRvWl8pq5JFtY1FiByHEbeuHwMIUhHM5SDKQ85q9Hg==} engines: {node: '>=18'} - '@polkadot/rpc-augment@14.0.1': - resolution: {integrity: sha512-M0CbN/IScqiedYI2TmoQ+SoeEdJHfxGeQD1qJf9uYv9LILK+x1/5fyr5DrZ3uCGVmLuObWAJLnHTs0BzJcSHTQ==} + '@polkadot/rpc-augment@14.2.1': + resolution: {integrity: sha512-ouRRq7suXiPBECImMf+pM7U/k4541uJxuYreFhnplE+egaikKieY720hKiRxesLALr6fjgBr3DRsUsk8yP3YtA==} engines: {node: '>=18'} '@polkadot/rpc-augment@7.15.1': @@ -1402,8 +1399,8 @@ packages: resolution: {integrity: sha512-yaveqxNcmyluyNgsBT5tpnCa/md0CGbOtRK7K82LWsz7gsbh0x80GBbJrQGxsUybg1gPeZbO1q9IigwA6fY8ag==} engines: {node: '>=18'} - '@polkadot/rpc-core@14.0.1': - resolution: {integrity: sha512-SfgC6WU7RxaFFgm/GUpsqTywyaDeb7+r5GU3GlwC+QR148h3a7UcQ3sssOpB0MiZ2gIXngJuyIcIQm/3GfHnJw==} + '@polkadot/rpc-core@14.2.1': + resolution: {integrity: sha512-jGOoRKdY6XbMY4Z7N9lKI3YmLfZWjT+DcXo+kRfSr3YgORDUXNwHy9v5doJCkPoY3OIIDmhlK5OaIEXeEjvrcQ==} engines: {node: '>=18'} '@polkadot/rpc-core@7.15.1': @@ -1422,8 +1419,8 @@ packages: resolution: {integrity: sha512-cAhfN937INyxwW1AdjABySdCKhC7QCIONRDHDea1aLpiuxq/w+QwjxauR9fCNGh3lTaAwwnmZ5WfFU2PtkDMGQ==} engines: {node: '>=18'} - '@polkadot/rpc-provider@14.0.1': - resolution: {integrity: sha512-mNfaKZUHPXGSY7TwgOfV05RN3Men21Dw7YXrSZDFkJYsZ55yOAYdmLg9anPZGHW100YnNWrXj+3uhQOw8JgqkA==} + '@polkadot/rpc-provider@14.2.1': + resolution: {integrity: sha512-5ty21djvymqgxIpqKya9ekLHbiIRISIq9pl/GyVUSj2y3ditmXHF1UElmKfMCvi0b6nmOJlkxJIb7ZDyfjkBag==} engines: {node: '>=18'} '@polkadot/rpc-provider@7.15.1': @@ -1442,8 +1439,8 @@ packages: resolution: {integrity: sha512-3fDCOy2BEMuAtMYl4crKg76bv/0pDNEuzpAzV4EBUMIlJwypmjy5sg3gUPCMcA+ckX3xb8DhkWU4ceUdS7T2KQ==} engines: {node: '>=18'} - '@polkadot/types-augment@14.0.1': - resolution: {integrity: sha512-PGo81444J5tGJxP3tu060Jx1kkeuo8SmBIt9S/w626Se49x4RLM5a7Pa5fguYVsg4TsJa9cgVPMuu6Y0F/2aCQ==} + '@polkadot/types-augment@14.2.1': + resolution: {integrity: sha512-dAsiRRPr7ClX/zz7YqpIr4dB5fOR8UzXnxz8d4Tyrcxpf9CAivIIJ8Mxl5M/71CTF/LSlCbSvsmvBG0mAX7HLg==} engines: {node: '>=18'} '@polkadot/types-augment@7.15.1': @@ -1462,8 +1459,8 @@ packages: resolution: {integrity: sha512-DiPGRFWtVMepD9i05eC3orSbGtpN7un/pXOrXu0oriU+oxLkpvZH68ZsPNtJhKdQy03cAYtvB8elJOFJZYqoqQ==} engines: {node: '>=18'} - '@polkadot/types-codec@14.0.1': - resolution: {integrity: sha512-IyUlkrRZ6uppbHVlMJL+btKP7dfgW65K06ggQxH7Y/IyRAQVDNjXecAZrCUMB/gtjUXNPyTHEIfPGDlg8E6rig==} + '@polkadot/types-codec@14.2.1': + resolution: {integrity: sha512-NKI9hiW2tE3AcEKL1eGd6fyNa2QbOvlH+mEq1vTyT3/fm65mrtIqOuZASWa3kXMQmOHCs2/mMGh7p1Kj8glalQ==} engines: {node: '>=18'} '@polkadot/types-codec@7.15.1': @@ -1482,8 +1479,8 @@ packages: resolution: {integrity: sha512-nOpeAKZLdSqNMfzS3waQXgyPPaNt8rUHEmR5+WNv6c/Ke/vyf710wjxiTewfp0wpBgtdrimlgG4DLX1J9Ms1LA==} engines: {node: '>=18'} - '@polkadot/types-create@14.0.1': - resolution: {integrity: sha512-R9/ac3CHKrFhvPKVUdpjnCDFSaGjfrNwtuY+AzvExAMIq7pM9dxo2N8UfnLbyFaG/n1hfYPXDIS3hLHvOZsLbw==} + '@polkadot/types-create@14.2.1': + resolution: {integrity: sha512-AhcyVR6eoc+br76QbqQ3LVwFuOrdZH/A9hlpMPI8MvIW46wZ5bPcDoqKLZugeH6wOKKVzbqw8z9tZ1KWgUSdVg==} engines: {node: '>=18'} '@polkadot/types-create@7.15.1': @@ -1502,8 +1499,8 @@ packages: resolution: {integrity: sha512-bvhO4KQu/dgPmdwQXsweSMRiRisJ7Bp38lZVEIFykfd2qYyRW3OQEbIPKYpx9raD+fDATU0bTiKQnELrSGhYXw==} engines: {node: '>=18'} - '@polkadot/types-known@14.0.1': - resolution: {integrity: sha512-oGypUOQNxZ6bq10czpVadZYeDM2NBB2kX3VFHLKLEpjaRbnVYtKXL6pl8B0uHR8GK/2Z8AmPOj6kuRjaC86qXg==} + '@polkadot/types-known@14.2.1': + resolution: {integrity: sha512-Lp8km3+0NKBR3x9covI84Mz3dXFAmIkohzJhcGjpjwcOKH0W4GSQBTDcsYfTH+UAY1mF7hvgXCtvGwbyLm2kOQ==} engines: {node: '>=18'} '@polkadot/types-known@4.17.1': @@ -1530,8 +1527,8 @@ packages: resolution: {integrity: sha512-bz6JSt23UEZ2eXgN4ust6z5QF9pO5uNH7UzCP+8I/Nm85ZipeBYj2Wu6pLlE3Hw30hWZpuPxMDOKoEhN5bhLgw==} engines: {node: '>=18'} - '@polkadot/types-support@14.0.1': - resolution: {integrity: sha512-lcZEyOf5e3WLLtrFlLTvFfUpO0Vx/Gh5lhLLjdx1W9Xs0KJUlOxSAKxvjVieJJj6HifL0Jh6tDYOUeEc4TOrvA==} + '@polkadot/types-support@14.2.1': + resolution: {integrity: sha512-pAaAGDEBUnDiC15AjVc1aULk+vfCma2OlVzU6usOLee1OKkwDuk74Bnyo9jshKVYuTjujLrmp3zmzmuU1NjbeQ==} engines: {node: '>=18'} '@polkadot/types-support@7.15.1': @@ -1550,8 +1547,8 @@ packages: resolution: {integrity: sha512-ivYtt7hYcRvo69ULb1BJA9BE1uefijXcaR089Dzosr9+sMzvsB1yslNQReOq+Wzq6h6AQj4qex6qVqjWZE6Z4A==} engines: {node: '>=18'} - '@polkadot/types@14.0.1': - resolution: {integrity: sha512-DOMzHsyVbCa12FT2Fng8iGiQJhHW2ONpv5oieU+Z2o0gFQqwNmIDXWncScG5mAUBNcDMXLuvWIKLKtUDOq8msg==} + '@polkadot/types@14.2.1': + resolution: {integrity: sha512-C4mf3257vefKDCF5dPtw3WPztE/cTgHjI/fmimwxjGakX3u1mni19wqvBXKg69tuzJ31YMagqMkD2YFZ/zGSPg==} engines: {node: '>=18'} '@polkadot/types@4.17.1': @@ -1596,17 +1593,11 @@ packages: peerDependencies: '@polkadot/util': 12.6.2 - '@polkadot/util-crypto@13.0.2': - resolution: {integrity: sha512-woUsJJ6zd/caL7U+D30a5oM/+WK9iNI00Y8aNUHSj6Zq/KPzK9uqDBaLGWwlgrejoMQkxxiU2X0f2LzP15AtQg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 13.0.2 - - '@polkadot/util-crypto@13.1.1': - resolution: {integrity: sha512-FG68rrLPdfLcscEyH10vnGkakM4O2lqr71S3GDhgc9WXaS8y9jisLgMPg8jbMHiQBJ3iKYkmtPKiLBowRslj2w==} + '@polkadot/util-crypto@13.2.2': + resolution: {integrity: sha512-C4vl07XC43vE6egd9LmSe0uOc7hAvBq6CIoILk5ZB95ABNBQSHOrS1pHugW4rJgVUiZgv8sdl+twmgisuSsSfg==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 13.1.1 + '@polkadot/util': 13.2.2 '@polkadot/util-crypto@6.11.1': resolution: {integrity: sha512-fWA1Nz17FxWJslweZS4l0Uo30WXb5mYV1KEACVzM+BSZAvG5eoiOAYX6VYZjyw6/7u53XKrWQlD83iPsg3KvZw==} @@ -1636,6 +1627,10 @@ packages: resolution: {integrity: sha512-M4iQ5Um8tFdDmD7a96nPzfrEt+kxyWOqQDPqXyaax4QBnq/WCbq0jo8IO61uz55mdMQnGZvq8jd8uge4V6JzzQ==} engines: {node: '>=18'} + '@polkadot/util@13.2.2': + resolution: {integrity: sha512-zhsGtR0J2a0ODesJNbCYqEXOL2rhPrmv1F6OB2JMdho7iOrkONck3PZaoT/Y0JF7IlHjGV8K6yrw7k9KUtFrEA==} + engines: {node: '>=18'} + '@polkadot/util@6.11.1': resolution: {integrity: sha512-TEdCetr9rsdUfJZqQgX/vxLuV4XU8KMoKBMJdx+JuQ5EWemIdQkEtMBdL8k8udNGbgSNiYFA6rPppATeIxAScg==} engines: {node: '>=14.0.0'} @@ -1651,8 +1646,8 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-bridge@7.3.2': - resolution: {integrity: sha512-AJEXChcf/nKXd5Q/YLEV5dXQMle3UNT7jcXYmIffZAo/KI394a+/24PaISyQjoNC0fkzS1Q8T5pnGGHmXiVz2g==} + '@polkadot/wasm-bridge@7.4.1': + resolution: {integrity: sha512-tdkJaV453tezBxhF39r4oeG0A39sPKGDJmN81LYLf+Fihb7astzwju+u75BRmDrHZjZIv00un3razJEWCxze6g==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' @@ -1676,8 +1671,8 @@ packages: peerDependencies: '@polkadot/util': '*' - '@polkadot/wasm-crypto-asmjs@7.3.2': - resolution: {integrity: sha512-QP5eiUqUFur/2UoF2KKKYJcesc71fXhQFLT3D4ZjG28Mfk2ZPI0QNRUfpcxVQmIUpV5USHg4geCBNuCYsMm20Q==} + '@polkadot/wasm-crypto-asmjs@7.4.1': + resolution: {integrity: sha512-pwU8QXhUW7IberyHJIQr37IhbB6DPkCG5FhozCiNTq4vFBsFPjm9q8aZh7oX1QHQaiAZa2m2/VjIVE+FHGbvHQ==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' @@ -1689,8 +1684,8 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-crypto-init@7.3.2': - resolution: {integrity: sha512-FPq73zGmvZtnuJaFV44brze3Lkrki3b4PebxCy9Fplw8nTmisKo9Xxtfew08r0njyYh+uiJRAxPCXadkC9sc8g==} + '@polkadot/wasm-crypto-init@7.4.1': + resolution: {integrity: sha512-AVka33+f7MvXEEIGq5U0dhaA2SaXMXnxVCQyhJTaCnJ5bRDj0Xlm3ijwDEQUiaDql7EikbkkRtmlvs95eSUWYQ==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' @@ -1714,8 +1709,8 @@ packages: peerDependencies: '@polkadot/util': '*' - '@polkadot/wasm-crypto-wasm@7.3.2': - resolution: {integrity: sha512-15wd0EMv9IXs5Abp1ZKpKKAVyZPhATIAHfKsyoWCEFDLSOA0/K0QGOxzrAlsrdUkiKZOq7uzSIgIDgW8okx2Mw==} + '@polkadot/wasm-crypto-wasm@7.4.1': + resolution: {integrity: sha512-PE1OAoupFR0ZOV2O8tr7D1FEUAwaggzxtfs3Aa5gr+yxlSOaWUKeqsOYe1KdrcjmZVV3iINEAXxgrbzCmiuONg==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' @@ -1741,8 +1736,8 @@ packages: '@polkadot/util': '*' '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-crypto@7.3.2': - resolution: {integrity: sha512-+neIDLSJ6jjVXsjyZ5oLSv16oIpwp+PxFqTUaZdZDoA2EyFRQB8pP7+qLsMNk+WJuhuJ4qXil/7XiOnZYZ+wxw==} + '@polkadot/wasm-crypto@7.4.1': + resolution: {integrity: sha512-kHN/kF7hYxm1y0WeFLWeWir6oTzvcFmR4N8fJJokR+ajYbdmrafPN+6iLgQVbhZnDdxyv9jWDuRRsDnBx8tPMQ==} engines: {node: '>=18'} peerDependencies: '@polkadot/util': '*' @@ -1760,6 +1755,12 @@ packages: 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@10.4.2': resolution: {integrity: sha512-awRiox+/XSReLzimAU94fPldowiwnnMUkQJe8AebYhNocAj6SJU00GNoj6j6tAho6yleOwrTJXZaWFBaQVJQNg==} engines: {node: '>=14.0.0'} @@ -1776,6 +1777,10 @@ packages: resolution: {integrity: sha512-Cq4Y6fd9UWtRBZz8RX2tWEBL1IFwUtY6cL8p6HC9yhZtUR6OPjKZe6RIZQa9gSOoIuqZWd6PmtvSNGVH32yfkQ==} engines: {node: '>=18'} + '@polkadot/x-bigint@13.2.2': + resolution: {integrity: sha512-9ENDfG2wYqABWhQYYrbjJK0aPBvCqVPiFhBiKgIg6OTSJKJToa4Di9R8NxelF8eJTtz7DIvgf6gZY/jnKfbtWw==} + engines: {node: '>=18'} + '@polkadot/x-bigint@8.7.1': resolution: {integrity: sha512-ClkhgdB/KqcAKk3zA6Qw8wBL6Wz67pYTPkrAtImpvoPJmR+l4RARauv+MH34JXMUNlNb3aUwqN6lq2Z1zN+mJg==} engines: {node: '>=14.0.0'} @@ -1792,8 +1797,8 @@ packages: resolution: {integrity: sha512-B/gf9iriUr6za/Ui7zIFBfHz7UBZ68rJEIteWHx1UHRCZPcLqv+hgpev6xIGrkfFljI0/lI7IwtN2qy6HYzFBg==} engines: {node: '>=18'} - '@polkadot/x-fetch@13.1.1': - resolution: {integrity: sha512-qA6mIUUebJbS+oWzq/EagZflmaoa9b25WvsxSFn7mCvzKngXzr+GYCY4XiDwKY/S+/pr/kvSCKZ1ia8BDqPBYQ==} + '@polkadot/x-fetch@13.2.2': + resolution: {integrity: sha512-aDhd2kdx3JWvZSU4Ge966C0111CH8pCsDX7+9IsMGaZhjLF1NEo2xDjs+EwfUbSvNk68A4UVeJsXjG+IVor/ug==} engines: {node: '>=18'} '@polkadot/x-fetch@8.7.1': @@ -1816,6 +1821,10 @@ packages: resolution: {integrity: sha512-DViIMmmEs29Qlsp058VTg2Mn7e3/CpGazNnKJrsBa0o1Ptxl13/4Z0fjqCpNi2GB+kaOsnREzxUORrHcU+PqcQ==} engines: {node: '>=18'} + '@polkadot/x-global@13.2.2': + resolution: {integrity: sha512-a+iKD7JXxDRtYVo0bp1+HHlaem6MkUHU2yE0cx2e97p9x+IKyNEY58D0L5P66kszLvhFw+t3Jq+qHIj0+2YxkQ==} + engines: {node: '>=18'} + '@polkadot/x-global@6.11.1': resolution: {integrity: sha512-lsBK/e4KbjfieyRmnPs7bTiGbP/6EoCZz7rqD/voNS5qsJAaXgB9LR+ilubun9gK/TDpebyxgO+J19OBiQPIRw==} engines: {node: '>=14.0.0'} @@ -1835,18 +1844,11 @@ packages: '@polkadot/util': 12.6.2 '@polkadot/wasm-util': '*' - '@polkadot/x-randomvalues@13.0.2': - resolution: {integrity: sha512-SGj+L0H/7TWZtSmtkWlixO4DFzXDdluI0UscN2h285os2Ns8PnmBbue+iJ8PVSzpY1BOxd66gvkkpboPz+jXFQ==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 13.0.2 - '@polkadot/wasm-util': '*' - - '@polkadot/x-randomvalues@13.1.1': - resolution: {integrity: sha512-cXj4omwbgzQQSiBtV1ZBw+XhJUU3iz/DS6ghUnGllSZEK+fGqiyaNgeFQzDY0tKjm6kYaDpvtOHR3mHsbzDuTg==} + '@polkadot/x-randomvalues@13.2.2': + resolution: {integrity: sha512-1UNImkS5PAaGHeIl2DlMjgt2iN7nlclzwrYhmxd0e9Z11RQqavGqi1a02HGREgnUu+wJ7eHmPMVe6K96+cL+aQ==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 13.1.1 + '@polkadot/util': 13.2.2 '@polkadot/wasm-util': '*' '@polkadot/x-randomvalues@6.11.1': @@ -1877,6 +1879,10 @@ packages: resolution: {integrity: sha512-LpZ9KYc6HdBH+i86bCmun4g4GWMiWN/1Pzs0hNdanlQMfqp3UGzl1Dqp0nozMvjWAlvyG7ip235VgNMd8HEbqg==} engines: {node: '>=18'} + '@polkadot/x-textdecoder@13.2.2': + resolution: {integrity: sha512-elpIrgdq22yyvt4fzxwb2IRJEpswPVwizzauRipVy3uUmI/lC2f7D7u9jrC554Xy8UrrAPExX1sWJCxZA8DZ/g==} + engines: {node: '>=18'} + '@polkadot/x-textdecoder@6.11.1': resolution: {integrity: sha512-DI1Ym2lyDSS/UhnTT2e9WutukevFZ0WGpzj4eotuG2BTHN3e21uYtYTt24SlyRNMrWJf5+TkZItmZeqs1nwAfQ==} engines: {node: '>=14.0.0'} @@ -1901,6 +1907,10 @@ packages: resolution: {integrity: sha512-w1mT15B9ptN5CJNgN/A0CmBqD5y9OePjBdU6gmAd8KRhwXCF0MTBKcEZk1dHhXiXtX+28ULJWLrfefC5gxy69Q==} engines: {node: '>=18'} + '@polkadot/x-textencoder@13.2.2': + resolution: {integrity: sha512-nxlNvK5h0KPCaAE/cx92e8JCPAlmFGbuXC9l03C1Ei1wAnOcWuJWRIk2qOkCEYkpT+G0jITPN4dgk634+pBQSw==} + engines: {node: '>=18'} + '@polkadot/x-textencoder@6.11.1': resolution: {integrity: sha512-8ipjWdEuqFo+R4Nxsc3/WW9CSEiprX4XU91a37ZyRVC4e9R1bmvClrpXmRQLVcAQyhRvG8DKOOtWbz8xM+oXKg==} engines: {node: '>=14.0.0'} @@ -1921,8 +1931,8 @@ packages: resolution: {integrity: sha512-nC5e2eY5D5ZR5teQOB7ib+dWLbmNws86cTz3BjKCalSMBBIn6i3V9ElgABpierBmnSJe9D94EyrH1BxdVfDxUg==} engines: {node: '>=18'} - '@polkadot/x-ws@13.1.1': - resolution: {integrity: sha512-E/xFmJTiFzu+IK5M3/8W/9fnvNJFelcnunPv/IgO6UST94SDaTsN/Gbeb6SqPb6CsrTHRl3WD+AZ3ErGGwQfEA==} + '@polkadot/x-ws@13.2.2': + resolution: {integrity: sha512-WEygcHPB55cKLiNoejJ0Lq3Z1fb4hUO3FmYTXdpHgk0xIOfYDrr7rTlI2cZ4Nb32MofeehN/ZStmEW5Edib6TQ==} engines: {node: '>=18'} '@polkadot/x-ws@8.7.1': @@ -1937,81 +1947,171 @@ packages: cpu: [arm] os: [android] + '@rollup/rollup-android-arm-eabi@4.24.2': + resolution: {integrity: sha512-ufoveNTKDg9t/b7nqI3lwbCG/9IJMhADBNjjz/Jn6LxIZxD7T5L8l2uO/wD99945F1Oo8FvgbbZJRguyk/BdzA==} + cpu: [arm] + os: [android] + '@rollup/rollup-android-arm64@4.21.2': resolution: {integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==} cpu: [arm64] os: [android] + '@rollup/rollup-android-arm64@4.24.2': + resolution: {integrity: sha512-iZoYCiJz3Uek4NI0J06/ZxUgwAfNzqltK0MptPDO4OR0a88R4h0DSELMsflS6ibMCJ4PnLvq8f7O1d7WexUvIA==} + cpu: [arm64] + os: [android] + '@rollup/rollup-darwin-arm64@4.21.2': resolution: {integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==} cpu: [arm64] os: [darwin] + '@rollup/rollup-darwin-arm64@4.24.2': + resolution: {integrity: sha512-/UhrIxobHYCBfhi5paTkUDQ0w+jckjRZDZ1kcBL132WeHZQ6+S5v9jQPVGLVrLbNUebdIRpIt00lQ+4Z7ys4Rg==} + cpu: [arm64] + os: [darwin] + '@rollup/rollup-darwin-x64@4.21.2': resolution: {integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==} cpu: [x64] os: [darwin] + '@rollup/rollup-darwin-x64@4.24.2': + resolution: {integrity: sha512-1F/jrfhxJtWILusgx63WeTvGTwE4vmsT9+e/z7cZLKU8sBMddwqw3UV5ERfOV+H1FuRK3YREZ46J4Gy0aP3qDA==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.24.2': + resolution: {integrity: sha512-1YWOpFcGuC6iGAS4EI+o3BV2/6S0H+m9kFOIlyFtp4xIX5rjSnL3AwbTBxROX0c8yWtiWM7ZI6mEPTI7VkSpZw==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.24.2': + resolution: {integrity: sha512-3qAqTewYrCdnOD9Gl9yvPoAoFAVmPJsBvleabvx4bnu1Kt6DrB2OALeRVag7BdWGWLhP1yooeMLEi6r2nYSOjg==} + cpu: [x64] + os: [freebsd] + '@rollup/rollup-linux-arm-gnueabihf@4.21.2': resolution: {integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==} cpu: [arm] os: [linux] + '@rollup/rollup-linux-arm-gnueabihf@4.24.2': + resolution: {integrity: sha512-ArdGtPHjLqWkqQuoVQ6a5UC5ebdX8INPuJuJNWRe0RGa/YNhVvxeWmCTFQ7LdmNCSUzVZzxAvUznKaYx645Rig==} + cpu: [arm] + os: [linux] + '@rollup/rollup-linux-arm-musleabihf@4.21.2': resolution: {integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==} cpu: [arm] os: [linux] + '@rollup/rollup-linux-arm-musleabihf@4.24.2': + resolution: {integrity: sha512-B6UHHeNnnih8xH6wRKB0mOcJGvjZTww1FV59HqJoTJ5da9LCG6R4SEBt6uPqzlawv1LoEXSS0d4fBlHNWl6iYw==} + cpu: [arm] + os: [linux] + '@rollup/rollup-linux-arm64-gnu@4.21.2': resolution: {integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==} cpu: [arm64] os: [linux] + '@rollup/rollup-linux-arm64-gnu@4.24.2': + resolution: {integrity: sha512-kr3gqzczJjSAncwOS6i7fpb4dlqcvLidqrX5hpGBIM1wtt0QEVtf4wFaAwVv8QygFU8iWUMYEoJZWuWxyua4GQ==} + cpu: [arm64] + os: [linux] + '@rollup/rollup-linux-arm64-musl@4.21.2': resolution: {integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==} cpu: [arm64] os: [linux] + '@rollup/rollup-linux-arm64-musl@4.24.2': + resolution: {integrity: sha512-TDdHLKCWgPuq9vQcmyLrhg/bgbOvIQ8rtWQK7MRxJ9nvaxKx38NvY7/Lo6cYuEnNHqf6rMqnivOIPIQt6H2AoA==} + cpu: [arm64] + os: [linux] + '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': resolution: {integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==} cpu: [ppc64] os: [linux] + '@rollup/rollup-linux-powerpc64le-gnu@4.24.2': + resolution: {integrity: sha512-xv9vS648T3X4AxFFZGWeB5Dou8ilsv4VVqJ0+loOIgDO20zIhYfDLkk5xoQiej2RiSQkld9ijF/fhLeonrz2mw==} + cpu: [ppc64] + os: [linux] + '@rollup/rollup-linux-riscv64-gnu@4.21.2': resolution: {integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==} cpu: [riscv64] os: [linux] + '@rollup/rollup-linux-riscv64-gnu@4.24.2': + resolution: {integrity: sha512-tbtXwnofRoTt223WUZYiUnbxhGAOVul/3StZ947U4A5NNjnQJV5irKMm76G0LGItWs6y+SCjUn/Q0WaMLkEskg==} + cpu: [riscv64] + os: [linux] + '@rollup/rollup-linux-s390x-gnu@4.21.2': resolution: {integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==} cpu: [s390x] os: [linux] + '@rollup/rollup-linux-s390x-gnu@4.24.2': + resolution: {integrity: sha512-gc97UebApwdsSNT3q79glOSPdfwgwj5ELuiyuiMY3pEWMxeVqLGKfpDFoum4ujivzxn6veUPzkGuSYoh5deQ2Q==} + cpu: [s390x] + os: [linux] + '@rollup/rollup-linux-x64-gnu@4.21.2': resolution: {integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==} cpu: [x64] os: [linux] + '@rollup/rollup-linux-x64-gnu@4.24.2': + resolution: {integrity: sha512-jOG/0nXb3z+EM6SioY8RofqqmZ+9NKYvJ6QQaa9Mvd3RQxlH68/jcB/lpyVt4lCiqr04IyaC34NzhUqcXbB5FQ==} + cpu: [x64] + os: [linux] + '@rollup/rollup-linux-x64-musl@4.21.2': resolution: {integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==} cpu: [x64] os: [linux] + '@rollup/rollup-linux-x64-musl@4.24.2': + resolution: {integrity: sha512-XAo7cJec80NWx9LlZFEJQxqKOMz/lX3geWs2iNT5CHIERLFfd90f3RYLLjiCBm1IMaQ4VOX/lTC9lWfzzQm14Q==} + cpu: [x64] + os: [linux] + '@rollup/rollup-win32-arm64-msvc@4.21.2': resolution: {integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==} cpu: [arm64] os: [win32] + '@rollup/rollup-win32-arm64-msvc@4.24.2': + resolution: {integrity: sha512-A+JAs4+EhsTjnPQvo9XY/DC0ztaws3vfqzrMNMKlwQXuniBKOIIvAAI8M0fBYiTCxQnElYu7mLk7JrhlQ+HeOw==} + cpu: [arm64] + os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.21.2': resolution: {integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==} cpu: [ia32] os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.24.2': + resolution: {integrity: sha512-ZhcrakbqA1SCiJRMKSU64AZcYzlZ/9M5LaYil9QWxx9vLnkQ9Vnkve17Qn4SjlipqIIBFKjBES6Zxhnvh0EAEw==} + cpu: [ia32] + os: [win32] + '@rollup/rollup-win32-x64-msvc@4.21.2': resolution: {integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==} cpu: [x64] os: [win32] + '@rollup/rollup-win32-x64-msvc@4.24.2': + resolution: {integrity: sha512-2mLH46K1u3r6uwc95hU+OR9q/ggYMpnS7pSp83Ece1HUQgF9Nh/QwTK5rcgbFnV9j+08yBrU5sA/P0RK2MSBNA==} + cpu: [x64] + os: [win32] + '@scure/base@1.0.0': resolution: {integrity: sha512-gIVaYhUsy+9s58m/ETjSJVKHhKTBMmcRb9cEV5/5dwvfDlfORjKrFsDeDHWRrm6RjcPvCLZFwGJjAjLj1gg4HA==} @@ -2092,6 +2192,9 @@ packages: '@substrate/ss58-registry@1.50.0': resolution: {integrity: sha512-mkmlMlcC+MSd9rA+PN8ljGAm5fVZskvVwkXIsbx4NFwaT8kt38r7e9cyDWscG3z2Zn40POviZvEMrJSk+r2SgQ==} + '@substrate/ss58-registry@1.51.0': + resolution: {integrity: sha512-TWDurLiPxndFgKjVavCniytBIw+t4ViOi7TYp9h/D0NMmkEc9klFTo+827eyEJ0lELpqO207Ey7uGxUa+BS1jQ==} + '@types/big.js@6.2.2': resolution: {integrity: sha512-e2cOW9YlVzFY2iScnGBBkplKsrn2CsObHQ2Hiw4V1sSyiGbgWL8IyqE3zFi1Pt5o1pdAtYkDAIsF3KKUPjdzaA==} @@ -2101,9 +2204,15 @@ packages: '@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==} + '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/node-fetch@2.6.11': resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} @@ -2116,9 +2225,6 @@ packages: '@types/node@22.5.4': resolution: {integrity: sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg==} - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - '@types/stylis@4.2.5': resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==} @@ -2155,14 +2261,13 @@ packages: '@polkadot/api': ^10.10.1 '@polkadot/types': ^10.10.1 - '@vitest/expect@2.1.1': - resolution: {integrity: sha512-YeueunS0HiHiQxk+KEOnq/QMzlUuOzbU1Go+PgAsHvvv3tUkJPm9xWt+6ITNTlzsMXUjmgm5T+U7KBPK2qQV6w==} + '@vitest/expect@2.1.4': + resolution: {integrity: sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==} - '@vitest/mocker@2.1.1': - resolution: {integrity: sha512-LNN5VwOEdJqCmJ/2XJBywB11DLlkbY0ooDJW3uRX5cZyYCrc4PI/ePX0iQhE3BiEGiQmK4GE7Q/PqCkkaiPnrA==} + '@vitest/mocker@2.1.4': + resolution: {integrity: sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==} peerDependencies: - '@vitest/spy': 2.1.1 - msw: ^2.3.5 + msw: ^2.4.9 vite: ^5.0.0 peerDependenciesMeta: msw: @@ -2170,20 +2275,20 @@ packages: vite: optional: true - '@vitest/pretty-format@2.1.1': - resolution: {integrity: sha512-SjxPFOtuINDUW8/UkElJYQSFtnWX7tMksSGW0vfjxMneFqxVr8YJ979QpMbDW7g+BIiq88RAGDjf7en6rvLPPQ==} + '@vitest/pretty-format@2.1.4': + resolution: {integrity: sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==} - '@vitest/runner@2.1.1': - resolution: {integrity: sha512-uTPuY6PWOYitIkLPidaY5L3t0JJITdGTSwBtwMjKzo5O6RCOEncz9PUN+0pDidX8kTHYjO0EwUIvhlGpnGpxmA==} + '@vitest/runner@2.1.4': + resolution: {integrity: sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==} - '@vitest/snapshot@2.1.1': - resolution: {integrity: sha512-BnSku1WFy7r4mm96ha2FzN99AZJgpZOWrAhtQfoxjUU5YMRpq1zmHRq7a5K9/NjqonebO7iVDla+VvZS8BOWMw==} + '@vitest/snapshot@2.1.4': + resolution: {integrity: sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==} - '@vitest/spy@2.1.1': - resolution: {integrity: sha512-ZM39BnZ9t/xZ/nF4UwRH5il0Sw93QnZXd9NAZGRpIgj0yvVwPpLd702s/Cx955rGaMlyBQkZJ2Ir7qyY48VZ+g==} + '@vitest/spy@2.1.4': + resolution: {integrity: sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==} - '@vitest/utils@2.1.1': - resolution: {integrity: sha512-Y6Q9TsI+qJ2CC0ZKj6VBb+T8UPz593N113nnUykqwANqhgf3QkZeHFlusgKLTqrnVHbj/XDKZcDHol+dxVT+rQ==} + '@vitest/utils@2.1.4': + resolution: {integrity: sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==} '@wormhole-foundation/sdk-base@0.10.7': resolution: {integrity: sha512-2UEy0BREBT8mtJFzkTx8zsBtw8s1LppHQ8r+1CPT1McMLPYcHSVRAg8OBOYsdhx2N2iyvMjJgGIeE1I0Y6c8Vg==} @@ -2191,9 +2296,6 @@ packages: '@wormhole-foundation/sdk-base@0.10.8': resolution: {integrity: sha512-adEVbpG/FxaM0rZ/vFVqt2XG7mf+7MNQmcn7rG4MzVR02VmyyeX8me4JjSgNqVSjZDlL1NE4210Fyv8doNeKmw==} - '@wormhole-foundation/sdk-base@0.8.2': - resolution: {integrity: sha512-LuR1X+6Ge0yyMZNg2F5WZUko4rR7SaKPTOpfsje381c/D9Mu7shQTwgtsE6o5IwZpMdoYKFzB8oRjHqAC23soA==} - '@wormhole-foundation/sdk-connect@0.10.7': resolution: {integrity: sha512-NzJXVG4auD6JuMsysLQUGiK4NVJ8p1me59Rjys87I+wBRszLfe6gRy0/tKhXT/ArjXzYPKNRsgymFi7mYXEe8w==} engines: {node: '>=16'} @@ -2202,19 +2304,12 @@ packages: resolution: {integrity: sha512-5f1XGxGyKlxo32gJacI5uV5iaybevAEDbXJY8jUBwvsAwt8VGLqjH1ZPyYEWsbl6biZhypIt+V6+QlpnoBpnVg==} engines: {node: '>=16'} - '@wormhole-foundation/sdk-connect@0.8.2': - resolution: {integrity: sha512-wXkrgfpAUDqV4CZND/Qn08jay2my1z7DwyJ84yPkYSsExfaTIPSSrj6fqpZrj2iDOALvIzMApJQPswyaYIIG/w==} - engines: {node: '>=16'} - '@wormhole-foundation/sdk-definitions@0.10.7': resolution: {integrity: sha512-9FUVqxbp91TjWofp2/3C/wCYlkdkt0ceM6Copc0zVDvD7sW8RpKVceWCttTZs843aKkRnGAkM+zLdT8kW/UUSw==} '@wormhole-foundation/sdk-definitions@0.10.8': resolution: {integrity: sha512-O7tw6shcCh/5OVch9g8m3ujE7xi0t/AF29tk3RvxDPKt5bETuXSFR85Wibmh5IP4yEgzEsQ1gm4uw1pG857G9A==} - '@wormhole-foundation/sdk-definitions@0.8.2': - resolution: {integrity: sha512-anUH5p/DVj7jnmOPL65yGn+Yt8LafFw9gcOYeU/lFvW8T1pqhxdFyydyW4LSriZzZO2mD9qi8Sv5/ndJf0sUXg==} - '@wormhole-foundation/sdk-evm-core@0.10.8': resolution: {integrity: sha512-7XIN1rwaqG7QB7Txc+o2wYPn20Rt5wD6cUJQ5888gvLH4uyQYaJQUORBqAxv4JrATkdryKwIvMnsdLmXw2JVLw==} engines: {node: '>=16'} @@ -2231,10 +2326,6 @@ packages: resolution: {integrity: sha512-/P8QKdVdemGYIDfAodSf7GmKBV0Yk23FaQ5lfJe2wBWMVVr4Vjmaw8oYEqJTdjrnZKdvQGYTpeIFymhG5ZzYRA==} engines: {node: '>=16'} - '@wormhole-foundation/sdk-evm@0.8.2': - resolution: {integrity: sha512-TfnQMIqdYFjUs11vzpN75Kv75ri/nsvyScqmLvIgLb8eybMNeSDeldEMEWYXmaQgaqYX0/+UelvEoHOaKfdF5g==} - engines: {node: '>=16'} - '@zeitgeistpm/type-defs@1.0.0': resolution: {integrity: sha512-dtjNlJSb8ELz87aTD6jqKKfO7kY4HFYzSmDk9JrzHLv+w/JKtG+aLz+WImL6MSaF1MjDE1tm28dj980Zn+nfGA==} @@ -2282,10 +2373,6 @@ packages: any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} @@ -2325,10 +2412,6 @@ packages: big.js@6.2.1: resolution: {integrity: sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ==} - binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} - blakejs@1.2.1: resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} @@ -2355,8 +2438,8 @@ packages: resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==} engines: {node: '>=6.14.2'} - bun@1.1.27: - resolution: {integrity: sha512-FLnMaOuVVuhjPIfmlRtAE42B2x+oSWO6jW8MZ/Ss179qokN//nzIhuj/07bdA016U6d11HyLvvGb6eaH0HKhBQ==} + bun@1.1.33: + resolution: {integrity: sha512-pNcxhsh87TURsaXwwLnOggb1HWdSDgOOjupTuXINmQUZeZ4UzLeVK8h8trzIVA0ECijDex94AkAQ5/JG4r5gkg==} os: [darwin, linux, win32] hasBin: true @@ -2384,8 +2467,8 @@ packages: canvas-renderer@2.2.1: resolution: {integrity: sha512-RrBgVL5qCEDIXpJ6NrzyRNoTnXxYarqm/cS/W6ERhUJts5UQtt/XPEosGN3rqUkZ4fjBArlnCbsISJ+KCFnIAg==} - chai@5.1.1: - resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} + chai@5.1.2: + resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} engines: {node: '>=12'} chalk-template@1.1.0: @@ -2407,9 +2490,9 @@ packages: resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} engines: {node: '>= 16'} - chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + chokidar@4.0.1: + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} + engines: {node: '>= 14.16.0'} ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} @@ -2647,8 +2730,8 @@ packages: engines: {node: '>=12'} hasBin: true - esbuild@0.23.1: - resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==} + esbuild@0.24.0: + resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==} engines: {node: '>=18'} hasBin: true @@ -2684,9 +2767,9 @@ packages: eventemitter3@5.0.1: resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + expect-type@1.1.0: + resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} + engines: {node: '>=12.0.0'} ext@1.7.0: resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} @@ -2719,6 +2802,14 @@ packages: fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + fdir@6.4.2: + resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + fetch-blob@3.2.0: resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} engines: {node: ^12.20 || >= 14.13} @@ -2795,10 +2886,6 @@ packages: resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} engines: {node: '>=12'} - get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -2852,10 +2939,6 @@ packages: human-id@1.0.2: resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} @@ -2888,10 +2971,6 @@ packages: is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -2912,10 +2991,6 @@ packages: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} - is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - is-subdir@1.2.0: resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} engines: {node: '>=4'} @@ -3087,6 +3162,9 @@ packages: loupe@3.1.1: resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==} + loupe@3.1.2: + resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} + lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} @@ -3097,15 +3175,12 @@ packages: lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} + magic-string@0.30.12: + resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} md5.js@1.3.5: resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} - merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} @@ -3197,18 +3272,10 @@ packages: resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==} hasBin: true - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - npm-package-arg@11.0.3: resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==} engines: {node: ^16.14.0 || >=18.0.0} - npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -3303,10 +3370,17 @@ packages: picocolors@1.1.0: resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} @@ -3355,11 +3429,6 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - prettier@3.3.3: - resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} - engines: {node: '>=14'} - hasBin: true - proc-log@4.2.0: resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -3420,9 +3489,9 @@ packages: resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} engines: {node: '>= 6'} - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@4.0.2: + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} + engines: {node: '>= 14.16.0'} regenerator-runtime@0.14.1: resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} @@ -3455,6 +3524,11 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + rollup@4.24.2: + resolution: {integrity: sha512-do/DFGq5g6rdDhdpPq5qb2ecoczeK6y+2UAjdJ5trjQJj5f1AiVdLRWRc9A9/fFukfvJRgM0UXzxBIYMovm5ww==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} @@ -3593,10 +3667,6 @@ packages: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} engines: {node: '>=8'} - strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - styled-components@6.1.13: resolution: {integrity: sha512-M0+N2xSnAtwcVAQeFEsGWFFxXDftHUD7XrKla06QbpUMmbmtFBMMTcKWvFXtWxuD5qQkB8iU5gk6QASlx2ZRMw==} engines: {node: '>= 16'} @@ -3639,8 +3709,12 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@0.3.0: - resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} + tinyexec@0.3.1: + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} + + tinyglobby@0.2.10: + resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} + engines: {node: '>=12.0.0'} tinypool@1.0.1: resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==} @@ -3650,8 +3724,8 @@ packages: resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} engines: {node: '>=14.0.0'} - tinyspy@3.0.0: - resolution: {integrity: sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==} + tinyspy@3.0.2: + resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} engines: {node: '>=14.0.0'} tmp@0.0.33: @@ -3693,8 +3767,11 @@ packages: tslib@2.7.0: resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} - tsup@8.2.4: - resolution: {integrity: sha512-akpCPePnBnC/CXgRrcy72ZSntgIEUa1jN0oJbbvpALWKNOz1B7aM+UVDWGRGIO/T/PZugAESWDJUAb5FD48o8Q==} + tslib@2.8.0: + resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==} + + tsup@8.3.5: + resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -3712,38 +3789,38 @@ packages: typescript: optional: true - turbo-darwin-64@2.1.2: - resolution: {integrity: sha512-3TEBxHWh99h2yIzkuIigMEOXt/ItYQp0aPiJjPd1xN4oDcsKK5AxiFKPH9pdtfIBzYsY59kQhZiFj0ELnSP7Bw==} + turbo-darwin-64@2.2.3: + resolution: {integrity: sha512-Rcm10CuMKQGcdIBS3R/9PMeuYnv6beYIHqfZFeKWVYEWH69sauj4INs83zKMTUiZJ3/hWGZ4jet9AOwhsssLyg==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.1.2: - resolution: {integrity: sha512-he0miWNq2WxJzsH82jS2Z4MXpnkzn9SH8a79iPXiJkq25QREImucscM4RPasXm8wARp91pyysJMq6aasD45CeA==} + turbo-darwin-arm64@2.2.3: + resolution: {integrity: sha512-+EIMHkuLFqUdJYsA3roj66t9+9IciCajgj+DVek+QezEdOJKcRxlvDOS2BUaeN8kEzVSsNiAGnoysFWYw4K0HA==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.1.2: - resolution: {integrity: sha512-fKUBcc0rK8Vdqv5a/E3CSpMBLG1bzwv+Q0Q83F8fG2ZfNCNKGbcEYABdonNZkkx141Rj03cZQFCgxu3MVEGU+A==} + turbo-linux-64@2.2.3: + resolution: {integrity: sha512-UBhJCYnqtaeOBQLmLo8BAisWbc9v9daL9G8upLR+XGj6vuN/Nz6qUAhverN4Pyej1g4Nt1BhROnj6GLOPYyqxQ==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.1.2: - resolution: {integrity: sha512-sV8Bpmm0WiuxgbhxymcC7wSsuxfBBieI98GegSwbr/bs1ANAgzCg93urIrdKdQ3/b31zZxQwcaP4FBF1wx1Qdg==} + turbo-linux-arm64@2.2.3: + resolution: {integrity: sha512-hJYT9dN06XCQ3jBka/EWvvAETnHRs3xuO/rb5bESmDfG+d9yQjeTMlhRXKrr4eyIMt6cLDt1LBfyi+6CQ+VAwQ==} cpu: [arm64] os: [linux] - turbo-windows-64@2.1.2: - resolution: {integrity: sha512-wcmIJZI9ORT9ykHGliFE6kWRQrlH930QGSjSgWC8uFChFFuOyUlvC7ttcxuSvU9VqC7NF4C+GVAcFJQ8lTjN7g==} + turbo-windows-64@2.2.3: + resolution: {integrity: sha512-NPrjacrZypMBF31b4HE4ROg4P3nhMBPHKS5WTpMwf7wydZ8uvdEHpESVNMOtqhlp857zbnKYgP+yJF30H3N2dQ==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.1.2: - resolution: {integrity: sha512-zdnXjrhk7YO6CP+Q5wPueEvOCLH4lDa6C4rrwiakcWcPgcQGbVozJlo4uaQ6awo8HLWQEvOwu84RkWTdLAc/Hw==} + turbo-windows-arm64@2.2.3: + resolution: {integrity: sha512-fnNrYBCqn6zgKPKLHu4sOkihBI/+0oYFr075duRxqUZ+1aLWTAGfHZLgjVeLh3zR37CVzuerGIPWAEkNhkWEIw==} cpu: [arm64] os: [win32] - turbo@2.1.2: - resolution: {integrity: sha512-Jb0rbU4iHEVQ18An/YfakdIv9rKnd3zUfSE117EngrfWXFHo3RndVH96US3GsT8VHpwTncPePDBT2t06PaFLrw==} + turbo@2.2.3: + resolution: {integrity: sha512-5lDvSqIxCYJ/BAd6rQGK/AzFRhBkbu4JHVMLmGh/hCb7U3CqSnr5Tjwfy9vc+/5wG2DJ6wttgAaA7MoCgvBKZQ==} hasBin: true tweetnacl@1.0.3: @@ -3760,8 +3837,8 @@ packages: engines: {node: '>=4.2.0'} hasBin: true - typescript@5.6.2: - resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} + typescript@5.6.3: + resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} engines: {node: '>=14.17'} hasBin: true @@ -3791,14 +3868,6 @@ packages: resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - viem@2.21.3: - resolution: {integrity: sha512-WwOEsoiJ4v1zHf1OeKdtWth+chMyY/yZbHRLidhZEr0yFsOjTXkyfuvFp5ZykjRv9EtzDr2C6K/MU26CjMkSUw==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true - viem@2.21.7: resolution: {integrity: sha512-PFgppakInuHX31wHDx1dzAjhj4t6Po6WrWtutDi33z2vabIT0Wv8qT6tl7DLqfLy2NkTqfN2mdshYLeoI5ZHvQ==} peerDependencies: @@ -3807,8 +3876,8 @@ packages: typescript: optional: true - vite-node@2.1.1: - resolution: {integrity: sha512-N/mGckI1suG/5wQI35XeR9rsMsPqKXzq1CdUndzVstBj/HvyxxGctwnK6WX43NGt5L3Z5tcRf83g4TITKJhPrA==} + vite-node@2.1.4: + resolution: {integrity: sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -3843,15 +3912,15 @@ packages: terser: optional: true - vitest@2.1.1: - resolution: {integrity: sha512-97We7/VC0e9X5zBVkvt7SGQMGrRtn3KtySFQG5fpaMlS+l62eeXRQO633AYhSTC3z7IMebnPPNjGXVGNRFlxBA==} + vitest@2.1.4: + resolution: {integrity: sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.1.1 - '@vitest/ui': 2.1.1 + '@vitest/browser': 2.1.4 + '@vitest/ui': 2.1.4 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -4066,7 +4135,7 @@ snapshots: transitivePeerDependencies: - encoding - '@changesets/cli@2.27.8': + '@changesets/cli@2.27.9': dependencies: '@changesets/apply-release-plan': 7.0.5 '@changesets/assemble-release-plan': 6.0.4 @@ -4083,14 +4152,12 @@ snapshots: '@changesets/types': 6.0.0 '@changesets/write': 0.3.2 '@manypkg/get-packages': 1.1.3 - '@types/semver': 7.5.8 ansi-colors: 4.1.3 ci-info: 3.9.0 enquirer: 2.4.1 external-editor: 3.1.0 fs-extra: 7.0.1 mri: 1.2.0 - outdent: 0.5.0 p-limit: 2.3.0 package-manager-detector: 0.2.0 picocolors: 1.1.0 @@ -4383,9 +4450,9 @@ snapshots: '@darwinia/types@2.8.10': {} - '@digitalnative/type-definitions@1.1.27(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + '@digitalnative/type-definitions@1.1.27(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': dependencies: - '@polkadot/keyring': 6.11.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@polkadot/keyring': 6.11.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) '@polkadot/types': 4.17.1 transitivePeerDependencies: - '@polkadot/util' @@ -4413,142 +4480,142 @@ snapshots: '@esbuild/aix-ppc64@0.21.5': optional: true - '@esbuild/aix-ppc64@0.23.1': + '@esbuild/aix-ppc64@0.24.0': optional: true '@esbuild/android-arm64@0.21.5': optional: true - '@esbuild/android-arm64@0.23.1': + '@esbuild/android-arm64@0.24.0': optional: true '@esbuild/android-arm@0.21.5': optional: true - '@esbuild/android-arm@0.23.1': + '@esbuild/android-arm@0.24.0': optional: true '@esbuild/android-x64@0.21.5': optional: true - '@esbuild/android-x64@0.23.1': + '@esbuild/android-x64@0.24.0': optional: true '@esbuild/darwin-arm64@0.21.5': optional: true - '@esbuild/darwin-arm64@0.23.1': + '@esbuild/darwin-arm64@0.24.0': optional: true '@esbuild/darwin-x64@0.21.5': optional: true - '@esbuild/darwin-x64@0.23.1': + '@esbuild/darwin-x64@0.24.0': optional: true '@esbuild/freebsd-arm64@0.21.5': optional: true - '@esbuild/freebsd-arm64@0.23.1': + '@esbuild/freebsd-arm64@0.24.0': optional: true '@esbuild/freebsd-x64@0.21.5': optional: true - '@esbuild/freebsd-x64@0.23.1': + '@esbuild/freebsd-x64@0.24.0': optional: true '@esbuild/linux-arm64@0.21.5': optional: true - '@esbuild/linux-arm64@0.23.1': + '@esbuild/linux-arm64@0.24.0': optional: true '@esbuild/linux-arm@0.21.5': optional: true - '@esbuild/linux-arm@0.23.1': + '@esbuild/linux-arm@0.24.0': optional: true '@esbuild/linux-ia32@0.21.5': optional: true - '@esbuild/linux-ia32@0.23.1': + '@esbuild/linux-ia32@0.24.0': optional: true '@esbuild/linux-loong64@0.21.5': optional: true - '@esbuild/linux-loong64@0.23.1': + '@esbuild/linux-loong64@0.24.0': optional: true '@esbuild/linux-mips64el@0.21.5': optional: true - '@esbuild/linux-mips64el@0.23.1': + '@esbuild/linux-mips64el@0.24.0': optional: true '@esbuild/linux-ppc64@0.21.5': optional: true - '@esbuild/linux-ppc64@0.23.1': + '@esbuild/linux-ppc64@0.24.0': optional: true '@esbuild/linux-riscv64@0.21.5': optional: true - '@esbuild/linux-riscv64@0.23.1': + '@esbuild/linux-riscv64@0.24.0': optional: true '@esbuild/linux-s390x@0.21.5': optional: true - '@esbuild/linux-s390x@0.23.1': + '@esbuild/linux-s390x@0.24.0': optional: true '@esbuild/linux-x64@0.21.5': optional: true - '@esbuild/linux-x64@0.23.1': + '@esbuild/linux-x64@0.24.0': optional: true '@esbuild/netbsd-x64@0.21.5': optional: true - '@esbuild/netbsd-x64@0.23.1': + '@esbuild/netbsd-x64@0.24.0': optional: true - '@esbuild/openbsd-arm64@0.23.1': + '@esbuild/openbsd-arm64@0.24.0': optional: true '@esbuild/openbsd-x64@0.21.5': optional: true - '@esbuild/openbsd-x64@0.23.1': + '@esbuild/openbsd-x64@0.24.0': optional: true '@esbuild/sunos-x64@0.21.5': optional: true - '@esbuild/sunos-x64@0.23.1': + '@esbuild/sunos-x64@0.24.0': optional: true '@esbuild/win32-arm64@0.21.5': optional: true - '@esbuild/win32-arm64@0.23.1': + '@esbuild/win32-arm64@0.24.0': optional: true '@esbuild/win32-ia32@0.21.5': optional: true - '@esbuild/win32-ia32@0.23.1': + '@esbuild/win32-ia32@0.24.0': optional: true '@esbuild/win32-x64@0.21.5': optional: true - '@esbuild/win32-x64@0.23.1': + '@esbuild/win32-x64@0.24.0': optional: true '@fragnova/api-augment@0.1.0-spec-1.0.4-mainnet(bufferutil@4.0.8)(utf-8-validate@5.0.10)': @@ -4694,28 +4761,28 @@ snapshots: dependencies: lodash.merge: 4.6.2 - '@oven/bun-darwin-aarch64@1.1.27': + '@oven/bun-darwin-aarch64@1.1.33': optional: true - '@oven/bun-darwin-x64-baseline@1.1.27': + '@oven/bun-darwin-x64-baseline@1.1.33': optional: true - '@oven/bun-darwin-x64@1.1.27': + '@oven/bun-darwin-x64@1.1.33': optional: true - '@oven/bun-linux-aarch64@1.1.27': + '@oven/bun-linux-aarch64@1.1.33': optional: true - '@oven/bun-linux-x64-baseline@1.1.27': + '@oven/bun-linux-x64-baseline@1.1.33': optional: true - '@oven/bun-linux-x64@1.1.27': + '@oven/bun-linux-x64@1.1.33': optional: true - '@oven/bun-windows-x64-baseline@1.1.27': + '@oven/bun-windows-x64-baseline@1.1.33': optional: true - '@oven/bun-windows-x64@1.1.27': + '@oven/bun-windows-x64@1.1.33': optional: true '@parallel-finance/type-definitions@2.0.1': @@ -4817,7 +4884,7 @@ snapshots: '@polkadot/types-augment': 10.13.1 '@polkadot/types-codec': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -4830,22 +4897,22 @@ snapshots: '@polkadot/types': 12.4.2 '@polkadot/types-augment': 12.4.2 '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 tslib: 2.7.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-augment@14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-augment@14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api-base': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-augment': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.0.1 - '@polkadot/types-augment': 14.0.1 - '@polkadot/types-codec': 14.0.1 - '@polkadot/util': 13.1.1 - tslib: 2.7.0 + '@polkadot/api-base': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-augment': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.2.1 + '@polkadot/types-augment': 14.2.1 + '@polkadot/types-codec': 14.2.1 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -4884,7 +4951,7 @@ snapshots: '@polkadot/types': 10.13.1 '@polkadot/util': 12.6.2 rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -4894,7 +4961,7 @@ snapshots: dependencies: '@polkadot/rpc-core': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': 12.4.2 - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 rxjs: 7.8.1 tslib: 2.7.0 transitivePeerDependencies: @@ -4902,13 +4969,13 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-base@14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-base@14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-core': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.0.1 - '@polkadot/util': 13.1.1 + '@polkadot/rpc-core': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.2.1 + '@polkadot/util': 13.2.2 rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -4948,7 +5015,7 @@ snapshots: '@polkadot/util': 12.6.2 '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -4962,8 +5029,8 @@ snapshots: '@polkadot/rpc-core': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': 12.4.2 '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) rxjs: 7.8.1 tslib: 2.7.0 transitivePeerDependencies: @@ -4971,18 +5038,18 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-derive@14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-derive@14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.0.1 - '@polkadot/types-codec': 14.0.1 - '@polkadot/util': 13.1.1 - '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) + '@polkadot/api': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-base': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.2.1 + '@polkadot/types-codec': 14.2.1 + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -5039,7 +5106,7 @@ snapshots: '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) eventemitter3: 5.0.1 rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -5050,7 +5117,7 @@ snapshots: '@polkadot/api-augment': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-base': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-derive': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) '@polkadot/rpc-augment': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/rpc-core': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/rpc-provider': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -5059,8 +5126,8 @@ snapshots: '@polkadot/types-codec': 12.4.2 '@polkadot/types-create': 12.4.2 '@polkadot/types-known': 12.4.2 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) eventemitter3: 5.0.1 rxjs: 7.8.1 tslib: 2.7.0 @@ -5069,25 +5136,25 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api@14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api-augment': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.1.1(@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1))(@polkadot/util@13.1.1) - '@polkadot/rpc-augment': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.0.1 - '@polkadot/types-augment': 14.0.1 - '@polkadot/types-codec': 14.0.1 - '@polkadot/types-create': 14.0.1 - '@polkadot/types-known': 14.0.1 - '@polkadot/util': 13.1.1 - '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) + '@polkadot/api@14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@polkadot/api-augment': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-base': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@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.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.2.1 + '@polkadot/types-augment': 14.2.1 + '@polkadot/types-codec': 14.2.1 + '@polkadot/types-create': 14.2.1 + '@polkadot/types-known': 14.2.1 + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) eventemitter3: 5.0.1 rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -5140,14 +5207,14 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/apps-config@0.143.2(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10)': + '@polkadot/apps-config@0.143.2(@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: '@acala-network/type-definitions': 5.1.2(@polkadot/types@12.4.2) '@bifrost-finance/type-definitions': 1.11.3(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@crustio/type-definitions': 1.3.0 '@darwinia/types': 2.8.10 '@darwinia/types-known': 2.8.10 - '@digitalnative/type-definitions': 1.1.27(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@digitalnative/type-definitions': 1.1.27(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) '@docknetwork/node-types': 0.16.0 '@edgeware/node-types': 3.6.2-wako '@equilab/definitions': 1.4.18 @@ -5166,16 +5233,16 @@ snapshots: '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-derive': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/networks': 13.0.2 - '@polkadot/react-identicon': 3.9.1(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1) + '@polkadot/react-identicon': 3.9.1(@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1) '@polkadot/types': 12.4.2 '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.2.2) '@polkadot/x-fetch': 13.0.2 '@polkadot/x-ws': 13.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polymeshassociation/polymesh-types': 5.7.0 - '@snowfork/snowbridge-types': 0.2.7(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@snowfork/snowbridge-types': 0.2.7(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) '@sora-substrate/type-definitions': 1.27.7 '@subsocial/definitions': 0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@unique-nft/opal-testnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) @@ -5185,7 +5252,65 @@ snapshots: '@zeitgeistpm/type-defs': 1.0.0 '@zeroio/type-definitions': 0.0.14 moonbeam-types-bundle: 2.0.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) - pontem-types-bundle: 1.0.15(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + pontem-types-bundle: 1.0.15(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + rxjs: 7.8.1 + tslib: 2.7.0 + transitivePeerDependencies: + - '@polkadot/keyring' + - bufferutil + - encoding + - react + - react-dom + - react-is + - supports-color + - utf-8-validate + + '@polkadot/apps-config@0.143.2(@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10)': + dependencies: + '@acala-network/type-definitions': 5.1.2(@polkadot/types@12.4.2) + '@bifrost-finance/type-definitions': 1.11.3(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@crustio/type-definitions': 1.3.0 + '@darwinia/types': 2.8.10 + '@darwinia/types-known': 2.8.10 + '@digitalnative/type-definitions': 1.1.27(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@docknetwork/node-types': 0.16.0 + '@edgeware/node-types': 3.6.2-wako + '@equilab/definitions': 1.4.18 + '@fragnova/api-augment': 0.1.0-spec-1.0.4-mainnet(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@frequency-chain/api-augment': 1.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@interlay/interbtc-types': 1.13.0 + '@kiltprotocol/type-definitions': 0.35.1 + '@laminar/type-definitions': 0.3.1 + '@logion/node-api': 0.27.0-4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@mangata-finance/type-definitions': 2.1.2(@polkadot/types@12.4.2) + '@metaverse-network-sdk/type-definitions': 0.0.1-16 + '@parallel-finance/type-definitions': 2.0.1 + '@peaqnetwork/type-definitions': 0.0.4 + '@pendulum-chain/type-definitions': 0.3.8 + '@phala/typedefs': 0.2.33 + '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/networks': 13.0.2 + '@polkadot/react-identicon': 3.9.1(@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1) + '@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/wasm-util': 7.3.2(@polkadot/util@13.2.2) + '@polkadot/x-fetch': 13.0.2 + '@polkadot/x-ws': 13.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polymeshassociation/polymesh-types': 5.7.0 + '@snowfork/snowbridge-types': 0.2.7(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@sora-substrate/type-definitions': 1.27.7 + '@subsocial/definitions': 0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@unique-nft/opal-testnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) + '@unique-nft/quartz-mainnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) + '@unique-nft/sapphire-mainnet-types': 1003.70.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) + '@unique-nft/unique-mainnet-types': 1001.63.0(@polkadot/api@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@12.4.2) + '@zeitgeistpm/type-defs': 1.0.0 + '@zeroio/type-definitions': 0.0.14 + moonbeam-types-bundle: 2.0.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) + pontem-types-bundle: 1.0.15(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) rxjs: 7.8.1 tslib: 2.7.0 transitivePeerDependencies: @@ -5208,43 +5333,43 @@ snapshots: dependencies: '@polkadot/util': 12.6.2 '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - tslib: 2.7.0 + tslib: 2.8.0 - '@polkadot/keyring@13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + '@polkadot/keyring@13.0.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) tslib: 2.7.0 - '@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + '@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1)': dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) - tslib: 2.7.0 + '@polkadot/util': 13.1.1 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.1.1) + tslib: 2.8.0 - '@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1))(@polkadot/util@13.1.1)': + '@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + tslib: 2.8.0 - '@polkadot/keyring@6.11.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + '@polkadot/keyring@6.11.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': dependencies: '@babel/runtime': 7.25.6 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@polkadot/keyring@7.9.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + '@polkadot/keyring@7.9.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': dependencies: '@babel/runtime': 7.25.6 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) - '@polkadot/keyring@8.7.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + '@polkadot/keyring@8.7.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': dependencies: '@babel/runtime': 7.25.6 - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) '@polkadot/keyring@8.7.1(@polkadot/util-crypto@8.7.1(@polkadot/util@8.7.1))(@polkadot/util@8.7.1)': dependencies: @@ -5264,25 +5389,25 @@ snapshots: dependencies: '@babel/runtime': 7.25.6 '@polkadot/util': 10.4.2 - '@substrate/ss58-registry': 1.50.0 + '@substrate/ss58-registry': 1.51.0 '@polkadot/networks@12.6.2': dependencies: '@polkadot/util': 12.6.2 - '@substrate/ss58-registry': 1.50.0 - tslib: 2.7.0 + '@substrate/ss58-registry': 1.51.0 + tslib: 2.8.0 '@polkadot/networks@13.0.2': dependencies: '@polkadot/util': 13.0.2 '@substrate/ss58-registry': 1.50.0 - tslib: 2.7.0 + tslib: 2.8.0 - '@polkadot/networks@13.1.1': + '@polkadot/networks@13.2.2': dependencies: - '@polkadot/util': 13.1.1 - '@substrate/ss58-registry': 1.50.0 - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + '@substrate/ss58-registry': 1.51.0 + tslib: 2.8.0 '@polkadot/networks@6.11.1': dependencies: @@ -5292,15 +5417,15 @@ snapshots: dependencies: '@babel/runtime': 7.25.6 '@polkadot/util': 8.7.1 - '@substrate/ss58-registry': 1.50.0 + '@substrate/ss58-registry': 1.51.0 - '@polkadot/react-identicon@3.9.1(@polkadot/keyring@13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)': + '@polkadot/react-identicon@3.9.1(@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.3.1)': dependencies: - '@polkadot/keyring': 13.1.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) - '@polkadot/ui-settings': 3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.0.2) - '@polkadot/ui-shared': 3.9.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/keyring': 13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1))(@polkadot/util@13.1.1) + '@polkadot/ui-settings': 3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.2.2) + '@polkadot/ui-shared': 3.9.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) ethereum-blockies-base64: 1.0.2 jdenticon: 3.2.0 react: 18.3.1 @@ -5308,7 +5433,25 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 styled-components: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - tslib: 2.7.0 + tslib: 2.8.0 + transitivePeerDependencies: + - '@polkadot/networks' + + '@polkadot/react-identicon@3.9.1(@polkadot/keyring@13.2.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2))(@polkadot/networks@13.0.2)(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@16.13.1)(react@18.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/ui-settings': 3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.2.2) + '@polkadot/ui-shared': 3.9.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) + ethereum-blockies-base64: 1.0.2 + jdenticon: 3.2.0 + react: 18.3.1 + react-copy-to-clipboard: 5.1.0(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) + react-is: 16.13.1 + styled-components: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + tslib: 2.8.0 transitivePeerDependencies: - '@polkadot/networks' @@ -5318,7 +5461,7 @@ snapshots: '@polkadot/types': 10.13.1 '@polkadot/types-codec': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -5329,20 +5472,20 @@ snapshots: '@polkadot/rpc-core': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': 12.4.2 '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 tslib: 2.7.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/rpc-augment@14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-augment@14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-core': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.0.1 - '@polkadot/types-codec': 14.0.1 - '@polkadot/util': 13.1.1 - tslib: 2.7.0 + '@polkadot/rpc-core': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.2.1 + '@polkadot/types-codec': 14.2.1 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -5378,7 +5521,7 @@ snapshots: '@polkadot/types': 10.13.1 '@polkadot/util': 12.6.2 rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -5389,7 +5532,7 @@ snapshots: '@polkadot/rpc-augment': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/rpc-provider': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': 12.4.2 - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 rxjs: 7.8.1 tslib: 2.7.0 transitivePeerDependencies: @@ -5397,14 +5540,14 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-core@14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-core@14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-augment': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.0.1 - '@polkadot/util': 13.1.1 + '@polkadot/rpc-augment': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 14.2.1 + '@polkadot/util': 13.2.2 rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - bufferutil - supports-color @@ -5448,7 +5591,7 @@ snapshots: eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.5 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@substrate/connect': 0.8.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -5458,11 +5601,11 @@ snapshots: '@polkadot/rpc-provider@12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@polkadot/keyring': 13.0.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.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.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.0.2 '@polkadot/x-ws': 13.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -5477,20 +5620,20 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-provider@14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-provider@14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/keyring': 13.1.1(@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1))(@polkadot/util@13.1.1) - '@polkadot/types': 14.0.1 - '@polkadot/types-support': 14.0.1 - '@polkadot/util': 13.1.1 - '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.1.1) - '@polkadot/x-fetch': 13.1.1 - '@polkadot/x-global': 13.1.1 - '@polkadot/x-ws': 13.1.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@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.1 + '@polkadot/types-support': 14.2.1 + '@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(bufferutil@4.0.8)(utf-8-validate@5.0.10) eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.5 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@substrate/connect': 0.8.11(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -5543,21 +5686,21 @@ snapshots: '@polkadot/types': 10.13.1 '@polkadot/types-codec': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/types-augment@12.4.2': dependencies: '@polkadot/types': 12.4.2 '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 tslib: 2.7.0 - '@polkadot/types-augment@14.0.1': + '@polkadot/types-augment@14.2.1': dependencies: - '@polkadot/types': 14.0.1 - '@polkadot/types-codec': 14.0.1 - '@polkadot/util': 13.1.1 - tslib: 2.7.0 + '@polkadot/types': 14.2.1 + '@polkadot/types-codec': 14.2.1 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 '@polkadot/types-augment@7.15.1': dependencies: @@ -5577,19 +5720,19 @@ snapshots: dependencies: '@polkadot/util': 12.6.2 '@polkadot/x-bigint': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/types-codec@12.4.2': dependencies: - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 '@polkadot/x-bigint': 13.0.2 tslib: 2.7.0 - '@polkadot/types-codec@14.0.1': + '@polkadot/types-codec@14.2.1': dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/x-bigint': 13.1.1 - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + '@polkadot/x-bigint': 13.2.2 + tslib: 2.8.0 '@polkadot/types-codec@7.15.1': dependencies: @@ -5606,19 +5749,19 @@ snapshots: dependencies: '@polkadot/types-codec': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/types-create@12.4.2': dependencies: '@polkadot/types-codec': 12.4.2 - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 tslib: 2.7.0 - '@polkadot/types-create@14.0.1': + '@polkadot/types-create@14.2.1': dependencies: - '@polkadot/types-codec': 14.0.1 - '@polkadot/util': 13.1.1 - tslib: 2.7.0 + '@polkadot/types-codec': 14.2.1 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 '@polkadot/types-create@7.15.1': dependencies: @@ -5639,7 +5782,7 @@ snapshots: '@polkadot/types-codec': 10.13.1 '@polkadot/types-create': 10.13.1 '@polkadot/util': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/types-known@12.4.2': dependencies: @@ -5647,17 +5790,17 @@ snapshots: '@polkadot/types': 12.4.2 '@polkadot/types-codec': 12.4.2 '@polkadot/types-create': 12.4.2 - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 tslib: 2.7.0 - '@polkadot/types-known@14.0.1': + '@polkadot/types-known@14.2.1': dependencies: - '@polkadot/networks': 13.1.1 - '@polkadot/types': 14.0.1 - '@polkadot/types-codec': 14.0.1 - '@polkadot/types-create': 14.0.1 - '@polkadot/util': 13.1.1 - tslib: 2.7.0 + '@polkadot/networks': 13.2.2 + '@polkadot/types': 14.2.1 + '@polkadot/types-codec': 14.2.1 + '@polkadot/types-create': 14.2.1 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 '@polkadot/types-known@4.17.1': dependencies: @@ -5694,17 +5837,17 @@ snapshots: '@polkadot/types-support@10.13.1': dependencies: '@polkadot/util': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/types-support@12.4.2': dependencies: - '@polkadot/util': 13.0.2 - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 - '@polkadot/types-support@14.0.1': + '@polkadot/types-support@14.2.1': dependencies: - '@polkadot/util': 13.1.1 - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 '@polkadot/types-support@7.15.1': dependencies: @@ -5725,29 +5868,29 @@ snapshots: '@polkadot/util': 12.6.2 '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/types@12.4.2': dependencies: - '@polkadot/keyring': 13.0.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@polkadot/keyring': 13.0.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.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) rxjs: 7.8.1 tslib: 2.7.0 - '@polkadot/types@14.0.1': + '@polkadot/types@14.2.1': dependencies: - '@polkadot/keyring': 13.1.1(@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1))(@polkadot/util@13.1.1) - '@polkadot/types-augment': 14.0.1 - '@polkadot/types-codec': 14.0.1 - '@polkadot/types-create': 14.0.1 - '@polkadot/util': 13.1.1 - '@polkadot/util-crypto': 13.1.1(@polkadot/util@13.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-augment': 14.2.1 + '@polkadot/types-codec': 14.2.1 + '@polkadot/types-create': 14.2.1 + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) rxjs: 7.8.1 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/types@4.17.1': dependencies: @@ -5787,20 +5930,20 @@ snapshots: '@polkadot/util-crypto': 10.4.2(@polkadot/util@10.4.2) rxjs: 7.8.1 - '@polkadot/ui-settings@3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.0.2)': + '@polkadot/ui-settings@3.9.1(@polkadot/networks@13.0.2)(@polkadot/util@13.2.2)': dependencies: '@polkadot/networks': 13.0.2 - '@polkadot/util': 13.0.2 + '@polkadot/util': 13.2.2 eventemitter3: 5.0.1 store: 2.0.12 - tslib: 2.7.0 + tslib: 2.8.0 - '@polkadot/ui-shared@3.9.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + '@polkadot/ui-shared@3.9.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/util-crypto': 13.0.2(@polkadot/util@13.0.2) + '@polkadot/util': 13.2.2 + '@polkadot/util-crypto': 13.2.2(@polkadot/util@13.2.2) colord: 2.9.3 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/util-crypto@10.4.2(@polkadot/util@10.4.2)': dependencies: @@ -5822,38 +5965,38 @@ snapshots: '@noble/hashes': 1.5.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/wasm-crypto': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))) + '@polkadot/wasm-util': 7.4.1(@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)) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)) '@scure/base': 1.1.8 - tslib: 2.7.0 + tslib: 2.8.0 - '@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2)': + '@polkadot/util-crypto@13.2.2(@polkadot/util@13.1.1)': dependencies: '@noble/curves': 1.6.0 '@noble/hashes': 1.5.0 - '@polkadot/networks': 13.0.2 - '@polkadot/util': 13.0.2 - '@polkadot/wasm-crypto': 7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/x-bigint': 13.0.2 - '@polkadot/x-randomvalues': 13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) + '@polkadot/networks': 13.2.2 + '@polkadot/util': 13.1.1 + '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/x-bigint': 13.2.2 + '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)) '@scure/base': 1.1.8 - tslib: 2.7.0 + tslib: 2.8.0 - '@polkadot/util-crypto@13.1.1(@polkadot/util@13.1.1)': + '@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2)': dependencies: '@noble/curves': 1.6.0 '@noble/hashes': 1.5.0 - '@polkadot/networks': 13.1.1 - '@polkadot/util': 13.1.1 - '@polkadot/wasm-crypto': 7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/x-bigint': 13.1.1 - '@polkadot/x-randomvalues': 13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)) + '@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.0.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.0.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.0.2)) '@scure/base': 1.1.8 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/util-crypto@6.11.1(@polkadot/util@6.11.1)': dependencies: @@ -5895,7 +6038,7 @@ snapshots: '@polkadot/x-global': 10.4.2 '@polkadot/x-textdecoder': 10.4.2 '@polkadot/x-textencoder': 10.4.2 - '@types/bn.js': 5.1.5 + '@types/bn.js': 5.1.6 bn.js: 5.2.1 '@polkadot/util@12.6.2': @@ -5904,9 +6047,9 @@ snapshots: '@polkadot/x-global': 12.6.2 '@polkadot/x-textdecoder': 12.6.2 '@polkadot/x-textencoder': 12.6.2 - '@types/bn.js': 5.1.5 + '@types/bn.js': 5.1.6 bn.js: 5.2.1 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/util@13.0.2': dependencies: @@ -5928,6 +6071,16 @@ snapshots: bn.js: 5.2.1 tslib: 2.7.0 + '@polkadot/util@13.2.2': + 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 + tslib: 2.8.0 + '@polkadot/util@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -5945,7 +6098,7 @@ snapshots: '@polkadot/x-global': 8.7.1 '@polkadot/x-textdecoder': 8.7.1 '@polkadot/x-textencoder': 8.7.1 - '@types/bn.js': 5.1.5 + '@types/bn.js': 5.1.6 bn.js: 5.2.1 ip-regex: 4.3.0 @@ -5955,26 +6108,26 @@ snapshots: '@polkadot/util': 10.4.2 '@polkadot/x-randomvalues': 10.4.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-bridge@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)))': 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)) - tslib: 2.7.0 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)) + tslib: 2.8.0 - '@polkadot/wasm-bridge@7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': + '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)))': dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/x-randomvalues': 13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) - tslib: 2.7.0 + '@polkadot/util': 13.1.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)) + tslib: 2.8.0 - '@polkadot/wasm-bridge@7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)))': + '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.0.2)))': dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/x-randomvalues': 13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)) - tslib: 2.7.0 + '@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.0.2)) + tslib: 2.8.0 '@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@6.11.1)': dependencies: @@ -5991,20 +6144,20 @@ snapshots: '@babel/runtime': 7.25.6 '@polkadot/util': 10.4.2 - '@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@12.6.2)': + '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@12.6.2)': dependencies: '@polkadot/util': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 - '@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@13.0.2)': + '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.1.1)': dependencies: - '@polkadot/util': 13.0.2 - tslib: 2.7.0 + '@polkadot/util': 13.1.1 + tslib: 2.8.0 - '@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@13.1.1)': + '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.2.2)': dependencies: - '@polkadot/util': 13.1.1 - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 '@polkadot/wasm-crypto-init@6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2)': dependencies: @@ -6015,35 +6168,35 @@ snapshots: '@polkadot/wasm-crypto-wasm': 6.4.1(@polkadot/util@10.4.2) '@polkadot/x-randomvalues': 10.4.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-init@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@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-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.7.0 + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))) + '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@12.6.2) + '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@12.6.2) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)) + tslib: 2.8.0 - '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': - dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))) - '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/x-randomvalues': 13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) - tslib: 2.7.0 - - '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)))': + '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)))': dependencies: '@polkadot/util': 13.1.1 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))) - '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/x-randomvalues': 13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)) - tslib: 2.7.0 + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))) + '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.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.0.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.0.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.0.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.0.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.0.2)) + tslib: 2.8.0 '@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@6.11.1)': dependencies: @@ -6061,23 +6214,23 @@ snapshots: '@polkadot/util': 10.4.2 '@polkadot/wasm-util': 6.4.1(@polkadot/util@10.4.2) - '@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@12.6.2)': + '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@12.6.2)': dependencies: '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - tslib: 2.7.0 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) + tslib: 2.8.0 - '@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@13.0.2)': + '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.1.1)': dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) - tslib: 2.7.0 + '@polkadot/util': 13.1.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) + tslib: 2.8.0 - '@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@13.1.1)': + '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.2.2)': dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) + tslib: 2.8.0 '@polkadot/wasm-crypto@4.6.1(@polkadot/util@6.11.1)(@polkadot/x-randomvalues@6.11.1)': dependencies: @@ -6106,58 +6259,63 @@ snapshots: '@polkadot/wasm-util': 6.4.1(@polkadot/util@10.4.2) '@polkadot/x-randomvalues': 10.4.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-crypto@7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@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.7.0 - - '@polkadot/wasm-crypto@7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)))': - dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))) - '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/wasm-crypto-init': 7.3.2(@polkadot/util@13.0.2)(@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))) - '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/x-randomvalues': 13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)) - tslib: 2.7.0 + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))) + '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@12.6.2) + '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))) + '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@12.6.2) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)) + tslib: 2.8.0 - '@polkadot/wasm-crypto@7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)))': + '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)))': dependencies: '@polkadot/util': 13.1.1 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))) - '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/wasm-crypto-init': 7.3.2(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))) - '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/x-randomvalues': 13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)) - tslib: 2.7.0 + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))) + '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@13.1.1)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))) + '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/x-randomvalues': 13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)) + tslib: 2.8.0 + + '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.2.2)(@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.0.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.0.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.0.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.0.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.0.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.0.2)) + tslib: 2.8.0 '@polkadot/wasm-util@6.4.1(@polkadot/util@10.4.2)': dependencies: '@babel/runtime': 7.25.6 '@polkadot/util': 10.4.2 - '@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)': + '@polkadot/wasm-util@7.3.2(@polkadot/util@13.2.2)': dependencies: - '@polkadot/util': 12.6.2 - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + tslib: 2.8.0 - '@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2)': + '@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)': dependencies: - '@polkadot/util': 13.0.2 - tslib: 2.7.0 + '@polkadot/util': 12.6.2 + tslib: 2.8.0 - '@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1)': + '@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1)': dependencies: '@polkadot/util': 13.1.1 - tslib: 2.7.0 + 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@10.4.2': dependencies: @@ -6167,7 +6325,7 @@ snapshots: '@polkadot/x-bigint@12.6.2': dependencies: '@polkadot/x-global': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/x-bigint@13.0.2': dependencies: @@ -6179,6 +6337,11 @@ snapshots: '@polkadot/x-global': 13.1.1 tslib: 2.7.0 + '@polkadot/x-bigint@13.2.2': + dependencies: + '@polkadot/x-global': 13.2.2 + tslib: 2.8.0 + '@polkadot/x-bigint@8.7.1': dependencies: '@babel/runtime': 7.25.6 @@ -6195,19 +6358,19 @@ snapshots: dependencies: '@polkadot/x-global': 12.6.2 node-fetch: 3.3.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/x-fetch@13.0.2': dependencies: '@polkadot/x-global': 13.0.2 node-fetch: 3.3.2 - tslib: 2.7.0 + tslib: 2.8.0 - '@polkadot/x-fetch@13.1.1': + '@polkadot/x-fetch@13.2.2': dependencies: - '@polkadot/x-global': 13.1.1 + '@polkadot/x-global': 13.2.2 node-fetch: 3.3.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/x-fetch@8.7.1': dependencies: @@ -6224,7 +6387,7 @@ snapshots: '@polkadot/x-global@12.6.2': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/x-global@13.0.2': dependencies: @@ -6234,6 +6397,10 @@ snapshots: dependencies: tslib: 2.7.0 + '@polkadot/x-global@13.2.2': + dependencies: + tslib: 2.8.0 + '@polkadot/x-global@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -6247,26 +6414,26 @@ snapshots: '@babel/runtime': 7.25.6 '@polkadot/x-global': 10.4.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-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2))': dependencies: '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) '@polkadot/x-global': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 - '@polkadot/x-randomvalues@13.0.2(@polkadot/util@13.0.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.0.2))': + '@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.1.1))': dependencies: - '@polkadot/util': 13.0.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.0.2) - '@polkadot/x-global': 13.0.2 - tslib: 2.7.0 + '@polkadot/util': 13.1.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.1.1) + '@polkadot/x-global': 13.2.2 + tslib: 2.8.0 - '@polkadot/x-randomvalues@13.1.1(@polkadot/util@13.1.1)(@polkadot/wasm-util@7.3.2(@polkadot/util@13.1.1))': + '@polkadot/x-randomvalues@13.2.2(@polkadot/util@13.2.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.0.2))': dependencies: - '@polkadot/util': 13.1.1 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@13.1.1) - '@polkadot/x-global': 13.1.1 - tslib: 2.7.0 + '@polkadot/util': 13.2.2 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.2) + '@polkadot/x-global': 13.2.2 + tslib: 2.8.0 '@polkadot/x-randomvalues@6.11.1': dependencies: @@ -6291,7 +6458,7 @@ snapshots: '@polkadot/x-textdecoder@12.6.2': dependencies: '@polkadot/x-global': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/x-textdecoder@13.0.2': dependencies: @@ -6303,6 +6470,11 @@ snapshots: '@polkadot/x-global': 13.1.1 tslib: 2.7.0 + '@polkadot/x-textdecoder@13.2.2': + dependencies: + '@polkadot/x-global': 13.2.2 + tslib: 2.8.0 + '@polkadot/x-textdecoder@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -6321,7 +6493,7 @@ snapshots: '@polkadot/x-textencoder@12.6.2': dependencies: '@polkadot/x-global': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 '@polkadot/x-textencoder@13.0.2': dependencies: @@ -6333,6 +6505,11 @@ snapshots: '@polkadot/x-global': 13.1.1 tslib: 2.7.0 + '@polkadot/x-textencoder@13.2.2': + dependencies: + '@polkadot/x-global': 13.2.2 + tslib: 2.8.0 + '@polkadot/x-textencoder@6.11.1': dependencies: '@babel/runtime': 7.25.6 @@ -6355,7 +6532,7 @@ snapshots: '@polkadot/x-ws@12.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/x-global': 12.6.2 - tslib: 2.7.0 + tslib: 2.8.0 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -6364,16 +6541,16 @@ snapshots: '@polkadot/x-ws@13.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/x-global': 13.0.2 - tslib: 2.7.0 + tslib: 2.8.0 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - '@polkadot/x-ws@13.1.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/x-ws@13.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/x-global': 13.1.1 - tslib: 2.7.0 + '@polkadot/x-global': 13.2.2 + tslib: 2.8.0 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -6393,51 +6570,105 @@ snapshots: '@rollup/rollup-android-arm-eabi@4.21.2': optional: true + '@rollup/rollup-android-arm-eabi@4.24.2': + optional: true + '@rollup/rollup-android-arm64@4.21.2': optional: true + '@rollup/rollup-android-arm64@4.24.2': + optional: true + '@rollup/rollup-darwin-arm64@4.21.2': optional: true + '@rollup/rollup-darwin-arm64@4.24.2': + optional: true + '@rollup/rollup-darwin-x64@4.21.2': optional: true + '@rollup/rollup-darwin-x64@4.24.2': + optional: true + + '@rollup/rollup-freebsd-arm64@4.24.2': + optional: true + + '@rollup/rollup-freebsd-x64@4.24.2': + optional: true + '@rollup/rollup-linux-arm-gnueabihf@4.21.2': optional: true + '@rollup/rollup-linux-arm-gnueabihf@4.24.2': + optional: true + '@rollup/rollup-linux-arm-musleabihf@4.21.2': optional: true + '@rollup/rollup-linux-arm-musleabihf@4.24.2': + optional: true + '@rollup/rollup-linux-arm64-gnu@4.21.2': optional: true + '@rollup/rollup-linux-arm64-gnu@4.24.2': + optional: true + '@rollup/rollup-linux-arm64-musl@4.21.2': optional: true + '@rollup/rollup-linux-arm64-musl@4.24.2': + optional: true + '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': optional: true + '@rollup/rollup-linux-powerpc64le-gnu@4.24.2': + optional: true + '@rollup/rollup-linux-riscv64-gnu@4.21.2': optional: true + '@rollup/rollup-linux-riscv64-gnu@4.24.2': + optional: true + '@rollup/rollup-linux-s390x-gnu@4.21.2': optional: true + '@rollup/rollup-linux-s390x-gnu@4.24.2': + optional: true + '@rollup/rollup-linux-x64-gnu@4.21.2': optional: true + '@rollup/rollup-linux-x64-gnu@4.24.2': + optional: true + '@rollup/rollup-linux-x64-musl@4.21.2': optional: true + '@rollup/rollup-linux-x64-musl@4.24.2': + optional: true + '@rollup/rollup-win32-arm64-msvc@4.21.2': optional: true + '@rollup/rollup-win32-arm64-msvc@4.24.2': + optional: true + '@rollup/rollup-win32-ia32-msvc@4.21.2': optional: true + '@rollup/rollup-win32-ia32-msvc@4.24.2': + optional: true + '@rollup/rollup-win32-x64-msvc@4.21.2': optional: true + '@rollup/rollup-win32-x64-msvc@4.24.2': + optional: true + '@scure/base@1.0.0': {} '@scure/base@1.1.1': {} @@ -6467,10 +6698,10 @@ snapshots: transitivePeerDependencies: - debug - '@snowfork/snowbridge-types@0.2.7(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2)': + '@snowfork/snowbridge-types@0.2.7(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2)': dependencies: '@polkadot/api': 7.15.1 - '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) '@polkadot/types': 7.15.1 transitivePeerDependencies: - '@polkadot/util' @@ -6484,7 +6715,7 @@ snapshots: '@subsocial/definitions@0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 14.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 14.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) lodash.camelcase: 4.3.0 transitivePeerDependencies: - bufferutil @@ -6582,6 +6813,8 @@ snapshots: '@substrate/ss58-registry@1.50.0': {} + '@substrate/ss58-registry@1.51.0': {} + '@types/big.js@6.2.2': {} '@types/bn.js@4.11.6': @@ -6592,8 +6825,14 @@ snapshots: dependencies: '@types/node': 22.5.4 + '@types/bn.js@5.1.6': + dependencies: + '@types/node': 22.5.4 + '@types/estree@1.0.5': {} + '@types/estree@1.0.6': {} + '@types/node-fetch@2.6.11': dependencies: '@types/node': 22.5.4 @@ -6607,8 +6846,6 @@ snapshots: dependencies: undici-types: 6.19.8 - '@types/semver@7.5.8': {} - '@types/stylis@4.2.5': {} '@types/uuid@9.0.8': {} @@ -6641,44 +6878,44 @@ snapshots: '@polkadot/api': 12.4.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': 12.4.2 - '@vitest/expect@2.1.1': + '@vitest/expect@2.1.4': dependencies: - '@vitest/spy': 2.1.1 - '@vitest/utils': 2.1.1 - chai: 5.1.1 + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 + chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(vite@5.4.3(@types/node@22.5.4))': + '@vitest/mocker@2.1.4(vite@5.4.3(@types/node@22.5.4))': dependencies: - '@vitest/spy': 2.1.1 + '@vitest/spy': 2.1.4 estree-walker: 3.0.3 - magic-string: 0.30.11 + magic-string: 0.30.12 optionalDependencies: vite: 5.4.3(@types/node@22.5.4) - '@vitest/pretty-format@2.1.1': + '@vitest/pretty-format@2.1.4': dependencies: tinyrainbow: 1.2.0 - '@vitest/runner@2.1.1': + '@vitest/runner@2.1.4': dependencies: - '@vitest/utils': 2.1.1 + '@vitest/utils': 2.1.4 pathe: 1.1.2 - '@vitest/snapshot@2.1.1': + '@vitest/snapshot@2.1.4': dependencies: - '@vitest/pretty-format': 2.1.1 - magic-string: 0.30.11 + '@vitest/pretty-format': 2.1.4 + magic-string: 0.30.12 pathe: 1.1.2 - '@vitest/spy@2.1.1': + '@vitest/spy@2.1.4': dependencies: - tinyspy: 3.0.0 + tinyspy: 3.0.2 - '@vitest/utils@2.1.1': + '@vitest/utils@2.1.4': dependencies: - '@vitest/pretty-format': 2.1.1 - loupe: 3.1.1 + '@vitest/pretty-format': 2.1.4 + loupe: 3.1.2 tinyrainbow: 1.2.0 '@wormhole-foundation/sdk-base@0.10.7': @@ -6689,10 +6926,6 @@ snapshots: dependencies: '@scure/base': 1.1.8 - '@wormhole-foundation/sdk-base@0.8.2': - dependencies: - '@scure/base': 1.1.8 - '@wormhole-foundation/sdk-connect@0.10.7': dependencies: '@wormhole-foundation/sdk-base': 0.10.7 @@ -6709,14 +6942,6 @@ snapshots: transitivePeerDependencies: - debug - '@wormhole-foundation/sdk-connect@0.8.2': - dependencies: - '@wormhole-foundation/sdk-base': 0.8.2 - '@wormhole-foundation/sdk-definitions': 0.8.2 - axios: 1.7.7 - transitivePeerDependencies: - - debug - '@wormhole-foundation/sdk-definitions@0.10.7': dependencies: '@noble/curves': 1.6.0 @@ -6729,12 +6954,6 @@ snapshots: '@noble/hashes': 1.5.0 '@wormhole-foundation/sdk-base': 0.10.8 - '@wormhole-foundation/sdk-definitions@0.8.2': - dependencies: - '@noble/curves': 1.6.0 - '@noble/hashes': 1.5.0 - '@wormhole-foundation/sdk-base': 0.8.2 - '@wormhole-foundation/sdk-evm-core@0.10.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@wormhole-foundation/sdk-connect': 0.10.8 @@ -6774,22 +6993,13 @@ snapshots: - debug - utf-8-validate - '@wormhole-foundation/sdk-evm@0.8.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@wormhole-foundation/sdk-connect': 0.8.2 - ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - debug - - utf-8-validate - '@zeitgeistpm/type-defs@1.0.0': {} '@zeroio/type-definitions@0.0.14': {} - abitype@1.0.5(typescript@5.6.2): + abitype@1.0.5(typescript@5.6.3): optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 aes-js@4.0.0-beta.5: {} @@ -6811,11 +7021,6 @@ snapshots: any-promise@1.3.0: {} - anymatch@3.1.3: - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - argparse@1.0.10: dependencies: sprintf-js: 1.0.3 @@ -6852,8 +7057,6 @@ snapshots: big.js@6.2.1: {} - binary-extensions@2.3.0: {} - blakejs@1.2.1: {} bn.js@4.12.0: {} @@ -6879,20 +7082,20 @@ snapshots: dependencies: node-gyp-build: 4.8.2 - bun@1.1.27: + bun@1.1.33: optionalDependencies: - '@oven/bun-darwin-aarch64': 1.1.27 - '@oven/bun-darwin-x64': 1.1.27 - '@oven/bun-darwin-x64-baseline': 1.1.27 - '@oven/bun-linux-aarch64': 1.1.27 - '@oven/bun-linux-x64': 1.1.27 - '@oven/bun-linux-x64-baseline': 1.1.27 - '@oven/bun-windows-x64': 1.1.27 - '@oven/bun-windows-x64-baseline': 1.1.27 - - bundle-require@5.0.0(esbuild@0.23.1): - dependencies: - esbuild: 0.23.1 + '@oven/bun-darwin-aarch64': 1.1.33 + '@oven/bun-darwin-x64': 1.1.33 + '@oven/bun-darwin-x64-baseline': 1.1.33 + '@oven/bun-linux-aarch64': 1.1.33 + '@oven/bun-linux-x64': 1.1.33 + '@oven/bun-linux-x64-baseline': 1.1.33 + '@oven/bun-windows-x64': 1.1.33 + '@oven/bun-windows-x64-baseline': 1.1.33 + + bundle-require@5.0.0(esbuild@0.24.0): + dependencies: + esbuild: 0.24.0 load-tsconfig: 0.2.5 cac@6.7.14: {} @@ -6907,7 +7110,7 @@ snapshots: dependencies: '@types/node': 22.5.4 - chai@5.1.1: + chai@5.1.2: dependencies: assertion-error: 2.0.1 check-error: 2.1.1 @@ -6931,17 +7134,9 @@ snapshots: check-error@2.1.1: {} - chokidar@3.6.0: + chokidar@4.0.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.6.0 - optionalDependencies: - fsevents: 2.3.3 + readdirp: 4.0.2 ci-info@3.9.0: {} @@ -6999,14 +7194,14 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig@9.0.0(typescript@5.6.2): + cosmiconfig@9.0.0(typescript@5.6.3): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 create-hash@1.2.0: dependencies: @@ -7242,32 +7437,32 @@ snapshots: '@esbuild/win32-ia32': 0.21.5 '@esbuild/win32-x64': 0.21.5 - esbuild@0.23.1: + esbuild@0.24.0: optionalDependencies: - '@esbuild/aix-ppc64': 0.23.1 - '@esbuild/android-arm': 0.23.1 - '@esbuild/android-arm64': 0.23.1 - '@esbuild/android-x64': 0.23.1 - '@esbuild/darwin-arm64': 0.23.1 - '@esbuild/darwin-x64': 0.23.1 - '@esbuild/freebsd-arm64': 0.23.1 - '@esbuild/freebsd-x64': 0.23.1 - '@esbuild/linux-arm': 0.23.1 - '@esbuild/linux-arm64': 0.23.1 - '@esbuild/linux-ia32': 0.23.1 - '@esbuild/linux-loong64': 0.23.1 - '@esbuild/linux-mips64el': 0.23.1 - '@esbuild/linux-ppc64': 0.23.1 - '@esbuild/linux-riscv64': 0.23.1 - '@esbuild/linux-s390x': 0.23.1 - '@esbuild/linux-x64': 0.23.1 - '@esbuild/netbsd-x64': 0.23.1 - '@esbuild/openbsd-arm64': 0.23.1 - '@esbuild/openbsd-x64': 0.23.1 - '@esbuild/sunos-x64': 0.23.1 - '@esbuild/win32-arm64': 0.23.1 - '@esbuild/win32-ia32': 0.23.1 - '@esbuild/win32-x64': 0.23.1 + '@esbuild/aix-ppc64': 0.24.0 + '@esbuild/android-arm': 0.24.0 + '@esbuild/android-arm64': 0.24.0 + '@esbuild/android-x64': 0.24.0 + '@esbuild/darwin-arm64': 0.24.0 + '@esbuild/darwin-x64': 0.24.0 + '@esbuild/freebsd-arm64': 0.24.0 + '@esbuild/freebsd-x64': 0.24.0 + '@esbuild/linux-arm': 0.24.0 + '@esbuild/linux-arm64': 0.24.0 + '@esbuild/linux-ia32': 0.24.0 + '@esbuild/linux-loong64': 0.24.0 + '@esbuild/linux-mips64el': 0.24.0 + '@esbuild/linux-ppc64': 0.24.0 + '@esbuild/linux-riscv64': 0.24.0 + '@esbuild/linux-s390x': 0.24.0 + '@esbuild/linux-x64': 0.24.0 + '@esbuild/netbsd-x64': 0.24.0 + '@esbuild/openbsd-arm64': 0.24.0 + '@esbuild/openbsd-x64': 0.24.0 + '@esbuild/sunos-x64': 0.24.0 + '@esbuild/win32-arm64': 0.24.0 + '@esbuild/win32-ia32': 0.24.0 + '@esbuild/win32-x64': 0.24.0 escape-string-regexp@1.0.5: {} @@ -7310,17 +7505,7 @@ snapshots: eventemitter3@5.0.1: {} - execa@5.1.1: - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 + expect-type@1.1.0: {} ext@1.7.0: dependencies: @@ -7356,6 +7541,10 @@ snapshots: dependencies: reusify: 1.0.4 + fdir@6.4.2(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + fetch-blob@3.2.0: dependencies: node-domexception: 1.0.0 @@ -7423,8 +7612,6 @@ snapshots: get-stdin@9.0.0: {} - get-stream@6.0.1: {} - glob-parent@5.1.2: dependencies: is-glob: 4.0.3 @@ -7498,8 +7685,6 @@ snapshots: human-id@1.0.2: {} - human-signals@2.1.0: {} - iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 @@ -7523,10 +7708,6 @@ snapshots: is-arrayish@0.2.1: {} - is-binary-path@2.1.0: - dependencies: - binary-extensions: 2.3.0 - is-extglob@2.1.1: {} is-fullwidth-code-point@3.0.0: {} @@ -7539,8 +7720,6 @@ snapshots: is-number@7.0.0: {} - is-stream@2.0.1: {} - is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 @@ -7682,6 +7861,8 @@ snapshots: dependencies: get-func-name: 2.0.2 + loupe@3.1.2: {} + lru-cache@10.4.3: {} lru-cache@11.0.1: {} @@ -7691,7 +7872,7 @@ snapshots: pseudomap: 1.0.2 yallist: 2.1.2 - magic-string@0.30.11: + magic-string@0.30.12: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -7701,8 +7882,6 @@ snapshots: inherits: 2.0.4 safe-buffer: 5.2.1 - merge-stream@2.0.0: {} - merge2@1.4.1: {} micromatch@4.0.8: @@ -7781,8 +7960,6 @@ snapshots: node-gyp-build@4.8.2: {} - normalize-path@3.0.0: {} - npm-package-arg@11.0.3: dependencies: hosted-git-info: 7.0.2 @@ -7790,10 +7967,6 @@ snapshots: semver: 7.6.3 validate-npm-package-name: 5.0.1 - npm-run-path@4.0.1: - dependencies: - path-key: 3.1.1 - object-assign@4.1.1: {} onetime@5.1.2: @@ -7877,17 +8050,21 @@ snapshots: picocolors@1.1.0: {} + picocolors@1.1.1: {} + picomatch@2.3.1: {} + picomatch@4.0.2: {} + pify@4.0.1: {} pirates@4.0.6: {} pnglib@0.0.1: {} - pontem-types-bundle@1.0.15(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2): + pontem-types-bundle@1.0.15(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2): dependencies: - '@polkadot/keyring': 7.9.2(@polkadot/util-crypto@13.0.2(@polkadot/util@13.0.2))(@polkadot/util@13.0.2) + '@polkadot/keyring': 7.9.2(@polkadot/util-crypto@13.2.2(@polkadot/util@13.2.2))(@polkadot/util@13.2.2) '@polkadot/types': 6.12.1 typescript: 4.9.5 transitivePeerDependencies: @@ -7917,8 +8094,6 @@ snapshots: prettier@2.8.8: {} - prettier@3.3.3: {} - proc-log@4.2.0: {} prompts@2.4.2: @@ -7980,9 +8155,7 @@ snapshots: string_decoder: 1.3.0 util-deprecate: 1.0.2 - readdirp@3.6.0: - dependencies: - picomatch: 2.3.1 + readdirp@4.0.2: {} regenerator-runtime@0.14.1: {} @@ -8026,6 +8199,30 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.21.2 fsevents: 2.3.3 + rollup@4.24.2: + dependencies: + '@types/estree': 1.0.6 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.24.2 + '@rollup/rollup-android-arm64': 4.24.2 + '@rollup/rollup-darwin-arm64': 4.24.2 + '@rollup/rollup-darwin-x64': 4.24.2 + '@rollup/rollup-freebsd-arm64': 4.24.2 + '@rollup/rollup-freebsd-x64': 4.24.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.24.2 + '@rollup/rollup-linux-arm-musleabihf': 4.24.2 + '@rollup/rollup-linux-arm64-gnu': 4.24.2 + '@rollup/rollup-linux-arm64-musl': 4.24.2 + '@rollup/rollup-linux-powerpc64le-gnu': 4.24.2 + '@rollup/rollup-linux-riscv64-gnu': 4.24.2 + '@rollup/rollup-linux-s390x-gnu': 4.24.2 + '@rollup/rollup-linux-x64-gnu': 4.24.2 + '@rollup/rollup-linux-x64-musl': 4.24.2 + '@rollup/rollup-win32-arm64-msvc': 4.24.2 + '@rollup/rollup-win32-ia32-msvc': 4.24.2 + '@rollup/rollup-win32-x64-msvc': 4.24.2 + fsevents: 2.3.3 + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 @@ -8155,8 +8352,6 @@ snapshots: strip-bom@4.0.0: {} - strip-final-newline@2.0.0: {} - styled-components@6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@emotion/is-prop-valid': 1.2.2 @@ -8187,13 +8382,13 @@ snapshots: dependencies: has-flag: 3.0.0 - syncpack@13.0.0(typescript@5.6.2): + syncpack@13.0.0(typescript@5.6.3): dependencies: '@effect/schema': 0.71.1(effect@3.6.5) chalk: 5.3.0 chalk-template: 1.1.0 commander: 12.1.0 - cosmiconfig: 9.0.0(typescript@5.6.2) + cosmiconfig: 9.0.0(typescript@5.6.3) effect: 3.6.5 enquirer: 2.4.1 fast-check: 3.21.0 @@ -8224,13 +8419,18 @@ snapshots: tinybench@2.9.0: {} - tinyexec@0.3.0: {} + tinyexec@0.3.1: {} + + tinyglobby@0.2.10: + dependencies: + fdir: 6.4.2(picomatch@4.0.2) + picomatch: 4.0.2 tinypool@1.0.1: {} tinyrainbow@1.2.0: {} - tinyspy@3.0.0: {} + tinyspy@3.0.2: {} tmp@0.0.33: dependencies: @@ -8262,59 +8462,61 @@ snapshots: tslib@2.7.0: {} - tsup@8.2.4(postcss@8.4.45)(typescript@5.6.2)(yaml@2.5.1): + tslib@2.8.0: {} + + tsup@8.3.5(postcss@8.4.45)(typescript@5.6.3)(yaml@2.5.1): dependencies: - bundle-require: 5.0.0(esbuild@0.23.1) + bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 - chokidar: 3.6.0 + chokidar: 4.0.1 consola: 3.2.3 debug: 4.3.7 - esbuild: 0.23.1 - execa: 5.1.1 - globby: 11.1.0 + esbuild: 0.24.0 joycon: 3.1.1 - picocolors: 1.1.0 + picocolors: 1.1.1 postcss-load-config: 6.0.1(postcss@8.4.45)(yaml@2.5.1) resolve-from: 5.0.0 - rollup: 4.21.2 + rollup: 4.24.2 source-map: 0.8.0-beta.0 sucrase: 3.35.0 + tinyexec: 0.3.1 + tinyglobby: 0.2.10 tree-kill: 1.2.2 optionalDependencies: postcss: 8.4.45 - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - jiti - supports-color - tsx - yaml - turbo-darwin-64@2.1.2: + turbo-darwin-64@2.2.3: optional: true - turbo-darwin-arm64@2.1.2: + turbo-darwin-arm64@2.2.3: optional: true - turbo-linux-64@2.1.2: + turbo-linux-64@2.2.3: optional: true - turbo-linux-arm64@2.1.2: + turbo-linux-arm64@2.2.3: optional: true - turbo-windows-64@2.1.2: + turbo-windows-64@2.2.3: optional: true - turbo-windows-arm64@2.1.2: + turbo-windows-arm64@2.2.3: optional: true - turbo@2.1.2: + turbo@2.2.3: optionalDependencies: - turbo-darwin-64: 2.1.2 - turbo-darwin-arm64: 2.1.2 - turbo-linux-64: 2.1.2 - turbo-linux-arm64: 2.1.2 - turbo-windows-64: 2.1.2 - turbo-windows-arm64: 2.1.2 + turbo-darwin-64: 2.2.3 + turbo-darwin-arm64: 2.2.3 + turbo-linux-64: 2.2.3 + turbo-linux-arm64: 2.2.3 + turbo-windows-64: 2.2.3 + turbo-windows-arm64: 2.2.3 tweetnacl@1.0.3: {} @@ -8326,7 +8528,7 @@ snapshots: typescript@4.9.5: {} - typescript@5.6.2: {} + typescript@5.6.3: {} undici-types@6.19.8: {} @@ -8344,43 +8546,25 @@ snapshots: validate-npm-package-name@5.0.1: {} - viem@2.21.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10): - dependencies: - '@adraffy/ens-normalize': 1.10.0 - '@noble/curves': 1.4.0 - '@noble/hashes': 1.4.0 - '@scure/bip32': 1.4.0 - '@scure/bip39': 1.4.0 - abitype: 1.0.5(typescript@5.6.2) - isows: 1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - webauthn-p256: 0.0.5 - ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - optionalDependencies: - typescript: 5.6.2 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - - viem@2.21.7(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10): + viem@2.21.7(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.4.0 '@noble/hashes': 1.4.0 '@scure/bip32': 1.4.0 '@scure/bip39': 1.4.0 - abitype: 1.0.5(typescript@5.6.2) + abitype: 1.0.5(typescript@5.6.3) isows: 1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) webauthn-p256: 0.0.5 ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - vite-node@2.1.1(@types/node@22.5.4): + vite-node@2.1.4(@types/node@22.5.4): dependencies: cac: 6.7.14 debug: 4.3.7 @@ -8406,26 +8590,27 @@ snapshots: '@types/node': 22.5.4 fsevents: 2.3.3 - vitest@2.1.1(@types/node@22.5.4): + vitest@2.1.4(@types/node@22.5.4): dependencies: - '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(vite@5.4.3(@types/node@22.5.4)) - '@vitest/pretty-format': 2.1.1 - '@vitest/runner': 2.1.1 - '@vitest/snapshot': 2.1.1 - '@vitest/spy': 2.1.1 - '@vitest/utils': 2.1.1 - chai: 5.1.1 + '@vitest/expect': 2.1.4 + '@vitest/mocker': 2.1.4(vite@5.4.3(@types/node@22.5.4)) + '@vitest/pretty-format': 2.1.4 + '@vitest/runner': 2.1.4 + '@vitest/snapshot': 2.1.4 + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 + chai: 5.1.2 debug: 4.3.7 - magic-string: 0.30.11 + expect-type: 1.1.0 + magic-string: 0.30.12 pathe: 1.1.2 std-env: 3.7.0 tinybench: 2.9.0 - tinyexec: 0.3.0 + tinyexec: 0.3.1 tinypool: 1.0.1 tinyrainbow: 1.2.0 vite: 5.4.3(@types/node@22.5.4) - vite-node: 2.1.1(@types/node@22.5.4) + vite-node: 2.1.4(@types/node@22.5.4) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 22.5.4 From 94d9c0736762c4d9bba9b78afafcab38b85a47f7 Mon Sep 17 00:00:00 2001 From: Mario J Maurello Date: Wed, 30 Oct 2024 16:58:13 +0100 Subject: [PATCH 8/8] add script to generate .d.mts file --- .vscode/settings.json | 1 + package.json | 1 + scripts/copy-dts.ts | 13 +++++++++++++ 3 files changed, 15 insertions(+) create mode 100644 scripts/copy-dts.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index d4043a81..bb3833cb 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -62,6 +62,7 @@ "pendulumchain", "phala", "polkadot", + "postbuild", "precompile", "preinstall", "rmrk", diff --git a/package.json b/package.json index fe66ed2d..ce1e4a46 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "scripts": { "preinstall": "npx only-allow pnpm", "build": "turbo run build", + "postbuild": "npx bun scripts/copy-dts.ts", "dev": "turbo run dev", "link": "turbo run link", "lint": "pnpm biome check .", diff --git a/scripts/copy-dts.ts b/scripts/copy-dts.ts new file mode 100644 index 00000000..3b2a0027 --- /dev/null +++ b/scripts/copy-dts.ts @@ -0,0 +1,13 @@ +import { copyFile } from 'node:fs/promises'; +import { glob } from 'glob'; + +async function copyDtsToMts() { + const dtsFiles = await glob('packages/*/build/**/*.d.ts'); + + for (const file of dtsFiles) { + const mtsFile = file.replace('.d.ts', '.d.mts'); + await copyFile(file, mtsFile); + } +} + +copyDtsToMts().catch(console.error);