From a902cf65275bb2d798e3c441addff5065d1b6d1a Mon Sep 17 00:00:00 2001 From: Tim B <79199034+timbrinded@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:01:56 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=93=A6=EF=B8=8F=20Update=20Polka?= =?UTF-8?q?dotJS=20Versions=20(#3155)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * pjs update * update viem * update pkgs * update versions * update zombienet * Update typescript-api/package.json * Update typescript-api/package.json * add types-bundle pub script --------- Co-authored-by: Rodrigo Quelhas <22591718+RomarQ@users.noreply.github.com> --- .github/workflows/publish-types-bundle.yml | 48 + moonbeam-types-bundle/package.json | 2 +- package.json | 34 +- pnpm-lock.yaml | 3490 ++++------------- test/package.json | 9 +- typescript-api/package.json | 2 +- .../src/moonbase/interfaces/augment-types.ts | 2 + .../src/moonbeam/interfaces/augment-types.ts | 2 + .../src/moonriver/interfaces/augment-types.ts | 2 + 9 files changed, 899 insertions(+), 2692 deletions(-) create mode 100644 .github/workflows/publish-types-bundle.yml diff --git a/.github/workflows/publish-types-bundle.yml b/.github/workflows/publish-types-bundle.yml new file mode 100644 index 0000000000..5ccaa30511 --- /dev/null +++ b/.github/workflows/publish-types-bundle.yml @@ -0,0 +1,48 @@ +name: Publish moonbeam-types-bundle +on: + workflow_dispatch: + inputs: + TargetSHA: + description: full sha of commit to publish moonbeam-types-bundle from + required: true + DryRun: + description: Dry run mode + required: false + default: "false" + +jobs: + publish-moonbeam-types-bundle: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: ${{ github.event.inputs.TargetSHA }} + - uses: pnpm/action-setup@v4 + name: Install pnpm + with: + version: 9 + run_install: false + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version-file: "test/.nvmrc" + cache: pnpm + registry-url: https://registry.npmjs.org/ + - name: Build moonbeam-types-bundle package + run: | + cd moonbeam-types-bundle + pnpm i --frozen-lockfile + pnpm build + - name: Publish moonbeam-types-bundle + run: | + cd moonbeam-types-bundle + if [ "${{ github.event.inputs.DryRun }}" == "true" ]; then + pnpm publish --access public --no-git-checks --dry-run + else + pnpm publish --access public --no-git-checks + fi + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} diff --git a/moonbeam-types-bundle/package.json b/moonbeam-types-bundle/package.json index 64aeafbc39..ec9a8064a5 100644 --- a/moonbeam-types-bundle/package.json +++ b/moonbeam-types-bundle/package.json @@ -1,6 +1,6 @@ { "name": "moonbeam-types-bundle", - "version": "3.0.0", + "version": "3.0.1", "description": "Bundled types to instantiate the Polkadot JS api with a Moonbeam network", "main": "./dist/definitions.cjs", "prepublish": "tsc", diff --git a/package.json b/package.json index 6958729916..fee0526883 100644 --- a/package.json +++ b/package.json @@ -17,15 +17,16 @@ "check:fix": "pnpm -r check:fix" }, "dependencies": { - "@polkadot/api": "15.0.1", - "@polkadot/api-augment": "15.0.1", - "@polkadot/api-derive": "15.0.1", - "@polkadot/keyring": "13.2.3", - "@polkadot/rpc-provider": "15.0.1", - "@polkadot/types": "15.0.1", - "@polkadot/types-codec": "15.0.1", - "@polkadot/util": "13.2.3", - "@polkadot/util-crypto": "13.2.3", + "@openzeppelin/contracts": "4.9.6", + "@polkadot/api": "15.4.1", + "@polkadot/api-augment": "15.4.1", + "@polkadot/api-derive": "15.4.1", + "@polkadot/keyring": "13.3.1", + "@polkadot/rpc-provider": "15.4.1", + "@polkadot/types": "15.4.1", + "@polkadot/types-codec": "15.4.1", + "@polkadot/util": "13.3.1", + "@polkadot/util-crypto": "13.3.1", "ethers": "6.13.4", "tsup": "8.3.5" }, @@ -37,10 +38,21 @@ }, "pnpm": { "overrides": { - "@openzeppelin/contracts": "4.9.6" + "@openzeppelin/contracts": "4.9.6", + "@polkadot/api": "15.4.1", + "@polkadot/api-augment": "15.4.1", + "@polkadot/api-derive": "15.4.1", + "@polkadot/keyring": "13.3.1", + "@polkadot/rpc-provider": "15.4.1", + "@polkadot/types": "15.4.1", + "@polkadot/types-codec": "15.4.1", + "@polkadot/util": "13.3.1", + "@polkadot/util-crypto": "13.3.1", + "ethers": "6.13.4", + "tsup": "8.3.5" } }, "keywords": [], "author": "", "license": "ISC" -} +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f17e298bc4..aeee4ca150 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,38 +6,52 @@ settings: overrides: '@openzeppelin/contracts': 4.9.6 + '@polkadot/api': 15.4.1 + '@polkadot/api-augment': 15.4.1 + '@polkadot/api-derive': 15.4.1 + '@polkadot/keyring': 13.3.1 + '@polkadot/rpc-provider': 15.4.1 + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1 + ethers: 6.13.4 + tsup: 8.3.5 importers: .: dependencies: + '@openzeppelin/contracts': + specifier: 4.9.6 + version: 4.9.6 '@polkadot/api': - specifier: 15.0.1 - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-augment': - specifier: 15.0.1 - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-derive': - specifier: 15.0.1 - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/keyring': - specifier: 13.2.3 - version: 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) + specifier: 13.3.1 + version: 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) '@polkadot/rpc-provider': - specifier: 15.0.1 - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: 15.0.1 - version: 15.0.1 + specifier: 15.4.1 + version: 15.4.1 '@polkadot/types-codec': - specifier: 15.0.1 - version: 15.0.1 + specifier: 15.4.1 + version: 15.4.1 '@polkadot/util': - specifier: 13.2.3 - version: 13.2.3 + specifier: 13.3.1 + version: 13.3.1 '@polkadot/util-crypto': - specifier: 13.2.3 - version: 13.2.3(@polkadot/util@13.2.3) + specifier: 13.3.1 + version: 13.3.1(@polkadot/util@13.3.1) ethers: specifier: 6.13.4 version: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -64,8 +78,8 @@ importers: specifier: '*' version: 1.9.4 '@polkadot/api': - specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-base': specifier: '*' version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -76,13 +90,13 @@ importers: specifier: '*' version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: '*' - version: 15.0.1 + specifier: 15.4.1 + version: 15.4.1 '@polkadot/types-codec': - specifier: '*' - version: 15.0.1 + specifier: 15.4.1 + version: 15.4.1 tsup: - specifier: '*' + specifier: 8.3.5 version: 8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) typescript: specifier: '*' @@ -91,8 +105,8 @@ importers: test: dependencies: '@acala-network/chopsticks': - specifier: 1.0.1 - version: 1.0.1(bufferutil@4.0.8)(debug@4.4.0)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10) + specifier: 1.0.2 + version: 1.0.2(bufferutil@4.0.8)(debug@4.4.0)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10) '@biomejs/biome': specifier: '*' version: 1.9.4 @@ -101,10 +115,10 @@ importers: version: link:../typescript-api '@moonwall/cli': specifier: 5.9.1 - version: 5.9.1(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + version: 5.9.1(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) '@moonwall/util': specifier: 5.9.1 - version: 5.9.1(@types/node@22.10.1)(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.0) + version: 5.9.1(@types/node@22.10.1)(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.1) '@openzeppelin/contracts': specifier: 4.9.6 version: 4.9.6 @@ -112,47 +126,50 @@ importers: specifier: 1.1.11 version: 1.1.11 '@polkadot/api': - specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-augment': - specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-derive': - specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/apps-config': - specifier: 0.146.1 - version: 0.146.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(utf-8-validate@5.0.10) + specifier: 0.148.1 + version: 0.148.1(@polkadot/keyring@13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(utf-8-validate@5.0.10) '@polkadot/keyring': - specifier: '*' - version: 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) + specifier: 13.3.1 + version: 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) '@polkadot/rpc-provider': - specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: '*' - version: 15.0.1 + specifier: 15.4.1 + version: 15.4.1 '@polkadot/types-codec': - specifier: '*' - version: 15.0.1 + specifier: 15.4.1 + version: 15.4.1 '@polkadot/util': - specifier: '*' - version: 13.2.3 + specifier: 13.3.1 + version: 13.3.1 '@polkadot/util-crypto': - specifier: '*' - version: 13.2.3(@polkadot/util@13.2.3) + specifier: 13.3.1 + version: 13.3.1(@polkadot/util@13.3.1) '@substrate/txwrapper-core': specifier: 7.5.3 - version: 7.5.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 7.5.3(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@substrate/txwrapper-substrate': specifier: 7.5.3 - version: 7.5.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 7.5.3(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@vitest/ui': specifier: 2.1.8 version: 2.1.8(vitest@2.1.8) + '@zombienet/orchestrator': + specifier: 0.0.98 + version: 0.0.98(@polkadot/util@13.3.1)(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(utf-8-validate@5.0.10) '@zombienet/utils': - specifier: 0.0.25 - version: 0.0.25(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) + specifier: 0.0.26 + version: 0.0.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) chalk: specifier: 5.3.0 version: 5.3.0 @@ -160,7 +177,7 @@ importers: specifier: github:aurora-is-near/eth-object#master version: https://codeload.github.com/aurora-is-near/eth-object/tar.gz/378b8dbf44a71f7049666cea5a16ab88d45aed06(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) ethers: - specifier: '*' + specifier: 6.13.4 version: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) json-bigint: specifier: 1.0.0 @@ -193,14 +210,14 @@ importers: specifier: '*' version: 4.19.2 viem: - specifier: 2.21.54 - version: 2.21.54(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + specifier: 2.22.13 + version: 2.22.13(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) vitest: specifier: 2.1.8 version: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) web3: specifier: 4.16.0 - version: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + version: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) yaml: specifier: 2.6.1 version: 2.6.1 @@ -242,8 +259,8 @@ importers: specifier: '*' version: 1.9.4 '@polkadot/api': - specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.4.1 + version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-base': specifier: '*' version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -254,11 +271,11 @@ importers: specifier: '*' version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: '*' - version: 15.0.1 + specifier: 15.4.1 + version: 15.4.1 '@polkadot/types-codec': - specifier: '*' - version: 15.0.1 + specifier: 15.4.1 + version: 15.4.1 '@types/node': specifier: '*' version: 22.10.1 @@ -266,7 +283,7 @@ importers: specifier: workspace:* version: link:../moonbeam-types-bundle tsup: - specifier: '*' + specifier: 8.3.5 version: 8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) tsx: specifier: '*' @@ -277,23 +294,26 @@ importers: packages: - '@acala-network/chopsticks-core@1.0.1': - resolution: {integrity: sha512-7HE38P090PNWiRVRItVBCWt92K3bIz0S0v+0M21Hz8waTlWavilGgN6Jsua1ZndydRgZl0Y3/rLPgqVHzoNDzA==} + '@acala-network/chopsticks-core@1.0.2': + resolution: {integrity: sha512-j45pTfgamgI7YjJHI943GFoj15kjciIP0nAVfX1CVMXwNA5YewLY8t8SCoyKhnPvS9OskdVtC54jWjjJRttC+w==} + engines: {node: '>=v20'} - '@acala-network/chopsticks-db@1.0.1': - resolution: {integrity: sha512-opkTTB8mjjaeo7NmBrCJr/g1e9o4CRZ0u3LJNAxHGsSC19Yp5t41caVBhgks6K9rhrm1C4GboQKA5aDYyUie8g==} + '@acala-network/chopsticks-db@1.0.2': + resolution: {integrity: sha512-ky94awHwhK6uHsPLRqryIhhriBWK9RQDXHplybU+icdMq9C9aAYMmejQsF2T7lAC8LwFoe3mI0tDYRMDK0zhJA==} + engines: {node: '>=v20'} - '@acala-network/chopsticks-executor@1.0.1': - resolution: {integrity: sha512-aJjFhhG+KQU7C/VlJSRXzPQ4B+j0xJRtYk5oJUSY5Dxo6tnVRAEzQbxcB8dhBobDJH5Q/+5aQbyY0CLIUcACSg==} + '@acala-network/chopsticks-executor@1.0.2': + resolution: {integrity: sha512-I0fie9j9pcnQMO89Ix5ZoLwWRcsUj7L2ba1b4UeJB0JwVibcJcCwSmAMefmcceDZPEkwvWya1ukv0gy/AY93Lw==} - '@acala-network/chopsticks@1.0.1': - resolution: {integrity: sha512-kY5BmOwF6/+VO2uh5NSdIb3qIoCKinZbKDiGCiITld0qQaBTnfHa8kmabaAvTmd/sNjHDW03v5cVXOxHm0668A==} + '@acala-network/chopsticks@1.0.2': + resolution: {integrity: sha512-3CqyGAv2/G0yMiZrX+zZgBvyIFpxAtgm2gJGj/OZK2oVXcQBVXxUkQW5FQEoN9eftVIfMfzC+YlZN4t/TxkhoA==} + engines: {node: '>=v20'} hasBin: true '@acala-network/type-definitions@5.1.2': resolution: {integrity: sha512-di3HH8Zn8i1jkQkQiwc44A8ovN9MvK5HwcNV3ngvW3TeF0dHbpHBQHdElJYpVge5IaEyhQ0kWihIEnVqpw4G9A==} peerDependencies: - '@polkadot/types': ^10.5.1 + '@polkadot/types': 15.4.1 '@adraffy/ens-normalize@1.10.1': resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} @@ -320,10 +340,14 @@ packages: resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} engines: {node: '>=6.9.0'} + '@babel/runtime@7.26.7': + resolution: {integrity: sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==} + engines: {node: '>=6.9.0'} + '@bifrost-finance/type-definitions@1.11.3': resolution: {integrity: sha512-mNW+FfvKZqa1axChEd1ReRpw3P8siiW28YQ8BBJpR2syZqb5cJWOG4Sr/dj3lBcBNQqcqnAUkZPnBxQj8+Ftvg==} peerDependencies: - '@polkadot/api': ^10.7.3 + '@polkadot/api': 15.4.1 '@biomejs/biome@1.9.4': resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==} @@ -1043,7 +1067,7 @@ packages: '@kiltprotocol/type-definitions@1.11401.1': resolution: {integrity: sha512-NlKU8jm/MMCNdxb0WKC/s6rSbwitUkkf+WDMnOcu5yCiBppjnvGArwLsvDr3Z0Ld8HDmad+8316sEVxhtmHaWA==} peerDependencies: - '@polkadot/types': ^12.2.0 + '@polkadot/types': 15.4.1 '@laminar/type-definitions@0.3.1': resolution: {integrity: sha512-QWC2qtvbPIxal+gMfUocZmwK0UsD7Sb0RUm4Hallkp+OXXL+3uBLwztYDLS5LtocOn0tfR//sgpnfsEIEb71Lw==} @@ -1056,7 +1080,7 @@ packages: resolution: {integrity: sha512-kr4mVMuQ6DqZ0H72z0YI8tcdlk4XD4vUgRVYYfTJdXFJhRsfS4YRxfs/iiQPNzWKgoQZKcDqsbQD3xz9T1gELw==} engines: {node: '>=18.0.0'} peerDependencies: - '@polkadot/types': ^10.9.1 + '@polkadot/types': 15.4.1 '@metaverse-network-sdk/type-definitions@0.0.1-16': resolution: {integrity: sha512-lo1NbA0gi+Tu23v4cTkN/oxEhQxaf3QxQ2qvUUfTxDU7a1leYp2Bw3IcoUvqHAGb/PPp8bNmYQfAKXsjqp+LZw==} @@ -1084,23 +1108,17 @@ packages: '@noble/curves@1.4.2': resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} - '@noble/curves@1.6.0': - resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==} - engines: {node: ^14.21.3 || >=16} - '@noble/curves@1.7.0': resolution: {integrity: sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw==} engines: {node: ^14.21.3 || >=16} + '@noble/curves@1.8.1': + resolution: {integrity: sha512-warwspo+UYUPep0Q+vtdVB4Ugn8GGQj8iyB3gnRWsztmUHTI3S1nhdiWNsPUGL0vud7JlRRk1XEu7Lq1KGTnMQ==} + engines: {node: ^14.21.3 || >=16} + '@noble/ed25519@1.7.3': resolution: {integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==} - '@noble/hashes@1.0.0': - resolution: {integrity: sha512-DZVbtY62kc3kkBtMHqwCOfXrT/hnoORy5BJ4+HU1IR59X0KWAOqsfzQPcUl/lQLlG7qXbe/fZ3r/emxtAl+sqg==} - - '@noble/hashes@1.2.0': - resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} - '@noble/hashes@1.3.2': resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} engines: {node: '>= 16'} @@ -1109,10 +1127,6 @@ packages: resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} engines: {node: '>= 16'} - '@noble/hashes@1.5.0': - resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==} - engines: {node: ^14.21.3 || >=16} - '@noble/hashes@1.6.0': resolution: {integrity: sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ==} engines: {node: ^14.21.3 || >=16} @@ -1121,8 +1135,9 @@ packages: resolution: {integrity: sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==} engines: {node: ^14.21.3 || >=16} - '@noble/secp256k1@1.5.5': - resolution: {integrity: sha512-sZ1W6gQzYnu45wPrWx8D3kwI2/U29VYTx9OjbDAd7jwRItJ0cSTMPRL/C8AWZFn9kWFLQGqEXVEE86w4Z8LpIQ==} + '@noble/hashes@1.7.1': + resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==} + engines: {node: ^14.21.3 || >=16} '@noble/secp256k1@1.7.1': resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} @@ -1302,20 +1317,12 @@ packages: resolution: {integrity: sha512-ZvuYRn9f2F8vrm0lPJP8NjbrVLkGpsiWbq0MFlUXhwfTUvkKWPu48rSPiN2SAYAD0p1rOevLus1FdGZL0J/fRw==} hasBin: true - '@polkadot-api/client@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-0fqK6pUKcGHSG2pBvY+gfSS+1mMdjd/qRygAcKI5d05tKsnZLRnmhb9laDguKmGEIB0Bz9vQqNK3gIN/cfvVwg==} - peerDependencies: - rxjs: '>=7.8.0' - '@polkadot-api/codegen@0.12.9': resolution: {integrity: sha512-lxwKRJqKKmR0Fm9g2KU4KgMB5NeKvc1505iGY0nd/PistTzVIk4zsX3Ja9dPFSB4wMMZ9ykMbbamc3+t6jbkaw==} '@polkadot-api/ink-contracts@0.2.2': resolution: {integrity: sha512-jbkrbZo8Yfe9UupmPuWIUdQz0a/Oxi6m1qPGEfXSmwML27FgWEmb+8IG9chLzJ59/z1oMWxgKHkK8BLLWnSLGg==} - '@polkadot-api/json-rpc-provider-proxy@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-0hZ8vtjcsyCX8AyqP2sqUHa1TFFfxGWmlXJkit0Nqp9b32MwZqn5eaUAiV2rNuEpoglKOdKnkGtUF8t5MoodKw==} - '@polkadot-api/json-rpc-provider-proxy@0.1.0': resolution: {integrity: sha512-8GSFE5+EF73MCuLQm8tjrbCqlgclcHBSRaswvXziJ0ZW7iw3UEMsKkkKvELayWyBuOPa2T5i1nj6gFOeIsqvrg==} @@ -1325,9 +1332,6 @@ packages: '@polkadot-api/json-rpc-provider@0.0.1': resolution: {integrity: sha512-/SMC/l7foRjpykLTUTacIH05H3mr9ip8b5xxfwXlVezXrNVLp3Cv0GX6uItkKd+ZjzVPf3PFrDF2B2/HLSNESA==} - '@polkadot-api/json-rpc-provider@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-EaUS9Fc3wsiUr6ZS43PQqaRScW7kM6DYbuM/ou0aYjm8N9MBqgDbGm2oL6RE1vAVmOfEuHcXZuZkhzWtyvQUtA==} - '@polkadot-api/json-rpc-provider@0.0.4': resolution: {integrity: sha512-9cDijLIxzHOBuq6yHqpqjJ9jBmXrctjc1OFqU+tQrS96adQze3mTIH6DTgfb/0LMrqxzxffz1HQGrIlEH00WrA==} @@ -1340,9 +1344,6 @@ packages: '@polkadot-api/merkleize-metadata@1.1.11': resolution: {integrity: sha512-AfRCrFYewZStnOdsRCiECwbkQIieykW5eP3uIvgQQSNU0zc9b/PdfjflEKR36QLl7m/NZ8De8DTLuOgjMFG1gw==} - '@polkadot-api/metadata-builders@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-BD7rruxChL1VXt0icC2gD45OtT9ofJlql0qIllHSRYgama1CR2Owt+ApInQxB+lWqM+xNOznZRpj8CXNDvKIMg==} - '@polkadot-api/metadata-builders@0.3.2': resolution: {integrity: sha512-TKpfoT6vTb+513KDzMBTfCb/ORdgRnsS3TDFpOhAhZ08ikvK+hjHMt5plPiAX/OWkm1Wc9I3+K6W0hX5Ab7MVg==} @@ -1390,9 +1391,6 @@ packages: '@polkadot-api/smoldot@0.3.7': resolution: {integrity: sha512-Fnrz0Xt8fli7LhHSOWbNraiXpLJWCwOglI+BgBWnYpsdHXSMU5TsYEw5oo9rkfI9zDeZsbtXvMTW3MqTeCLtQg==} - '@polkadot-api/substrate-bindings@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-N4vdrZopbsw8k57uG58ofO7nLXM4Ai7835XqakN27MkjXMp5H830A1KJE0L9sGQR7ukOCDEIHHcwXVrzmJ/PBg==} - '@polkadot-api/substrate-bindings@0.10.0': resolution: {integrity: sha512-0YcYdZ7gU4f/yE8eZ+xDiUDlWOnKSdZI77PZT8Dz0TnXdeYhRehh6PGPp7zY0UoT6d5zGrEq7E7x1FPMCR0Rfw==} @@ -1402,18 +1400,12 @@ packages: '@polkadot-api/substrate-bindings@0.9.4': resolution: {integrity: sha512-SUyetILwgUsodSk1qhNu0HflRBdq2VBCbqAqCBNaoCauE3/Q/G6k7xS+1nE6MTcpjZQex+TriJdDz/trLSvwsA==} - '@polkadot-api/substrate-client@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-lcdvd2ssUmB1CPzF8s2dnNOqbrDa+nxaaGbuts+Vo8yjgSKwds2Lo7Oq+imZN4VKW7t9+uaVcKFLMF7PdH0RWw==} - '@polkadot-api/substrate-client@0.1.4': resolution: {integrity: sha512-MljrPobN0ZWTpn++da9vOvt+Ex+NlqTlr/XT7zi9sqPtDJiQcYl+d29hFAgpaeTqbeQKZwz3WDE9xcEfLE8c5A==} '@polkadot-api/substrate-client@0.3.0': resolution: {integrity: sha512-0hEvQLKH2zhaFzE8DPkWehvJilec8u2O2wbIEUStm0OJ8jIFtJ40MFjXQfB01dXBWUz1KaVBqS6xd3sZA90Dpw==} - '@polkadot-api/utils@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - resolution: {integrity: sha512-0CYaCjfLQJTCRCiYvZ81OncHXEKPzAexCMoVloR+v2nl/O2JRya/361MtPkeNLC6XBoaEgLAG9pWQpH3WePzsw==} - '@polkadot-api/utils@0.1.0': resolution: {integrity: sha512-MXzWZeuGxKizPx2Xf/47wx9sr/uxKw39bVJUptTJdsaQn/TGq+z310mHzf1RCGvC1diHM8f593KrnDgc9oNbJA==} @@ -1426,28 +1418,8 @@ packages: '@polkadot-api/ws-provider@0.3.6': resolution: {integrity: sha512-D2+rvcDc9smt24qUKqFoCuKKNhyBVDQEtnsqHiUN/Ym8UGP+Acegac3b9VOig70EpCcRBoYeXY2gEog2ybx1Kg==} - '@polkadot/api-augment@10.13.1': - resolution: {integrity: sha512-IAKaCp19QxgOG4HKk9RAgUgC/VNVqymZ2GXfMNOZWImZhxRIbrK+raH5vN2MbWwtVHpjxyXvGsd1RRhnohI33A==} - engines: {node: '>=18'} - - '@polkadot/api-augment@14.3.1': - resolution: {integrity: sha512-PE6DW+8kRhbnGKn7qCF7yM6eEt/kqrY8bh1i0RZcPY9QgwXW4bZZrtMK4WssX6Z70NTEoOW6xHYIjc7gFZuz8g==} - engines: {node: '>=18'} - - '@polkadot/api-augment@15.0.1': - resolution: {integrity: sha512-dNFrim/87+rStNCrI1aSaH0nZzRadDwEIya/p860lFRVZQpkBvZlqvSBQUqcKxI0c5c1pp1uaSEixq+A+IOUBg==} - engines: {node: '>=18'} - - '@polkadot/api-augment@7.15.1': - resolution: {integrity: sha512-7csQLS6zuYuGq7W1EkTBz1ZmxyRvx/Qpz7E7zPSwxmY8Whb7Yn2effU9XF0eCcRpyfSW8LodF8wMmLxGYs1OaQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/api-augment@9.14.2': - resolution: {integrity: sha512-19MmW8AHEcLkdcUIo3LLk0eCQgREWqNSxkUyOeWn7UiNMY1AhDOOwMStUBNCvrIDK6VL6GGc1sY7rkPCLMuKSw==} - engines: {node: '>=14.0.0'} - - '@polkadot/api-base@10.13.1': - resolution: {integrity: sha512-Okrw5hjtEjqSMOG08J6qqEwlUQujTVClvY1/eZkzKwNzPelWrtV6vqfyJklB7zVhenlxfxqhZKKcY7zWSW/q5Q==} + '@polkadot/api-augment@15.4.1': + resolution: {integrity: sha512-mq/m5eC5hzxzsYfbYoLxdqRgH3/hf60DYoVN1f8P7m798cHXE/8DjCSwgtb5QDiWfp+CifaI5O/PcgL8YNj6jw==} engines: {node: '>=18'} '@polkadot/api-base@14.3.1': @@ -1458,139 +1430,44 @@ packages: resolution: {integrity: sha512-P4WQ+SqyuotVd//EFMIzlWLRbER9JycpdmTaKof2NpVioGotbHhJtO4TXPC3CW1C8zovM7KYrcWtz6b8/FxqoA==} engines: {node: '>=18'} - '@polkadot/api-base@7.15.1': - resolution: {integrity: sha512-UlhLdljJPDwGpm5FxOjvJNFTxXMRFaMuVNx6EklbuetbBEJ/Amihhtj0EJRodxQwtZ4ZtPKYKt+g+Dn7OJJh4g==} - engines: {node: '>=14.0.0'} - - '@polkadot/api-base@9.14.2': - resolution: {integrity: sha512-ky9fmzG1Tnrjr/SBZ0aBB21l0TFr+CIyQenQczoUyVgiuxVaI/2Bp6R2SFrHhG28P+PW2/RcYhn2oIAR2Z2fZQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/api-derive@10.13.1': - resolution: {integrity: sha512-ef0H0GeCZ4q5Om+c61eLLLL29UxFC2/u/k8V1K2JOIU+2wD5LF7sjAoV09CBMKKHfkLenRckVk2ukm4rBqFRpg==} - engines: {node: '>=18'} - - '@polkadot/api-derive@14.3.1': - resolution: {integrity: sha512-PhqUEJCY54vXtIaoYqGUtJY06wHd/K0cBmBz9yCLxp8UZkLoGWhfJRTruI25Jnucf9awS5cZKYqbsoDrL09Oqg==} - engines: {node: '>=18'} - - '@polkadot/api-derive@15.0.1': - resolution: {integrity: sha512-gaLqZ8wL+hGMntq5gxHb6Rv+EQzmmnC63plMBvk5pnNfCm4xjN43GYpbOwSQknHVNo+irC7qwD3GyPK6TfFUUA==} - engines: {node: '>=18'} - - '@polkadot/api-derive@7.15.1': - resolution: {integrity: sha512-CsOQppksQBaa34L1fWRzmfQQpoEBwfH0yTTQxgj3h7rFYGVPxEKGeFjo1+IgI2vXXvOO73Z8E4H/MnbxvKrs1Q==} - engines: {node: '>=14.0.0'} - - '@polkadot/api-derive@9.14.2': - resolution: {integrity: sha512-yw9OXucmeggmFqBTMgza0uZwhNjPxS7MaT7lSCUIRKckl1GejdV+qMhL3XFxPFeYzXwzFpdPG11zWf+qJlalqw==} - engines: {node: '>=14.0.0'} - - '@polkadot/api@10.13.1': - resolution: {integrity: sha512-YrKWR4TQR5CDyGkF0mloEUo7OsUA+bdtENpJGOtNavzOQUDEbxFE0PVzokzZfVfHhHX2CojPVmtzmmLxztyJkg==} - engines: {node: '>=18'} - - '@polkadot/api@14.3.1': - resolution: {integrity: sha512-ZBKSXEVJa1S1bnmpnA7KT/fX3sJDIJOdVD9Hp3X+G73yvXzuK5k1Mn5z9bD/AcMs/HAGcbuYU+b9+b9IByH9YQ==} + '@polkadot/api-base@15.4.1': + resolution: {integrity: sha512-7a0wsLPpnEDLXhPmaLds03XchCnj7oP7MbdoULVKzIjYDq0MjYasigAz0Vs/QR6O5qodZWmgS2gA+VG+Ga5OMA==} engines: {node: '>=18'} - '@polkadot/api@15.0.1': - resolution: {integrity: sha512-ZOqw99B70XrX0it0cWu1YSBrtGNhdFpk5zvUVL5+FD8iyO+Tuk1m32VR0PukDCdlwxFXuEw7vRdZX/G/BzoZhg==} + '@polkadot/api-derive@15.4.1': + resolution: {integrity: sha512-0EFrp0kNNpDWqtuSKbNe8+V1iEz1cXAiL+G7UM0oWae/U2xpbi0zdCMeC7hstUoJS//py1vPnDo0nkVfrdhT/A==} engines: {node: '>=18'} - '@polkadot/api@7.15.1': - resolution: {integrity: sha512-z0z6+k8+R9ixRMWzfsYrNDnqSV5zHKmyhTCL0I7+1I081V18MJTCFUKubrh0t1gD0/FCt3U9Ibvr4IbtukYLrQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/api@9.14.2': - resolution: {integrity: sha512-R3eYFj2JgY1zRb+OCYQxNlJXCs2FA+AU4uIEiVcXnVLmR3M55tkRNEwYAZmiFxx0pQmegGgPMc33q7TWGdw24A==} - engines: {node: '>=14.0.0'} - - '@polkadot/apps-config@0.146.1': - resolution: {integrity: sha512-LRQSyuY6M2xS60Zcx2hvGj501EFU6S77fOhp5NOlS2lHCzcH3fWmnKliJO/8HxXrIEn12uV+pxGEh8bkqjM37Q==} + '@polkadot/api@15.4.1': + resolution: {integrity: sha512-o+5WmEt38rs+Enk2XTE5Mn3Vne+gbolvca7nl+hB/VOr5cK+ZAwhMfEt/ZFXzdAQOA9ePO91FLRsS48mimZ8PA==} engines: {node: '>=18'} - '@polkadot/keyring@10.4.2': - resolution: {integrity: sha512-7iHhJuXaHrRTG6cJDbZE9G+c1ts1dujp0qbO4RfAPmT7YUvphHvAtCKueN9UKPz5+TYDL+rP/jDEaSKU8jl/qQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': 10.4.2 - '@polkadot/util-crypto': 10.4.2 - - '@polkadot/keyring@12.6.2': - resolution: {integrity: sha512-O3Q7GVmRYm8q7HuB3S0+Yf/q/EB2egKRRU3fv9b3B7V+A52tKzA+vIwEmNVaD1g5FKW9oB97rmpggs0zaKFqHw==} + '@polkadot/apps-config@0.148.1': + resolution: {integrity: sha512-b/PDCu4xrqduTOAyxFJkgCzYJzRexSyIgdCIlAnmiw9cgM/pmLOQPF252qFgkLOtH68CE2oEvr/K15Cnr4kftw==} engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2 - '@polkadot/keyring@13.2.3': - resolution: {integrity: sha512-pgTo6DXNXub0wGD+MnVHYhKxf80Jl+QMOCb818ioGdXz++Uw4mTueFAwtB+N7TGo0HafhChUiNJDxFdlDkcAng==} + '@polkadot/keyring@13.3.1': + resolution: {integrity: sha512-PT3uG9MqciPyoEz/f23RRMSlht77fo1hZaA1Vbcs1Rz7h7qFC0+7jFI9Ak30EJh9V0I2YugfzqAe3NjjyDxlvw==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3 - - '@polkadot/keyring@6.11.1': - resolution: {integrity: sha512-rW8INl7pO6Dmaffd6Df1yAYCRWa2RmWQ0LGfJeA/M6seVIkI6J3opZqAd4q2Op+h9a7z4TESQGk8yggOEL+Csg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1 - - '@polkadot/keyring@7.9.2': - resolution: {integrity: sha512-6UGoIxhiTyISkYEZhUbCPpgVxaneIfb/DBVlHtbvaABc8Mqh1KuqcTIq19Mh9wXlBuijl25rw4lUASrE/9sBqg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': 7.9.2 - '@polkadot/util-crypto': 7.9.2 - - '@polkadot/keyring@8.7.1': - resolution: {integrity: sha512-t6ZgQVC+nQT7XwbWtEhkDpiAzxKVJw8Xd/gWdww6xIrawHu7jo3SGB4QNdPgkf8TvDHYAAJiupzVQYAlOIq3GA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1 - - '@polkadot/metadata@4.17.1': - resolution: {integrity: sha512-219isiCWVfbu5JxZnOPj+cV4T+S0XHS4+Jal3t3xz9y4nbgr+25Pa4KInEsJPx0u8EZAxMeiUCX3vd5U7oe72g==} - engines: {node: '>=14.0.0'} - - '@polkadot/networks@10.4.2': - resolution: {integrity: sha512-FAh/znrEvWBiA/LbcT5GXHsCFUl//y9KqxLghSr/CreAmAergiJNT0MVUezC7Y36nkATgmsr4ylFwIxhVtuuCw==} - engines: {node: '>=14.0.0'} - - '@polkadot/networks@12.6.2': - resolution: {integrity: sha512-1oWtZm1IvPWqvMrldVH6NI2gBoCndl5GEwx7lAuQWGr7eNL+6Bdc5K3Z9T0MzFvDGoi2/CBqjX9dRKo39pDC/w==} - engines: {node: '>=18'} + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1 - '@polkadot/networks@13.2.3': - resolution: {integrity: sha512-mG+zkXg/33AyPrkv2xBbAo3LBUwOwBn6qznBU/4jxiZPnVvCwMaxE7xHM22B5riItbNJ169FXv3wy0v6ZmkFbw==} + '@polkadot/networks@13.3.1': + resolution: {integrity: sha512-g/0OmCMUrbbW4RQ/xajTYd2SMJvFKY4kmMvpxtNN57hWQpY7c5oDXSz57jGH2uwvcBWeDfaNokcS+9hJL1RBcA==} engines: {node: '>=18'} - '@polkadot/networks@6.11.1': - resolution: {integrity: sha512-0C6Ha2kvr42se3Gevx6UhHzv3KnPHML0N73Amjwvdr4y0HLZ1Nfw+vcm5yqpz5gpiehqz97XqFrsPRauYdcksQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/networks@8.7.1': - resolution: {integrity: sha512-8xAmhDW0ry5EKcEjp6VTuwoTm0DdDo/zHsmx88P6sVL87gupuFsL+B6TrsYLl8GcaqxujwrOlKB+CKTUg7qFKg==} - engines: {node: '>=14.0.0'} - - '@polkadot/react-identicon@3.11.3': - resolution: {integrity: sha512-YnIF85RaMqw2CwxGkACwWtLHA3twL7jQi/IY9njjJYg3QkdyTQclZqFAw0IClYduBI1YIdRjFoob6k+kyNKpqQ==} + '@polkadot/react-identicon@3.12.1': + resolution: {integrity: sha512-09RuY8g7S2DWre2sz6bLpQdplb1nWBqZgz5y7Dm/2A95Xwut+4aNytdPms1Bl1b343v55zIBYMLxWdyZyEbKSw==} engines: {node: '>=18'} peerDependencies: - '@polkadot/keyring': '*' - '@polkadot/util': '*' - '@polkadot/util-crypto': '*' + '@polkadot/keyring': 13.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1 react: '*' react-dom: '*' react-is: '*' - '@polkadot/rpc-augment@10.13.1': - resolution: {integrity: sha512-iLsWUW4Jcx3DOdVrSHtN0biwxlHuTs4QN2hjJV0gd0jo7W08SXhWabZIf9mDmvUJIbR7Vk+9amzvegjRyIf5+A==} - engines: {node: '>=18'} - '@polkadot/rpc-augment@14.3.1': resolution: {integrity: sha512-Z8Hp8fFHwFCiTX0bBCDqCZ4U26wLIJl1NRSjJTsAr+SS68pYZBDGCwhKztpKGqndk1W1akRUaxrkGqYdIFmspQ==} engines: {node: '>=18'} @@ -1599,16 +1476,8 @@ packages: resolution: {integrity: sha512-4FoY+oXC08+vaLMAvFgOOjcFHNBHEv2kOqgxtO/yCyMLNvyRRnrBtMofznJ1EWEwzehvU5iSlbMCerKdImFRZQ==} engines: {node: '>=18'} - '@polkadot/rpc-augment@7.15.1': - resolution: {integrity: sha512-sK0+mphN7nGz/eNPsshVi0qd0+N0Pqxuebwc1YkUGP0f9EkDxzSGp6UjGcSwWVaAtk9WZZ1MpK1Jwb/2GrKV7Q==} - engines: {node: '>=14.0.0'} - - '@polkadot/rpc-augment@9.14.2': - resolution: {integrity: sha512-mOubRm3qbKZTbP9H01XRrfTk7k5it9WyzaWAg72DJBQBYdgPUUkGSgpPD/Srkk5/5GAQTWVWL1I2UIBKJ4TJjQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/rpc-core@10.13.1': - resolution: {integrity: sha512-eoejSHa+/tzHm0vwic62/aptTGbph8vaBpbvLIK7gd00+rT813ROz5ckB1CqQBFB23nHRLuzzX/toY8ID3xrKw==} + '@polkadot/rpc-augment@15.4.1': + resolution: {integrity: sha512-DiNSSK+UFkAnF0UtVWr6HSCDio74LWjVjLsh9csAKfqy8bXzTVshl8VjZR2G9nuW9YxoJjQREN8wEcM9F+kL3Q==} engines: {node: '>=18'} '@polkadot/rpc-core@14.3.1': @@ -1619,34 +1488,14 @@ packages: resolution: {integrity: sha512-I5F1T17Nr5oEuqAysP7n14tWym54hCriqj0pV0tM4yfIF0iWaWPkqWNRU7uNfv86n3m15IMGoMapvgZVnUF5LQ==} engines: {node: '>=18'} - '@polkadot/rpc-core@7.15.1': - resolution: {integrity: sha512-4Sb0e0PWmarCOizzxQAE1NQSr5z0n+hdkrq3+aPohGu9Rh4PodG+OWeIBy7Ov/3GgdhNQyBLG+RiVtliXecM3g==} - engines: {node: '>=14.0.0'} - - '@polkadot/rpc-core@9.14.2': - resolution: {integrity: sha512-krA/mtQ5t9nUQEsEVC1sjkttLuzN6z6gyJxK2IlpMS3S5ncy/R6w4FOpy+Q0H18Dn83JBo0p7ZtY7Y6XkK48Kw==} - engines: {node: '>=14.0.0'} - - '@polkadot/rpc-provider@10.13.1': - resolution: {integrity: sha512-oJ7tatVXYJ0L7NpNiGd69D558HG5y5ZDmH2Bp9Dd4kFTQIiV8A39SlWwWUPCjSsen9lqSvvprNLnG/VHTpenbw==} - engines: {node: '>=18'} - - '@polkadot/rpc-provider@14.3.1': - resolution: {integrity: sha512-NF/Z/7lzT+jp5LZzC49g+YIjRzXVI0hFag3+B+4zh6E/kKADdF59EHj2Im4LDhRGOnEO9AE4H6/UjNEbZ94JtA==} + '@polkadot/rpc-core@15.4.1': + resolution: {integrity: sha512-llAtGpKQgtmsy5+320T0Dr8Lxse77eN0NVbpWr7cQo8R5If8YM9cAMNETMtrY1S9596aaLX/GrThp5Zvt6Z5Aw==} engines: {node: '>=18'} - '@polkadot/rpc-provider@15.0.1': - resolution: {integrity: sha512-ziRob/sco751+OK700vNh7IivysFOeZthO7JpC8CEQhZ2c+z/HY7bNsAucy1q1ELGe7xLMZW2/rm/RG285ZDPQ==} + '@polkadot/rpc-provider@15.4.1': + resolution: {integrity: sha512-GOtU8fBczbpEa3U4nQxBvwCtYyP1fYbi6vWBnA/YiwQY6RWqMBY2Tfo9fw0MfYqZVpYvbUoaER4akTrtVvCoVA==} engines: {node: '>=18'} - '@polkadot/rpc-provider@7.15.1': - resolution: {integrity: sha512-n0RWfSaD/r90JXeJkKry1aGZwJeBUUiMpXUQ9Uvp6DYBbYEDs0fKtWLpdT3PdFrMbe5y3kwQmNLxwe6iF4+mzg==} - engines: {node: '>=14.0.0'} - - '@polkadot/rpc-provider@9.14.2': - resolution: {integrity: sha512-YTSywjD5PF01V47Ru5tln2LlpUwJiSOdz6rlJXPpMaY53hUp7+xMU01FVAQ1bllSBNisSD1Msv/mYHq84Oai2g==} - engines: {node: '>=14.0.0'} - '@polkadot/typegen@14.3.1': resolution: {integrity: sha512-S6G7BwmsC57zvUKoqYMF2+3SUIB2f8r6VDgUhdO2hdgexXTDeVHFtJx3FE2opPlkVR05EKgV+rGH/9Rn91HjOQ==} engines: {node: '>=18'} @@ -1657,10 +1506,6 @@ packages: engines: {node: '>=18'} hasBin: true - '@polkadot/types-augment@10.13.1': - resolution: {integrity: sha512-TcrLhf95FNFin61qmVgOgayzQB/RqVsSg9thAso1Fh6pX4HSbvI35aGPBAn3SkA6R+9/TmtECirpSNLtIGFn0g==} - engines: {node: '>=18'} - '@polkadot/types-augment@14.3.1': resolution: {integrity: sha512-SC4M6TBlgCglNz+gRbvfoVRDz0Vyeev6v0HeAdw0H6ayEW4BXUdo5bFr0092bdS5uTrEPgiSyUry5TJs2KoXig==} engines: {node: '>=18'} @@ -1669,36 +1514,12 @@ packages: resolution: {integrity: sha512-6fTjJmTGd46UUIYPHr5oA6kiFl6IY45dvDgUQu07AmVdEQlq3OPq/7GyS639SLHHfMLSPbFKyt1iMVj9BNu0qA==} engines: {node: '>=18'} - '@polkadot/types-augment@7.15.1': - resolution: {integrity: sha512-aqm7xT/66TCna0I2utpIekoquKo0K5pnkA/7WDzZ6gyD8he2h0IXfe8xWjVmuyhjxrT/C/7X1aUF2Z0xlOCwzQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-augment@9.14.2': - resolution: {integrity: sha512-WO9d7RJufUeY3iFgt2Wz762kOu1tjEiGBR5TT4AHtpEchVHUeosVTrN9eycC+BhleqYu52CocKz6u3qCT/jKLg==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-codec@10.13.1': - resolution: {integrity: sha512-AiQ2Vv2lbZVxEdRCN8XSERiWlOWa2cTDLnpAId78EnCtx4HLKYQSd+Jk9Y4BgO35R79mchK4iG+w6gZ+ukG2bg==} - engines: {node: '>=18'} - - '@polkadot/types-codec@14.3.1': - resolution: {integrity: sha512-3y3RBGd+8ebscGbNUOjqUjnRE7hgicgid5LtofHK3O1EDcJQJnYBDkJ7fOAi96CDgHsg+f2FWWkBWEPgpOQoMQ==} - engines: {node: '>=18'} - - '@polkadot/types-codec@15.0.1': - resolution: {integrity: sha512-SLypmYH6FYRmqGG8TBbi4X0tYh1OUZEMNkujln2eHxsuFIYRGrHFnEohtkF9ktSxoUji2ph9I5ZW5gqQvEsXrA==} + '@polkadot/types-augment@15.4.1': + resolution: {integrity: sha512-40X4UVEHmJhNV+gYS79RY38rv3shFEGd9H8xTas91IgZtT12mRw1kH5vjLHk+nYTVAAR1ml3D3IStILAwzikgQ==} engines: {node: '>=18'} - '@polkadot/types-codec@7.15.1': - resolution: {integrity: sha512-nI11dT7FGaeDd/fKPD8iJRFGhosOJoyjhZ0gLFFDlKCaD3AcGBRTTY8HFJpP/5QXXhZzfZsD93fVKrosnegU0Q==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-codec@9.14.2': - resolution: {integrity: sha512-AJ4XF7W1no4PENLBRU955V6gDxJw0h++EN3YoDgThozZ0sj3OxyFupKgNBZcZb2V23H8JxQozzIad8k+nJbO1w==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-create@10.13.1': - resolution: {integrity: sha512-Usn1jqrz35SXgCDAqSXy7mnD6j4RvB4wyzTAZipFA6DGmhwyxxIgOzlWQWDb+1PtPKo9vtMzen5IJ+7w5chIeA==} + '@polkadot/types-codec@15.4.1': + resolution: {integrity: sha512-LksB8JBdu8ysYWsRbE1U+cv8svUpSddalR6mg0pP0H/ngj58PWrRUWJBRw2LDw65B4Dw1AIJ0QrbigmCjCyz+A==} engines: {node: '>=18'} '@polkadot/types-create@14.3.1': @@ -1709,44 +1530,12 @@ packages: resolution: {integrity: sha512-M1vs5o3sw8p3g88GhJgz2vSSgxnr5CfbaL4r5EYzR+Hx9xUvz03aEofySvodusEpdRQ9MijnsNSP9306xvcqhw==} engines: {node: '>=18'} - '@polkadot/types-create@7.15.1': - resolution: {integrity: sha512-+HiaHn7XOwP0kv/rVdORlVkNuMoxuvt+jd67A/CeEreJiXqRLu+S61Mdk7wi6719PTaOal1hTDFfyGrtUd8FSQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-create@9.14.2': - resolution: {integrity: sha512-nSnKpBierlmGBQT8r6/SHf6uamBIzk4WmdMsAsR4uJKJF1PtbIqx2W5PY91xWSiMSNMzjkbCppHkwaDAMwLGaw==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-known@10.13.1': - resolution: {integrity: sha512-uHjDW05EavOT5JeU8RbiFWTgPilZ+odsCcuEYIJGmK+es3lk/Qsdns9Zb7U7NJl7eJ6OWmRtyrWsLs+bU+jjIQ==} - engines: {node: '>=18'} - - '@polkadot/types-known@14.3.1': - resolution: {integrity: sha512-58b3Yc7+sxwNjs8axmrA9OCgnxmEKIq7XCH2VxSgLqTeqbohVtxwUSCW/l8NPrq1nxzj4J2sopu0PPg8/++q4g==} - engines: {node: '>=18'} - - '@polkadot/types-known@15.0.1': - resolution: {integrity: sha512-9VC6QX4/JAjWmnSdaZIm4n8CgmVj9KutgQ5/Uy9VBrTwfRzUPIBwHZT8lPQLeN1WwQRbtc5ojDoo2SR+OqGTqw==} + '@polkadot/types-create@15.4.1': + resolution: {integrity: sha512-NP1YGsLdGii0FNAKeKHNxpvLZCusEugs+g21vHHmdtFLC08ngU7pNJGERteo6vDNr5JDejzVbB+i94Y9RzKC0Q==} engines: {node: '>=18'} - '@polkadot/types-known@4.17.1': - resolution: {integrity: sha512-YkOwGrO+k9aVrBR8FgYHnfJKhOfpdgC5ZRYNL/xJ9oa7lBYqPts9ENAxeBmJS/5IGeDF9f32MNyrCP2umeCXWg==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-known@6.12.1': - resolution: {integrity: sha512-Z8bHpPQy+mqUm0uR1tai6ra0bQIoPmgRcGFYUM+rJtW1kx/6kZLh10HAICjLpPeA1cwLRzaxHRDqH5MCU6OgXw==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-known@7.15.1': - resolution: {integrity: sha512-LMcNP0CxT84DqAKV62/qDeeIVIJCR5yzE9b+9AsYhyfhE4apwxjrThqZA7K0CF56bOdQJSexAerYB/jwk2IijA==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-known@9.14.2': - resolution: {integrity: sha512-iM8WOCgguzJ3TLMqlm4K1gKQEwWm2zxEKT1HZZ1irs/lAbBk9MquDWDvebryiw3XsLB8xgrp3RTIBn2Q4FjB2A==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-support@10.13.1': - resolution: {integrity: sha512-4gEPfz36XRQIY7inKq0HXNVVhR6HvXtm7yrEmuBuhM86LE0lQQBkISUSgR358bdn2OFSLMxMoRNoh3kcDvdGDQ==} + '@polkadot/types-known@15.4.1': + resolution: {integrity: sha512-LF9estF7y7sXHQ7tA9QoVzAmtkglJdcqMbj70H70V+CBZjiyAgd84PvBtQ6mcIywJ54iCyBBLbhlqcbH/zgUdw==} engines: {node: '>=18'} '@polkadot/types-support@14.3.1': @@ -1757,371 +1546,119 @@ packages: resolution: {integrity: sha512-w/IWFuDn290brw75ZXKPkQMazz0yizE0zK0XuqP2S4IW009x+z0peRc7Q4k36JOqDVDwSc38vTxWtRPVqdoI1g==} engines: {node: '>=18'} - '@polkadot/types-support@7.15.1': - resolution: {integrity: sha512-FIK251ffVo+NaUXLlaJeB5OvT7idDd3uxaoBM6IwsS87rzt2CcWMyCbu0uX89AHZUhSviVx7xaBxfkGEqMePWA==} - engines: {node: '>=14.0.0'} - - '@polkadot/types-support@9.14.2': - resolution: {integrity: sha512-VWCOPgXDK3XtXT7wMLyIWeNDZxUbNcw/8Pn6n6vMogs7o/n4h6WGbGMeTIQhPWyn831/RmkVs5+2DUC+2LlOhw==} - engines: {node: '>=14.0.0'} - - '@polkadot/types@10.13.1': - resolution: {integrity: sha512-Hfvg1ZgJlYyzGSAVrDIpp3vullgxrjOlh/CSThd/PI4TTN1qHoPSFm2hs77k3mKkOzg+LrWsLE0P/LP2XddYcw==} - engines: {node: '>=18'} - - '@polkadot/types@14.3.1': - resolution: {integrity: sha512-O748XgCLDQYxS5nQ6TJSqW88oC4QNIoNVlWZC2Qq4SmEXuSzaNHQwSVtdyPRJCCc4Oi1DCQvGui4O+EukUl7HA==} + '@polkadot/types-support@15.4.1': + resolution: {integrity: sha512-BeMi+780cP0jb4HTwovjcNt/Yf/lgKkXGlfu/gZhLb6eu7Sz3VzAxI8z2WdMWE/NiXMEHeC0YpwOowhRS2tEVA==} engines: {node: '>=18'} - '@polkadot/types@15.0.1': - resolution: {integrity: sha512-jnn0h8Z4O3l/UjrBOJPmkfKjuC6fSqhQfsn7HpWF18lEicGp4/A7X3AZryIg8npKHHiuH30bK/o1VuivH+4dVw==} + '@polkadot/types@15.4.1': + resolution: {integrity: sha512-5Oh6iwdtXg9/CN55c2IzNx90/ALK1DlP/OswN9vERp6rqZttAEGTQgSiYFHP0+7WhDB8H6v8jVutHadqv7lhMg==} engines: {node: '>=18'} - '@polkadot/types@4.17.1': - resolution: {integrity: sha512-rjW4OFdwvFekzN3ATLibC2JPSd8AWt5YepJhmuCPdwH26r3zB8bEC6dM7YQExLVUmygVPvgXk5ffHI6RAdXBMg==} - engines: {node: '>=14.0.0'} - - '@polkadot/types@6.12.1': - resolution: {integrity: sha512-O37cAGUL0xiXTuO3ySweVh0OuFUD6asrd0TfuzGsEp3jAISWdElEHV5QDiftWq8J9Vf8BMgTcP2QLFbmSusxqA==} - engines: {node: '>=14.0.0'} - - '@polkadot/types@7.15.1': - resolution: {integrity: sha512-KawZVS+eLR1D6O7c/P5cSUwr6biM9Qd2KwKtJIO8l1Mrxp7r+y2tQnXSSXVAd6XPdb3wVMhnIID+NW3W99TAnQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/types@9.14.2': - resolution: {integrity: sha512-hGLddTiJbvowhhUZJ3k+olmmBc1KAjWIQxujIUIYASih8FQ3/YJDKxaofGOzh0VygOKW3jxQBN2VZPofyDP9KQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/ui-settings@3.11.3': - resolution: {integrity: sha512-VGtv5pGQM9iFWZ9kpU9TD0auDUb01mTp/DACTgG79mo9icK2XK8KUdkMMh70HuhnS5Dnqsgn7nhYuYqVOGAxeQ==} + '@polkadot/ui-settings@3.12.1': + resolution: {integrity: sha512-xFedW4YLtJTdyVHt1V5d4jFdOZKMi05228Q9XNGhahbpYet6eb7P7Ta/Wy5mtKDkI56xbgiOE+PQDxmMG6tjgw==} engines: {node: '>=18'} peerDependencies: '@polkadot/networks': '*' - '@polkadot/util': '*' - - '@polkadot/ui-shared@3.11.3': - resolution: {integrity: sha512-oK8HCI9//ymQrRMSunUpHXjWXRHwKynSlQphonqmWL2duFWgTKVqGrEbEmeaW5Ps4dzK3w06GYQDj7fhe7BcRg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/util-crypto': '*' - - '@polkadot/util-crypto@10.4.2': - resolution: {integrity: sha512-RxZvF7C4+EF3fzQv8hZOLrYCBq5+wA+2LWv98nECkroChY3C2ZZvyWDqn8+aonNULt4dCVTWDZM0QIY6y4LUAQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': 10.4.2 + '@polkadot/util': 13.3.1 - '@polkadot/util-crypto@12.6.2': - resolution: {integrity: sha512-FEWI/dJ7wDMNN1WOzZAjQoIcCP/3vz3wvAp5QQm+lOrzOLj0iDmaIGIcBkz8HVm3ErfSe/uKP0KS4jgV/ib+Mg==} + '@polkadot/ui-shared@3.12.1': + resolution: {integrity: sha512-Jcsamcljbi3r4ovsjF52P66Cr14eM0Up7XLPlXA3uZ/SSEO2uEsrgA2LOW3Wv0P7oCzZPEsZkeIXLb0k2AnUPA==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 12.6.2 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1 - '@polkadot/util-crypto@13.2.3': - resolution: {integrity: sha512-5sbggmLbn5eiuVMyPROPlT5roHRqdKHOfSpioNbGvGIZ1qIWVoC1RfsK0NWJOVGDzy6DpQe0KYT/kgcU5Xsrzw==} + '@polkadot/util-crypto@13.3.1': + resolution: {integrity: sha512-FU6yf3IY++DKlf0eqO9/obe2y1zuZ5rbqRs75fyOME/5VXio1fA3GIpW7aFphyneFRd78G8QLh8kn0oIwBGMNg==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': 13.2.3 - - '@polkadot/util-crypto@6.11.1': - resolution: {integrity: sha512-fWA1Nz17FxWJslweZS4l0Uo30WXb5mYV1KEACVzM+BSZAvG5eoiOAYX6VYZjyw6/7u53XKrWQlD83iPsg3KvZw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': 6.11.1 + '@polkadot/util': 13.3.1 - '@polkadot/util-crypto@8.7.1': - resolution: {integrity: sha512-TaSuJ2aNrB5sYK7YXszkEv24nYJKRFqjF2OrggoMg6uYxUAECvTkldFnhtgeizMweRMxJIBu6bMHlSIutbWgjw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': 8.7.1 - - '@polkadot/util@10.4.2': - resolution: {integrity: sha512-0r5MGICYiaCdWnx+7Axlpvzisy/bi1wZGXgCSw5+ZTyPTOqvsYRqM2X879yxvMsGfibxzWqNzaiVjToz1jvUaA==} - engines: {node: '>=14.0.0'} - - '@polkadot/util@12.6.2': - resolution: {integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==} - engines: {node: '>=18'} - - '@polkadot/util@13.2.3': - resolution: {integrity: sha512-pioNnsig3qHXrfOKMe4Yqos8B8N3/EZUpS+WfTpWnn1VjYban/0GrTXeavPlAwggnY27b8fS6rBzQBhnVYDw8g==} + '@polkadot/util@13.3.1': + resolution: {integrity: sha512-5crLP/rUZOJzuo/W8t73J8PxpibJ5vrxY57rR6V+mIpCZd1ORiw0wxeHcV5F9Adpn7yJyuGBwxPbueNR5Rr1Zw==} engines: {node: '>=18'} - '@polkadot/util@6.11.1': - resolution: {integrity: sha512-TEdCetr9rsdUfJZqQgX/vxLuV4XU8KMoKBMJdx+JuQ5EWemIdQkEtMBdL8k8udNGbgSNiYFA6rPppATeIxAScg==} - engines: {node: '>=14.0.0'} - - '@polkadot/util@8.7.1': - resolution: {integrity: sha512-XjY1bTo7V6OvOCe4yn8H2vifeuBciCy0gq0k5P1tlGUQLI/Yt0hvDmxcA0FEPtqg8CL+rYRG7WXGPVNjkrNvyQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/wasm-bridge@6.4.1': - resolution: {integrity: sha512-QZDvz6dsUlbYsaMV5biZgZWkYH9BC5AfhT0f0/knv8+LrbAoQdP3Asbvddw8vyU9sbpuCHXrd4bDLBwUCRfrBQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-bridge@7.4.1': resolution: {integrity: sha512-tdkJaV453tezBxhF39r4oeG0A39sPKGDJmN81LYLf+Fihb7astzwju+u75BRmDrHZjZIv00un3razJEWCxze6g==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': '*' + '@polkadot/util': 13.3.1 '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-crypto-asmjs@4.6.1': - resolution: {integrity: sha512-1oHQjz2oEO1kCIcQniOP+dZ9N2YXf2yCLHLsKaKSvfXiWaetVCaBNB8oIHIVYvuLnVc8qlMi66O6xc1UublHsw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - - '@polkadot/wasm-crypto-asmjs@5.1.1': - resolution: {integrity: sha512-1WBwc2G3pZMKW1T01uXzKE30Sg22MXmF3RbbZiWWk3H2d/Er4jZQRpjumxO5YGWan+xOb7HQQdwnrUnrPgbDhg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - - '@polkadot/wasm-crypto-asmjs@6.4.1': - resolution: {integrity: sha512-UxZTwuBZlnODGIQdCsE2Sn/jU0O2xrNQ/TkhRFELfkZXEXTNu4lw6NpaKq7Iey4L+wKd8h4lT3VPVkMcPBLOvA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/wasm-crypto-asmjs@7.4.1': resolution: {integrity: sha512-pwU8QXhUW7IberyHJIQr37IhbB6DPkCG5FhozCiNTq4vFBsFPjm9q8aZh7oX1QHQaiAZa2m2/VjIVE+FHGbvHQ==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': '*' - - '@polkadot/wasm-crypto-init@6.4.1': - resolution: {integrity: sha512-1ALagSi/nfkyFaH6JDYfy/QbicVbSn99K8PV9rctDUfxc7P06R7CoqbjGQ4OMPX6w1WYVPU7B4jPHGLYBlVuMw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' + '@polkadot/util': 13.3.1 '@polkadot/wasm-crypto-init@7.4.1': resolution: {integrity: sha512-AVka33+f7MvXEEIGq5U0dhaA2SaXMXnxVCQyhJTaCnJ5bRDj0Xlm3ijwDEQUiaDql7EikbkkRtmlvs95eSUWYQ==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': '*' + '@polkadot/util': 13.3.1 '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-crypto-wasm@4.6.1': - resolution: {integrity: sha512-NI3JVwmLjrSYpSVuhu0yeQYSlsZrdpK41UC48sY3kyxXC71pi6OVePbtHS1K3xh3FFmDd9srSchExi3IwzKzMw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - - '@polkadot/wasm-crypto-wasm@5.1.1': - resolution: {integrity: sha512-F9PZ30J2S8vUNl2oY7Myow5Xsx5z5uNVpnNlJwlmY8IXBvyucvyQ4HSdhJsrbs4W1BfFc0mHghxgp0FbBCnf/Q==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - - '@polkadot/wasm-crypto-wasm@6.4.1': - resolution: {integrity: sha512-3VV9ZGzh0ZY3SmkkSw+0TRXxIpiO0nB8lFwlRgcwaCihwrvLfRnH9GI8WE12mKsHVjWTEVR3ogzILJxccAUjDA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/wasm-crypto-wasm@7.4.1': resolution: {integrity: sha512-PE1OAoupFR0ZOV2O8tr7D1FEUAwaggzxtfs3Aa5gr+yxlSOaWUKeqsOYe1KdrcjmZVV3iINEAXxgrbzCmiuONg==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': '*' - - '@polkadot/wasm-crypto@4.6.1': - resolution: {integrity: sha512-2wEftBDxDG+TN8Ah6ogtvzjdZdcF0mAjU4UNNOfpmkBCxQYZOrAHB8HXhzo3noSsKkLX7PDX57NxvJ9OhoTAjw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - - '@polkadot/wasm-crypto@5.1.1': - resolution: {integrity: sha512-JCcAVfH8DhYuEyd4oX1ouByxhou0TvpErKn8kHjtzt7+tRoFi0nzWlmK4z49vszsV3JJgXxV81i10C0BYlwTcQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - - '@polkadot/wasm-crypto@6.4.1': - resolution: {integrity: sha512-FH+dcDPdhSLJvwL0pMLtn/LIPd62QDPODZRCmDyw+pFjLOMaRBc7raomWUOqyRWJTnqVf/iscc2rLVLNMyt7ag==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' + '@polkadot/util': 13.3.1 '@polkadot/wasm-crypto@7.4.1': resolution: {integrity: sha512-kHN/kF7hYxm1y0WeFLWeWir6oTzvcFmR4N8fJJokR+ajYbdmrafPN+6iLgQVbhZnDdxyv9jWDuRRsDnBx8tPMQ==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': '*' + '@polkadot/util': 13.3.1 '@polkadot/x-randomvalues': '*' - '@polkadot/wasm-util@6.4.1': - resolution: {integrity: sha512-Uwo+WpEsDmFExWC5kTNvsVhvqXMZEKf4gUHXFn4c6Xz4lmieRT5g+1bO1KJ21pl4msuIgdV3Bksfs/oiqMFqlw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/wasm-util@7.4.1': resolution: {integrity: sha512-RAcxNFf3zzpkr+LX/ItAsvj+QyM56TomJ0xjUMo4wKkHjwsxkz4dWJtx5knIgQz/OthqSDMR59VNEycQeNuXzA==} engines: {node: '>=18'} peerDependencies: - '@polkadot/util': '*' + '@polkadot/util': 13.3.1 - '@polkadot/x-bigint@10.4.2': - resolution: {integrity: sha512-awRiox+/XSReLzimAU94fPldowiwnnMUkQJe8AebYhNocAj6SJU00GNoj6j6tAho6yleOwrTJXZaWFBaQVJQNg==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-bigint@12.6.2': - resolution: {integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==} + '@polkadot/x-bigint@13.3.1': + resolution: {integrity: sha512-ewc708a7LUdrT92v9DsSAIbcJQBn3aR9/LavF/iyMOq5lZJyPXDSjAnskfMs818R3RLCrKVKfs+aKkxt2eqo8g==} engines: {node: '>=18'} - '@polkadot/x-bigint@13.2.3': - resolution: {integrity: sha512-VKgEAh0LsxTd/Hg517Tt5ZU4CySjBwMpaojbkjgv3fOdg1cN7t4eFEUxpyj7mlO0cp22SzDh7nmy4TO98qhLQA==} + '@polkadot/x-fetch@13.3.1': + resolution: {integrity: sha512-J+HM42j0KGqdC/eo7vmsdLPz74MR7+0My4km6TG9HGjKqqztwygtenpopPod2SbRnL4nHiEG0wZzpVOW6HN2gw==} engines: {node: '>=18'} - '@polkadot/x-bigint@8.7.1': - resolution: {integrity: sha512-ClkhgdB/KqcAKk3zA6Qw8wBL6Wz67pYTPkrAtImpvoPJmR+l4RARauv+MH34JXMUNlNb3aUwqN6lq2Z1zN+mJg==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-fetch@10.4.2': - resolution: {integrity: sha512-Ubb64yaM4qwhogNP+4mZ3ibRghEg5UuCYRMNaCFoPgNAY8tQXuDKrHzeks3+frlmeH9YRd89o8wXLtWouwZIcw==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-fetch@12.6.2': - resolution: {integrity: sha512-8wM/Z9JJPWN1pzSpU7XxTI1ldj/AfC8hKioBlUahZ8gUiJaOF7K9XEFCrCDLis/A1BoOu7Ne6WMx/vsJJIbDWw==} + '@polkadot/x-global@13.3.1': + resolution: {integrity: sha512-861TeIw49a3JvkwlUWrddfG+JaUqtFZDsemYxxZIjjcRJLrKOsoKNqHbiHi2OPrwlX8PwAA/wc5I9Q4XRQ7KEg==} engines: {node: '>=18'} - '@polkadot/x-fetch@13.2.3': - resolution: {integrity: sha512-7Nmk+8ieEGzz43nc1rX6nH3rQo6rhGmAaIXJWnXY9gOHY0k1me1bJYbP+xDdh8vcLh8eY3D1sESUwG6QYZW2lg==} + '@polkadot/x-randomvalues@13.3.1': + resolution: {integrity: sha512-GIb0au3vIX2U/DRH0PRckM+1I4EIbU8PLX1roGJgN1MAYKWiylJTKPVoBMafMM87o8qauOevJ46uYB/qlfbiWg==} engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 13.3.1 + '@polkadot/wasm-util': '*' - '@polkadot/x-fetch@8.7.1': - resolution: {integrity: sha512-ygNparcalYFGbspXtdtZOHvNXZBkNgmNO+um9C0JYq74K5OY9/be93uyfJKJ8JcRJtOqBfVDsJpbiRkuJ1PRfg==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-global@10.4.2': - resolution: {integrity: sha512-g6GXHD/ykZvHap3M6wh19dO70Zm43l4jEhlxf5LtTo5/0/UporFCXr2YJYZqfbn9JbQwl1AU+NroYio+vtJdiA==} - engines: {node: '>=14.0.0'} + '@polkadot/x-textdecoder@13.3.1': + resolution: {integrity: sha512-g2R9O1p0ZsNDhZ3uEBZh6fQaVLlo3yFr0YNqt15v7e9lBI4APvTJ202EINlo2jB5lz/R438/BdjEA3AL+0zUtQ==} + engines: {node: '>=18'} - '@polkadot/x-global@12.6.2': - resolution: {integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==} + '@polkadot/x-textencoder@13.3.1': + resolution: {integrity: sha512-DnHLUdoKDYxekfxopuUuPB+j5Mu7Jemejcduu5gz3/89GP/sYPAu0CAVbq9B+hK1yGjBBj31eA4wkAV1oktYmg==} engines: {node: '>=18'} - '@polkadot/x-global@13.2.3': - resolution: {integrity: sha512-7MYQIAEwBkRcNrgqac5PbB0kNPlI6ISJEy6/Nb+crj8BFjQ8rf11PF49fq0QsvDeuYM1aNLigrvYZNptQs4lbw==} + '@polkadot/x-ws@13.3.1': + resolution: {integrity: sha512-ytqkC7FwVs4BlzNFAmPMFp+xD1KIdMMP/mvCSOrnxjlsyM5DVGop4x4c2ZgDUBmrFqmIiVkWDfMIZeOxui2OLQ==} engines: {node: '>=18'} - '@polkadot/x-global@6.11.1': - resolution: {integrity: sha512-lsBK/e4KbjfieyRmnPs7bTiGbP/6EoCZz7rqD/voNS5qsJAaXgB9LR+ilubun9gK/TDpebyxgO+J19OBiQPIRw==} - engines: {node: '>=14.0.0'} + '@polymeshassociation/polymesh-types@5.7.0': + resolution: {integrity: sha512-6bw+Q6CpjAABeQKLZxE5TMwUwllq9GIWtHr+SBTn/02cLQYYrgPNX3JtQtK/VAAwhQ+AbAUMRlxlzGP16VaWog==} - '@polkadot/x-global@8.7.1': - resolution: {integrity: sha512-WOgUor16IihgNVdiTVGAWksYLUAlqjmODmIK1cuWrLOZtV1VBomWcb3obkO9sh5P6iWziAvCB/i+L0vnTN9ZCA==} - engines: {node: '>=14.0.0'} + '@protobufjs/aspromise@1.1.2': + resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} - '@polkadot/x-randomvalues@10.4.2': - resolution: {integrity: sha512-mf1Wbpe7pRZHO0V3V89isPLqZOy5XGX2bCqsfUWHgb1NvV1MMx5TjVjdaYyNlGTiOkAmJKlOHshcfPU2sYWpNg==} - engines: {node: '>=14.0.0'} + '@protobufjs/base64@1.1.2': + resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} - '@polkadot/x-randomvalues@12.6.2': - resolution: {integrity: sha512-Vr8uG7rH2IcNJwtyf5ebdODMcr0XjoCpUbI91Zv6AlKVYOGKZlKLYJHIwpTaKKB+7KPWyQrk4Mlym/rS7v9feg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': '*' - - '@polkadot/x-randomvalues@13.2.3': - resolution: {integrity: sha512-Zf0GTfLmVk+VzPUmcQSpXjjmFzMTjPhXoLuIoE7xIu73T+vQ+TX9j7DvorN6bIRsnZ9l1SyTZsSf/NTjNZKIZg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 13.2.3 - '@polkadot/wasm-util': '*' - - '@polkadot/x-randomvalues@6.11.1': - resolution: {integrity: sha512-2MfUfGZSOkuPt7GF5OJkPDbl4yORI64SUuKM25EGrJ22o1UyoBnPOClm9eYujLMD6BfDZRM/7bQqqoLW+NuHVw==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-randomvalues@8.7.1': - resolution: {integrity: sha512-njt17MlfN6yNyNEti7fL12lr5qM6A1aSGkWKVuqzc7XwSBesifJuW4km5u6r2gwhXjH2eHDv9SoQ7WXu8vrrkg==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-rxjs@6.11.1': - resolution: {integrity: sha512-zIciEmij7SUuXXg9g/683Irx6GogxivrQS2pgBir2DI/YZq+um52+Dqg1mqsEZt74N4KMTMnzAZAP6LJOBOMww==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-textdecoder@10.4.2': - resolution: {integrity: sha512-d3ADduOKUTU+cliz839+KCFmi23pxTlabH7qh7Vs1GZQvXOELWdqFOqakdiAjtMn68n1KVF4O14Y+OUm7gp/zA==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-textdecoder@12.6.2': - resolution: {integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==} - engines: {node: '>=18'} - - '@polkadot/x-textdecoder@13.2.3': - resolution: {integrity: sha512-i8hRXPtGknmdm3FYv6/94I52VXHJZa5sgYNw1+Hqb4Jqmq4awUjea35CKXd/+aw70Qn8Ngg31l2GoiH494fa+Q==} - engines: {node: '>=18'} - - '@polkadot/x-textdecoder@6.11.1': - resolution: {integrity: sha512-DI1Ym2lyDSS/UhnTT2e9WutukevFZ0WGpzj4eotuG2BTHN3e21uYtYTt24SlyRNMrWJf5+TkZItmZeqs1nwAfQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-textdecoder@8.7.1': - resolution: {integrity: sha512-ia0Ie2zi4VdQdNVD2GE2FZzBMfX//hEL4w546RMJfZM2LqDS674LofHmcyrsv5zscLnnRyCxZC1+J2dt+6MDIA==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-textencoder@10.4.2': - resolution: {integrity: sha512-mxcQuA1exnyv74Kasl5vxBq01QwckG088lYjc3KwmND6+pPrW2OWagbxFX5VFoDLDAE+UJtnUHsjdWyOTDhpQA==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-textencoder@12.6.2': - resolution: {integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==} - engines: {node: '>=18'} - - '@polkadot/x-textencoder@13.2.3': - resolution: {integrity: sha512-wJI3Bb/dC4zyBXJFm5+ZhyBXWoI5wvP8k8qX0/ZC0PQsgSAqs7LVhiofk4Wd94n0P41W5re58LrGXLyziSAshw==} - engines: {node: '>=18'} - - '@polkadot/x-textencoder@6.11.1': - resolution: {integrity: sha512-8ipjWdEuqFo+R4Nxsc3/WW9CSEiprX4XU91a37ZyRVC4e9R1bmvClrpXmRQLVcAQyhRvG8DKOOtWbz8xM+oXKg==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-textencoder@8.7.1': - resolution: {integrity: sha512-XDO0A27Xy+eJCKSxENroB8Dcnl+UclGG4ZBei+P/BqZ9rsjskUyd2Vsl6peMXAcsxwOE7g0uTvujoGM8jpKOXw==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-ws@10.4.2': - resolution: {integrity: sha512-3gHSTXAWQu1EMcMVTF5QDKHhEHzKxhAArweEyDXE7VsgKUP/ixxw4hVZBrkX122iI5l5mjSiooRSnp/Zl3xqDQ==} - engines: {node: '>=14.0.0'} - - '@polkadot/x-ws@12.6.2': - resolution: {integrity: sha512-cGZWo7K5eRRQCRl2LrcyCYsrc3lRbTlixZh3AzgU8uX4wASVGRlNWi/Hf4TtHNe1ExCDmxabJzdIsABIfrr7xw==} - engines: {node: '>=18'} - - '@polkadot/x-ws@13.2.3': - resolution: {integrity: sha512-Y6MTAWgcnrnx/LkBx65X3ZyoJH5EFj3tXtflRoKg1+PLHSLuNBV7Wi5mLcE70z4e5c+4hgBbLq+8SqCqzFtSPw==} - engines: {node: '>=18'} - - '@polkadot/x-ws@8.7.1': - resolution: {integrity: sha512-Mt0tcNzGXyKnN3DQ06alkv+JLtTfXWu6zSypFrrKHSQe3u79xMQ1nSicmpT3gWLhIa8YF+8CYJXMrqaXgCnDhw==} - engines: {node: '>=14.0.0'} - - '@polymeshassociation/polymesh-types@5.7.0': - resolution: {integrity: sha512-6bw+Q6CpjAABeQKLZxE5TMwUwllq9GIWtHr+SBTn/02cLQYYrgPNX3JtQtK/VAAwhQ+AbAUMRlxlzGP16VaWog==} - - '@protobufjs/aspromise@1.1.2': - resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} - - '@protobufjs/base64@1.1.2': - resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} - - '@protobufjs/codegen@2.0.4': - resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} + '@protobufjs/codegen@2.0.4': + resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} '@protobufjs/eventemitter@1.1.0': resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} @@ -2144,101 +1681,51 @@ packages: '@protobufjs/utf8@1.1.0': resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} - '@rollup/rollup-android-arm-eabi@4.26.0': - resolution: {integrity: sha512-gJNwtPDGEaOEgejbaseY6xMFu+CPltsc8/T+diUTTbOQLqD+bnrJq9ulH6WD69TqwqWmrfRAtUv30cCFZlbGTQ==} - cpu: [arm] - os: [android] - '@rollup/rollup-android-arm-eabi@4.28.1': resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.26.0': - resolution: {integrity: sha512-YJa5Gy8mEZgz5JquFruhJODMq3lTHWLm1fOy+HIANquLzfIOzE9RA5ie3JjCdVb9r46qfAQY/l947V0zfGJ0OQ==} - cpu: [arm64] - os: [android] - '@rollup/rollup-android-arm64@4.28.1': resolution: {integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.26.0': - resolution: {integrity: sha512-ErTASs8YKbqTBoPLp/kA1B1Um5YSom8QAc4rKhg7b9tyyVqDBlQxy7Bf2wW7yIlPGPg2UODDQcbkTlruPzDosw==} - cpu: [arm64] - os: [darwin] - '@rollup/rollup-darwin-arm64@4.28.1': resolution: {integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.26.0': - resolution: {integrity: sha512-wbgkYDHcdWW+NqP2mnf2NOuEbOLzDblalrOWcPyY6+BRbVhliavon15UploG7PpBRQ2bZJnbmh8o3yLoBvDIHA==} - cpu: [x64] - os: [darwin] - '@rollup/rollup-darwin-x64@4.28.1': resolution: {integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.26.0': - resolution: {integrity: sha512-Y9vpjfp9CDkAG4q/uwuhZk96LP11fBz/bYdyg9oaHYhtGZp7NrbkQrj/66DYMMP2Yo/QPAsVHkV891KyO52fhg==} - cpu: [arm64] - os: [freebsd] - '@rollup/rollup-freebsd-arm64@4.28.1': resolution: {integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.26.0': - resolution: {integrity: sha512-A/jvfCZ55EYPsqeaAt/yDAG4q5tt1ZboWMHEvKAH9Zl92DWvMIbnZe/f/eOXze65aJaaKbL+YeM0Hz4kLQvdwg==} - cpu: [x64] - os: [freebsd] - '@rollup/rollup-freebsd-x64@4.28.1': resolution: {integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.26.0': - resolution: {integrity: sha512-paHF1bMXKDuizaMODm2bBTjRiHxESWiIyIdMugKeLnjuS1TCS54MF5+Y5Dx8Ui/1RBPVRE09i5OUlaLnv8OGnA==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.26.0': - resolution: {integrity: sha512-cwxiHZU1GAs+TMxvgPfUDtVZjdBdTsQwVnNlzRXC5QzIJ6nhfB4I1ahKoe9yPmoaA/Vhf7m9dB1chGPpDRdGXg==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.28.1': resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.26.0': - resolution: {integrity: sha512-4daeEUQutGRCW/9zEo8JtdAgtJ1q2g5oHaoQaZbMSKaIWKDQwQ3Yx0/3jJNmpzrsScIPtx/V+1AfibLisb3AMQ==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.28.1': resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.26.0': - resolution: {integrity: sha512-eGkX7zzkNxvvS05ROzJ/cO/AKqNvR/7t1jA3VZDi2vRniLKwAWxUr85fH3NsvtxU5vnUUKFHKh8flIBdlo2b3Q==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-musl@4.28.1': resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==} cpu: [arm64] @@ -2249,109 +1736,66 @@ packages: cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.26.0': - resolution: {integrity: sha512-Odp/lgHbW/mAqw/pU21goo5ruWsytP7/HCC/liOt0zcGG0llYWKrd10k9Fj0pdj3prQ63N5yQLCLiE7HTX+MYw==} - cpu: [ppc64] - os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.26.0': - resolution: {integrity: sha512-MBR2ZhCTzUgVD0OJdTzNeF4+zsVogIR1U/FsyuFerwcqjZGvg2nYe24SAHp8O5sN8ZkRVbHwlYeHqcSQ8tcYew==} - cpu: [riscv64] - os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.28.1': resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.26.0': - resolution: {integrity: sha512-YYcg8MkbN17fMbRMZuxwmxWqsmQufh3ZJFxFGoHjrE7bv0X+T6l3glcdzd7IKLiwhT+PZOJCblpnNlz1/C3kGQ==} - cpu: [s390x] - os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.28.1': resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.26.0': - resolution: {integrity: sha512-ZuwpfjCwjPkAOxpjAEjabg6LRSfL7cAJb6gSQGZYjGhadlzKKywDkCUnJ+KEfrNY1jH5EEoSIKLCb572jSiglA==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-gnu@4.28.1': resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.26.0': - resolution: {integrity: sha512-+HJD2lFS86qkeF8kNu0kALtifMpPCZU80HvwztIKnYwym3KnA1os6nsX4BGSTLtS2QVAGG1P3guRgsYyMA0Yhg==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-musl@4.28.1': resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.26.0': - resolution: {integrity: sha512-WUQzVFWPSw2uJzX4j6YEbMAiLbs0BUysgysh8s817doAYhR5ybqTI1wtKARQKo6cGop3pHnrUJPFCsXdoFaimQ==} - cpu: [arm64] - os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.28.1': resolution: {integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.26.0': - resolution: {integrity: sha512-D4CxkazFKBfN1akAIY6ieyOqzoOoBV1OICxgUblWxff/pSjCA2khXlASUx7mK6W1oP4McqhgcCsu6QaLj3WMWg==} - cpu: [ia32] - os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.28.1': resolution: {integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.26.0': - resolution: {integrity: sha512-2x8MO1rm4PGEP0xWbubJW5RtbNLk3puzAMaLQd3B3JHVw4KcHlmXcO+Wewx9zCoo7EUFiMlu/aZbCJ7VjMzAag==} - cpu: [x64] - os: [win32] - '@rollup/rollup-win32-x64-msvc@4.28.1': resolution: {integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==} cpu: [x64] os: [win32] - '@scure/base@1.0.0': - resolution: {integrity: sha512-gIVaYhUsy+9s58m/ETjSJVKHhKTBMmcRb9cEV5/5dwvfDlfORjKrFsDeDHWRrm6RjcPvCLZFwGJjAjLj1gg4HA==} - - '@scure/base@1.1.1': - resolution: {integrity: sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA==} - '@scure/base@1.1.9': resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==} '@scure/base@1.2.1': resolution: {integrity: sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ==} + '@scure/base@1.2.4': + resolution: {integrity: sha512-5Yy9czTO47mqz+/J8GM6GIId4umdCk1wc1q8rKERQulIoc8VP9pzDcghv10Tl2E7R96ZUx/PhND3ESYUQX8NuQ==} + '@scure/bip32@1.4.0': resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} - '@scure/bip32@1.6.0': - resolution: {integrity: sha512-82q1QfklrUUdXJzjuRU7iG7D7XiFx5PHYVS0+oeNKhyDLT7WPqs6pBcM2W5ZdwOwKCwoE1Vy1se+DHjcXwCYnA==} + '@scure/bip32@1.6.2': + resolution: {integrity: sha512-t96EPDMbtGgtb7onKKqxRLfE5g05k7uHnHRM2xdE6BP/ZmxaLtPek4J4KfVn/90IQNrU1IOAqMgiDtUdtbe3nw==} '@scure/bip39@1.3.0': resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} - '@scure/bip39@1.5.0': - resolution: {integrity: sha512-Dop+ASYhnrwm9+HA/HwXg7j2ZqM6yk2fyLWb5znexjctFY3+E+eU8cIWI0Pql0Qx4hPZCijlGq4OL71g+Uz30A==} + '@scure/bip39@1.5.4': + resolution: {integrity: sha512-TFM4ni0vKvCfBpohoh+/lY05i9gRbSwXWngAsF4CABQxoaOHijxuaZ2R6cStDQ5CHtHO9aGJTr4ksVJASRRyMA==} '@sec-ant/readable-stream@0.4.1': resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} @@ -2376,50 +1820,21 @@ packages: '@subsocial/definitions@0.8.14': resolution: {integrity: sha512-K/8ZYGMyy15QI16bxgi0GfxP3JsnKeNAyPlwom1kDE89RGGs5O++PuWbXxVMMSVYfh9zn9qJYKiThBYIj/Vohg==} - '@substrate/connect-extension-protocol@1.0.1': - resolution: {integrity: sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==} - '@substrate/connect-extension-protocol@2.2.1': resolution: {integrity: sha512-GoafTgm/Jey9E4Xlj4Z5ZBt/H4drH2CNq8VrAro80rtoznrXnFDNVivLQzZN0Xaj2g8YXSn9pC9Oc9IovYZJXw==} - '@substrate/connect-known-chains@1.7.0': - resolution: {integrity: sha512-Qf+alxEPmNycUyrPkXWrlFA97punnBCGxSWqiLG1CNu+jQoFYqi8x7gZYfqmdUHDY4nG1F84KHPPk7Zy4ngSfg==} - '@substrate/connect-known-chains@1.8.0': resolution: {integrity: sha512-sl7WfeDgnZuPvUl5Xw0XIziOTe8rEBJ3uugyDETGnafxEbjYMv5aJL0ilq5djhnQ7l9OuMJCN3Ckved2yINeeQ==} - '@substrate/connect@0.7.0-alpha.0': - resolution: {integrity: sha512-fvO7w++M8R95R/pGJFW9+cWOt8OYnnTfgswxtlPqSgzqX4tta8xcNQ51crC72FcL5agwSGkA1gc2/+eyTj7O8A==} - deprecated: versions below 1.x are no longer maintained - - '@substrate/connect@0.7.19': - resolution: {integrity: sha512-+DDRadc466gCmDU71sHrYOt1HcI2Cbhm7zdCFjZfFVHXhC/E8tOdrVSglAH2HDEHR0x2SiHRxtxOGC7ak2Zjog==} - deprecated: versions below 1.x are no longer maintained - '@substrate/connect@0.8.11': resolution: {integrity: sha512-ofLs1PAO9AtDdPbdyTYj217Pe+lBfTLltdHDs3ds8no0BseoLeAGxpz1mHfi7zB4IxI3YyAiLjH6U8cw4pj4Nw==} deprecated: versions below 1.x are no longer maintained - '@substrate/connect@0.8.8': - resolution: {integrity: sha512-zwaxuNEVI9bGt0rT8PEJiXOyebLIo6QN1SyiAHRPBOl6g3Sy0KKdSN8Jmyn++oXhVRD8aIe75/V8ZkS81T+BPQ==} - deprecated: versions below 1.x are no longer maintained - - '@substrate/light-client-extension-helpers@0.0.4': - resolution: {integrity: sha512-vfKcigzL0SpiK+u9sX6dq2lQSDtuFLOxIJx2CKPouPEHIs8C+fpsufn52r19GQn+qDhU8POMPHOVoqLktj8UEA==} - peerDependencies: - smoldot: 2.x - '@substrate/light-client-extension-helpers@1.0.0': resolution: {integrity: sha512-TdKlni1mBBZptOaeVrKnusMg/UBpWUORNDv5fdCaJklP4RJiFOzBCrzC+CyVI5kQzsXBisZ+2pXm+rIjS38kHg==} peerDependencies: smoldot: 2.x - '@substrate/smoldot-light@0.6.8': - resolution: {integrity: sha512-9lVwbG6wrtss0sd6013BJGe4WN4taujsGG49pwyt1Lj36USeL2Sb164TTUxmZF/g2NQEqDPwPROBdekQ2gFmgg==} - - '@substrate/smoldot-light@0.7.9': - resolution: {integrity: sha512-HP8iP7sFYlpSgjjbo0lqHyU+gu9lL2hbDNce6dWk5/10mFFF9jKIFGfui4zCecUY808o/Go9pan/31kMJoLbug==} - '@substrate/ss58-registry@1.51.0': resolution: {integrity: sha512-TWDurLiPxndFgKjVavCniytBIw+t4ViOi7TYp9h/D0NMmkEc9klFTo+827eyEJ0lELpqO207Ey7uGxUa+BS1jQ==} @@ -2459,9 +1874,6 @@ packages: '@types/aws-lambda@8.10.145': resolution: {integrity: sha512-dtByW6WiFk5W5Jfgz1VM+YPA21xMXTuSFoLYIDY0L44jDLLflVPtZkYuu3/YxpGcvjzKFBZLU+GyKjR0HOYtyw==} - '@types/bn.js@4.11.6': - resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} - '@types/bn.js@5.1.6': resolution: {integrity: sha512-Xh8vSwUeMKeYYrj3cX4lGQgFSF/N03r+tv4AiLl1SucqV+uTQpxRcnM8AkXKHwYP9ZPXOYXRr2KPXpVlIvqh9w==} @@ -2498,9 +1910,6 @@ packages: '@types/ms@0.7.34': resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - '@types/node-fetch@2.6.12': - resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==} - '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} @@ -2543,9 +1952,6 @@ packages: '@types/uuid@9.0.8': resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} - '@types/websocket@1.0.10': - resolution: {integrity: sha512-svjGZvPB7EzuYS94cI7a+qhwgGU1y89wUgjT6E2wVUfmAGIvRfT7obBvRtnhXCSsoMdlG4gBFGE7MfkIXZLoww==} - '@types/ws@8.5.3': resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} @@ -2558,26 +1964,26 @@ packages: '@unique-nft/opal-testnet-types@1003.70.0': resolution: {integrity: sha512-vXJoV7cqwO21svd03DFL7bl8H77zFbJzgkUgNPLPbVA6YkZt+ZeDmbP9lKKPbNadB1DP84kOZPVvsbmzx7+Jxg==} peerDependencies: - '@polkadot/api': ^10.10.1 - '@polkadot/types': ^10.10.1 + '@polkadot/api': 15.4.1 + '@polkadot/types': 15.4.1 '@unique-nft/quartz-mainnet-types@1003.70.0': resolution: {integrity: sha512-qs5iwMcDpBeJ6mXzSAbMB6DY9NkdAqPD1KmekOVG9Vug+hKWvSlfW5ozd63O/J2h7iliqwL0WZjDdwvBNdcTNg==} peerDependencies: - '@polkadot/api': ^10.10.1 - '@polkadot/types': ^10.10.1 + '@polkadot/api': 15.4.1 + '@polkadot/types': 15.4.1 '@unique-nft/sapphire-mainnet-types@1003.70.0': resolution: {integrity: sha512-hEMpLDPZxUuGW+B90AxaF3Clw/kvGn20oao+Ejq4nrCNRF/2k3CjjuG1NScZVcPZuGgKPAkBPiHNSF9aRN6qFg==} peerDependencies: - '@polkadot/api': ^10.10.1 - '@polkadot/types': ^10.10.1 + '@polkadot/api': 15.4.1 + '@polkadot/types': 15.4.1 '@unique-nft/unique-mainnet-types@1001.63.0': resolution: {integrity: sha512-IVr+F7+QvbW2zhbI2aWNtiOBXYAcd6GQ9HmDUdfSd4S0s3TSa8PAC/ikNvD3fk1A2FlBbWjVO0JyPDnnybv/og==} peerDependencies: - '@polkadot/api': ^10.10.1 - '@polkadot/types': ^10.10.1 + '@polkadot/api': 15.4.1 + '@polkadot/types': 15.4.1 '@vitest/expect@2.1.8': resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} @@ -2623,10 +2029,18 @@ packages: resolution: {integrity: sha512-rBID1rFq8JV0mOnksvXADk5QRjfp1ZES0nQUBBLYjY/un7Le60wbSuQCUi7/Zxm8qUSfeH7CE0U5aTXDfdBVGw==} engines: {node: '>=18'} + '@zombienet/orchestrator@0.0.98': + resolution: {integrity: sha512-oWWtoePJ1q5VuDBzg8fbW0D5bcXQ0ysYUsU79Y7OTzFfi8d2i/Vs3xX2cGR27iP31BFbHlfpxJ2g9WhlDvd7og==} + engines: {node: '>=18'} + '@zombienet/utils@0.0.25': resolution: {integrity: sha512-VS+tWmdZ8ozRkA1Lgb/Si9iISgJz8AEQpPnlnlIg3lfVHYFqAD7M5DpiFv24AAEBSraokVhUv9E9E1uE4d4f0w==} engines: {node: '>=18'} + '@zombienet/utils@0.0.26': + resolution: {integrity: sha512-LlFtaRV3CGBXDsbbETRZfjMbIAJrl/88eKTQ7Sr0FkWG0pg5GrIn6tLmnv6HUaCzP2IW1fn0JpBNxtw4+SArJA==} + engines: {node: '>=18'} + JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true @@ -2646,8 +2060,8 @@ packages: zod: optional: true - abitype@1.0.7: - resolution: {integrity: sha512-ZfYYSktDQUwc2eduYu8C4wOs+RDPmnRYMh7zNfzeMtGGgb0U+6tLGjixUic6mXf5xKKCcgT5Qp6cv39tOARVFw==} + abitype@1.0.8: + resolution: {integrity: sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==} peerDependencies: typescript: '>=5.0.4' zod: ^3 >=3.22.0 @@ -2657,10 +2071,6 @@ packages: zod: optional: true - abort-controller@3.0.0: - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} - engines: {node: '>=6.5'} - abortcontroller-polyfill@1.7.5: resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==} @@ -2682,11 +2092,6 @@ packages: resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} engines: {node: '>=0.4.0'} - acorn@8.12.1: - resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} - engines: {node: '>=0.4.0'} - hasBin: true - acorn@8.14.0: resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} engines: {node: '>=0.4.0'} @@ -2703,8 +2108,8 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} - agentkeepalive@4.5.0: - resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} + agentkeepalive@4.6.0: + resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==} engines: {node: '>= 8.0.0'} aggregate-error@3.1.0: @@ -2811,8 +2216,8 @@ packages: aws4@1.13.2: resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} - axios@1.7.7: - resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==} + axios@1.7.9: + resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==} balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -2960,10 +2365,6 @@ packages: resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} engines: {node: '>= 0.4'} - camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} @@ -3241,9 +2642,6 @@ packages: csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - cuint@0.2.2: - resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==} - d@1.0.2: resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} engines: {node: '>=0.12'} @@ -3399,6 +2797,10 @@ packages: resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} engines: {node: '>=12'} + dotenv@16.4.7: + resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} + engines: {node: '>=12'} + dunder-proto@1.0.0: resolution: {integrity: sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==} engines: {node: '>= 0.4'} @@ -3409,9 +2811,6 @@ packages: ecc-jsbn@0.1.2: resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} - ed2curve@0.3.0: - resolution: {integrity: sha512-8w2fmmq3hv9rCrcI7g9hms2pMunQr1JINfcjwR9tAyZqhtyaMN991lF/ZfHfr5tzZQ8c7y7aBgZbjfbd0fjFwQ==} - ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} @@ -3421,9 +2820,6 @@ packages: elliptic@6.5.7: resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==} - elliptic@6.6.1: - resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} - emoji-regex@10.4.0: resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} @@ -3444,6 +2840,7 @@ packages: encoding-down@6.3.0: resolution: {integrity: sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==} engines: {node: '>=6'} + deprecated: Superseded by abstract-level (https://github.com/Level/community#faq) encoding@0.1.13: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} @@ -3599,16 +2996,9 @@ packages: event-emitter@0.3.5: resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} - event-target-shim@5.0.1: - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} - engines: {node: '>=6'} - eventemitter3@4.0.4: resolution: {integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==} - eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - eventemitter3@5.0.1: resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} @@ -4026,8 +3416,8 @@ packages: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} - idb@8.0.0: - resolution: {integrity: sha512-l//qvlAKGmQO31Qn7xdzagVPPaHTxXx199MhrAFuVBTPqydcPYBWjkrbv4Y0ktB+GmWOiwHl237UUOrLmQxLvw==} + idb@8.0.1: + resolution: {integrity: sha512-EkBCzUZSdhJV8PxMSbeEV//xguVKZu9hZZulM+2gHXI0t2hGVU3eYE6/XnH77DS6FM2FY8wl17aDcu9vXpvLWQ==} idna-uts46-hx@2.3.1: resolution: {integrity: sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==} @@ -4094,10 +3484,6 @@ packages: resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} engines: {node: '>= 12'} - ip-regex@4.3.0: - resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==} - engines: {node: '>=8'} - ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} @@ -4313,7 +3699,6 @@ packages: resolution: {integrity: sha512-Quz3MvAwHxVYNXsOByL7xI5EB2WYOeFswqaHIA3qOK3isRWTxiplBEocmmru6XmxDB2L7jDNYtYA4FyimoAFEw==} engines: {node: '>=8.17.0'} hasBin: true - bundledDependencies: [] jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} @@ -4350,14 +3735,17 @@ packages: level-codec@9.0.2: resolution: {integrity: sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==} engines: {node: '>=6'} + deprecated: Superseded by level-transcoder (https://github.com/Level/community#faq) level-concat-iterator@2.0.1: resolution: {integrity: sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==} engines: {node: '>=6'} + deprecated: Superseded by abstract-level (https://github.com/Level/community#faq) level-errors@2.0.1: resolution: {integrity: sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==} engines: {node: '>=6'} + deprecated: Superseded by abstract-level (https://github.com/Level/community#faq) level-iterator-stream@4.0.2: resolution: {integrity: sha512-ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q==} @@ -4371,6 +3759,7 @@ packages: level-packager@5.1.1: resolution: {integrity: sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==} engines: {node: '>=6'} + deprecated: Superseded by abstract-level (https://github.com/Level/community#faq) level-supports@1.0.1: resolution: {integrity: sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==} @@ -4710,8 +4099,8 @@ packages: engines: {node: '>=10'} hasBin: true - mocha@10.7.3: - resolution: {integrity: sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==} + mocha@10.8.2: + resolution: {integrity: sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==} engines: {node: '>= 14.0.0'} hasBin: true @@ -4771,18 +4160,13 @@ packages: nano-json-stream-parser@0.1.2: resolution: {integrity: sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==} - nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - nanoid@3.3.8: resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - napi-build-utils@1.0.2: - resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + napi-build-utils@2.0.0: + resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} napi-maybe-compressed-blob-darwin-arm64@0.0.11: resolution: {integrity: sha512-hZ9ye4z8iMDVPEnx9A/Ag6k7xHX/BcK5Lntw/VANBUm9ioLSuRvHTALG4XaqVDGXo4U2NFDwSLRDyhFPYvqckQ==} @@ -4830,8 +4214,8 @@ packages: resolution: {integrity: sha512-o2zOYiCpzRqSzPj0Zt/dQ/DqZeYoaQ7TUonc/xUPjCGl9WeHpNbxgVvOquXYAaJzI0M9BXV3HTzG0p8IUAbBTQ==} engines: {node: '>= 10.13'} - node-abi@3.71.0: - resolution: {integrity: sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==} + node-abi@3.73.0: + resolution: {integrity: sha512-z8iYzQGBu35ZkTQ9mtR8RqugJZ9RCLn8fv3d7LsgDBzOijGQP3RdKTX4LA7LXw03ZhU5z0l4xfhIMgSES31+cg==} engines: {node: '>=10'} node-addon-api@2.0.2: @@ -4967,8 +4351,8 @@ packages: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} - ox@0.1.2: - resolution: {integrity: sha512-ak/8K0Rtphg9vnRJlbOdaX9R7cmxD2MiSthjWGaQdMk3D7hrAlDoM+6Lxn7hN52Za3vrXfZ7enfke/5WjolDww==} + ox@0.6.7: + resolution: {integrity: sha512-17Gk/eFsFRAZ80p5eKqv89a57uXjd3NgIf1CaXojATPBuujVc/fQSVhBeAU9JCRB+k7J50WQAyWTxK19T9GgbA==} peerDependencies: typescript: '>=5.4.0' peerDependenciesMeta: @@ -4998,9 +4382,6 @@ packages: package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - pako@2.1.0: - resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} - parse-headers@2.0.5: resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==} @@ -5090,15 +4471,15 @@ packages: pino-abstract-transport@2.0.0: resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==} - pino-pretty@11.3.0: - resolution: {integrity: sha512-oXwn7ICywaZPHmu3epHGU2oJX4nPmKvHvB/bwrJHlGcbEWaVcotkpyVHMKLKmiVryWYByNp0jpgAcXpFJDXJzA==} + pino-pretty@13.0.0: + resolution: {integrity: sha512-cQBBIVG3YajgoUjo1FdKVRX6t9XPxwB9lcNJVD5GCnNM4Y6T12YYx8c6zEejxQsU0wrg9TwmDulcE9LR7qcJqA==} hasBin: true pino-std-serializers@7.0.0: resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==} - pino@9.5.0: - resolution: {integrity: sha512-xSEmD4pLnV54t0NOUN16yCl7RIB1c5UUOse5HSyEXtBp+FgFQyPeDutc+Q2ZO7/22vImV7VfEjH/1zV2QuqvYw==} + pino@9.6.0: + resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==} hasBin: true pirates@4.0.6: @@ -5150,8 +4531,8 @@ packages: resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} engines: {node: ^10 || ^12 || >=14} - prebuild-install@7.1.2: - resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} + prebuild-install@7.1.3: + resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} engines: {node: '>=10'} hasBin: true @@ -5170,8 +4551,8 @@ packages: resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==} engines: {node: '>=18'} - process-warning@4.0.0: - resolution: {integrity: sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw==} + process-warning@4.0.1: + resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==} process@0.11.10: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} @@ -5302,10 +4683,6 @@ packages: resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} engines: {node: '>= 6'} - readable-stream@4.5.2: - resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} @@ -5385,11 +4762,6 @@ packages: resolution: {integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==} engines: {node: '>=8.0'} - rollup@4.26.0: - resolution: {integrity: sha512-ilcl12hnWonG8f+NxU6BlgysVA0gvY2l8N0R84S1HcINbW20bvwuCngJkkInV6LXhwRpucsW5k1ovDwEdBVrNg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - rollup@4.28.1: resolution: {integrity: sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -5405,10 +4777,6 @@ packages: resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} engines: {node: '>=0.12.0'} - rxjs@6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} - rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} @@ -5442,9 +4810,6 @@ packages: scrypt-js@3.0.1: resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==} - scryptsy@2.1.0: - resolution: {integrity: sha512-1CdSqHQowJBnMAFyPEBRfqag/YP9OF394FV+4YREIJX4ljD7OxvQRDayyoyyCk+senRjSkP6VnUNQmVQqB6g7w==} - secp256k1@4.0.3: resolution: {integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==} engines: {node: '>=10.0.0'} @@ -5557,9 +4922,6 @@ packages: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - smoldot@2.0.22: - resolution: {integrity: sha512-B50vRgTY6v3baYH6uCgL15tfaag5tcS2o/P5q1OiXcKGv1axZDfz2dzzMuIkVpyMR2ug11F6EAtQlmYBQd292g==} - smoldot@2.0.26: resolution: {integrity: sha512-F+qYmH4z2s2FK+CxGj8moYcd1ekSIKH8ywkdqlOz88Dat35iB1DIYL11aILN46YSGMzQW/lbJNS307zBSDN5Ig==} @@ -5697,8 +5059,8 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - styled-components@6.1.13: - resolution: {integrity: sha512-M0+N2xSnAtwcVAQeFEsGWFFxXDftHUD7XrKla06QbpUMmbmtFBMMTcKWvFXtWxuD5qQkB8iU5gk6QASlx2ZRMw==} + styled-components@6.1.14: + resolution: {integrity: sha512-KtfwhU5jw7UoxdM0g6XU9VZQFV4do+KrM8idiVCH5h4v49W+3p3yMe0icYwJgZQZepa5DbH04Qv8P0/RdcLcgg==} engines: {node: '>= 16'} peerDependencies: react: '>= 16.8.0' @@ -5726,8 +5088,8 @@ packages: symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - tar-fs@2.1.1: - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + tar-fs@2.1.2: + resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==} tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} @@ -5864,9 +5226,6 @@ packages: peerDependencies: typescript: '>=4' - tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} @@ -5906,9 +5265,6 @@ packages: tweetnacl@0.14.5: resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - tweetnacl@1.0.3: - resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} - type-detect@4.1.0: resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} engines: {node: '>=4'} @@ -6125,8 +5481,8 @@ packages: resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} - viem@2.21.54: - resolution: {integrity: sha512-G9mmtbua3UtnVY9BqAtWdNp+3AO+oWhD0B9KaEsZb6gcrOWgmA4rz02yqEMg+qW9m6KgKGie7q3zcHqJIw6AqA==} + viem@2.22.13: + resolution: {integrity: sha512-MaQKY5DUQ5SnZJPMytp5nTgvRu7N3wzvBhY31/9VT4lxDZAcQolqYEK3EqP+cdAD8jl0YmGuoJlfW9D1crqlGg==} peerDependencies: typescript: '>=5.0.4' peerDependenciesMeta: @@ -6374,9 +5730,6 @@ packages: resolution: {integrity: sha512-SgoMSBo6EsJ5GFCGar2E/pR2lcR/xmUSuQ61iK6yDqzxmm42aPPxSqZfJz2z/UCR6pk03u77pU8TGV6lgMDdIQ==} engines: {node: '>=14.0.0', npm: '>=6.12.0'} - webauthn-p256@0.0.10: - resolution: {integrity: sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==} - webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -6527,9 +5880,6 @@ packages: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} - xxhashjs@0.2.2: - resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==} - y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} @@ -6593,41 +5943,38 @@ packages: yoga-wasm-web@0.3.3: resolution: {integrity: sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==} - zod@3.23.8: - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} - - zod@3.24.0: - resolution: {integrity: sha512-Hz+wiY8yD0VLA2k/+nsg2Abez674dDGTai33SwNvMPuf9uIrBC9eFgIMQxBBbHFxVXi8W+5nX9DcAh9YNSQm/w==} + zod@3.24.1: + resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} snapshots: - '@acala-network/chopsticks-core@1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@acala-network/chopsticks-core@1.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@acala-network/chopsticks-executor': 1.0.1 - '@polkadot/rpc-provider': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/types-known': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@acala-network/chopsticks-executor': 1.0.2 + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/types-known': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) comlink: 4.4.2 eventemitter3: 5.0.1 lodash: 4.17.21 lru-cache: 11.0.2 - pino: 9.5.0 - pino-pretty: 11.3.0 + pino: 9.6.0 + pino-pretty: 13.0.0 rxjs: 7.8.1 - zod: 3.23.8 + zod: 3.24.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@acala-network/chopsticks-db@1.0.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10)': + '@acala-network/chopsticks-db@1.0.2(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10)': dependencies: - '@acala-network/chopsticks-core': 1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/util': 13.2.3 - idb: 8.0.0 + '@acala-network/chopsticks-core': 1.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/util': 13.3.1 + idb: 8.0.1 sqlite3: 5.1.7 typeorm: 0.3.20(sqlite3@5.1.7)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2)) transitivePeerDependencies: @@ -6652,32 +5999,32 @@ snapshots: - typeorm-aurora-data-api-driver - utf-8-validate - '@acala-network/chopsticks-executor@1.0.1': + '@acala-network/chopsticks-executor@1.0.2': dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) + '@polkadot/util': 13.3.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) - '@acala-network/chopsticks@1.0.1(bufferutil@4.0.8)(debug@4.3.7)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10)': + '@acala-network/chopsticks@1.0.2(bufferutil@4.0.8)(debug@4.3.7)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10)': dependencies: - '@acala-network/chopsticks-core': 1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@acala-network/chopsticks-db': 1.0.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10) + '@acala-network/chopsticks-core': 1.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@acala-network/chopsticks-db': 1.0.2(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10) '@pnpm/npm-conf': 2.3.1 - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - axios: 1.7.7(debug@4.3.7) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + axios: 1.7.9(debug@4.3.7) comlink: 4.4.2 - dotenv: 16.4.5 + dotenv: 16.4.7 global-agent: 3.0.0 js-yaml: 4.1.0 jsondiffpatch: 0.5.0 lodash: 4.17.21 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) yargs: 17.7.2 - zod: 3.23.8 + zod: 3.24.1 transitivePeerDependencies: - '@google-cloud/spanner' - '@sap/hana-client' @@ -6701,27 +6048,27 @@ snapshots: - typeorm-aurora-data-api-driver - utf-8-validate - '@acala-network/chopsticks@1.0.1(bufferutil@4.0.8)(debug@4.4.0)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10)': + '@acala-network/chopsticks@1.0.2(bufferutil@4.0.8)(debug@4.4.0)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10)': dependencies: - '@acala-network/chopsticks-core': 1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@acala-network/chopsticks-db': 1.0.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10) + '@acala-network/chopsticks-core': 1.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@acala-network/chopsticks-db': 1.0.2(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10) '@pnpm/npm-conf': 2.3.1 - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - axios: 1.7.7(debug@4.4.0) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + axios: 1.7.9(debug@4.4.0) comlink: 4.4.2 - dotenv: 16.4.5 + dotenv: 16.4.7 global-agent: 3.0.0 js-yaml: 4.1.0 jsondiffpatch: 0.5.0 lodash: 4.17.21 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) yargs: 17.7.2 - zod: 3.23.8 + zod: 3.24.1 transitivePeerDependencies: - '@google-cloud/spanner' - '@sap/hana-client' @@ -6745,9 +6092,9 @@ snapshots: - typeorm-aurora-data-api-driver - utf-8-validate - '@acala-network/type-definitions@5.1.2(@polkadot/types@14.3.1)': + '@acala-network/type-definitions@5.1.2(@polkadot/types@15.4.1)': dependencies: - '@polkadot/types': 14.3.1 + '@polkadot/types': 15.4.1 '@adraffy/ens-normalize@1.10.1': {} @@ -6776,9 +6123,13 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@bifrost-finance/type-definitions@1.11.3(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + '@babel/runtime@7.26.7': + dependencies: + regenerator-runtime: 0.14.1 + + '@bifrost-finance/type-definitions@1.11.3(@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@biomejs/biome@1.9.4': optionalDependencies: @@ -6834,10 +6185,10 @@ snapshots: '@darwinia/types@2.8.10': {} - '@digitalnative/type-definitions@1.1.27(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': + '@digitalnative/type-definitions@1.1.27(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)': dependencies: - '@polkadot/keyring': 6.11.1(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 4.17.1 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.4.1 transitivePeerDependencies: - '@polkadot/util' - '@polkadot/util-crypto' @@ -7214,9 +6565,9 @@ snapshots: '@fragnova/api-augment@0.1.0-spec-1.0.4-mainnet(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 9.14.2 + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 transitivePeerDependencies: - bufferutil - supports-color @@ -7224,9 +6575,9 @@ snapshots: '@frequency-chain/api-augment@1.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 10.13.1 + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 transitivePeerDependencies: - bufferutil - supports-color @@ -7374,9 +6725,9 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@kiltprotocol/type-definitions@1.11401.1(@polkadot/types@14.3.1)': + '@kiltprotocol/type-definitions@1.11401.1(@polkadot/types@15.4.1)': dependencies: - '@polkadot/types': 14.3.1 + '@polkadot/types': 15.4.1 '@laminar/type-definitions@0.3.1': dependencies: @@ -7384,9 +6735,9 @@ snapshots: '@logion/node-api@0.27.0-4(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) '@types/uuid': 9.0.8 fast-sha256: 1.3.0 uuid: 9.0.1 @@ -7395,9 +6746,9 @@ snapshots: - supports-color - utf-8-validate - '@mangata-finance/type-definitions@2.1.2(@polkadot/types@14.3.1)': + '@mangata-finance/type-definitions@2.1.2(@polkadot/types@15.4.1)': dependencies: - '@polkadot/types': 14.3.1 + '@polkadot/types': 15.4.1 '@metaverse-network-sdk/type-definitions@0.0.1-16': dependencies: @@ -7405,12 +6756,12 @@ snapshots: '@moonbeam-network/api-augment@0.3300.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-base': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/rpc-core': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/typegen': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/types-codec': 14.3.1 + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 '@types/node': 22.10.1 prettier: 2.8.8 prettier-plugin-jsdoc: 0.3.38(prettier@2.8.8) @@ -7421,26 +6772,26 @@ snapshots: - supports-color - utf-8-validate - '@moonwall/cli@5.9.1(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0)': + '@moonwall/cli@5.9.1(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1)': dependencies: - '@acala-network/chopsticks': 1.0.1(bufferutil@4.0.8)(debug@4.3.7)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10) + '@acala-network/chopsticks': 1.0.2(bufferutil@4.0.8)(debug@4.3.7)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2))(utf-8-validate@5.0.10) '@inquirer/prompts': 7.2.0(@types/node@22.10.1) '@moonbeam-network/api-augment': 0.3300.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.0) - '@moonwall/util': 5.9.1(@types/node@22.10.1)(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.0) + '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1) + '@moonwall/util': 5.9.1(@types/node@22.10.1)(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1) '@octokit/rest': 21.0.2 - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) '@types/react': 18.3.14 '@types/tmp': 0.2.6 '@vitest/ui': 2.1.8(vitest@2.1.8) - '@zombienet/orchestrator': 0.0.97(@polkadot/util@13.2.3)(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(utf-8-validate@5.0.10) - '@zombienet/utils': 0.0.25(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) + '@zombienet/orchestrator': 0.0.97(@polkadot/util@13.3.1)(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(utf-8-validate@5.0.10) + '@zombienet/utils': 0.0.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) bottleneck: 2.19.5 cfonts: 3.3.0 chalk: 5.3.0 @@ -7459,9 +6810,9 @@ snapshots: semver: 7.6.3 tiny-invariant: 1.3.3 tmp: 0.2.3 - viem: 2.21.54(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + viem: 2.22.13(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) web3-providers-ws: 4.0.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) yaml: 2.4.5 @@ -7514,23 +6865,23 @@ snapshots: - utf-8-validate - zod - '@moonwall/types@5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.0)': + '@moonwall/types@5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1)': dependencies: - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-base': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) '@types/node': 22.10.1 - '@zombienet/utils': 0.0.25(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) + '@zombienet/utils': 0.0.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) bottleneck: 2.19.5 debug: 4.4.0(supports-color@8.1.1) ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) polkadot-api: 1.7.7(bufferutil@4.0.8)(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5) - viem: 2.21.54(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + viem: 2.22.13(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) transitivePeerDependencies: - '@edge-runtime/vm' - '@microsoft/api-extractor' @@ -7561,23 +6912,23 @@ snapshots: - yaml - zod - '@moonwall/types@5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.0)': + '@moonwall/types@5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.1)': dependencies: - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/api-base': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) '@types/node': 22.10.1 - '@zombienet/utils': 0.0.25(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) + '@zombienet/utils': 0.0.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) bottleneck: 2.19.5 debug: 4.4.0(supports-color@8.1.1) ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) polkadot-api: 1.7.7(bufferutil@4.0.8)(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1) - viem: 2.21.54(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + viem: 2.22.13(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) transitivePeerDependencies: - '@edge-runtime/vm' - '@microsoft/api-extractor' @@ -7608,19 +6959,19 @@ snapshots: - yaml - zod - '@moonwall/util@5.9.1(@types/node@22.10.1)(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.0)': + '@moonwall/util@5.9.1(@types/node@22.10.1)(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1)': dependencies: '@inquirer/prompts': 7.2.0(@types/node@22.10.1) '@moonbeam-network/api-augment': 0.3300.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.0) - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/rpc-provider': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) bottleneck: 2.19.5 chalk: 5.3.0 clear: 0.1.0 @@ -7631,9 +6982,9 @@ snapshots: ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) rlp: 3.0.0 semver: 7.6.3 - viem: 2.21.54(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + viem: 2.22.13(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) yargs: 17.7.2 transitivePeerDependencies: @@ -7667,19 +7018,19 @@ snapshots: - yaml - zod - '@moonwall/util@5.9.1(@types/node@22.10.1)(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.0)': + '@moonwall/util@5.9.1(@types/node@22.10.1)(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.1)': dependencies: '@inquirer/prompts': 7.2.0(@types/node@22.10.1) '@moonbeam-network/api-augment': 0.3300.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.0) - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/rpc-provider': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.8)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(postcss@8.4.49)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.7.2)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.1) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) bottleneck: 2.19.5 chalk: 5.3.0 clear: 0.1.0 @@ -7690,9 +7041,9 @@ snapshots: ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) rlp: 3.0.0 semver: 7.6.3 - viem: 2.21.54(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + viem: 2.22.13(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3: 4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) yargs: 17.7.2 transitivePeerDependencies: @@ -7734,31 +7085,25 @@ snapshots: dependencies: '@noble/hashes': 1.4.0 - '@noble/curves@1.6.0': - dependencies: - '@noble/hashes': 1.5.0 - '@noble/curves@1.7.0': dependencies: '@noble/hashes': 1.6.0 - '@noble/ed25519@1.7.3': {} - - '@noble/hashes@1.0.0': {} + '@noble/curves@1.8.1': + dependencies: + '@noble/hashes': 1.7.1 - '@noble/hashes@1.2.0': {} + '@noble/ed25519@1.7.3': {} '@noble/hashes@1.3.2': {} '@noble/hashes@1.4.0': {} - '@noble/hashes@1.5.0': {} - '@noble/hashes@1.6.0': {} '@noble/hashes@1.6.1': {} - '@noble/secp256k1@1.5.5': {} + '@noble/hashes@1.7.1': {} '@noble/secp256k1@1.7.1': {} @@ -7957,7 +7302,7 @@ snapshots: '@pendulum-chain/type-definitions@0.3.8': dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.26.7 '@open-web3/orml-type-definitions': 1.1.4 '@phala/typedefs@0.2.33': {} @@ -8057,15 +7402,6 @@ snapshots: - utf-8-validate - yaml - '@polkadot-api/client@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0(rxjs@7.8.1)': - dependencies: - '@polkadot-api/metadata-builders': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/substrate-bindings': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/substrate-client': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/utils': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - rxjs: 7.8.1 - optional: true - '@polkadot-api/codegen@0.12.9': dependencies: '@polkadot-api/ink-contracts': 0.2.2 @@ -8081,9 +7417,6 @@ snapshots: '@polkadot-api/utils': 0.1.2 scale-ts: 1.6.1 - '@polkadot-api/json-rpc-provider-proxy@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - optional: true - '@polkadot-api/json-rpc-provider-proxy@0.1.0': optional: true @@ -8092,9 +7425,6 @@ snapshots: '@polkadot-api/json-rpc-provider@0.0.1': optional: true - '@polkadot-api/json-rpc-provider@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - optional: true - '@polkadot-api/json-rpc-provider@0.0.4': {} '@polkadot-api/known-chains@0.5.8': {} @@ -8109,12 +7439,6 @@ snapshots: '@polkadot-api/substrate-bindings': 0.10.0 '@polkadot-api/utils': 0.1.2 - '@polkadot-api/metadata-builders@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - dependencies: - '@polkadot-api/substrate-bindings': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/utils': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - optional: true - '@polkadot-api/metadata-builders@0.3.2': dependencies: '@polkadot-api/substrate-bindings': 0.6.0 @@ -8196,14 +7520,6 @@ snapshots: - bufferutil - utf-8-validate - '@polkadot-api/substrate-bindings@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - dependencies: - '@noble/hashes': 1.6.1 - '@polkadot-api/utils': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@scure/base': 1.2.1 - scale-ts: 1.6.1 - optional: true - '@polkadot-api/substrate-bindings@0.10.0': dependencies: '@noble/hashes': 1.6.1 @@ -8215,7 +7531,7 @@ snapshots: dependencies: '@noble/hashes': 1.6.1 '@polkadot-api/utils': 0.1.0 - '@scure/base': 1.2.1 + '@scure/base': 1.2.4 scale-ts: 1.6.1 optional: true @@ -8223,12 +7539,9 @@ snapshots: dependencies: '@noble/hashes': 1.6.1 '@polkadot-api/utils': 0.1.2 - '@scure/base': 1.2.1 + '@scure/base': 1.2.4 scale-ts: 1.6.1 - '@polkadot-api/substrate-client@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - optional: true - '@polkadot-api/substrate-client@0.1.4': dependencies: '@polkadot-api/json-rpc-provider': 0.0.1 @@ -8240,9 +7553,6 @@ snapshots: '@polkadot-api/json-rpc-provider': 0.0.4 '@polkadot-api/utils': 0.1.2 - '@polkadot-api/utils@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0': - optional: true - '@polkadot-api/utils@0.1.0': optional: true @@ -8259,80 +7569,66 @@ snapshots: - bufferutil - utf-8-validate - '@polkadot/api-augment@10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-augment@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api-base': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-augment': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 10.13.1 - '@polkadot/types-augment': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 + '@polkadot/api-base': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/types-augment': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-augment@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-base@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api-base': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/types-augment': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/util': 13.2.3 + '@polkadot/rpc-core': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 + rxjs: 7.8.1 tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-augment@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-base@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api-base': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-augment': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/util': 13.2.3 + '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 + rxjs: 7.8.1 tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-augment@7.15.1(encoding@0.1.13)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/api-base': 7.15.1(encoding@0.1.13) - '@polkadot/rpc-augment': 7.15.1(encoding@0.1.13) - '@polkadot/types': 7.15.1 - '@polkadot/types-augment': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - transitivePeerDependencies: - - encoding - - supports-color - - '@polkadot/api-augment@9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-base@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/api-base': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-augment': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 9.14.2 - '@polkadot/types-augment': 9.14.2 - '@polkadot/types-codec': 9.14.2 - '@polkadot/util': 10.4.2 + '@polkadot/rpc-core': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 + rxjs: 7.8.1 + tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-base@10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-derive@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-core': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 10.13.1 - '@polkadot/util': 12.6.2 + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) rxjs: 7.8.1 tslib: 2.8.1 transitivePeerDependencies: @@ -8340,11 +7636,23 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-base@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/rpc-core': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/util': 13.2.3 + '@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@polkadot/api-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/rpc-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/types-augment': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/types-create': 15.4.1 + '@polkadot/types-known': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + eventemitter3: 5.0.1 rxjs: 7.8.1 tslib: 2.8.1 transitivePeerDependencies: @@ -8352,416 +7660,99 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-base@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/apps-config@0.148.1(@polkadot/keyring@13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/util': 13.2.3 + '@acala-network/type-definitions': 5.1.2(@polkadot/types@15.4.1) + '@bifrost-finance/type-definitions': 1.11.3(@polkadot/api@15.4.1(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.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@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': 1.11401.1(@polkadot/types@15.4.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@15.4.1) + '@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': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/networks': 13.3.1 + '@polkadot/react-identicon': 3.12.1(@polkadot/keyring@13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1))(@polkadot/networks@13.3.1)(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1) + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-fetch': 13.3.1 + '@polkadot/x-ws': 13.3.1(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.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@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@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@15.4.1) + '@unique-nft/quartz-mainnet-types': 1003.70.0(@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@15.4.1) + '@unique-nft/sapphire-mainnet-types': 1003.70.0(@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@15.4.1) + '@unique-nft/unique-mainnet-types': 1001.63.0(@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@15.4.1) + '@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.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) rxjs: 7.8.1 tslib: 2.8.1 transitivePeerDependencies: + - '@polkadot/keyring' - bufferutil + - react + - react-dom + - react-is - supports-color - utf-8-validate - '@polkadot/api-base@7.15.1(encoding@0.1.13)': + '@polkadot/keyring@13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/rpc-core': 7.15.1(encoding@0.1.13) - '@polkadot/types': 7.15.1 - '@polkadot/util': 8.7.1 - rxjs: 7.8.1 - transitivePeerDependencies: - - encoding - - supports-color + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + tslib: 2.8.1 - '@polkadot/api-base@9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/networks@13.3.1': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/rpc-core': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 9.14.2 - '@polkadot/util': 10.4.2 - rxjs: 7.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-derive@10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - rxjs: 7.8.1 - tslib: 2.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-derive@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - rxjs: 7.8.1 - tslib: 2.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-derive@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - rxjs: 7.8.1 - tslib: 2.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api-derive@7.15.1(encoding@0.1.13)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/api': 7.15.1(encoding@0.1.13) - '@polkadot/api-augment': 7.15.1(encoding@0.1.13) - '@polkadot/api-base': 7.15.1(encoding@0.1.13) - '@polkadot/rpc-core': 7.15.1(encoding@0.1.13) - '@polkadot/types': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1(@polkadot/util@8.7.1) - rxjs: 7.8.1 - transitivePeerDependencies: - - encoding - - supports-color - - '@polkadot/api-derive@9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/api': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 9.14.2 - '@polkadot/types-codec': 9.14.2 - '@polkadot/util': 10.4.2 - '@polkadot/util-crypto': 10.4.2(@polkadot/util@10.4.2) - rxjs: 7.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api@10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api-augment': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/rpc-augment': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 10.13.1 - '@polkadot/types-augment': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/types-create': 10.13.1 - '@polkadot/types-known': 10.13.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - eventemitter3: 5.0.1 - rxjs: 7.8.1 - tslib: 2.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/rpc-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/types-augment': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/types-create': 14.3.1 - '@polkadot/types-known': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - eventemitter3: 5.0.1 - rxjs: 7.8.1 - tslib: 2.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/api-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/rpc-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-augment': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/types-create': 15.0.1 - '@polkadot/types-known': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - eventemitter3: 5.0.1 - rxjs: 7.8.1 - tslib: 2.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/api@7.15.1(encoding@0.1.13)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/api-augment': 7.15.1(encoding@0.1.13) - '@polkadot/api-base': 7.15.1(encoding@0.1.13) - '@polkadot/api-derive': 7.15.1(encoding@0.1.13) - '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@8.7.1(@polkadot/util@8.7.1))(@polkadot/util@8.7.1) - '@polkadot/rpc-augment': 7.15.1(encoding@0.1.13) - '@polkadot/rpc-core': 7.15.1(encoding@0.1.13) - '@polkadot/rpc-provider': 7.15.1(encoding@0.1.13) - '@polkadot/types': 7.15.1 - '@polkadot/types-augment': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/types-create': 7.15.1 - '@polkadot/types-known': 7.15.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1(@polkadot/util@8.7.1) - eventemitter3: 4.0.7 - rxjs: 7.8.1 - transitivePeerDependencies: - - encoding - - supports-color - - '@polkadot/api@9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/api-augment': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-base': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 10.4.2(@polkadot/util-crypto@10.4.2(@polkadot/util@10.4.2))(@polkadot/util@10.4.2) - '@polkadot/rpc-augment': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-core': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 9.14.2 - '@polkadot/types-augment': 9.14.2 - '@polkadot/types-codec': 9.14.2 - '@polkadot/types-create': 9.14.2 - '@polkadot/types-known': 9.14.2 - '@polkadot/util': 10.4.2 - '@polkadot/util-crypto': 10.4.2(@polkadot/util@10.4.2) - eventemitter3: 5.0.1 - rxjs: 7.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/apps-config@0.146.1(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(utf-8-validate@5.0.10)': - dependencies: - '@acala-network/type-definitions': 5.1.2(@polkadot/types@14.3.1) - '@bifrost-finance/type-definitions': 1.11.3(@polkadot/api@14.3.1(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.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@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': 1.11401.1(@polkadot/types@14.3.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@14.3.1) - '@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': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-derive': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/networks': 13.2.3 - '@polkadot/react-identicon': 3.11.3(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(@polkadot/networks@13.2.3)(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1) - '@polkadot/types': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/x-fetch': 13.2.3 - '@polkadot/x-ws': 13.2.3(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.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(encoding@0.1.13) - '@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@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1) - '@unique-nft/quartz-mainnet-types': 1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1) - '@unique-nft/sapphire-mainnet-types': 1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1) - '@unique-nft/unique-mainnet-types': 1001.63.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1) - '@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.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - rxjs: 7.8.1 - tslib: 2.8.1 - transitivePeerDependencies: - - '@polkadot/keyring' - - bufferutil - - encoding - - react - - react-dom - - react-is - - supports-color - - utf-8-validate - - '@polkadot/keyring@10.4.2(@polkadot/util-crypto@10.4.2(@polkadot/util@10.4.2))(@polkadot/util@10.4.2)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - '@polkadot/util-crypto': 10.4.2(@polkadot/util@10.4.2) - - '@polkadot/keyring@12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)': - dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - tslib: 2.8.1 - - '@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': - dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - tslib: 2.8.1 - - '@polkadot/keyring@6.11.1(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - - '@polkadot/keyring@7.9.2(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - - '@polkadot/keyring@8.7.1(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - - '@polkadot/keyring@8.7.1(@polkadot/util-crypto@8.7.1(@polkadot/util@8.7.1))(@polkadot/util@8.7.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1(@polkadot/util@8.7.1) - - '@polkadot/metadata@4.17.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/types': 4.17.1 - '@polkadot/types-known': 4.17.1 - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1(@polkadot/util@6.11.1) - - '@polkadot/networks@10.4.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - '@substrate/ss58-registry': 1.51.0 - - '@polkadot/networks@12.6.2': - dependencies: - '@polkadot/util': 12.6.2 - '@substrate/ss58-registry': 1.51.0 - tslib: 2.8.1 - - '@polkadot/networks@13.2.3': - dependencies: - '@polkadot/util': 13.2.3 + '@polkadot/util': 13.3.1 '@substrate/ss58-registry': 1.51.0 tslib: 2.8.1 - '@polkadot/networks@6.11.1': - dependencies: - '@babel/runtime': 7.26.0 - - '@polkadot/networks@8.7.1': + '@polkadot/react-identicon@3.12.1(@polkadot/keyring@13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1))(@polkadot/networks@13.3.1)(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 8.7.1 - '@substrate/ss58-registry': 1.51.0 - - '@polkadot/react-identicon@3.11.3(@polkadot/keyring@13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3))(@polkadot/networks@13.2.3)(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)': - dependencies: - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/ui-settings': 3.11.3(@polkadot/networks@13.2.3)(@polkadot/util@13.2.3) - '@polkadot/ui-shared': 3.11.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/ui-settings': 3.12.1(@polkadot/networks@13.3.1)(@polkadot/util@13.3.1) + '@polkadot/ui-shared': 3.12.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) 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: 18.3.1 - styled-components: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + styled-components: 6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tslib: 2.8.1 transitivePeerDependencies: - '@polkadot/networks' - '@polkadot/rpc-augment@10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/rpc-core': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 - tslib: 2.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - '@polkadot/rpc-augment@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/rpc-core': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/util': 13.2.3 + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 transitivePeerDependencies: - bufferutil @@ -8771,45 +7762,21 @@ snapshots: '@polkadot/rpc-augment@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/rpc-core': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/util': 13.2.3 + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/rpc-augment@7.15.1(encoding@0.1.13)': + '@polkadot/rpc-augment@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/rpc-core': 7.15.1(encoding@0.1.13) - '@polkadot/types': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - transitivePeerDependencies: - - encoding - - supports-color - - '@polkadot/rpc-augment@9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/rpc-core': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 9.14.2 - '@polkadot/types-codec': 9.14.2 - '@polkadot/util': 10.4.2 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-core@10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/rpc-augment': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 10.13.1 - '@polkadot/util': 12.6.2 - rxjs: 7.8.1 + '@polkadot/rpc-core': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 transitivePeerDependencies: - bufferutil @@ -8819,9 +7786,9 @@ snapshots: '@polkadot/rpc-core@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/rpc-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 - '@polkadot/util': 13.2.3 + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 rxjs: 7.8.1 tslib: 2.8.1 transitivePeerDependencies: @@ -8832,9 +7799,9 @@ snapshots: '@polkadot/rpc-core@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@polkadot/rpc-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 - '@polkadot/util': 13.2.3 + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 rxjs: 7.8.1 tslib: 2.8.1 transitivePeerDependencies: @@ -8842,83 +7809,29 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-core@7.15.1(encoding@0.1.13)': + '@polkadot/rpc-core@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/rpc-augment': 7.15.1(encoding@0.1.13) - '@polkadot/rpc-provider': 7.15.1(encoding@0.1.13) - '@polkadot/types': 7.15.1 - '@polkadot/util': 8.7.1 + '@polkadot/rpc-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 + '@polkadot/util': 13.3.1 rxjs: 7.8.1 - transitivePeerDependencies: - - encoding - - supports-color - - '@polkadot/rpc-core@9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/rpc-augment': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 9.14.2 - '@polkadot/util': 10.4.2 - rxjs: 7.8.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-provider@10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/types': 10.13.1 - '@polkadot/types-support': 10.13.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - '@polkadot/x-fetch': 12.6.2 - '@polkadot/x-global': 12.6.2 - '@polkadot/x-ws': 12.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - eventemitter3: 5.0.1 - mock-socket: 9.3.1 - nock: 13.5.6 - tslib: 2.8.1 - optionalDependencies: - '@substrate/connect': 0.8.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@polkadot/rpc-provider@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 14.3.1 - '@polkadot/types-support': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - '@polkadot/x-fetch': 13.2.3 - '@polkadot/x-global': 13.2.3 - '@polkadot/x-ws': 13.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) - eventemitter3: 5.0.1 - mock-socket: 9.3.1 - nock: 13.5.6 tslib: 2.8.1 - optionalDependencies: - '@substrate/connect': 0.8.11(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/rpc-provider@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-provider@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 15.0.1 - '@polkadot/types-support': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - '@polkadot/x-fetch': 13.2.3 - '@polkadot/x-global': 13.2.3 - '@polkadot/x-ws': 13.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.4.1 + '@polkadot/types-support': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + '@polkadot/x-fetch': 13.3.1 + '@polkadot/x-global': 13.3.1 + '@polkadot/x-ws': 13.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.6 @@ -8930,60 +7843,20 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-provider@7.15.1(encoding@0.1.13)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@8.7.1(@polkadot/util@8.7.1))(@polkadot/util@8.7.1) - '@polkadot/types': 7.15.1 - '@polkadot/types-support': 7.15.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1(@polkadot/util@8.7.1) - '@polkadot/x-fetch': 8.7.1(encoding@0.1.13) - '@polkadot/x-global': 8.7.1 - '@polkadot/x-ws': 8.7.1 - '@substrate/connect': 0.7.0-alpha.0 - eventemitter3: 4.0.7 - mock-socket: 9.3.1 - nock: 13.5.6 - transitivePeerDependencies: - - encoding - - supports-color - - '@polkadot/rpc-provider@9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/keyring': 10.4.2(@polkadot/util-crypto@10.4.2(@polkadot/util@10.4.2))(@polkadot/util@10.4.2) - '@polkadot/types': 9.14.2 - '@polkadot/types-support': 9.14.2 - '@polkadot/util': 10.4.2 - '@polkadot/util-crypto': 10.4.2(@polkadot/util@10.4.2) - '@polkadot/x-fetch': 10.4.2 - '@polkadot/x-global': 10.4.2 - '@polkadot/x-ws': 10.4.2 - eventemitter3: 5.0.1 - mock-socket: 9.3.1 - nock: 13.5.6 - optionalDependencies: - '@substrate/connect': 0.7.19(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - '@polkadot/typegen@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/rpc-augment': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 '@polkadot/types-augment': 14.3.1 - '@polkadot/types-codec': 14.3.1 + '@polkadot/types-codec': 15.4.1 '@polkadot/types-create': 14.3.1 '@polkadot/types-support': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - '@polkadot/x-ws': 13.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + '@polkadot/x-ws': 13.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) handlebars: 4.7.8 tslib: 2.8.1 yargs: 17.7.2 @@ -8994,18 +7867,18 @@ snapshots: '@polkadot/typegen@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@polkadot/rpc-augment': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/rpc-provider': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.0.1 + '@polkadot/rpc-provider': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 '@polkadot/types-augment': 15.0.1 - '@polkadot/types-codec': 15.0.1 + '@polkadot/types-codec': 15.4.1 '@polkadot/types-create': 15.0.1 '@polkadot/types-support': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - '@polkadot/x-ws': 13.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + '@polkadot/x-ws': 13.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) handlebars: 4.7.8 tslib: 2.8.1 yargs: 17.7.2 @@ -9014,748 +7887,209 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/types-augment@10.13.1': - dependencies: - '@polkadot/types': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 - tslib: 2.8.1 - - '@polkadot/types-augment@14.3.1': - dependencies: - '@polkadot/types': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-augment@15.0.1': - dependencies: - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-augment@7.15.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/types': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - - '@polkadot/types-augment@9.14.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/types': 9.14.2 - '@polkadot/types-codec': 9.14.2 - '@polkadot/util': 10.4.2 - - '@polkadot/types-codec@10.13.1': - dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/x-bigint': 12.6.2 - tslib: 2.8.1 - - '@polkadot/types-codec@14.3.1': - dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/x-bigint': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-codec@15.0.1': - dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/x-bigint': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-codec@7.15.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 8.7.1 - - '@polkadot/types-codec@9.14.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - '@polkadot/x-bigint': 10.4.2 - - '@polkadot/types-create@10.13.1': - dependencies: - '@polkadot/types-codec': 10.13.1 - '@polkadot/util': 12.6.2 - tslib: 2.8.1 - - '@polkadot/types-create@14.3.1': - dependencies: - '@polkadot/types-codec': 14.3.1 - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-create@15.0.1': - dependencies: - '@polkadot/types-codec': 15.0.1 - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-create@7.15.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - - '@polkadot/types-create@9.14.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/types-codec': 9.14.2 - '@polkadot/util': 10.4.2 - - '@polkadot/types-known@10.13.1': - dependencies: - '@polkadot/networks': 12.6.2 - '@polkadot/types': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/types-create': 10.13.1 - '@polkadot/util': 12.6.2 - tslib: 2.8.1 - - '@polkadot/types-known@14.3.1': - dependencies: - '@polkadot/networks': 13.2.3 - '@polkadot/types': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/types-create': 14.3.1 - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-known@15.0.1': - dependencies: - '@polkadot/networks': 13.2.3 - '@polkadot/types': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/types-create': 15.0.1 - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-known@4.17.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/networks': 6.11.1 - '@polkadot/types': 4.17.1 - '@polkadot/util': 6.11.1 - - '@polkadot/types-known@6.12.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/networks': 8.7.1 - '@polkadot/types': 6.12.1 - '@polkadot/util': 8.7.1 - - '@polkadot/types-known@7.15.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/networks': 8.7.1 - '@polkadot/types': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/types-create': 7.15.1 - '@polkadot/util': 8.7.1 - - '@polkadot/types-known@9.14.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/networks': 10.4.2 - '@polkadot/types': 9.14.2 - '@polkadot/types-codec': 9.14.2 - '@polkadot/types-create': 9.14.2 - '@polkadot/util': 10.4.2 - - '@polkadot/types-support@10.13.1': - dependencies: - '@polkadot/util': 12.6.2 - tslib: 2.8.1 - - '@polkadot/types-support@14.3.1': - dependencies: - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-support@15.0.1': - dependencies: - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/types-support@7.15.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 8.7.1 - - '@polkadot/types-support@9.14.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - - '@polkadot/types@10.13.1': - dependencies: - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/types-augment': 10.13.1 - '@polkadot/types-codec': 10.13.1 - '@polkadot/types-create': 10.13.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - rxjs: 7.8.1 - tslib: 2.8.1 - - '@polkadot/types@14.3.1': - dependencies: - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types-augment': 14.3.1 - '@polkadot/types-codec': 14.3.1 - '@polkadot/types-create': 14.3.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - rxjs: 7.8.1 - tslib: 2.8.1 - - '@polkadot/types@15.0.1': - dependencies: - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types-augment': 15.0.1 - '@polkadot/types-codec': 15.0.1 - '@polkadot/types-create': 15.0.1 - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - rxjs: 7.8.1 - tslib: 2.8.1 - - '@polkadot/types@4.17.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/metadata': 4.17.1 - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1(@polkadot/util@6.11.1) - '@polkadot/x-rxjs': 6.11.1 - - '@polkadot/types@6.12.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/types-known': 6.12.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1(@polkadot/util@8.7.1) - rxjs: 7.8.1 - - '@polkadot/types@7.15.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@8.7.1(@polkadot/util@8.7.1))(@polkadot/util@8.7.1) - '@polkadot/types-augment': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/types-create': 7.15.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1(@polkadot/util@8.7.1) - rxjs: 7.8.1 - - '@polkadot/types@9.14.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/keyring': 10.4.2(@polkadot/util-crypto@10.4.2(@polkadot/util@10.4.2))(@polkadot/util@10.4.2) - '@polkadot/types-augment': 9.14.2 - '@polkadot/types-codec': 9.14.2 - '@polkadot/types-create': 9.14.2 - '@polkadot/util': 10.4.2 - '@polkadot/util-crypto': 10.4.2(@polkadot/util@10.4.2) - rxjs: 7.8.1 - - '@polkadot/ui-settings@3.11.3(@polkadot/networks@13.2.3)(@polkadot/util@13.2.3)': - dependencies: - '@polkadot/networks': 13.2.3 - '@polkadot/util': 13.2.3 - eventemitter3: 5.0.1 - store: 2.0.12 - tslib: 2.8.1 - - '@polkadot/ui-shared@3.11.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)': - dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) - colord: 2.9.3 - tslib: 2.8.1 - - '@polkadot/util-crypto@10.4.2(@polkadot/util@10.4.2)': - dependencies: - '@babel/runtime': 7.26.0 - '@noble/hashes': 1.2.0 - '@noble/secp256k1': 1.7.1 - '@polkadot/networks': 10.4.2 - '@polkadot/util': 10.4.2 - '@polkadot/wasm-crypto': 6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2) - '@polkadot/x-bigint': 10.4.2 - '@polkadot/x-randomvalues': 10.4.2 - '@scure/base': 1.1.1 - ed2curve: 0.3.0 - tweetnacl: 1.0.3 - - '@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2)': - dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 - '@polkadot/networks': 12.6.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@13.2.3))) - '@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.4.1(@polkadot/util@13.2.3)) - '@scure/base': 1.2.1 - tslib: 2.8.1 - - '@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3)': - dependencies: - '@noble/curves': 1.6.0 - '@noble/hashes': 1.5.0 - '@polkadot/networks': 13.2.3 - '@polkadot/util': 13.2.3 - '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/x-bigint': 13.2.3 - '@polkadot/x-randomvalues': 13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) - '@scure/base': 1.1.9 - tslib: 2.8.1 - - '@polkadot/util-crypto@6.11.1(@polkadot/util@6.11.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/networks': 6.11.1 - '@polkadot/util': 6.11.1 - '@polkadot/wasm-crypto': 4.6.1(@polkadot/util@6.11.1)(@polkadot/x-randomvalues@6.11.1) - '@polkadot/x-randomvalues': 6.11.1 - base-x: 3.0.10 - base64-js: 1.5.1 - blakejs: 1.2.1 - bn.js: 4.12.1 - create-hash: 1.2.0 - elliptic: 6.6.1 - hash.js: 1.1.7 - js-sha3: 0.8.0 - scryptsy: 2.1.0 - tweetnacl: 1.0.3 - xxhashjs: 0.2.2 - - '@polkadot/util-crypto@8.7.1(@polkadot/util@8.7.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@noble/hashes': 1.0.0 - '@noble/secp256k1': 1.5.5 - '@polkadot/networks': 8.7.1 - '@polkadot/util': 8.7.1 - '@polkadot/wasm-crypto': 5.1.1(@polkadot/util@8.7.1)(@polkadot/x-randomvalues@8.7.1) - '@polkadot/x-bigint': 8.7.1 - '@polkadot/x-randomvalues': 8.7.1 - '@scure/base': 1.0.0 - ed2curve: 0.3.0 - tweetnacl: 1.0.3 - - '@polkadot/util@10.4.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-bigint': 10.4.2 - '@polkadot/x-global': 10.4.2 - '@polkadot/x-textdecoder': 10.4.2 - '@polkadot/x-textencoder': 10.4.2 - '@types/bn.js': 5.1.6 - bn.js: 5.2.1 - - '@polkadot/util@12.6.2': - dependencies: - '@polkadot/x-bigint': 12.6.2 - '@polkadot/x-global': 12.6.2 - '@polkadot/x-textdecoder': 12.6.2 - '@polkadot/x-textencoder': 12.6.2 - '@types/bn.js': 5.1.6 - bn.js: 5.2.1 - tslib: 2.8.1 - - '@polkadot/util@13.2.3': - dependencies: - '@polkadot/x-bigint': 13.2.3 - '@polkadot/x-global': 13.2.3 - '@polkadot/x-textdecoder': 13.2.3 - '@polkadot/x-textencoder': 13.2.3 - '@types/bn.js': 5.1.6 - bn.js: 5.2.1 - tslib: 2.8.1 - - '@polkadot/util@6.11.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-textdecoder': 6.11.1 - '@polkadot/x-textencoder': 6.11.1 - '@types/bn.js': 4.11.6 - bn.js: 4.12.1 - camelcase: 5.3.1 - ip-regex: 4.3.0 - - '@polkadot/util@8.7.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-bigint': 8.7.1 - '@polkadot/x-global': 8.7.1 - '@polkadot/x-textdecoder': 8.7.1 - '@polkadot/x-textencoder': 8.7.1 - '@types/bn.js': 5.1.6 - bn.js: 5.2.1 - ip-regex: 4.3.0 - - '@polkadot/wasm-bridge@6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - '@polkadot/x-randomvalues': 10.4.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@13.2.3)))': - dependencies: - '@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@13.2.3)) - tslib: 2.8.1 - - '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': - dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/x-randomvalues': 13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) - tslib: 2.8.1 - - '@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@6.11.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 6.11.1 - - '@polkadot/wasm-crypto-asmjs@5.1.1(@polkadot/util@8.7.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 8.7.1 - - '@polkadot/wasm-crypto-asmjs@6.4.1(@polkadot/util@10.4.2)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - - '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@12.6.2)': - dependencies: - '@polkadot/util': 12.6.2 - tslib: 2.8.1 - - '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.2.3)': - dependencies: - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/wasm-crypto-init@6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - '@polkadot/wasm-bridge': 6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2) - '@polkadot/wasm-crypto-asmjs': 6.4.1(@polkadot/util@10.4.2) - '@polkadot/wasm-crypto-wasm': 6.4.1(@polkadot/util@10.4.2) - '@polkadot/x-randomvalues': 10.4.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@13.2.3)))': - dependencies: - '@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@13.2.3))) - '@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@13.2.3)) - tslib: 2.8.1 - - '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': - dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))) - '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/x-randomvalues': 13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) - tslib: 2.8.1 - - '@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@6.11.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 6.11.1 - - '@polkadot/wasm-crypto-wasm@5.1.1(@polkadot/util@8.7.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 8.7.1 - - '@polkadot/wasm-crypto-wasm@6.4.1(@polkadot/util@10.4.2)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - '@polkadot/wasm-util': 6.4.1(@polkadot/util@10.4.2) - - '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@12.6.2)': - dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@12.6.2) - tslib: 2.8.1 - - '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.2.3)': - dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - tslib: 2.8.1 - - '@polkadot/wasm-crypto@4.6.1(@polkadot/util@6.11.1)(@polkadot/x-randomvalues@6.11.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 6.11.1 - '@polkadot/wasm-crypto-asmjs': 4.6.1(@polkadot/util@6.11.1) - '@polkadot/wasm-crypto-wasm': 4.6.1(@polkadot/util@6.11.1) - '@polkadot/x-randomvalues': 6.11.1 - - '@polkadot/wasm-crypto@5.1.1(@polkadot/util@8.7.1)(@polkadot/x-randomvalues@8.7.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 8.7.1 - '@polkadot/wasm-crypto-asmjs': 5.1.1(@polkadot/util@8.7.1) - '@polkadot/wasm-crypto-wasm': 5.1.1(@polkadot/util@8.7.1) - '@polkadot/x-randomvalues': 8.7.1 - - '@polkadot/wasm-crypto@6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - '@polkadot/wasm-bridge': 6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2) - '@polkadot/wasm-crypto-asmjs': 6.4.1(@polkadot/util@10.4.2) - '@polkadot/wasm-crypto-init': 6.4.1(@polkadot/util@10.4.2)(@polkadot/x-randomvalues@10.4.2) - '@polkadot/wasm-crypto-wasm': 6.4.1(@polkadot/util@10.4.2) - '@polkadot/wasm-util': 6.4.1(@polkadot/util@10.4.2) - '@polkadot/x-randomvalues': 10.4.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@13.2.3)))': - dependencies: - '@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@13.2.3))) - '@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@13.2.3))) - '@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@13.2.3)) - tslib: 2.8.1 - - '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)))': - dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))) - '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@13.2.3)(@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))) - '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/x-randomvalues': 13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)) - tslib: 2.8.1 - - '@polkadot/wasm-util@6.4.1(@polkadot/util@10.4.2)': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/util': 10.4.2 - - '@polkadot/wasm-util@7.4.1(@polkadot/util@12.6.2)': - dependencies: - '@polkadot/util': 12.6.2 - tslib: 2.8.1 - - '@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3)': - dependencies: - '@polkadot/util': 13.2.3 - tslib: 2.8.1 - - '@polkadot/x-bigint@10.4.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 10.4.2 - - '@polkadot/x-bigint@12.6.2': + '@polkadot/types-augment@14.3.1': dependencies: - '@polkadot/x-global': 12.6.2 + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/x-bigint@13.2.3': + '@polkadot/types-augment@15.0.1': dependencies: - '@polkadot/x-global': 13.2.3 + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/x-bigint@8.7.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 8.7.1 - - '@polkadot/x-fetch@10.4.2': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 10.4.2 - '@types/node-fetch': 2.6.12 - node-fetch: 3.3.2 - - '@polkadot/x-fetch@12.6.2': + '@polkadot/types-augment@15.4.1': dependencies: - '@polkadot/x-global': 12.6.2 - node-fetch: 3.3.2 + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/x-fetch@13.2.3': + '@polkadot/types-codec@15.4.1': dependencies: - '@polkadot/x-global': 13.2.3 - node-fetch: 3.3.2 + '@polkadot/util': 13.3.1 + '@polkadot/x-bigint': 13.3.1 tslib: 2.8.1 - '@polkadot/x-fetch@8.7.1(encoding@0.1.13)': + '@polkadot/types-create@14.3.1': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 8.7.1 - '@types/node-fetch': 2.6.12 - node-fetch: 2.7.0(encoding@0.1.13) - transitivePeerDependencies: - - encoding + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/x-global@10.4.2': + '@polkadot/types-create@15.0.1': dependencies: - '@babel/runtime': 7.26.0 + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/x-global@12.6.2': + '@polkadot/types-create@15.4.1': dependencies: + '@polkadot/types-codec': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/x-global@13.2.3': + '@polkadot/types-known@15.4.1': dependencies: + '@polkadot/networks': 13.3.1 + '@polkadot/types': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/types-create': 15.4.1 + '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/x-global@6.11.1': + '@polkadot/types-support@14.3.1': dependencies: - '@babel/runtime': 7.26.0 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/x-global@8.7.1': + '@polkadot/types-support@15.0.1': dependencies: - '@babel/runtime': 7.26.0 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/x-randomvalues@10.4.2': + '@polkadot/types-support@15.4.1': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 10.4.2 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))': + '@polkadot/types@15.4.1': dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/x-global': 12.6.2 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types-augment': 15.4.1 + '@polkadot/types-codec': 15.4.1 + '@polkadot/types-create': 15.4.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + rxjs: 7.8.1 tslib: 2.8.1 - '@polkadot/x-randomvalues@13.2.3(@polkadot/util@13.2.3)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.2.3))': + '@polkadot/ui-settings@3.12.1(@polkadot/networks@13.3.1)(@polkadot/util@13.3.1)': dependencies: - '@polkadot/util': 13.2.3 - '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.2.3) - '@polkadot/x-global': 13.2.3 + '@polkadot/networks': 13.3.1 + '@polkadot/util': 13.3.1 + eventemitter3: 5.0.1 + store: 2.0.12 tslib: 2.8.1 - '@polkadot/x-randomvalues@6.11.1': + '@polkadot/ui-shared@3.12.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 6.11.1 + '@polkadot/util': 13.3.1 + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + colord: 2.9.3 + tslib: 2.8.1 - '@polkadot/x-randomvalues@8.7.1': + '@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 8.7.1 + '@noble/curves': 1.7.0 + '@noble/hashes': 1.6.1 + '@polkadot/networks': 13.3.1 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-crypto': 7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-bigint': 13.3.1 + '@polkadot/x-randomvalues': 13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)) + '@scure/base': 1.2.1 + tslib: 2.8.1 - '@polkadot/x-rxjs@6.11.1': + '@polkadot/util@13.3.1': dependencies: - '@babel/runtime': 7.26.0 - rxjs: 6.6.7 + '@polkadot/x-bigint': 13.3.1 + '@polkadot/x-global': 13.3.1 + '@polkadot/x-textdecoder': 13.3.1 + '@polkadot/x-textencoder': 13.3.1 + '@types/bn.js': 5.1.6 + bn.js: 5.2.1 + tslib: 2.8.1 - '@polkadot/x-textdecoder@10.4.2': + '@polkadot/wasm-bridge@7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)))': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 10.4.2 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-randomvalues': 13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)) + tslib: 2.8.1 - '@polkadot/x-textdecoder@12.6.2': + '@polkadot/wasm-crypto-asmjs@7.4.1(@polkadot/util@13.3.1)': dependencies: - '@polkadot/x-global': 12.6.2 + '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/x-textdecoder@13.2.3': + '@polkadot/wasm-crypto-init@7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)))': dependencies: - '@polkadot/x-global': 13.2.3 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))) + '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-randomvalues': 13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)) tslib: 2.8.1 - '@polkadot/x-textdecoder@6.11.1': + '@polkadot/wasm-crypto-wasm@7.4.1(@polkadot/util@13.3.1)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 6.11.1 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + tslib: 2.8.1 - '@polkadot/x-textdecoder@8.7.1': + '@polkadot/wasm-crypto@7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)))': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 8.7.1 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-bridge': 7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))) + '@polkadot/wasm-crypto-asmjs': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/wasm-crypto-init': 7.4.1(@polkadot/util@13.3.1)(@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))) + '@polkadot/wasm-crypto-wasm': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-randomvalues': 13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)) + tslib: 2.8.1 - '@polkadot/x-textencoder@10.4.2': + '@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1)': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 10.4.2 + '@polkadot/util': 13.3.1 + tslib: 2.8.1 - '@polkadot/x-textencoder@12.6.2': + '@polkadot/x-bigint@13.3.1': dependencies: - '@polkadot/x-global': 12.6.2 + '@polkadot/x-global': 13.3.1 tslib: 2.8.1 - '@polkadot/x-textencoder@13.2.3': + '@polkadot/x-fetch@13.3.1': dependencies: - '@polkadot/x-global': 13.2.3 + '@polkadot/x-global': 13.3.1 + node-fetch: 3.3.2 tslib: 2.8.1 - '@polkadot/x-textencoder@6.11.1': + '@polkadot/x-global@13.3.1': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 6.11.1 + tslib: 2.8.1 - '@polkadot/x-textencoder@8.7.1': + '@polkadot/x-randomvalues@13.3.1(@polkadot/util@13.3.1)(@polkadot/wasm-util@7.4.1(@polkadot/util@13.3.1))': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 8.7.1 + '@polkadot/util': 13.3.1 + '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) + '@polkadot/x-global': 13.3.1 + tslib: 2.8.1 - '@polkadot/x-ws@10.4.2': + '@polkadot/x-textdecoder@13.3.1': dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 10.4.2 - '@types/websocket': 1.0.10 - websocket: 1.0.35 - transitivePeerDependencies: - - supports-color + '@polkadot/x-global': 13.3.1 + tslib: 2.8.1 - '@polkadot/x-ws@12.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/x-textencoder@13.3.1': dependencies: - '@polkadot/x-global': 12.6.2 + '@polkadot/x-global': 13.3.1 tslib: 2.8.1 - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - '@polkadot/x-ws@13.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/x-ws@13.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/x-global': 13.2.3 + '@polkadot/x-global': 13.3.1 tslib: 2.8.1 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - '@polkadot/x-ws@8.7.1': - dependencies: - '@babel/runtime': 7.26.0 - '@polkadot/x-global': 8.7.1 - '@types/websocket': 1.0.10 - websocket: 1.0.35 - transitivePeerDependencies: - - supports-color - '@polymeshassociation/polymesh-types@5.7.0': {} '@protobufjs/aspromise@1.1.2': {} @@ -9781,146 +8115,90 @@ snapshots: '@protobufjs/utf8@1.1.0': {} - '@rollup/rollup-android-arm-eabi@4.26.0': - optional: true - '@rollup/rollup-android-arm-eabi@4.28.1': optional: true - '@rollup/rollup-android-arm64@4.26.0': - optional: true - '@rollup/rollup-android-arm64@4.28.1': optional: true - '@rollup/rollup-darwin-arm64@4.26.0': - optional: true - '@rollup/rollup-darwin-arm64@4.28.1': optional: true - '@rollup/rollup-darwin-x64@4.26.0': - optional: true - '@rollup/rollup-darwin-x64@4.28.1': optional: true - '@rollup/rollup-freebsd-arm64@4.26.0': - optional: true - '@rollup/rollup-freebsd-arm64@4.28.1': optional: true - '@rollup/rollup-freebsd-x64@4.26.0': - optional: true - '@rollup/rollup-freebsd-x64@4.28.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.26.0': - optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.26.0': - optional: true - '@rollup/rollup-linux-arm-musleabihf@4.28.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.26.0': - optional: true - '@rollup/rollup-linux-arm64-gnu@4.28.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.26.0': - optional: true - '@rollup/rollup-linux-arm64-musl@4.28.1': optional: true '@rollup/rollup-linux-loongarch64-gnu@4.28.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.26.0': - optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.26.0': - optional: true - '@rollup/rollup-linux-riscv64-gnu@4.28.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.26.0': - optional: true - '@rollup/rollup-linux-s390x-gnu@4.28.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.26.0': - optional: true - '@rollup/rollup-linux-x64-gnu@4.28.1': optional: true - '@rollup/rollup-linux-x64-musl@4.26.0': - optional: true - '@rollup/rollup-linux-x64-musl@4.28.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.26.0': - optional: true - '@rollup/rollup-win32-arm64-msvc@4.28.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.26.0': - optional: true - '@rollup/rollup-win32-ia32-msvc@4.28.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.26.0': - optional: true - '@rollup/rollup-win32-x64-msvc@4.28.1': optional: true - '@scure/base@1.0.0': {} - - '@scure/base@1.1.1': {} - '@scure/base@1.1.9': {} '@scure/base@1.2.1': {} + '@scure/base@1.2.4': {} + '@scure/bip32@1.4.0': dependencies: '@noble/curves': 1.4.2 '@noble/hashes': 1.4.0 '@scure/base': 1.1.9 - '@scure/bip32@1.6.0': + '@scure/bip32@1.6.2': dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 - '@scure/base': 1.2.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/base': 1.2.4 '@scure/bip39@1.3.0': dependencies: '@noble/hashes': 1.4.0 '@scure/base': 1.1.9 - '@scure/bip39@1.5.0': + '@scure/bip39@1.5.4': dependencies: - '@noble/hashes': 1.6.1 - '@scure/base': 1.2.1 + '@noble/hashes': 1.7.1 + '@scure/base': 1.2.4 '@sec-ant/readable-stream@0.4.1': {} @@ -9928,16 +8206,17 @@ snapshots: '@sindresorhus/merge-streams@4.0.0': {} - '@snowfork/snowbridge-types@0.2.7(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(encoding@0.1.13)': + '@snowfork/snowbridge-types@0.2.7(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 7.15.1(encoding@0.1.13) - '@polkadot/keyring': 8.7.1(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 7.15.1 + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.4.1 transitivePeerDependencies: - '@polkadot/util' - '@polkadot/util-crypto' - - encoding + - bufferutil - supports-color + - utf-8-validate '@sora-substrate/type-definitions@1.27.7': dependencies: @@ -9947,42 +8226,19 @@ snapshots: '@subsocial/definitions@0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) lodash.camelcase: 4.3.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@substrate/connect-extension-protocol@1.0.1': {} - '@substrate/connect-extension-protocol@2.2.1': optional: true - '@substrate/connect-known-chains@1.7.0': - optional: true - '@substrate/connect-known-chains@1.8.0': optional: true - '@substrate/connect@0.7.0-alpha.0': - dependencies: - '@substrate/connect-extension-protocol': 1.0.1 - '@substrate/smoldot-light': 0.6.8 - eventemitter3: 4.0.7 - transitivePeerDependencies: - - supports-color - - '@substrate/connect@0.7.19(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@substrate/connect-extension-protocol': 1.0.1 - '@substrate/smoldot-light': 0.7.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - eventemitter3: 4.0.7 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - optional: true - '@substrate/connect@0.8.11(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@substrate/connect-extension-protocol': 2.2.1 @@ -9994,29 +8250,6 @@ snapshots: - utf-8-validate optional: true - '@substrate/connect@0.8.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@substrate/connect-extension-protocol': 2.2.1 - '@substrate/connect-known-chains': 1.7.0 - '@substrate/light-client-extension-helpers': 0.0.4(smoldot@2.0.22(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - smoldot: 2.0.22(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - optional: true - - '@substrate/light-client-extension-helpers@0.0.4(smoldot@2.0.22(bufferutil@4.0.8)(utf-8-validate@5.0.10))': - dependencies: - '@polkadot-api/client': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0(rxjs@7.8.1) - '@polkadot-api/json-rpc-provider': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/json-rpc-provider-proxy': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@polkadot-api/substrate-client': 0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0 - '@substrate/connect-extension-protocol': 2.2.1 - '@substrate/connect-known-chains': 1.7.0 - rxjs: 7.8.1 - smoldot: 2.0.22(bufferutil@4.0.8)(utf-8-validate@5.0.10) - optional: true - '@substrate/light-client-extension-helpers@1.0.0(smoldot@2.0.26(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: '@polkadot-api/json-rpc-provider': 0.0.1 @@ -10029,29 +8262,12 @@ snapshots: smoldot: 2.0.26(bufferutil@4.0.8)(utf-8-validate@5.0.10) optional: true - '@substrate/smoldot-light@0.6.8': - dependencies: - buffer: 6.0.3 - pako: 2.1.0 - websocket: 1.0.35 - transitivePeerDependencies: - - supports-color - - '@substrate/smoldot-light@0.7.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - pako: 2.1.0 - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - optional: true - '@substrate/ss58-registry@1.51.0': {} - '@substrate/txwrapper-core@7.5.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@substrate/txwrapper-core@7.5.3(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) memoizee: 0.4.17 transitivePeerDependencies: - '@polkadot/util' @@ -10060,9 +8276,9 @@ snapshots: - supports-color - utf-8-validate - '@substrate/txwrapper-substrate@7.5.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@substrate/txwrapper-substrate@7.5.3(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@substrate/txwrapper-core': 7.5.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@substrate/txwrapper-core': 7.5.3(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@polkadot/util' - '@polkadot/util-crypto' @@ -10093,10 +8309,6 @@ snapshots: '@types/aws-lambda@8.10.145': {} - '@types/bn.js@4.11.6': - dependencies: - '@types/node': 22.10.1 - '@types/bn.js@5.1.6': dependencies: '@types/node': 22.10.1 @@ -10138,11 +8350,6 @@ snapshots: '@types/ms@0.7.34': {} - '@types/node-fetch@2.6.12': - dependencies: - '@types/node': 22.10.1 - form-data: 4.0.1 - '@types/node@12.20.55': {} '@types/node@22.10.1': @@ -10184,10 +8391,6 @@ snapshots: '@types/uuid@9.0.8': {} - '@types/websocket@1.0.10': - dependencies: - '@types/node': 22.10.1 - '@types/ws@8.5.3': dependencies: '@types/node': 22.10.1 @@ -10198,25 +8401,25 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@unique-nft/opal-testnet-types@1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1)': + '@unique-nft/opal-testnet-types@1003.70.0(@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@15.4.1)': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 - '@unique-nft/quartz-mainnet-types@1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1)': + '@unique-nft/quartz-mainnet-types@1003.70.0(@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@15.4.1)': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 - '@unique-nft/sapphire-mainnet-types@1003.70.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1)': + '@unique-nft/sapphire-mainnet-types@1003.70.0(@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@15.4.1)': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 - '@unique-nft/unique-mainnet-types@1001.63.0(@polkadot/api@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@14.3.1)': + '@unique-nft/unique-mainnet-types@1001.63.0(@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@polkadot/types@15.4.1)': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 14.3.1 + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/types': 15.4.1 '@vitest/expect@2.1.8': dependencies: @@ -10273,11 +8476,11 @@ snapshots: '@zeroio/type-definitions@0.0.14': {} - '@zombienet/orchestrator@0.0.97(@polkadot/util@13.2.3)(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(utf-8-validate@5.0.10)': + '@zombienet/orchestrator@0.0.97(@polkadot/util@13.3.1)(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/keyring': 13.2.3(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/util-crypto': 13.2.3(@polkadot/util@13.2.3) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) '@zombienet/utils': 0.0.25(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.3.3) JSONStream: 1.3.5 chai: 4.5.0 @@ -10288,7 +8491,7 @@ snapshots: json-bigint: 1.0.0 libp2p-crypto: 0.21.2 minimatch: 9.0.5 - mocha: 10.7.3 + mocha: 10.8.2 napi-maybe-compressed-blob: 0.0.11 peer-id: 0.16.0 tmp-promise: 3.0.3 @@ -10305,11 +8508,43 @@ snapshots: - supports-color - utf-8-validate + '@zombienet/orchestrator@0.0.98(@polkadot/util@13.3.1)(@types/node@22.10.1)(bufferutil@4.0.8)(chokidar@3.6.0)(utf-8-validate@5.0.10)': + dependencies: + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) + '@zombienet/utils': 0.0.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) + JSONStream: 1.3.5 + chai: 4.5.0 + debug: 4.4.0(supports-color@8.1.1) + execa: 5.1.1 + fs-extra: 11.2.0 + jsdom: 23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + json-bigint: 1.0.0 + libp2p-crypto: 0.21.2 + minimatch: 9.0.5 + mocha: 10.8.2 + napi-maybe-compressed-blob: 0.0.11 + peer-id: 0.16.0 + tmp-promise: 3.0.3 + typescript: 5.7.2 + yaml: 2.6.1 + transitivePeerDependencies: + - '@polkadot/util' + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - bufferutil + - canvas + - chokidar + - supports-color + - utf-8-validate + '@zombienet/utils@0.0.25(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.3.3)': dependencies: cli-table3: 0.6.5 debug: 4.4.0(supports-color@8.1.1) - mocha: 10.7.3 + mocha: 10.8.2 nunjucks: 3.2.4(chokidar@3.6.0) toml: 3.0.0 ts-node: 10.9.2(@types/node@22.10.1)(typescript@5.3.3) @@ -10321,11 +8556,11 @@ snapshots: - supports-color - typescript - '@zombienet/utils@0.0.25(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2)': + '@zombienet/utils@0.0.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2)': dependencies: cli-table3: 0.6.5 debug: 4.4.0(supports-color@8.1.1) - mocha: 10.7.3 + mocha: 10.8.2 nunjucks: 3.2.4(chokidar@3.6.0) toml: 3.0.0 ts-node: 10.9.2(@types/node@22.10.1)(typescript@5.7.2) @@ -10347,20 +8582,16 @@ snapshots: abbrev@1.1.1: optional: true - abitype@0.7.1(typescript@5.7.2)(zod@3.24.0): + abitype@0.7.1(typescript@5.7.2)(zod@3.24.1): dependencies: typescript: 5.7.2 optionalDependencies: - zod: 3.24.0 + zod: 3.24.1 - abitype@1.0.7(typescript@5.7.2)(zod@3.24.0): + abitype@1.0.8(typescript@5.7.2)(zod@3.24.1): optionalDependencies: typescript: 5.7.2 - zod: 3.24.0 - - abort-controller@3.0.0: - dependencies: - event-target-shim: 5.0.1 + zod: 3.24.1 abortcontroller-polyfill@1.7.5: {} @@ -10389,8 +8620,6 @@ snapshots: dependencies: acorn: 8.14.0 - acorn@8.12.1: {} - acorn@8.14.0: {} aes-js@4.0.0-beta.5: {} @@ -10408,7 +8637,7 @@ snapshots: transitivePeerDependencies: - supports-color - agentkeepalive@4.5.0: + agentkeepalive@4.6.0: dependencies: humanize-ms: 1.2.1 optional: true @@ -10498,7 +8727,7 @@ snapshots: aws4@1.13.2: {} - axios@1.7.7(debug@4.3.7): + axios@1.7.9(debug@4.3.7): dependencies: follow-redirects: 1.15.9(debug@4.3.7) form-data: 4.0.1 @@ -10506,7 +8735,7 @@ snapshots: transitivePeerDependencies: - debug - axios@1.7.7(debug@4.4.0): + axios@1.7.9(debug@4.4.0): dependencies: follow-redirects: 1.15.9(debug@4.4.0) form-data: 4.0.1 @@ -10703,8 +8932,6 @@ snapshots: get-intrinsic: 1.2.5 set-function-length: 1.2.2 - camelcase@5.3.1: {} - camelcase@6.3.0: {} camelize@1.0.1: {} @@ -10991,8 +9218,6 @@ snapshots: csstype@3.1.3: {} - cuint@0.2.2: {} - d@1.0.2: dependencies: es5-ext: 0.10.64 @@ -11105,6 +9330,8 @@ snapshots: dotenv@16.4.5: {} + dotenv@16.4.7: {} + dunder-proto@1.0.0: dependencies: call-bind-apply-helpers: 1.0.1 @@ -11118,10 +9345,6 @@ snapshots: jsbn: 0.1.1 safer-buffer: 2.1.2 - ed2curve@0.3.0: - dependencies: - tweetnacl: 1.0.3 - ee-first@1.1.1: {} elliptic@6.5.4: @@ -11144,16 +9367,6 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - elliptic@6.6.1: - dependencies: - bn.js: 4.12.1 - brorand: 1.1.0 - hash.js: 1.1.7 - hmac-drbg: 1.0.1 - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 - emoji-regex@10.4.0: {} emoji-regex@8.0.0: {} @@ -11446,12 +9659,8 @@ snapshots: d: 1.0.2 es5-ext: 0.10.64 - event-target-shim@5.0.1: {} - eventemitter3@4.0.4: {} - eventemitter3@4.0.7: {} - eventemitter3@5.0.1: {} events@3.3.0: {} @@ -11785,7 +9994,7 @@ snapshots: globalthis@1.0.4: dependencies: define-properties: 1.2.1 - gopd: 1.0.1 + gopd: 1.2.0 gopd@1.0.1: dependencies: @@ -11975,7 +10184,7 @@ snapshots: dependencies: safer-buffer: 2.1.2 - idb@8.0.0: {} + idb@8.0.1: {} idna-uts46-hx@2.3.1: dependencies: @@ -12058,8 +10267,6 @@ snapshots: sprintf-js: 1.1.3 optional: true - ip-regex@4.3.0: {} - ipaddr.js@1.9.1: {} is-accessor-descriptor@1.0.1: @@ -12408,7 +10615,7 @@ snapshots: make-fetch-happen@9.1.0: dependencies: - agentkeepalive: 4.5.0 + agentkeepalive: 4.6.0 cacache: 15.3.0 http-cache-semantics: 4.1.1 http-proxy-agent: 4.0.1 @@ -12754,7 +10961,7 @@ snapshots: mkdirp@3.0.1: {} - mocha@10.7.3: + mocha@10.8.2: dependencies: ansi-colors: 4.1.3 browser-stdout: 1.3.1 @@ -12783,7 +10990,7 @@ snapshots: moonbeam-types-bundle@2.0.10(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: - '@polkadot/api': 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) typescript: 4.9.5 transitivePeerDependencies: - bufferutil @@ -12835,11 +11042,9 @@ snapshots: nano-json-stream-parser@0.1.2: {} - nanoid@3.3.7: {} - nanoid@3.3.8: {} - napi-build-utils@1.0.2: {} + napi-build-utils@2.0.0: {} napi-maybe-compressed-blob-darwin-arm64@0.0.11: optional: true @@ -12877,7 +11082,7 @@ snapshots: transitivePeerDependencies: - supports-color - node-abi@3.71.0: + node-abi@3.73.0: dependencies: semver: 7.6.3 @@ -13024,14 +11229,14 @@ snapshots: os-tmpdir@1.0.2: {} - ox@0.1.2(typescript@5.7.2)(zod@3.24.0): + ox@0.6.7(typescript@5.7.2)(zod@3.24.1): dependencies: '@adraffy/ens-normalize': 1.11.0 - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 - '@scure/bip32': 1.6.0 - '@scure/bip39': 1.5.0 - abitype: 1.0.7(typescript@5.7.2)(zod@3.24.0) + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.7.2)(zod@3.24.1) eventemitter3: 5.0.1 optionalDependencies: typescript: 5.7.2 @@ -13057,8 +11262,6 @@ snapshots: package-json-from-dist@1.0.1: {} - pako@2.1.0: {} - parse-headers@2.0.5: {} parse-json@8.1.0: @@ -13135,7 +11338,7 @@ snapshots: dependencies: split2: 4.2.0 - pino-pretty@11.3.0: + pino-pretty@13.0.0: dependencies: colorette: 2.0.20 dateformat: 4.6.3 @@ -13147,21 +11350,20 @@ snapshots: on-exit-leak-free: 2.1.2 pino-abstract-transport: 2.0.0 pump: 3.0.2 - readable-stream: 4.5.2 secure-json-parse: 2.7.0 sonic-boom: 4.2.0 strip-json-comments: 3.1.1 pino-std-serializers@7.0.0: {} - pino@9.5.0: + pino@9.6.0: dependencies: atomic-sleep: 1.0.0 fast-redact: 3.5.0 on-exit-leak-free: 2.1.2 pino-abstract-transport: 2.0.0 pino-std-serializers: 7.0.0 - process-warning: 4.0.0 + process-warning: 4.0.1 quick-format-unescaped: 4.0.4 real-require: 0.2.0 safe-stable-stringify: 2.5.0 @@ -13236,10 +11438,10 @@ snapshots: - utf-8-validate - yaml - pontem-types-bundle@1.0.15(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3): + pontem-types-bundle@1.0.15(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1): dependencies: - '@polkadot/keyring': 7.9.2(@polkadot/util-crypto@13.2.3(@polkadot/util@13.2.3))(@polkadot/util@13.2.3) - '@polkadot/types': 6.12.1 + '@polkadot/keyring': 13.3.1(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1) + '@polkadot/types': 15.4.1 typescript: 4.9.5 transitivePeerDependencies: - '@polkadot/util' @@ -13267,7 +11469,7 @@ snapshots: postcss@8.4.38: dependencies: - nanoid: 3.3.7 + nanoid: 3.3.8 picocolors: 1.1.1 source-map-js: 1.2.1 @@ -13277,19 +11479,19 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - prebuild-install@7.1.2: + prebuild-install@7.1.3: dependencies: detect-libc: 2.0.3 expand-template: 2.0.3 github-from-package: 0.0.0 minimist: 1.2.8 mkdirp-classic: 0.5.3 - napi-build-utils: 1.0.2 - node-abi: 3.71.0 + napi-build-utils: 2.0.0 + node-abi: 3.73.0 pump: 3.0.2 rc: 1.2.8 simple-get: 4.0.1 - tar-fs: 2.1.1 + tar-fs: 2.1.2 tunnel-agent: 0.6.0 prettier-plugin-jsdoc@0.3.38(prettier@2.8.8): @@ -13307,7 +11509,7 @@ snapshots: dependencies: parse-ms: 4.0.0 - process-warning@4.0.0: {} + process-warning@4.0.1: {} process@0.11.10: {} @@ -13451,14 +11653,6 @@ snapshots: string_decoder: 1.3.0 util-deprecate: 1.0.2 - readable-stream@4.5.2: - dependencies: - abort-controller: 3.0.0 - buffer: 6.0.3 - events: 3.3.0 - process: 0.11.10 - string_decoder: 1.3.0 - readdirp@3.6.0: dependencies: picomatch: 2.3.1 @@ -13548,30 +11742,6 @@ snapshots: semver-compare: 1.0.0 sprintf-js: 1.1.3 - rollup@4.26.0: - dependencies: - '@types/estree': 1.0.6 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.26.0 - '@rollup/rollup-android-arm64': 4.26.0 - '@rollup/rollup-darwin-arm64': 4.26.0 - '@rollup/rollup-darwin-x64': 4.26.0 - '@rollup/rollup-freebsd-arm64': 4.26.0 - '@rollup/rollup-freebsd-x64': 4.26.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.26.0 - '@rollup/rollup-linux-arm-musleabihf': 4.26.0 - '@rollup/rollup-linux-arm64-gnu': 4.26.0 - '@rollup/rollup-linux-arm64-musl': 4.26.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.26.0 - '@rollup/rollup-linux-riscv64-gnu': 4.26.0 - '@rollup/rollup-linux-s390x-gnu': 4.26.0 - '@rollup/rollup-linux-x64-gnu': 4.26.0 - '@rollup/rollup-linux-x64-musl': 4.26.0 - '@rollup/rollup-win32-arm64-msvc': 4.26.0 - '@rollup/rollup-win32-ia32-msvc': 4.26.0 - '@rollup/rollup-win32-x64-msvc': 4.26.0 - fsevents: 2.3.3 - rollup@4.28.1: dependencies: '@types/estree': 1.0.6 @@ -13603,10 +11773,6 @@ snapshots: run-async@3.0.0: {} - rxjs@6.6.7: - dependencies: - tslib: 1.14.1 - rxjs@7.8.1: dependencies: tslib: 2.8.1 @@ -13635,8 +11801,6 @@ snapshots: scrypt-js@3.0.1: {} - scryptsy@2.1.0: {} - secp256k1@4.0.3: dependencies: elliptic: 6.5.7 @@ -13775,14 +11939,6 @@ snapshots: smart-buffer@4.2.0: optional: true - smoldot@2.0.22(bufferutil@4.0.8)(utf-8-validate@5.0.10): - dependencies: - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - optional: true - smoldot@2.0.26(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -13863,7 +12019,7 @@ snapshots: dependencies: bindings: 1.5.0 node-addon-api: 7.1.1 - prebuild-install: 7.1.2 + prebuild-install: 7.1.3 tar: 6.2.1 optionalDependencies: node-gyp: 8.4.1 @@ -13946,7 +12102,7 @@ snapshots: strip-json-comments@3.1.1: {} - styled-components@6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@emotion/is-prop-valid': 1.2.2 '@emotion/unitless': 0.8.1 @@ -14000,7 +12156,7 @@ snapshots: symbol-tree@3.2.4: {} - tar-fs@2.1.1: + tar-fs@2.1.2: dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 @@ -14130,7 +12286,7 @@ snapshots: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 22.10.1 - acorn: 8.12.1 + acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 @@ -14148,7 +12304,7 @@ snapshots: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 22.10.1 - acorn: 8.12.1 + acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 @@ -14162,8 +12318,6 @@ snapshots: dependencies: typescript: 5.7.2 - tslib@1.14.1: {} - tslib@2.6.2: {} tslib@2.7.0: {} @@ -14182,7 +12336,7 @@ snapshots: picocolors: 1.1.1 postcss-load-config: 6.0.1(postcss@8.4.49)(tsx@4.19.2)(yaml@2.4.5) resolve-from: 5.0.0 - rollup: 4.26.0 + rollup: 4.28.1 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tinyexec: 0.3.1 @@ -14209,7 +12363,7 @@ snapshots: picocolors: 1.1.1 postcss-load-config: 6.0.1(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1) resolve-from: 5.0.0 - rollup: 4.26.0 + rollup: 4.28.1 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tinyexec: 0.3.1 @@ -14237,8 +12391,6 @@ snapshots: tweetnacl@0.14.5: {} - tweetnacl@1.0.3: {} - type-detect@4.1.0: {} type-fest@0.13.1: {} @@ -14269,7 +12421,7 @@ snapshots: cli-highlight: 2.1.11 dayjs: 1.11.13 debug: 4.4.0(supports-color@8.1.1) - dotenv: 16.4.5 + dotenv: 16.4.7 glob: 10.4.5 mkdirp: 2.1.6 reflect-metadata: 0.2.2 @@ -14389,16 +12541,15 @@ snapshots: core-util-is: 1.0.2 extsprintf: 1.3.0 - viem@2.21.54(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0): + viem@2.22.13(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1): dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 - '@scure/bip32': 1.6.0 - '@scure/bip39': 1.5.0 - abitype: 1.0.7(typescript@5.7.2)(zod@3.24.0) + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.7.2)(zod@3.24.1) isows: 1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - ox: 0.1.2(typescript@5.7.2)(zod@3.24.0) - webauthn-p256: 0.0.10 + ox: 0.6.7(typescript@5.7.2)(zod@3.24.1) ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) optionalDependencies: typescript: 5.7.2 @@ -14563,9 +12714,9 @@ snapshots: '@ethersproject/abi': 5.7.0 web3-utils: 1.10.4 - web3-eth-abi@4.4.1(typescript@5.7.2)(zod@3.24.0): + web3-eth-abi@4.4.1(typescript@5.7.2)(zod@3.24.1): dependencies: - abitype: 0.7.1(typescript@5.7.2)(zod@3.24.0) + abitype: 0.7.1(typescript@5.7.2)(zod@3.24.1) web3-errors: 1.3.1 web3-types: 1.10.0 web3-utils: 4.3.3 @@ -14614,13 +12765,13 @@ snapshots: - encoding - supports-color - web3-eth-contract@4.7.2(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0): + web3-eth-contract@4.7.2(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1): dependencies: '@ethereumjs/rlp': 5.0.2 web3-core: 4.7.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-errors: 1.3.1 - web3-eth: 4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) - web3-eth-abi: 4.4.1(typescript@5.7.2)(zod@3.24.0) + web3-eth: 4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-eth-abi: 4.4.1(typescript@5.7.2)(zod@3.24.1) web3-types: 1.10.0 web3-utils: 4.3.3 web3-validator: 2.0.6 @@ -14645,13 +12796,13 @@ snapshots: - encoding - supports-color - web3-eth-ens@4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0): + web3-eth-ens@4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1): dependencies: '@adraffy/ens-normalize': 1.11.0 web3-core: 4.7.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-errors: 1.3.1 - web3-eth: 4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) - web3-eth-contract: 4.7.2(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3-eth: 4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-eth-contract: 4.7.2(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) web3-net: 4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 @@ -14687,10 +12838,10 @@ snapshots: - encoding - supports-color - web3-eth-personal@4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0): + web3-eth-personal@4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1): dependencies: web3-core: 4.7.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - web3-eth: 4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3-eth: 4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) web3-rpc-methods: 1.3.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 @@ -14720,12 +12871,12 @@ snapshots: - encoding - supports-color - web3-eth@4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0): + web3-eth@4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1): dependencies: setimmediate: 1.0.5 web3-core: 4.7.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-errors: 1.3.1 - web3-eth-abi: 4.4.1(typescript@5.7.2)(zod@3.24.0) + web3-eth-abi: 4.4.1(typescript@5.7.2)(zod@3.24.1) web3-eth-accounts: 4.3.1 web3-net: 4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-providers-ws: 4.0.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -14880,7 +13031,7 @@ snapshots: util: 0.12.5 web3-errors: 1.3.1 web3-types: 1.10.0 - zod: 3.24.0 + zod: 3.24.1 web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: @@ -14897,17 +13048,17 @@ snapshots: - supports-color - utf-8-validate - web3@4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0): + web3@4.16.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1): dependencies: web3-core: 4.7.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-errors: 1.3.1 - web3-eth: 4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) - web3-eth-abi: 4.4.1(typescript@5.7.2)(zod@3.24.0) + web3-eth: 4.11.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-eth-abi: 4.4.1(typescript@5.7.2)(zod@3.24.1) web3-eth-accounts: 4.3.1 - web3-eth-contract: 4.7.2(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) - web3-eth-ens: 4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3-eth-contract: 4.7.2(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-eth-ens: 4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) web3-eth-iban: 4.0.7 - web3-eth-personal: 4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.0) + web3-eth-personal: 4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1) web3-net: 4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-providers-http: 4.2.0(encoding@0.1.13) web3-providers-ws: 4.0.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -14923,11 +13074,6 @@ snapshots: - utf-8-validate - zod - webauthn-p256@0.0.10: - dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 - webidl-conversions@3.0.1: {} webidl-conversions@4.0.2: {} @@ -15094,10 +13240,6 @@ snapshots: xtend@4.0.2: {} - xxhashjs@0.2.2: - dependencies: - cuint: 0.2.2 - y18n@5.0.8: {} yaeti@0.0.6: {} @@ -15151,6 +13293,4 @@ snapshots: yoga-wasm-web@0.3.3: {} - zod@3.23.8: {} - - zod@3.24.0: {} + zod@3.24.1: {} diff --git a/test/package.json b/test/package.json index cc0af4f82a..beb617ad1e 100644 --- a/test/package.json +++ b/test/package.json @@ -21,7 +21,7 @@ "author": "", "license": "ISC", "dependencies": { - "@acala-network/chopsticks": "1.0.1", + "@acala-network/chopsticks": "1.0.2", "@biomejs/biome": "*", "@moonbeam-network/api-augment": "workspace:*", "@moonwall/cli": "5.9.1", @@ -31,7 +31,7 @@ "@polkadot/api": "*", "@polkadot/api-augment": "*", "@polkadot/api-derive": "*", - "@polkadot/apps-config": "0.146.1", + "@polkadot/apps-config": "0.148.1", "@polkadot/keyring": "*", "@polkadot/rpc-provider": "*", "@polkadot/types": "*", @@ -41,7 +41,8 @@ "@substrate/txwrapper-core": "7.5.3", "@substrate/txwrapper-substrate": "7.5.3", "@vitest/ui": "2.1.8", - "@zombienet/utils": "0.0.25", + "@zombienet/orchestrator": "0.0.98", + "@zombienet/utils": "0.0.26", "chalk": "5.3.0", "eth-object": "github:aurora-is-near/eth-object#master", "ethers": "*", @@ -55,7 +56,7 @@ "semver": "7.6.3", "solc": "0.8.25", "tsx": "*", - "viem": "2.21.54", + "viem": "2.22.13", "vitest": "2.1.8", "web3": "4.16.0", "yaml": "2.6.1" diff --git a/typescript-api/package.json b/typescript-api/package.json index b0cf73c8b8..ca74e15d72 100644 --- a/typescript-api/package.json +++ b/typescript-api/package.json @@ -1,6 +1,6 @@ { "name": "@moonbeam-network/api-augment", - "version": "0.3400.0", + "version": "0.3401.0", "type": "module", "description": "Moonbeam types augment for @polkadot/api", "author": "Moonsong Labs", diff --git a/typescript-api/src/moonbase/interfaces/augment-types.ts b/typescript-api/src/moonbase/interfaces/augment-types.ts index 69009fb9c5..924218160d 100644 --- a/typescript-api/src/moonbase/interfaces/augment-types.ts +++ b/typescript-api/src/moonbase/interfaces/augment-types.ts @@ -1004,6 +1004,7 @@ import type { ElectionCompute, ElectionPhase, ElectionResult, + ElectionResultToSpec10, ElectionScore, ElectionSize, ElectionStatus, @@ -1648,6 +1649,7 @@ declare module "@polkadot/types/types/registry" { ElectionCompute: ElectionCompute; ElectionPhase: ElectionPhase; ElectionResult: ElectionResult; + ElectionResultToSpec10: ElectionResultToSpec10; ElectionScore: ElectionScore; ElectionSize: ElectionSize; ElectionStatus: ElectionStatus; diff --git a/typescript-api/src/moonbeam/interfaces/augment-types.ts b/typescript-api/src/moonbeam/interfaces/augment-types.ts index 69009fb9c5..924218160d 100644 --- a/typescript-api/src/moonbeam/interfaces/augment-types.ts +++ b/typescript-api/src/moonbeam/interfaces/augment-types.ts @@ -1004,6 +1004,7 @@ import type { ElectionCompute, ElectionPhase, ElectionResult, + ElectionResultToSpec10, ElectionScore, ElectionSize, ElectionStatus, @@ -1648,6 +1649,7 @@ declare module "@polkadot/types/types/registry" { ElectionCompute: ElectionCompute; ElectionPhase: ElectionPhase; ElectionResult: ElectionResult; + ElectionResultToSpec10: ElectionResultToSpec10; ElectionScore: ElectionScore; ElectionSize: ElectionSize; ElectionStatus: ElectionStatus; diff --git a/typescript-api/src/moonriver/interfaces/augment-types.ts b/typescript-api/src/moonriver/interfaces/augment-types.ts index 69009fb9c5..924218160d 100644 --- a/typescript-api/src/moonriver/interfaces/augment-types.ts +++ b/typescript-api/src/moonriver/interfaces/augment-types.ts @@ -1004,6 +1004,7 @@ import type { ElectionCompute, ElectionPhase, ElectionResult, + ElectionResultToSpec10, ElectionScore, ElectionSize, ElectionStatus, @@ -1648,6 +1649,7 @@ declare module "@polkadot/types/types/registry" { ElectionCompute: ElectionCompute; ElectionPhase: ElectionPhase; ElectionResult: ElectionResult; + ElectionResultToSpec10: ElectionResultToSpec10; ElectionScore: ElectionScore; ElectionSize: ElectionSize; ElectionStatus: ElectionStatus;