From cb909907680532a9e18947bb0b04e0b9eef86272 Mon Sep 17 00:00:00 2001 From: Tim B <79199034+timbrinded@users.noreply.github.com> Date: Thu, 30 Jan 2025 09:19:31 +0000 Subject: [PATCH] refactor: :package: Update moonbeam-types-bundle (#3160) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * refactor: :package: Update moonbeam-types-bundle * refactor: :package: Rename types-bundle pkg name * fix: :bug: fix old references * Fix CI again * fix: :bug: Fix RPC types bindings * fix: 🐛 fix api augment * fix typescript version to @polkadot/* version * increment typesbundle ver * tidy --- .github/workflows/publish-types-bundle.yml | 8 +- moonbeam-types-bundle/README.md | 154 - package.json | 28 +- pnpm-lock.yaml | 3757 ++++++++--------- pnpm-workspace.yaml | 2 +- test/helpers/common.ts | 2 +- test/helpers/xcm.ts | 11 +- test/package.json | 5 +- .../fast-execute-chopstick-proposal.ts | 3 +- test/scripts/update-local-types.ts | 6 +- .../test-assets/test-assets-transfer.ts | 1 - .../dev/moonbase/test-moon/test-moon-rpc.ts | 68 +- .../test-foreign-assets-migration.ts | 1 + .../test-referenda-fast-general-admin.ts | 1 - .../test-referenda-general-admin.ts | 1 - .../test-delegate-with-auto-compound2.ts | 1 - .../test-delegate-with-auto-compound3.ts | 1 - .../test-delegate-with-auto-compound4.ts | 1 - .../test-delegate-with-auto-compound5.ts | 1 - .../test-delegate-with-auto-compound6.ts | 1 - .../suites/smoke/test-balances-consistency.ts | 1 - test/suites/smoke/test-block-finalized.ts | 3 +- test/suites/smoke/test-block-weights.ts | 1 - test/suites/smoke/test-relay-indices.ts | 3 +- .../smoke/test-staking-round-cleanup.ts | 1 - tools/test-scripts/test-alpha.ts | 2 +- tools/test-scripts/test-staking.ts | 2 +- .../.gitignore | 0 types-bundle/README.md | 19 + .../package.json | 8 +- .../src/definitions.ts | 18 +- .../src/rpc.ts | 6 +- .../src/types.ts | 4 +- .../tsconfig.json | 0 typescript-api/package.json | 36 +- .../moonbase/interfaces/augment-api-query.ts | 1 - .../moonbase/interfaces/augment-api-rpc.ts | 15 +- .../moonbase/interfaces/moon/definitions.ts | 2 +- typescript-api/src/moonbase/tsconfig.json | 2 +- .../moonbeam/interfaces/augment-api-query.ts | 1 - .../moonbeam/interfaces/augment-api-rpc.ts | 15 +- .../moonbeam/interfaces/moon/definitions.ts | 2 +- typescript-api/src/moonbeam/tsconfig.json | 2 +- .../moonriver/interfaces/augment-api-query.ts | 1 - .../moonriver/interfaces/augment-api-rpc.ts | 15 +- .../moonriver/interfaces/moon/definitions.ts | 2 +- typescript-api/src/moonriver/tsconfig.json | 2 +- 47 files changed, 1925 insertions(+), 2292 deletions(-) delete mode 100644 moonbeam-types-bundle/README.md rename {moonbeam-types-bundle => types-bundle}/.gitignore (100%) create mode 100644 types-bundle/README.md rename {moonbeam-types-bundle => types-bundle}/package.json (88%) rename {moonbeam-types-bundle => types-bundle}/src/definitions.ts (87%) rename {moonbeam-types-bundle => types-bundle}/src/rpc.ts (93%) rename {moonbeam-types-bundle => types-bundle}/src/types.ts (99%) rename {moonbeam-types-bundle => types-bundle}/tsconfig.json (100%) diff --git a/.github/workflows/publish-types-bundle.yml b/.github/workflows/publish-types-bundle.yml index 5ccaa30511..0c5ac3cdd7 100644 --- a/.github/workflows/publish-types-bundle.yml +++ b/.github/workflows/publish-types-bundle.yml @@ -31,14 +31,14 @@ jobs: node-version-file: "test/.nvmrc" cache: pnpm registry-url: https://registry.npmjs.org/ - - name: Build moonbeam-types-bundle package + - name: Build types-bundle package run: | - cd moonbeam-types-bundle + cd types-bundle pnpm i --frozen-lockfile pnpm build - - name: Publish moonbeam-types-bundle + - name: Publish types-bundle run: | - cd moonbeam-types-bundle + cd types-bundle if [ "${{ github.event.inputs.DryRun }}" == "true" ]; then pnpm publish --access public --no-git-checks --dry-run else diff --git a/moonbeam-types-bundle/README.md b/moonbeam-types-bundle/README.md deleted file mode 100644 index 29115ee098..0000000000 --- a/moonbeam-types-bundle/README.md +++ /dev/null @@ -1,154 +0,0 @@ -# Moonbeam Types Bundle - -Exports npm package `moonbeam-types-bundle`, formated as per polkadot-js specification to use -with the app or the API. - -## ⚠️Warning: Types deprecation⚠️ - -Following runtime upgrade 900 (include substrate v0.9.11), types are now retrieved from the node, in -a **camelCase** format - -A **new version** has been released `moonbeam-types-bundle@2.0.0`. - -The default export `typesBundle` has **been removed** to avoid confusion. - -**2 new typesBundles** are available: - -* `import { typesBundlePre900 } from "moonbeam-types-bundle"` to use the new naming convention -* `import { typesBundleDeprecated } from "moonbeam-types-bundle"` to keep using old naming convention that isn't camelCase (This will break at runtime 1000) - -The following package versions have been tested: - -``` -"@polkadot/api": "^6.9.1", -"moonbeam-types-bundle": "^2.0.1", -"typescript": "4.3.2" -``` - -Running the latest TypeScript version will not work. - -### Breaking changes in typesBundlePre900 - -Those types are being changed: -``` - AssetRegistrarMetadata: { - ... - isFrozen: "bool", // was is_frozen - }, - RewardInfo: { - totalReward: "Balance", // was total_reward - claimedReward: "Balance", // was claimed_reward - contributedRelayAddresses: "Vec", // was contributed_relay_addresses - }, - Nominator2: { - ... - scheduledRevocationsCount: "u32", // was scheduled_revocations_count - scheduledRevocationsTotal: "Balance", // was scheduled_revocations_total - }, - ExitQ: { - ... - nominatorsLeaving: "Vec", // was nominators_leaving - candidateSchedule: "Vec<(AccountId, RoundIndex)>", // was candidate_schedule - nominatorSchedule: "Vec<(AccountId, Option, RoundIndex)>", // was nominator_schedule - }, - Collator2: { - ... - topNominators: "Vec", // was top_nominators - bottomNominators: "Vec", // was bottom_nominators - totalCounted: "Balance", // was total_counted - totalBacking: "Balance", // was total_backing - } -``` - -## How to upgrade your tools/scripts using moonbeam-types-bundle - -*(If your tool/script is not requesting past blocks, you can use the `typesBundleDeprecated` -for now and fully remove it once the network has been upgraded to runtime 900, -around Nov 18th 2021)* - -The following package versions have been tested: - -``` -"@polkadot/api": "^6.9.1", -"moonbeam-types-bundle": "^2.0.1", -"typescript": "4.3.2" -``` - -Running the latest TypeScript version will not work. - -Ultimately it is necessary to use the new type naming as the previous one won't be supported, but -you can import `typesBundleDeprecated` to buy yourself some time. - -* moonbeam-types-bundle v1.x.x will break on runtime upgrade 900 -(planned Thursday 18th November 2021 on Moonriver) -* moonbeam-types-bundle v2.x.x `typesBundleDeprecated` (using previous naming case) -will **break on runtime 1000** -* **moonbeam-types-bundle v2.x.x** `typesBundlePre900` (using new naming case) -will be **maintained**. - -### Step 1: Install new package - -``` -npm install moonbeam-types-bundle@2 -``` - -### Step 2: Change your import - -``` -import { typesBundlePre900 } from "moonbeam-types-bundle" - -const api = await ApiPromise.create({ - provider: wsProvider, - typesBundle: typesBundlePre900, -}); -``` - -### Step 3: Updates the object property names - -For example: - -``` -console.log(collatorState2.unwrap().top_nominators); - ^^^^^^^^^^^^^^ -``` - -Becomes: - -``` -console.log(collatorState2.unwrap().topNominators); - ^^^^^^^^^^^^^ -``` - -All changes were listed [previously](#breaking-changes-in-typesbundlepre900). - -## Support for ethereum encoded (MiXedCaSe) addresses - -In runtime 900, addresses are represented in lower case by PolkadotJs SDK (this should be fixed -in runtime 1000). -However it is possible to manually encode the address in Ethereum encoded (MiXedCaSe) format using: - -``` -import { ethereumEncode } from "@polkadot/util-crypto"; - -... -console.log(address); -// 0xb5af23c862df4ba2114276594a6ac851674cdf1e - -console.log(ethereumEncode(address)); -// 0xB5Af23c862dF4ba2114276594a6AC851674cDf1e -``` - -# Development - -`typesBundlePre900` is of type OverrideBundleType to associate runtime names with correct definitions. - -`moonbeamDefinitions` is of types OverrideBundleDefinition and returns a different set of types for -each runtime version. - -## Print Types - -To print and save types JSON for a specific version run: -`ts-node generateJSON.ts ` - -To print and save the latest: -`ts-node generateJSON.ts latest` diff --git a/package.json b/package.json index fee0526883..39f29bcd18 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "workspaces": [ "test", "typescript-api", - "moonbeam-types-bundle" + "types-bundle" ], "scripts": { "clean-all": "rm -rf node_modules && pnpm -r clean", @@ -18,13 +18,12 @@ }, "dependencies": { "@openzeppelin/contracts": "4.9.6", - "@polkadot/api": "15.4.1", - "@polkadot/api-augment": "15.4.1", - "@polkadot/api-derive": "15.4.1", + "@polkadot/api": "15.5.1", + "@polkadot/api-derive": "15.5.1", "@polkadot/keyring": "13.3.1", - "@polkadot/rpc-provider": "15.4.1", - "@polkadot/types": "15.4.1", - "@polkadot/types-codec": "15.4.1", + "@polkadot/rpc-provider": "15.5.1", + "@polkadot/types": "15.5.1", + "@polkadot/types-codec": "15.5.1", "@polkadot/util": "13.3.1", "@polkadot/util-crypto": "13.3.1", "ethers": "6.13.4", @@ -32,20 +31,19 @@ }, "devDependencies": { "@biomejs/biome": "1.9.4", - "@types/node": "22.10.1", + "@types/node": "22.12.0", "tsx": "4.19.2", - "typescript": "5.7.2" + "typescript": "5.5.4" }, "pnpm": { "overrides": { "@openzeppelin/contracts": "4.9.6", - "@polkadot/api": "15.4.1", - "@polkadot/api-augment": "15.4.1", - "@polkadot/api-derive": "15.4.1", + "@polkadot/api": "15.5.1", + "@polkadot/api-derive": "15.5.1", "@polkadot/keyring": "13.3.1", - "@polkadot/rpc-provider": "15.4.1", - "@polkadot/types": "15.4.1", - "@polkadot/types-codec": "15.4.1", + "@polkadot/rpc-provider": "15.5.1", + "@polkadot/types": "15.5.1", + "@polkadot/types-codec": "15.5.1", "@polkadot/util": "13.3.1", "@polkadot/util-crypto": "13.3.1", "ethers": "6.13.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index aeee4ca150..886ef2ee32 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,13 +6,12 @@ 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/api': 15.5.1 + '@polkadot/api-derive': 15.5.1 '@polkadot/keyring': 13.3.1 - '@polkadot/rpc-provider': 15.4.1 - '@polkadot/types': 15.4.1 - '@polkadot/types-codec': 15.4.1 + '@polkadot/rpc-provider': 15.5.1 + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 '@polkadot/util-crypto': 13.3.1 ethers: 6.13.4 @@ -26,26 +25,23 @@ importers: specifier: 4.9.6 version: 4.9.6 '@polkadot/api': - specifier: 15.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': - specifier: 15.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.5.1 + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/api-derive': - specifier: 15.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.5.1 + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/keyring': 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.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.5.1 + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: 15.4.1 - version: 15.4.1 + specifier: 15.5.1 + version: 15.5.1 '@polkadot/types-codec': - specifier: 15.4.1 - version: 15.4.1 + specifier: 15.5.1 + version: 15.5.1 '@polkadot/util': specifier: 13.3.1 version: 13.3.1 @@ -54,71 +50,44 @@ importers: 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) + version: 6.13.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) tsup: specifier: 8.3.5 - version: 8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) + version: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.5.4)(yaml@2.6.1) devDependencies: '@biomejs/biome': specifier: 1.9.4 version: 1.9.4 '@types/node': - specifier: 22.10.1 - version: 22.10.1 + specifier: 22.12.0 + version: 22.12.0 tsx: specifier: 4.19.2 version: 4.19.2 typescript: - specifier: 5.7.2 - version: 5.7.2 - - moonbeam-types-bundle: - dependencies: - '@biomejs/biome': - specifier: '*' - version: 1.9.4 - '@polkadot/api': - 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) - '@polkadot/rpc-core': - specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/typegen': - specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': - specifier: 15.4.1 - version: 15.4.1 - '@polkadot/types-codec': - specifier: 15.4.1 - version: 15.4.1 - tsup: - 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: '*' - version: 5.7.2 + specifier: 5.5.4 + version: 5.5.4 test: dependencies: '@acala-network/chopsticks': 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) + version: 1.0.2(bufferutil@4.0.9)(debug@4.4.0)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(utf-8-validate@5.0.10) '@biomejs/biome': specifier: '*' version: 1.9.4 '@moonbeam-network/api-augment': specifier: workspace:* version: link:../typescript-api + '@moonbeam-network/types-bundle': + specifier: workspace:* + version: link:../types-bundle '@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.1) + version: 5.9.1(@types/node@22.12.0)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(tsx@4.19.2)(typescript@5.3.3)(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.1) + version: 5.9.1(@types/node@22.12.0)(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.1) '@openzeppelin/contracts': specifier: 4.9.6 version: 4.9.6 @@ -126,29 +95,26 @@ importers: specifier: 1.1.11 version: 1.1.11 '@polkadot/api': - specifier: 15.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/api-augment': - specifier: 15.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.5.1 + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/api-derive': - specifier: 15.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.5.1 + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/apps-config': 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) + 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.9)(react-dom@19.0.0(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10) '@polkadot/keyring': 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.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.5.1 + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: 15.4.1 - version: 15.4.1 + specifier: 15.5.1 + version: 15.5.1 '@polkadot/types-codec': - specifier: 15.4.1 - version: 15.4.1 + specifier: 15.5.1 + version: 15.5.1 '@polkadot/util': specifier: 13.3.1 version: 13.3.1 @@ -157,28 +123,28 @@ importers: version: 13.3.1(@polkadot/util@13.3.1) '@substrate/txwrapper-core': specifier: 7.5.3 - 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) + version: 7.5.3(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@substrate/txwrapper-substrate': specifier: 7.5.3 - 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) + version: 7.5.3(@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1))(@polkadot/util@13.3.1)(bufferutil@4.0.9)(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) + version: 0.0.98(@polkadot/util@13.3.1)(@types/node@22.12.0)(bufferutil@4.0.9)(chokidar@3.6.0)(utf-8-validate@5.0.10) '@zombienet/utils': specifier: 0.0.26 - version: 0.0.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) + version: 0.0.26(@types/node@22.12.0)(chokidar@3.6.0)(typescript@5.3.3) chalk: specifier: 5.3.0 version: 5.3.0 eth-object: 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) + version: https://codeload.github.com/aurora-is-near/eth-object/tar.gz/378b8dbf44a71f7049666cea5a16ab88d45aed06(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) ethers: specifier: 6.13.4 - version: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 6.13.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) json-bigint: specifier: 1.0.0 version: 1.0.0 @@ -188,9 +154,6 @@ importers: merkle-patricia-tree: specifier: 4.2.4 version: 4.2.4 - moonbeam-types-bundle: - specifier: workspace:* - version: link:../moonbeam-types-bundle octokit: specifier: 4.0.2 version: 4.0.2 @@ -211,13 +174,13 @@ importers: version: 4.19.2 viem: 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) + version: 2.22.13(bufferutil@4.0.9)(typescript@5.3.3)(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)) + version: 2.1.8(@types/node@22.12.0)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.9)(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.1) + version: 4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) yaml: specifier: 2.6.1 version: 2.6.1 @@ -230,7 +193,7 @@ importers: version: 1.0.4 '@types/node': specifier: '*' - version: 22.10.1 + version: 22.12.0 '@types/semver': specifier: 7.5.8 version: 7.5.8 @@ -245,52 +208,82 @@ importers: version: 4.4.0(supports-color@8.1.1) inquirer: specifier: 12.2.0 - version: 12.2.0(@types/node@22.10.1) + version: 12.2.0(@types/node@22.12.0) typescript: specifier: '*' - version: 5.7.2 + version: 5.3.3 yargs: specifier: 17.7.2 version: 17.7.2 + types-bundle: + dependencies: + '@biomejs/biome': + specifier: '*' + version: 1.9.4 + '@polkadot/api': + specifier: 15.5.1 + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': + specifier: '*' + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': + specifier: '*' + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/typegen': + specifier: '*' + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': + specifier: 15.5.1 + version: 15.5.1 + '@polkadot/types-codec': + specifier: 15.5.1 + version: 15.5.1 + tsup: + specifier: 8.3.5 + version: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.3.3)(yaml@2.6.1) + typescript: + specifier: '*' + version: 5.3.3 + typescript-api: dependencies: '@biomejs/biome': specifier: '*' version: 1.9.4 + '@moonbeam-network/types-bundle': + specifier: workspace:* + version: link:../types-bundle '@polkadot/api': - specifier: 15.4.1 - version: 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: 15.5.1 + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/api-base': specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/rpc-core': specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/typegen': specifier: '*' - version: 15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@polkadot/types': - specifier: 15.4.1 - version: 15.4.1 + specifier: 15.5.1 + version: 15.5.1 '@polkadot/types-codec': - specifier: 15.4.1 - version: 15.4.1 + specifier: 15.5.1 + version: 15.5.1 '@types/node': specifier: '*' - version: 22.10.1 - moonbeam-types-bundle: - specifier: workspace:* - version: link:../moonbeam-types-bundle + version: 22.12.0 tsup: specifier: 8.3.5 - version: 8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) + version: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.3.3)(yaml@2.6.1) tsx: specifier: '*' version: 4.19.2 typescript: specifier: '*' - version: 5.7.2 + version: 5.3.3 packages: @@ -313,7 +306,7 @@ packages: '@acala-network/type-definitions@5.1.2': resolution: {integrity: sha512-di3HH8Zn8i1jkQkQiwc44A8ovN9MvK5HwcNV3ngvW3TeF0dHbpHBQHdElJYpVge5IaEyhQ0kWihIEnVqpw4G9A==} peerDependencies: - '@polkadot/types': 15.4.1 + '@polkadot/types': 15.5.1 '@adraffy/ens-normalize@1.10.1': resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} @@ -325,6 +318,9 @@ packages: resolution: {integrity: sha512-3yWxPTq3UQ/FY9p1ErPxIyfT64elWaMvM9lIHnaqpyft63tkxodF5aUElYHrdisWve5cETkh1+KBw1yJuW0aRw==} engines: {node: '>=14.13.1'} + '@asamuzakjp/css-color@2.8.3': + resolution: {integrity: sha512-GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw==} + '@asamuzakjp/dom-selector@2.0.2': resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==} @@ -336,10 +332,6 @@ packages: resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} - '@babel/runtime@7.26.0': - 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'} @@ -347,7 +339,7 @@ packages: '@bifrost-finance/type-definitions@1.11.3': resolution: {integrity: sha512-mNW+FfvKZqa1axChEd1ReRpw3P8siiW28YQ8BBJpR2syZqb5cJWOG4Sr/dj3lBcBNQqcqnAUkZPnBxQj8+Ftvg==} peerDependencies: - '@polkadot/api': 15.4.1 + '@polkadot/api': 15.5.1 '@biomejs/biome@1.9.4': resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==} @@ -406,10 +398,10 @@ packages: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} - '@commander-js/extra-typings@12.1.0': - resolution: {integrity: sha512-wf/lwQvWAA0goIghcb91dQYpkLBcyhOhQNqG/VgWhnKzgt+UOMvra7EX/2fv70arm5RW+PUHoQHHDa6/p77Eqg==} + '@commander-js/extra-typings@13.1.0': + resolution: {integrity: sha512-q5P52BYb1hwVWE6dtID7VvuJWrlfbCv4klj7BjUUOqMz4jbSZD4C9fJ9lRjL2jnBGTg+gDDlaXN51rkWcLk4fg==} peerDependencies: - commander: ~12.1.0 + commander: ~13.1.0 '@crustio/type-definitions@1.3.0': resolution: {integrity: sha512-xdW6npZTmWfDzZEVCMjRK7f7wQrU/cgIltGlvnXY2AFD2m9uBW+s6/lx9YHuLbk7y3NrrQwbp3owFuGw4A2hNw==} @@ -418,6 +410,34 @@ packages: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} + '@csstools/color-helpers@5.0.1': + resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==} + engines: {node: '>=18'} + + '@csstools/css-calc@2.1.1': + resolution: {integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==} + engines: {node: '>=18'} + peerDependencies: + '@csstools/css-parser-algorithms': ^3.0.4 + '@csstools/css-tokenizer': ^3.0.3 + + '@csstools/css-color-parser@3.0.7': + resolution: {integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==} + engines: {node: '>=18'} + peerDependencies: + '@csstools/css-parser-algorithms': ^3.0.4 + '@csstools/css-tokenizer': ^3.0.3 + + '@csstools/css-parser-algorithms@3.0.4': + resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==} + engines: {node: '>=18'} + peerDependencies: + '@csstools/css-tokenizer': ^3.0.3 + + '@csstools/css-tokenizer@3.0.3': + resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==} + engines: {node: '>=18'} + '@darwinia/types-known@2.8.10': resolution: {integrity: sha512-bdNzf1gOw0is3PvcQJXkjf5jp8j0pT0wDxamkwLdajMymWgi0cReReDlhmGNx4Qvq6gy3TVJ9aok0Nsrr4sjKg==} @@ -459,8 +479,8 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.24.0': - resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==} + '@esbuild/aix-ppc64@0.24.2': + resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] @@ -477,8 +497,8 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.24.0': - resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==} + '@esbuild/android-arm64@0.24.2': + resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} engines: {node: '>=18'} cpu: [arm64] os: [android] @@ -495,8 +515,8 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.24.0': - resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==} + '@esbuild/android-arm@0.24.2': + resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} engines: {node: '>=18'} cpu: [arm] os: [android] @@ -513,8 +533,8 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.24.0': - resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==} + '@esbuild/android-x64@0.24.2': + resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} engines: {node: '>=18'} cpu: [x64] os: [android] @@ -531,8 +551,8 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.24.0': - resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} + '@esbuild/darwin-arm64@0.24.2': + resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] @@ -549,8 +569,8 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.24.0': - resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==} + '@esbuild/darwin-x64@0.24.2': + resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] @@ -567,8 +587,8 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.24.0': - resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==} + '@esbuild/freebsd-arm64@0.24.2': + resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] @@ -585,8 +605,8 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.24.0': - resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==} + '@esbuild/freebsd-x64@0.24.2': + resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] @@ -603,8 +623,8 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.24.0': - resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} + '@esbuild/linux-arm64@0.24.2': + resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} engines: {node: '>=18'} cpu: [arm64] os: [linux] @@ -621,8 +641,8 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.24.0': - resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==} + '@esbuild/linux-arm@0.24.2': + resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} engines: {node: '>=18'} cpu: [arm] os: [linux] @@ -639,8 +659,8 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.24.0': - resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==} + '@esbuild/linux-ia32@0.24.2': + resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} engines: {node: '>=18'} cpu: [ia32] os: [linux] @@ -657,8 +677,8 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.24.0': - resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==} + '@esbuild/linux-loong64@0.24.2': + resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} engines: {node: '>=18'} cpu: [loong64] os: [linux] @@ -675,8 +695,8 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.24.0': - resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} + '@esbuild/linux-mips64el@0.24.2': + resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] @@ -693,8 +713,8 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.24.0': - resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==} + '@esbuild/linux-ppc64@0.24.2': + resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] @@ -711,8 +731,8 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.24.0': - resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==} + '@esbuild/linux-riscv64@0.24.2': + resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] @@ -729,8 +749,8 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.24.0': - resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==} + '@esbuild/linux-s390x@0.24.2': + resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} engines: {node: '>=18'} cpu: [s390x] os: [linux] @@ -747,12 +767,18 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.24.0': - resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==} + '@esbuild/linux-x64@0.24.2': + resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} engines: {node: '>=18'} cpu: [x64] os: [linux] + '@esbuild/netbsd-arm64@0.24.2': + resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + '@esbuild/netbsd-x64@0.21.5': resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} engines: {node: '>=12'} @@ -765,8 +791,8 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.24.0': - resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==} + '@esbuild/netbsd-x64@0.24.2': + resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] @@ -777,8 +803,8 @@ packages: cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-arm64@0.24.0': - resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==} + '@esbuild/openbsd-arm64@0.24.2': + resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] @@ -795,8 +821,8 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.24.0': - resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==} + '@esbuild/openbsd-x64@0.24.2': + resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] @@ -813,8 +839,8 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.24.0': - resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==} + '@esbuild/sunos-x64@0.24.2': + resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} engines: {node: '>=18'} cpu: [x64] os: [sunos] @@ -831,8 +857,8 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.24.0': - resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==} + '@esbuild/win32-arm64@0.24.2': + resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} engines: {node: '>=18'} cpu: [arm64] os: [win32] @@ -849,8 +875,8 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.24.0': - resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} + '@esbuild/win32-ia32@0.24.2': + resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} engines: {node: '>=18'} cpu: [ia32] os: [win32] @@ -867,8 +893,8 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.24.0': - resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==} + '@esbuild/win32-x64@0.24.2': + resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -956,82 +982,82 @@ packages: '@gar/promisify@1.1.3': resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - '@inquirer/checkbox@4.0.3': - resolution: {integrity: sha512-CEt9B4e8zFOGtc/LYeQx5m8nfqQeG/4oNNv0PUvXGG0mys+wR/WbJ3B4KfSQ4Fcr3AQfpiuFOi3fVvmPfvNbxw==} + '@inquirer/checkbox@4.0.7': + resolution: {integrity: sha512-lyoF4uYdBBTnqeB1gjPdYkiQ++fz/iYKaP9DON1ZGlldkvAEJsjaOBRdbl5UW1pOSslBRd701jxhAG0MlhHd2w==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/confirm@5.1.0': - resolution: {integrity: sha512-osaBbIMEqVFjTX5exoqPXs6PilWQdjaLhGtMDXMXg/yxkHXNq43GlxGyTA35lK2HpzUgDN+Cjh/2AmqCN0QJpw==} + '@inquirer/confirm@5.1.4': + resolution: {integrity: sha512-EsiT7K4beM5fN5Mz6j866EFA9+v9d5o9VUra3hrg8zY4GHmCS8b616FErbdo5eyKoVotBQkHzMIeeKYsKDStDw==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/core@10.1.1': - resolution: {integrity: sha512-rmZVXy9iZvO3ZStEe/ayuuwIJ23LSF13aPMlLMTQARX6lGUBDHGV8UB5i9MRrfy0+mZwt5/9bdy8llszSD3NQA==} + '@inquirer/core@10.1.5': + resolution: {integrity: sha512-/vyCWhET0ktav/mUeBqJRYTwmjFPIKPRYb3COAw7qORULgipGSUO2vL32lQKki3UxDKJ8BvuEbokaoyCA6YlWw==} engines: {node: '>=18'} - '@inquirer/editor@4.2.0': - resolution: {integrity: sha512-Z3LeGsD3WlItDqLxTPciZDbGtm0wrz7iJGS/uUxSiQxef33ZrBq7LhsXg30P7xrWz1kZX4iGzxxj5SKZmJ8W+w==} + '@inquirer/editor@4.2.4': + resolution: {integrity: sha512-S8b6+K9PLzxiFGGc02m4syhEu5JsH0BukzRsuZ+tpjJ5aDsDX1WfNfOil2fmsO36Y1RMcpJGxlfQ1yh4WfU28Q==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/expand@4.0.3': - resolution: {integrity: sha512-MDszqW4HYBpVMmAoy/FA9laLrgo899UAga0itEjsYrBthKieDZNc0e16gdn7N3cQ0DSf/6zsTBZMuDYDQU4ktg==} + '@inquirer/expand@4.0.7': + resolution: {integrity: sha512-PsUQ5t7r+DPjW0VVEHzssOTBM2UPHnvBNse7hzuki7f6ekRL94drjjfBLrGEDe7cgj3pguufy/cuFwMeWUWHXw==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/figures@1.0.8': - resolution: {integrity: sha512-tKd+jsmhq21AP1LhexC0pPwsCxEhGgAkg28byjJAd+xhmIs8LUX8JbUc3vBf3PhLxWiB5EvyBE5X7JSPAqMAqg==} + '@inquirer/figures@1.0.10': + resolution: {integrity: sha512-Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw==} engines: {node: '>=18'} - '@inquirer/input@4.1.0': - resolution: {integrity: sha512-16B8A9hY741yGXzd8UJ9R8su/fuuyO2e+idd7oVLYjP23wKJ6ILRIIHcnXe8/6AoYgwRS2zp4PNsW/u/iZ24yg==} + '@inquirer/input@4.1.4': + resolution: {integrity: sha512-CKKF8otRBdIaVnRxkFLs00VNA9HWlEh3x4SqUfC3A8819TeOZpTYG/p+4Nqu3hh97G+A0lxkOZNYE7KISgU8BA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/number@3.0.3': - resolution: {integrity: sha512-HA/W4YV+5deKCehIutfGBzNxWH1nhvUC67O4fC9ufSijn72yrYnRmzvC61dwFvlXIG1fQaYWi+cqNE9PaB9n6Q==} + '@inquirer/number@3.0.7': + resolution: {integrity: sha512-uU2nmXGC0kD8+BLgwZqcgBD1jcw2XFww2GmtP6b4504DkOp+fFAhydt7JzRR1TAI2dmj175p4SZB0lxVssNreA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/password@4.0.3': - resolution: {integrity: sha512-3qWjk6hS0iabG9xx0U1plwQLDBc/HA/hWzLFFatADpR6XfE62LqPr9GpFXBkLU0KQUaIXZ996bNG+2yUvocH8w==} + '@inquirer/password@4.0.7': + resolution: {integrity: sha512-DFpqWLx+C5GV5zeFWuxwDYaeYnTWYphO07pQ2VnP403RIqRIpwBG0ATWf7pF+3IDbaXEtWatCJWxyDrJ+rkj2A==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/prompts@7.2.0': - resolution: {integrity: sha512-ZXYZ5oGVrb+hCzcglPeVerJ5SFwennmDOPfXq1WyeZIrPGySLbl4W6GaSsBFvu3WII36AOK5yB8RMIEEkBjf8w==} + '@inquirer/prompts@7.2.4': + resolution: {integrity: sha512-Zn2XZL2VZl76pllUjeDnS6Poz2Oiv9kmAZdSZw1oFya985+/JXZ3GZ2JUWDokAPDhvuhkv9qz0Z7z/U80G8ztA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/rawlist@4.0.3': - resolution: {integrity: sha512-5MhinSzfmOiZlRoPezfbJdfVCZikZs38ja3IOoWe7H1dxL0l3Z2jAUgbBldeyhhOkELdGvPlBfQaNbeLslib1w==} + '@inquirer/rawlist@4.0.7': + resolution: {integrity: sha512-ZeBca+JCCtEIwQMvhuROT6rgFQWWvAImdQmIIP3XoyDFjrp2E0gZlEn65sWIoR6pP2EatYK96pvx0887OATWQQ==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/search@3.0.3': - resolution: {integrity: sha512-mQTCbdNolTGvGGVCJSI6afDwiSGTV+fMLPEIMDJgIV6L/s3+RYRpxt6t0DYnqMQmemnZ/Zq0vTIRwoHT1RgcTg==} + '@inquirer/search@3.0.7': + resolution: {integrity: sha512-Krq925SDoLh9AWSNee8mbSIysgyWtcPnSAp5YtPBGCQ+OCO+5KGC8FwLpyxl8wZ2YAov/8Tp21stTRK/fw5SGg==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/select@4.0.3': - resolution: {integrity: sha512-OZfKDtDE8+J54JYAFTUGZwvKNfC7W/gFCjDkcsO7HnTH/wljsZo9y/FJquOxMy++DY0+9l9o/MOZ8s5s1j5wmw==} + '@inquirer/select@4.0.7': + resolution: {integrity: sha512-ejGBMDSD+Iqk60u5t0Zf2UQhGlJWDM78Ep70XpNufIfc+f4VOTeybYKXu9pDjz87FkRzLiVsGpQG2SzuGlhaJw==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' - '@inquirer/type@3.0.1': - resolution: {integrity: sha512-+ksJMIy92sOAiAccGpcKZUc3bYO07cADnscIxHBknEm3uNts3movSmBofc1908BNy5edKscxYeAdaX1NXkHS6A==} + '@inquirer/type@3.0.3': + resolution: {integrity: sha512-I4VIHFxUuY1bshGbXZTxCmhwaaEst9s/lll3ekok+o1Z26/ZUKdx8y1b7lsoG6rtsBDwEGfiBJ2SfirjoISLpg==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -1043,8 +1069,8 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} - '@jridgewell/gen-mapping@0.3.5': - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} engines: {node: '>=6.0.0'} '@jridgewell/resolve-uri@3.1.2': @@ -1067,7 +1093,7 @@ packages: '@kiltprotocol/type-definitions@1.11401.1': resolution: {integrity: sha512-NlKU8jm/MMCNdxb0WKC/s6rSbwitUkkf+WDMnOcu5yCiBppjnvGArwLsvDr3Z0Ld8HDmad+8316sEVxhtmHaWA==} peerDependencies: - '@polkadot/types': 15.4.1 + '@polkadot/types': 15.5.1 '@laminar/type-definitions@0.3.1': resolution: {integrity: sha512-QWC2qtvbPIxal+gMfUocZmwK0UsD7Sb0RUm4Hallkp+OXXL+3uBLwztYDLS5LtocOn0tfR//sgpnfsEIEb71Lw==} @@ -1080,15 +1106,18 @@ packages: resolution: {integrity: sha512-kr4mVMuQ6DqZ0H72z0YI8tcdlk4XD4vUgRVYYfTJdXFJhRsfS4YRxfs/iiQPNzWKgoQZKcDqsbQD3xz9T1gELw==} engines: {node: '>=18.0.0'} peerDependencies: - '@polkadot/types': 15.4.1 + '@polkadot/types': 15.5.1 '@metaverse-network-sdk/type-definitions@0.0.1-16': resolution: {integrity: sha512-lo1NbA0gi+Tu23v4cTkN/oxEhQxaf3QxQ2qvUUfTxDU7a1leYp2Bw3IcoUvqHAGb/PPp8bNmYQfAKXsjqp+LZw==} - '@moonbeam-network/api-augment@0.3300.1': - resolution: {integrity: sha512-a5xE4G7OI51HGrJWaZrgzph8XTbeuMOcgNp5PCS+Gasne1fT+HQsI48K3QUEu4ANe2xmN28O1+YmG3xsFeFWfw==} + '@moonbeam-network/api-augment@0.3401.1': + resolution: {integrity: sha512-Z4I15rlDRoNRlIVjgTuWUTREjVIRimDXwNuooHa81hGkFQOQ2rZdXRQAa+jaAi4tlUjCxn6Xr4E/oEmxA8ZtKg==} engines: {node: '>=20.0.0'} + '@moonbeam-network/types-bundle@1.0.0': + resolution: {integrity: sha512-mZaPjiCg5ZuAe56ZP7ROhTjZsHEs6bXI90SDi8QHdoW3df6r+g7zqnnyG1kJ63oHFV+K/gQmMCQI7eh0cl68KA==} + '@moonwall/cli@5.9.1': resolution: {integrity: sha512-DjnHB61lr8qkIm+BqhBhGGyHdFrlKlntxOAvJCmoDfNlsMmXHvsaeU9E7KNYRHnXbklrHKMhQhXQ8LdFIfqDXA==} engines: {node: '>=20', pnpm: '>=7'} @@ -1108,10 +1137,6 @@ packages: '@noble/curves@1.4.2': resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} - '@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} @@ -1127,14 +1152,6 @@ packages: resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} engines: {node: '>= 16'} - '@noble/hashes@1.6.0': - resolution: {integrity: sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ==} - engines: {node: ^14.21.3 || >=16} - - '@noble/hashes@1.6.1': - resolution: {integrity: sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==} - engines: {node: ^14.21.3 || >=16} - '@noble/hashes@1.7.1': resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==} engines: {node: ^14.21.3 || >=16} @@ -1150,72 +1167,72 @@ packages: engines: {node: '>=10'} deprecated: This functionality has been moved to @npmcli/fs - '@octokit/app@15.1.0': - resolution: {integrity: sha512-TkBr7QgOmE6ORxvIAhDbZsqPkF7RSqTY4pLTtUQCvr6dTXqvi2fFo46q3h1lxlk/sGMQjqyZ0kEahkD/NyzOHg==} + '@octokit/app@15.1.2': + resolution: {integrity: sha512-6aKmKvqnJKoVK+kx0mLlBMKmQYoziPw4Rd/PWr0j65QVQlrDXlu6hGU8fmTXt7tNkf/DsubdIaTT4fkoWzCh5g==} engines: {node: '>= 18'} - '@octokit/auth-app@7.1.1': - resolution: {integrity: sha512-kRAd6yelV9OgvlEJE88H0VLlQdZcag9UlLr7dV0YYP37X8PPDvhgiTy66QVhDXdyoT0AleFN2w/qXkPdrSzINg==} + '@octokit/auth-app@7.1.4': + resolution: {integrity: sha512-5F+3l/maq9JfWQ4bV28jT2G/K8eu9OJ317yzXPTGe4Kw+lKDhFaS4dQ3Ltmb6xImKxfCQdqDqMXODhc9YLipLw==} engines: {node: '>= 18'} - '@octokit/auth-oauth-app@8.1.1': - resolution: {integrity: sha512-5UtmxXAvU2wfcHIPPDWzVSAWXVJzG3NWsxb7zCFplCWEmMCArSZV0UQu5jw5goLQXbFyOr5onzEH37UJB3zQQg==} + '@octokit/auth-oauth-app@8.1.2': + resolution: {integrity: sha512-3woNZgq5/S6RS+9ZTq+JdymxVr7E0s4EYxF20ugQvgX3pomdPUL5r/XdTY9wALoBM2eHVy4ettr5fKpatyTyHw==} engines: {node: '>= 18'} - '@octokit/auth-oauth-device@7.1.1': - resolution: {integrity: sha512-HWl8lYueHonuyjrKKIup/1tiy0xcmQCdq5ikvMO1YwkNNkxb6DXfrPjrMYItNLyCP/o2H87WuijuE+SlBTT8eg==} + '@octokit/auth-oauth-device@7.1.2': + resolution: {integrity: sha512-gTOIzDeV36OhVfxCl69FmvJix7tJIiU6dlxuzLVAzle7fYfO8UDyddr9B+o4CFQVaMBLMGZ9ak2CWMYcGeZnPw==} engines: {node: '>= 18'} - '@octokit/auth-oauth-user@5.1.1': - resolution: {integrity: sha512-rRkMz0ErOppdvEfnemHJXgZ9vTPhBuC6yASeFaB7I2yLMd7QpjfrL1mnvRPlyKo+M6eeLxrKanXJ9Qte29SRsw==} + '@octokit/auth-oauth-user@5.1.2': + resolution: {integrity: sha512-PgVDDPJgZYb3qSEXK4moksA23tfn68zwSAsQKZ1uH6IV9IaNEYx35OXXI80STQaLYnmEE86AgU0tC1YkM4WjsA==} engines: {node: '>= 18'} - '@octokit/auth-token@5.1.1': - resolution: {integrity: sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==} + '@octokit/auth-token@5.1.2': + resolution: {integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==} engines: {node: '>= 18'} - '@octokit/auth-unauthenticated@6.1.0': - resolution: {integrity: sha512-zPSmfrUAcspZH/lOFQnVnvjQZsIvmfApQH6GzJrkIunDooU1Su2qt2FfMTSVPRp7WLTQyC20Kd55lF+mIYaohQ==} + '@octokit/auth-unauthenticated@6.1.1': + resolution: {integrity: sha512-bGXqdN6RhSFHvpPq46SL8sN+F3odQ6oMNLWc875IgoqcC3qus+fOL2th6Tkl94wvdSTy8/OeHzWy/lZebmnhog==} engines: {node: '>= 18'} - '@octokit/core@6.1.2': - resolution: {integrity: sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==} + '@octokit/core@6.1.3': + resolution: {integrity: sha512-z+j7DixNnfpdToYsOutStDgeRzJSMnbj8T1C/oQjB6Aa+kRfNjs/Fn7W6c8bmlt6mfy3FkgeKBRnDjxQow5dow==} engines: {node: '>= 18'} - '@octokit/endpoint@10.1.1': - resolution: {integrity: sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==} + '@octokit/endpoint@10.1.2': + resolution: {integrity: sha512-XybpFv9Ms4hX5OCHMZqyODYqGTZ3H6K6Vva+M9LR7ib/xr1y1ZnlChYv9H680y77Vd/i/k+thXApeRASBQkzhA==} engines: {node: '>= 18'} - '@octokit/graphql@8.1.1': - resolution: {integrity: sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==} + '@octokit/graphql@8.1.2': + resolution: {integrity: sha512-bdlj/CJVjpaz06NBpfHhp4kGJaRZfz7AzC+6EwUImRtrwIw8dIgJ63Xg0OzV9pRn3rIzrt5c2sa++BL0JJ8GLw==} engines: {node: '>= 18'} - '@octokit/oauth-app@7.1.3': - resolution: {integrity: sha512-EHXbOpBkSGVVGF1W+NLMmsnSsJRkcrnVmDKt0TQYRBb6xWfWzoi9sBD4DIqZ8jGhOWO/V8t4fqFyJ4vDQDn9bg==} + '@octokit/oauth-app@7.1.5': + resolution: {integrity: sha512-/Y2MiwWDlGUK4blKKfjJiwjzu/FzwKTTTfTZAAQ0QbdBIDEGJPWhOFH6muSN86zaa4tNheB4YS3oWIR2e4ydzA==} engines: {node: '>= 18'} '@octokit/oauth-authorization-url@7.1.1': resolution: {integrity: sha512-ooXV8GBSabSWyhLUowlMIVd9l1s2nsOGQdlP2SQ4LnkEsGXzeCvbSbCPdZThXhEFzleGPwbapT0Sb+YhXRyjCA==} engines: {node: '>= 18'} - '@octokit/oauth-methods@5.1.2': - resolution: {integrity: sha512-C5lglRD+sBlbrhCUTxgJAFjWgJlmTx5bQ7Ch0+2uqRjYv7Cfb5xpX4WuSC9UgQna3sqRGBL9EImX9PvTpMaQ7g==} + '@octokit/oauth-methods@5.1.3': + resolution: {integrity: sha512-M+bDBi5H8FnH0xhCTg0m9hvcnppdDnxUqbZyOkxlLblKpLAR+eT2nbDPvJDp0eLrvJWA1I8OX0KHf/sBMQARRA==} engines: {node: '>= 18'} - '@octokit/openapi-types@22.2.0': - resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==} + '@octokit/openapi-types@23.0.1': + resolution: {integrity: sha512-izFjMJ1sir0jn0ldEKhZ7xegCTj/ObmEDlEfpFrx4k/JyZSMRHbO3/rBwgE7f3m2DHt+RrNGIVw4wSmwnm3t/g==} - '@octokit/openapi-webhooks-types@8.3.0': - resolution: {integrity: sha512-vKLsoR4xQxg4Z+6rU/F65ItTUz/EXbD+j/d4mlq2GW8TsA4Tc8Kdma2JTAAJ5hrKWUQzkR/Esn2fjsqiVRYaQg==} + '@octokit/openapi-webhooks-types@8.5.1': + resolution: {integrity: sha512-i3h1b5zpGSB39ffBbYdSGuAd0NhBAwPyA3QV3LYi/lx4lsbZiu7u2UHgXVUR6EpvOI8REOuVh1DZTRfHoJDvuQ==} - '@octokit/plugin-paginate-graphql@5.2.3': - resolution: {integrity: sha512-EzFueuXVU3VHv5FwEXbdznn9EmyF0vA5LGDX6a8fJ9YJAlDgdYHRKJMO4Ghl2PPPJBxIPMDUJMnlUHqcvP7AnQ==} + '@octokit/plugin-paginate-graphql@5.2.4': + resolution: {integrity: sha512-pLZES1jWaOynXKHOqdnwZ5ULeVR6tVVCMm+AUbp0htdcyXDU95WbkYdU4R2ej1wKj5Tu94Mee2Ne0PjPO9cCyA==} engines: {node: '>= 18'} peerDependencies: '@octokit/core': '>=6' - '@octokit/plugin-paginate-rest@11.3.5': - resolution: {integrity: sha512-cgwIRtKrpwhLoBi0CUNuY83DPGRMaWVjqVI/bGKsLJ4PzyWZNaEmhHroI2xlrVXkk6nFv0IsZpOp+ZWSWUS2AQ==} + '@octokit/plugin-paginate-rest@11.4.0': + resolution: {integrity: sha512-ttpGck5AYWkwMkMazNCZMqxKqIq1fJBNxBfsFwwfyYKTf914jKkLF0POMS3YkPBwp5g1c2Y4L79gDz01GhSr1g==} engines: {node: '>= 18'} peerDependencies: '@octokit/core': '>=6' @@ -1226,45 +1243,45 @@ packages: peerDependencies: '@octokit/core': '>=6' - '@octokit/plugin-rest-endpoint-methods@13.2.5': - resolution: {integrity: sha512-c4pRWi7OUSFM4E6frfUs+qsAf052aOWt1x2qFQ6llQcd1J0HqQ/0Egfs2lm33IixXeXXhZ+GmC9tf92qbOs25Q==} + '@octokit/plugin-rest-endpoint-methods@13.3.0': + resolution: {integrity: sha512-LUm44shlmkp/6VC+qQgHl3W5vzUP99ZM54zH6BuqkJK4DqfFLhegANd+fM4YRLapTvPm4049iG7F3haANKMYvQ==} engines: {node: '>= 18'} peerDependencies: '@octokit/core': '>=6' - '@octokit/plugin-retry@7.1.2': - resolution: {integrity: sha512-XOWnPpH2kJ5VTwozsxGurw+svB2e61aWlmk5EVIYZPwFK5F9h4cyPyj9CIKRyMXMHSwpIsI3mPOdpMmrRhe7UQ==} + '@octokit/plugin-retry@7.1.3': + resolution: {integrity: sha512-8nKOXvYWnzv89gSyIvgFHmCBAxfQAOPRlkacUHL9r5oWtp5Whxl8Skb2n3ACZd+X6cYijD6uvmrQuPH/UCL5zQ==} engines: {node: '>= 18'} peerDependencies: '@octokit/core': '>=6' - '@octokit/plugin-throttling@9.3.1': - resolution: {integrity: sha512-Qd91H4liUBhwLB2h6jZ99bsxoQdhgPk6TdwnClPyTBSDAdviGPceViEgUwj+pcQDmB/rfAXAXK7MTochpHM3yQ==} + '@octokit/plugin-throttling@9.4.0': + resolution: {integrity: sha512-IOlXxXhZA4Z3m0EEYtrrACkuHiArHLZ3CvqWwOez/pURNqRuwfoFlTPbN5Muf28pzFuztxPyiUiNwz8KctdZaQ==} engines: {node: '>= 18'} peerDependencies: - '@octokit/core': ^6.0.0 + '@octokit/core': ^6.1.3 - '@octokit/request-error@6.1.5': - resolution: {integrity: sha512-IlBTfGX8Yn/oFPMwSfvugfncK2EwRLjzbrpifNaMY8o/HTEAFqCA1FZxjD9cWvSKBHgrIhc4CSBIzMxiLsbzFQ==} + '@octokit/request-error@6.1.6': + resolution: {integrity: sha512-pqnVKYo/at0NuOjinrgcQYpEbv4snvP3bKMRqHaD9kIsk9u1LCpb2smHZi8/qJfgeNqLo5hNW4Z7FezNdEo0xg==} engines: {node: '>= 18'} - '@octokit/request@9.1.3': - resolution: {integrity: sha512-V+TFhu5fdF3K58rs1pGUJIDH5RZLbZm5BI+MNF+6o/ssFNT4vWlCh/tVpF3NxGtP15HUxTTMUbsG5llAuU2CZA==} + '@octokit/request@9.2.0': + resolution: {integrity: sha512-kXLfcxhC4ozCnAXy2ff+cSxpcF0A1UqxjvYMqNuPIeOAzJbVWQ+dy5G2fTylofB/gTbObT8O6JORab+5XtA1Kw==} engines: {node: '>= 18'} - '@octokit/rest@21.0.2': - resolution: {integrity: sha512-+CiLisCoyWmYicH25y1cDfCrv41kRSvTq6pPWtRroRJzhsCZWZyCqGyI8foJT5LmScADSwRAnr/xo+eewL04wQ==} + '@octokit/rest@21.1.0': + resolution: {integrity: sha512-93iLxcKDJboUpmnUyeJ6cRIi7z7cqTZT1K7kRK4LobGxwTwpsa+2tQQbRQNGy7IFDEAmrtkf4F4wBj3D5rVlJQ==} engines: {node: '>= 18'} - '@octokit/types@13.6.0': - resolution: {integrity: sha512-CrooV/vKCXqwLa+osmHLIMUb87brpgUqlqkPGc6iE2wCkUvTrHiXFMhAKoDDaAAYJrtKtrFTgSQTg5nObBEaew==} + '@octokit/types@13.7.0': + resolution: {integrity: sha512-BXfRP+3P3IN6fd4uF3SniaHKOO4UXWBfkdR3vA8mIvaoO/wLjGN5qivUtW0QRitBHHMcfC41SLhNVYIZZE+wkA==} '@octokit/webhooks-methods@5.1.0': resolution: {integrity: sha512-yFZa3UH11VIxYnnoOYCVoJ3q4ChuSOk2IVBBQ0O3xtKX4x9bmKb/1t+Mxixv2iUhzMdOl1qeWJqEhouXXzB3rQ==} engines: {node: '>= 18'} - '@octokit/webhooks@13.3.0': - resolution: {integrity: sha512-TUkJLtI163Bz5+JK0O+zDkQpn4gKwN+BovclUvCj6pI/6RXrFqQvUMRS2M+Rt8Rv0qR3wjoMoOPmpJKeOh0nBg==} + '@octokit/webhooks@13.4.3': + resolution: {integrity: sha512-Brjp2TJiTvLV8unrGWC46QgsnH641fTvH32Vp88L6Y5GkMcKMp+YLdRz/EP722GxKM0S4vbeNqAc6QeEUr8oWA==} engines: {node: '>= 18'} '@open-web3/orml-type-definitions@0.8.2-11': @@ -1313,15 +1330,15 @@ packages: '@polka/url@1.0.0-next.28': resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} - '@polkadot-api/cli@0.9.21': - resolution: {integrity: sha512-ZvuYRn9f2F8vrm0lPJP8NjbrVLkGpsiWbq0MFlUXhwfTUvkKWPu48rSPiN2SAYAD0p1rOevLus1FdGZL0J/fRw==} + '@polkadot-api/cli@0.10.3': + resolution: {integrity: sha512-S0xJfld1rB9GePweT8h/Oz79E/JniHBo8yrI3A/2g7NJDG8lzm9bJ0+tUkcwXyT6lo95TLFgTVu18El64RNgRQ==} hasBin: true - '@polkadot-api/codegen@0.12.9': - resolution: {integrity: sha512-lxwKRJqKKmR0Fm9g2KU4KgMB5NeKvc1505iGY0nd/PistTzVIk4zsX3Ja9dPFSB4wMMZ9ykMbbamc3+t6jbkaw==} + '@polkadot-api/codegen@0.12.13': + resolution: {integrity: sha512-8npcZIaE/6Qi5D7Y5ObN27r/f+fBjWyFyILcP1OYxJOuSOIzEAUWr15KWjgBDgHRUxu3tm9V8xlOopp42rzruQ==} - '@polkadot-api/ink-contracts@0.2.2': - resolution: {integrity: sha512-jbkrbZo8Yfe9UupmPuWIUdQz0a/Oxi6m1qPGEfXSmwML27FgWEmb+8IG9chLzJ59/z1oMWxgKHkK8BLLWnSLGg==} + '@polkadot-api/ink-contracts@0.2.5': + resolution: {integrity: sha512-EqEub18L8IB1Z/QwnAe9Kn3MeRbM9y0gUpbMUg71v0pQVqBPlumA+oboItNTjLBKzd77QcJUr6bKqHr9rA1Utw==} '@polkadot-api/json-rpc-provider-proxy@0.1.0': resolution: {integrity: sha512-8GSFE5+EF73MCuLQm8tjrbCqlgclcHBSRaswvXziJ0ZW7iw3UEMsKkkKvELayWyBuOPa2T5i1nj6gFOeIsqvrg==} @@ -1335,8 +1352,8 @@ packages: '@polkadot-api/json-rpc-provider@0.0.4': resolution: {integrity: sha512-9cDijLIxzHOBuq6yHqpqjJ9jBmXrctjc1OFqU+tQrS96adQze3mTIH6DTgfb/0LMrqxzxffz1HQGrIlEH00WrA==} - '@polkadot-api/known-chains@0.5.8': - resolution: {integrity: sha512-4UoxnqPeJ2viRykArIhUmYsgo2fc84mqC8o/qvmJ0w3r7qwO2/7NS2zpwMuricGtNvdNKyJRMGHAeJdrIfCB3A==} + '@polkadot-api/known-chains@0.6.1': + resolution: {integrity: sha512-zpzJuiK9uJ43CMYVJIcAW1ry1trFK+LpmZLQJDKnDmP9ZAetrYmG1RWZwhIMT95WA+q9xqM+5HWohe+u+nIcbQ==} '@polkadot-api/logs-provider@0.0.6': resolution: {integrity: sha512-4WgHlvy+xee1ADaaVf6+MlK/+jGMtsMgAzvbQOJZnP4PfQuagoTqaeayk8HYKxXGphogLlPbD06tANxcb+nvAg==} @@ -1344,17 +1361,17 @@ packages: '@polkadot-api/merkleize-metadata@1.1.11': resolution: {integrity: sha512-AfRCrFYewZStnOdsRCiECwbkQIieykW5eP3uIvgQQSNU0zc9b/PdfjflEKR36QLl7m/NZ8De8DTLuOgjMFG1gw==} + '@polkadot-api/metadata-builders@0.10.1': + resolution: {integrity: sha512-0GQFph1vT0wWTfijM7eO+JICR7hwqJeVmil1P29uLjScBI4IH7gX032nOuNz/SG1Qlu0CtDFasFWVeazuPJ0pw==} + '@polkadot-api/metadata-builders@0.3.2': resolution: {integrity: sha512-TKpfoT6vTb+513KDzMBTfCb/ORdgRnsS3TDFpOhAhZ08ikvK+hjHMt5plPiAX/OWkm1Wc9I3+K6W0hX5Ab7MVg==} - '@polkadot-api/metadata-builders@0.9.2': - resolution: {integrity: sha512-2vxtjMC5PvN+sTM6DPMopznNfTUJEe6G6CzMhtK19CASb2OeN9NoRpnxmpEagjndO98YPkyQtDv25sKGUVhgAA==} - '@polkadot-api/metadata-builders@0.9.3': resolution: {integrity: sha512-QFG/2r8I5vdty8nSV1zg1V8NIYgR0kJ/LazM6yzUZ704Xf+yFhMC1psqLfjmoiAYs1AR5suV8skaJ/+V9ZY30w==} - '@polkadot-api/metadata-compatibility@0.1.12': - resolution: {integrity: sha512-zhRhsuzHb6klnRW/pMXb5YLKRtvmGw4sicV6jxKDIclpuOZ+QxMWFmqTGM1Vsea5qNX/Z9HrWvXOYxMlkcW7Pg==} + '@polkadot-api/metadata-compatibility@0.1.15': + resolution: {integrity: sha512-voOXicr3S/l/5bkNb8hCmTWpfXLOg6iGYulguMJgCI+xGBooJBx7twtVogaNJTzXfrIZtEbxrD+tUsKScIN6iw==} '@polkadot-api/observable-client@0.3.2': resolution: {integrity: sha512-HGgqWgEutVyOBXoGOPp4+IAq6CNdK/3MfQJmhCJb8YaJiaK4W6aRGrdQuQSTPHfERHCARt9BrOmEvTXAT257Ug==} @@ -1362,14 +1379,14 @@ packages: '@polkadot-api/substrate-client': 0.1.4 rxjs: '>=7.8.0' - '@polkadot-api/observable-client@0.6.3': - resolution: {integrity: sha512-DNau9rUmEMEnfDKxfoZrtL2oPCXdXuV6c0AvG8kNGviuknk5y7HzlU21rI3O486zqmLQE2ntPxQmT+yeYxW8DA==} + '@polkadot-api/observable-client@0.7.2': + resolution: {integrity: sha512-+TV2JCpTb7QA8FB9rpm+fVGSx4Ms1lHgjHJGY1GY3Ai5QtxWpf15vSRGCGWgaT1Qig9xAwQOrBIKyxh3T+PLWQ==} peerDependencies: '@polkadot-api/substrate-client': 0.3.0 rxjs: '>=7.8.0' - '@polkadot-api/pjs-signer@0.6.1': - resolution: {integrity: sha512-0GYUS0rVxB/Vju4YqX1/9CM1bVmscCSTgI2le5eeYFmz+MHMMPuLTXQyRSCa6nNH/0/L03xL9gmSzwwAVGDpKw==} + '@polkadot-api/pjs-signer@0.6.4': + resolution: {integrity: sha512-dXln8Par3I5dIX1xw59a8ovpsBj346ZKxsW9/uF9Cm9IQB2QffG3N0jctBUGHYZ+8dHRPug117o/xZCzqOAibw==} '@polkadot-api/polkadot-sdk-compat@2.3.1': resolution: {integrity: sha512-rb8IWmPRhKWD9NG4zh2n4q0HlEAvq+Cv1CbD+8YxH0XAqIIiFA+ch5JeDCIxQYngkn/43B0Gs7Gtzh18yv2yoA==} @@ -1377,29 +1394,29 @@ packages: '@polkadot-api/polkadot-signer@0.1.6': resolution: {integrity: sha512-X7ghAa4r7doETtjAPTb50IpfGtrBmy3BJM5WCfNKa1saK04VFY9w+vDn+hwEcM4p0PcDHt66Ts74hzvHq54d9A==} - '@polkadot-api/signer@0.1.11': - resolution: {integrity: sha512-DVNB5fdB5vGjSgBbSqzZtaZ15pW/KJG5FARI9h1KgyDWdXhJo5pkGID/LuY5dQbdlnPbTkLhtDhZ2+4G2NWrzg==} + '@polkadot-api/signer@0.1.14': + resolution: {integrity: sha512-AwAnu6THwwKIe93PLZlER7pdD4x68SCWoIX1Lnb857axgGgLWZgpLVbkneTa+lTej/dqs7R3fhsEuXZX2dR+hg==} - '@polkadot-api/signers-common@0.1.2': - resolution: {integrity: sha512-JtJmU7v4/80mu05qI3F/BP44nT43VfmyLsr7NO4n5+txZ9sFMDXQQELtis/fQnZgzkps8wPOwagjkSdutTow5A==} + '@polkadot-api/signers-common@0.1.5': + resolution: {integrity: sha512-lmVH3S+Au8q7gRgAnHFbrHBm/5V7hB9xqwftt7SfmCOnl8N093IUKMANXRrD05jcQ+91hjAykU97xOV0W5zdhw==} '@polkadot-api/sm-provider@0.1.7': resolution: {integrity: sha512-BhNKVeIFZdawpPVadXszLl8IP4EDjcLHe/GchfRRFkvoNFuwS2nNv/npYIqCviXV+dd2R8VnEELxwScsf380Og==} peerDependencies: '@polkadot-api/smoldot': '>=0.3' - '@polkadot-api/smoldot@0.3.7': - resolution: {integrity: sha512-Fnrz0Xt8fli7LhHSOWbNraiXpLJWCwOglI+BgBWnYpsdHXSMU5TsYEw5oo9rkfI9zDeZsbtXvMTW3MqTeCLtQg==} + '@polkadot-api/smoldot@0.3.8': + resolution: {integrity: sha512-dbJSMRFtELDW+rZIWRwKE/K8oy7+gYaGl+DvaOjARoBW2n80rJ7RAMOCCu+b5h2zgl3elftFBwMNAuAWgHT/Zg==} '@polkadot-api/substrate-bindings@0.10.0': resolution: {integrity: sha512-0YcYdZ7gU4f/yE8eZ+xDiUDlWOnKSdZI77PZT8Dz0TnXdeYhRehh6PGPp7zY0UoT6d5zGrEq7E7x1FPMCR0Rfw==} + '@polkadot-api/substrate-bindings@0.11.0': + resolution: {integrity: sha512-UGCa0xYtfcS/5LJAcro1vhIwxF31fsF5f42mzro9G85T854cbXPzqABDICYmJqdF72tBRMrnJlx6okGtLx9TKA==} + '@polkadot-api/substrate-bindings@0.6.0': resolution: {integrity: sha512-lGuhE74NA1/PqdN7fKFdE5C1gNYX357j1tWzdlPXI0kQ7h3kN0zfxNOpPUN7dIrPcOFZ6C0tRRVrBylXkI6xPw==} - '@polkadot-api/substrate-bindings@0.9.4': - resolution: {integrity: sha512-SUyetILwgUsodSk1qhNu0HflRBdq2VBCbqAqCBNaoCauE3/Q/G6k7xS+1nE6MTcpjZQex+TriJdDz/trLSvwsA==} - '@polkadot-api/substrate-client@0.1.4': resolution: {integrity: sha512-MljrPobN0ZWTpn++da9vOvt+Ex+NlqTlr/XT7zi9sqPtDJiQcYl+d29hFAgpaeTqbeQKZwz3WDE9xcEfLE8c5A==} @@ -1418,28 +1435,20 @@ packages: '@polkadot-api/ws-provider@0.3.6': resolution: {integrity: sha512-D2+rvcDc9smt24qUKqFoCuKKNhyBVDQEtnsqHiUN/Ym8UGP+Acegac3b9VOig70EpCcRBoYeXY2gEog2ybx1Kg==} - '@polkadot/api-augment@15.4.1': - resolution: {integrity: sha512-mq/m5eC5hzxzsYfbYoLxdqRgH3/hf60DYoVN1f8P7m798cHXE/8DjCSwgtb5QDiWfp+CifaI5O/PcgL8YNj6jw==} - engines: {node: '>=18'} - - '@polkadot/api-base@14.3.1': - resolution: {integrity: sha512-GZT6rTpT3HYZ/C3rLPjoX3rX3DOxNG/zgts+jKjNrCumAeZkVq5JErKIX8/3f2TVaE2Kbqniy3d1TH/AL4HBPA==} - engines: {node: '>=18'} - - '@polkadot/api-base@15.0.1': - resolution: {integrity: sha512-P4WQ+SqyuotVd//EFMIzlWLRbER9JycpdmTaKof2NpVioGotbHhJtO4TXPC3CW1C8zovM7KYrcWtz6b8/FxqoA==} + '@polkadot/api-augment@15.5.1': + resolution: {integrity: sha512-ZDSiaBcy8OT8FWI5WWnVqdi4jWBcUpiAdSO3FdZarAN9Hp2sbaUSM5zt8NkLsFtnsQxgZXGzVCbxNojBj7XAlg==} engines: {node: '>=18'} - '@polkadot/api-base@15.4.1': - resolution: {integrity: sha512-7a0wsLPpnEDLXhPmaLds03XchCnj7oP7MbdoULVKzIjYDq0MjYasigAz0Vs/QR6O5qodZWmgS2gA+VG+Ga5OMA==} + '@polkadot/api-base@15.5.1': + resolution: {integrity: sha512-sTcTICj4UEmM9PnIjBFQvHQrZNnRfGA2IipHo6HjzmZ9JpX+9+zjqcq4xZP+4pfP7upKYCzgWN0Si/6BEpNGFw==} engines: {node: '>=18'} - '@polkadot/api-derive@15.4.1': - resolution: {integrity: sha512-0EFrp0kNNpDWqtuSKbNe8+V1iEz1cXAiL+G7UM0oWae/U2xpbi0zdCMeC7hstUoJS//py1vPnDo0nkVfrdhT/A==} + '@polkadot/api-derive@15.5.1': + resolution: {integrity: sha512-8NO/h/ieYy7c7NubvuK/zpxcwJBoqbB6x4o6LfXTkvsv+ePq7WcPw3W0+c6Qo+QZd+OgtrvfT9OzobfxfzKk6g==} engines: {node: '>=18'} - '@polkadot/api@15.4.1': - resolution: {integrity: sha512-o+5WmEt38rs+Enk2XTE5Mn3Vne+gbolvca7nl+hB/VOr5cK+ZAwhMfEt/ZFXzdAQOA9ePO91FLRsS48mimZ8PA==} + '@polkadot/api@15.5.1': + resolution: {integrity: sha512-vEKXcy8iq2f7UZ7pLiX0z2bXiMEJ6Qp/s2MZNWTixBPPWKKqdq7d98CIIPWmqDpQPhidsWMkzV4r3/GaNLccfQ==} engines: {node: '>=18'} '@polkadot/apps-config@0.148.1': @@ -1468,90 +1477,45 @@ packages: react-dom: '*' react-is: '*' - '@polkadot/rpc-augment@14.3.1': - resolution: {integrity: sha512-Z8Hp8fFHwFCiTX0bBCDqCZ4U26wLIJl1NRSjJTsAr+SS68pYZBDGCwhKztpKGqndk1W1akRUaxrkGqYdIFmspQ==} - engines: {node: '>=18'} - - '@polkadot/rpc-augment@15.0.1': - resolution: {integrity: sha512-4FoY+oXC08+vaLMAvFgOOjcFHNBHEv2kOqgxtO/yCyMLNvyRRnrBtMofznJ1EWEwzehvU5iSlbMCerKdImFRZQ==} - engines: {node: '>=18'} - - '@polkadot/rpc-augment@15.4.1': - resolution: {integrity: sha512-DiNSSK+UFkAnF0UtVWr6HSCDio74LWjVjLsh9csAKfqy8bXzTVshl8VjZR2G9nuW9YxoJjQREN8wEcM9F+kL3Q==} - engines: {node: '>=18'} - - '@polkadot/rpc-core@14.3.1': - resolution: {integrity: sha512-FV2NPhFwFxmX8LqibDcGc6IKTBqmvwr7xwF2OA60Br4cX+AQzMSVpFlfQcETll+0M+LnRhqGKGkP0EQWXaSowA==} - engines: {node: '>=18'} - - '@polkadot/rpc-core@15.0.1': - resolution: {integrity: sha512-I5F1T17Nr5oEuqAysP7n14tWym54hCriqj0pV0tM4yfIF0iWaWPkqWNRU7uNfv86n3m15IMGoMapvgZVnUF5LQ==} - engines: {node: '>=18'} - - '@polkadot/rpc-core@15.4.1': - resolution: {integrity: sha512-llAtGpKQgtmsy5+320T0Dr8Lxse77eN0NVbpWr7cQo8R5If8YM9cAMNETMtrY1S9596aaLX/GrThp5Zvt6Z5Aw==} + '@polkadot/rpc-augment@15.5.1': + resolution: {integrity: sha512-BuaObrUNH3aXavAoQA4diy8VXUgUpABzsYYIUtlivioA4UHJkFYzCnEYNcQj41Dp3bZE78LC80sYyqFc0ZFJfQ==} engines: {node: '>=18'} - '@polkadot/rpc-provider@15.4.1': - resolution: {integrity: sha512-GOtU8fBczbpEa3U4nQxBvwCtYyP1fYbi6vWBnA/YiwQY6RWqMBY2Tfo9fw0MfYqZVpYvbUoaER4akTrtVvCoVA==} + '@polkadot/rpc-core@15.5.1': + resolution: {integrity: sha512-rtT7RFQMfRm9bLYgaK34EoTSqSqPzGcD5aKITGv4ZcGi7oRRrKuIq813II1UK7IH5GN7njLWzoeq+LC3JVxW3g==} engines: {node: '>=18'} - '@polkadot/typegen@14.3.1': - resolution: {integrity: sha512-S6G7BwmsC57zvUKoqYMF2+3SUIB2f8r6VDgUhdO2hdgexXTDeVHFtJx3FE2opPlkVR05EKgV+rGH/9Rn91HjOQ==} + '@polkadot/rpc-provider@15.5.1': + resolution: {integrity: sha512-hDKup24P+L4BtRgu1L4IZRpZlqPOyeK8ryIaiuPABd6ZseQUQ8Oz2OMf3uL2Q43Xc72+q2PP5ylJuxH+wlErDw==} engines: {node: '>=18'} - hasBin: true - '@polkadot/typegen@15.0.1': - resolution: {integrity: sha512-XXE4ZQ6nXA98HWrNgzjQnX7emQcXqPsDsqiIytDBL4i4G/xgw4OFtykHqjbTu5y0LmoHAYsa3L6sSQU0Mg8cag==} + '@polkadot/typegen@15.5.1': + resolution: {integrity: sha512-7pTx1z83TvlM5wGewbOScBT82jtcEN0Gmgjth1eDfxA2JWrZIEOYr/hzI61Gd1VloB7MXkd+r8NHnE/IDfd4Wg==} engines: {node: '>=18'} hasBin: true - '@polkadot/types-augment@14.3.1': - resolution: {integrity: sha512-SC4M6TBlgCglNz+gRbvfoVRDz0Vyeev6v0HeAdw0H6ayEW4BXUdo5bFr0092bdS5uTrEPgiSyUry5TJs2KoXig==} - engines: {node: '>=18'} - - '@polkadot/types-augment@15.0.1': - resolution: {integrity: sha512-6fTjJmTGd46UUIYPHr5oA6kiFl6IY45dvDgUQu07AmVdEQlq3OPq/7GyS639SLHHfMLSPbFKyt1iMVj9BNu0qA==} - engines: {node: '>=18'} - - '@polkadot/types-augment@15.4.1': - resolution: {integrity: sha512-40X4UVEHmJhNV+gYS79RY38rv3shFEGd9H8xTas91IgZtT12mRw1kH5vjLHk+nYTVAAR1ml3D3IStILAwzikgQ==} - engines: {node: '>=18'} - - '@polkadot/types-codec@15.4.1': - resolution: {integrity: sha512-LksB8JBdu8ysYWsRbE1U+cv8svUpSddalR6mg0pP0H/ngj58PWrRUWJBRw2LDw65B4Dw1AIJ0QrbigmCjCyz+A==} - engines: {node: '>=18'} - - '@polkadot/types-create@14.3.1': - resolution: {integrity: sha512-F4EBvF3Zvym0xrkAA5Yz01IAVMepMV3w2Dwd0C9IygEAQ5sYLLPHmf72/aXn+Ag+bSyT2wlJHpDc+nEBXNQ3Gw==} - engines: {node: '>=18'} - - '@polkadot/types-create@15.0.1': - resolution: {integrity: sha512-M1vs5o3sw8p3g88GhJgz2vSSgxnr5CfbaL4r5EYzR+Hx9xUvz03aEofySvodusEpdRQ9MijnsNSP9306xvcqhw==} + '@polkadot/types-augment@15.5.1': + resolution: {integrity: sha512-sWO/4Loe7oJldmO/dbJeiTkO7sdEj6TZ6UnHcxpxCC97cPUrqHxcatsyoxrMn1RyLJ/tIlkQEgT25d/LwKbU7Q==} engines: {node: '>=18'} - '@polkadot/types-create@15.4.1': - resolution: {integrity: sha512-NP1YGsLdGii0FNAKeKHNxpvLZCusEugs+g21vHHmdtFLC08ngU7pNJGERteo6vDNr5JDejzVbB+i94Y9RzKC0Q==} + '@polkadot/types-codec@15.5.1': + resolution: {integrity: sha512-aBI3x9Uv/g6TkVToQwIEuXn9NsRT6oMrlQt9WYN4bWElHayeiKpdEQa3sdSpA48g+X5q4CoWDI7etaj8cV9obw==} engines: {node: '>=18'} - '@polkadot/types-known@15.4.1': - resolution: {integrity: sha512-LF9estF7y7sXHQ7tA9QoVzAmtkglJdcqMbj70H70V+CBZjiyAgd84PvBtQ6mcIywJ54iCyBBLbhlqcbH/zgUdw==} + '@polkadot/types-create@15.5.1': + resolution: {integrity: sha512-qb8lDmWIZeOiw2INIKGFDM6dtMn08kU5WaIfjpIPDBAM+htqhhGNirxIvSwKIY15YuAUqapk4EXelZLnDxHJ8g==} engines: {node: '>=18'} - '@polkadot/types-support@14.3.1': - resolution: {integrity: sha512-MfVe4iIOJIfBr+gj8Lu8gwIvhnO6gDbG5LeaKAjY6vS6Oh0y5Ztr8NdMIl8ccSpoyt3LqIXjfApeGzHiLzr6bw==} + '@polkadot/types-known@15.5.1': + resolution: {integrity: sha512-4FXoN22h9pgEfWf+p23+77PzQGfZPC4oMjLYKB5tJ6z1Wn/QkoaNlidBf/swTaYRTE5KnXU4BHdEyR1N+336sw==} engines: {node: '>=18'} - '@polkadot/types-support@15.0.1': - resolution: {integrity: sha512-w/IWFuDn290brw75ZXKPkQMazz0yizE0zK0XuqP2S4IW009x+z0peRc7Q4k36JOqDVDwSc38vTxWtRPVqdoI1g==} + '@polkadot/types-support@15.5.1': + resolution: {integrity: sha512-EGju43gZszvWQVgmwUQitimdLRL06TJ26ate9HNsTdz2EOhPp9yuYolLwk6qIwBitpF0qup0H6FgiohhIBrc7g==} engines: {node: '>=18'} - '@polkadot/types-support@15.4.1': - resolution: {integrity: sha512-BeMi+780cP0jb4HTwovjcNt/Yf/lgKkXGlfu/gZhLb6eu7Sz3VzAxI8z2WdMWE/NiXMEHeC0YpwOowhRS2tEVA==} - engines: {node: '>=18'} - - '@polkadot/types@15.4.1': - resolution: {integrity: sha512-5Oh6iwdtXg9/CN55c2IzNx90/ALK1DlP/OswN9vERp6rqZttAEGTQgSiYFHP0+7WhDB8H6v8jVutHadqv7lhMg==} + '@polkadot/types@15.5.1': + resolution: {integrity: sha512-1kpF4xaYvokuXaNt37PESXCIrYWlrNQWQwfopQz1RPVHGKcLioMZ8cc49nYSPjpvRriDSVmE/zhy16uBWANHOw==} engines: {node: '>=18'} '@polkadot/ui-settings@3.12.1': @@ -1681,107 +1645,109 @@ packages: '@protobufjs/utf8@1.1.0': resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} - '@rollup/rollup-android-arm-eabi@4.28.1': - resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==} + '@rollup/rollup-android-arm-eabi@4.32.1': + resolution: {integrity: sha512-/pqA4DmqyCm8u5YIDzIdlLcEmuvxb0v8fZdFhVMszSpDTgbQKdw3/mB3eMUHIbubtJ6F9j+LtmyCnHTEqIHyzA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.28.1': - resolution: {integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==} + '@rollup/rollup-android-arm64@4.32.1': + resolution: {integrity: sha512-If3PDskT77q7zgqVqYuj7WG3WC08G1kwXGVFi9Jr8nY6eHucREHkfpX79c0ACAjLj3QIWKPJR7w4i+f5EdLH5Q==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.28.1': - resolution: {integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==} + '@rollup/rollup-darwin-arm64@4.32.1': + resolution: {integrity: sha512-zCpKHioQ9KgZToFp5Wvz6zaWbMzYQ2LJHQ+QixDKq52KKrF65ueu6Af4hLlLWHjX1Wf/0G5kSJM9PySW9IrvHA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.28.1': - resolution: {integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==} + '@rollup/rollup-darwin-x64@4.32.1': + resolution: {integrity: sha512-sFvF+t2+TyUo/ZQqUcifrJIgznx58oFZbdHS9TvHq3xhPVL9nOp+yZ6LKrO9GWTP+6DbFtoyLDbjTpR62Mbr3Q==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.28.1': - resolution: {integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==} + '@rollup/rollup-freebsd-arm64@4.32.1': + resolution: {integrity: sha512-NbOa+7InvMWRcY9RG+B6kKIMD/FsnQPH0MWUvDlQB1iXnF/UcKSudCXZtv4lW+C276g3w5AxPbfry5rSYvyeYA==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.28.1': - resolution: {integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==} + '@rollup/rollup-freebsd-x64@4.32.1': + resolution: {integrity: sha512-JRBRmwvHPXR881j2xjry8HZ86wIPK2CcDw0EXchE1UgU0ubWp9nvlT7cZYKc6bkypBt745b4bglf3+xJ7hXWWw==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': - resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==} + '@rollup/rollup-linux-arm-gnueabihf@4.32.1': + resolution: {integrity: sha512-PKvszb+9o/vVdUzCCjL0sKHukEQV39tD3fepXxYrHE3sTKrRdCydI7uldRLbjLmDA3TFDmh418XH19NOsDRH8g==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.28.1': - resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==} + '@rollup/rollup-linux-arm-musleabihf@4.32.1': + resolution: {integrity: sha512-9WHEMV6Y89eL606ReYowXuGF1Yb2vwfKWKdD1A5h+OYnPZSJvxbEjxTRKPgi7tkP2DSnW0YLab1ooy+i/FQp/Q==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.28.1': - resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==} + '@rollup/rollup-linux-arm64-gnu@4.32.1': + resolution: {integrity: sha512-tZWc9iEt5fGJ1CL2LRPw8OttkCBDs+D8D3oEM8mH8S1ICZCtFJhD7DZ3XMGM8kpqHvhGUTvNUYVDnmkj4BDXnw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.28.1': - resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==} + '@rollup/rollup-linux-arm64-musl@4.32.1': + resolution: {integrity: sha512-FTYc2YoTWUsBz5GTTgGkRYYJ5NGJIi/rCY4oK/I8aKowx1ToXeoVVbIE4LGAjsauvlhjfl0MYacxClLld1VrOw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.28.1': - resolution: {integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==} + '@rollup/rollup-linux-loongarch64-gnu@4.32.1': + resolution: {integrity: sha512-F51qLdOtpS6P1zJVRzYM0v6MrBNypyPEN1GfMiz0gPu9jN8ScGaEFIZQwteSsGKg799oR5EaP7+B2jHgL+d+Kw==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': - resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==} + '@rollup/rollup-linux-powerpc64le-gnu@4.32.1': + resolution: {integrity: sha512-wO0WkfSppfX4YFm5KhdCCpnpGbtgQNj/tgvYzrVYFKDpven8w2N6Gg5nB6w+wAMO3AIfSTWeTjfVe+uZ23zAlg==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.28.1': - resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==} + '@rollup/rollup-linux-riscv64-gnu@4.32.1': + resolution: {integrity: sha512-iWswS9cIXfJO1MFYtI/4jjlrGb/V58oMu4dYJIKnR5UIwbkzR0PJ09O0PDZT0oJ3LYWXBSWahNf/Mjo6i1E5/g==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.28.1': - resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==} + '@rollup/rollup-linux-s390x-gnu@4.32.1': + resolution: {integrity: sha512-RKt8NI9tebzmEthMnfVgG3i/XeECkMPS+ibVZjZ6mNekpbbUmkNWuIN2yHsb/mBPyZke4nlI4YqIdFPgKuoyQQ==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.28.1': - resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==} + '@rollup/rollup-linux-x64-gnu@4.32.1': + resolution: {integrity: sha512-WQFLZ9c42ECqEjwg/GHHsouij3pzLXkFdz0UxHa/0OM12LzvX7DzedlY0SIEly2v18YZLRhCRoHZDxbBSWoGYg==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.28.1': - resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==} + '@rollup/rollup-linux-x64-musl@4.32.1': + resolution: {integrity: sha512-BLoiyHDOWoS3uccNSADMza6V6vCNiphi94tQlVIL5de+r6r/CCQuNnerf+1g2mnk2b6edp5dk0nhdZ7aEjOBsA==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.28.1': - resolution: {integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==} + '@rollup/rollup-win32-arm64-msvc@4.32.1': + resolution: {integrity: sha512-w2l3UnlgYTNNU+Z6wOR8YdaioqfEnwPjIsJ66KxKAf0p+AuL2FHeTX6qvM+p/Ue3XPBVNyVSfCrfZiQh7vZHLQ==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.28.1': - resolution: {integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==} + '@rollup/rollup-win32-ia32-msvc@4.32.1': + resolution: {integrity: sha512-Am9H+TGLomPGkBnaPWie4F3x+yQ2rr4Bk2jpwy+iV+Gel9jLAu/KqT8k3X4jxFPW6Zf8OMnehyutsd+eHoq1WQ==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.28.1': - resolution: {integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==} + '@rollup/rollup-win32-x64-msvc@4.32.1': + resolution: {integrity: sha512-ar80GhdZb4DgmW3myIS9nRFYcpJRSME8iqWgzH2i44u+IdrzmiXVxeFnExQ5v4JYUSpg94bWjevMG8JHf1Da5Q==} cpu: [x64] os: [win32] + '@rx-state/core@0.1.4': + resolution: {integrity: sha512-Z+3hjU2xh1HisLxt+W5hlYX/eGSDaXXP+ns82gq/PLZpkXLu0uwcNUh9RLY3Clq4zT+hSsA3vcpIGt6+UAb8rQ==} + peerDependencies: + rxjs: '>=7' + '@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==} @@ -1823,8 +1789,8 @@ packages: '@substrate/connect-extension-protocol@2.2.1': resolution: {integrity: sha512-GoafTgm/Jey9E4Xlj4Z5ZBt/H4drH2CNq8VrAro80rtoznrXnFDNVivLQzZN0Xaj2g8YXSn9pC9Oc9IovYZJXw==} - '@substrate/connect-known-chains@1.8.0': - resolution: {integrity: sha512-sl7WfeDgnZuPvUl5Xw0XIziOTe8rEBJ3uugyDETGnafxEbjYMv5aJL0ilq5djhnQ7l9OuMJCN3Ckved2yINeeQ==} + '@substrate/connect-known-chains@1.9.1': + resolution: {integrity: sha512-dWNf5x3hjrY4s+WEovPKL0jH58pyIaIiAM918aAdnp/VKkAMqOfhKzRWL7BqJDKCm95bL4fqnOfaXZ3SQpVoYw==} '@substrate/connect@0.8.11': resolution: {integrity: sha512-ofLs1PAO9AtDdPbdyTYj217Pe+lBfTLltdHDs3ds8no0BseoLeAGxpz1mHfi7zB4IxI3YyAiLjH6U8cw4pj4Nw==} @@ -1871,8 +1837,8 @@ packages: '@types/abstract-leveldown@7.2.5': resolution: {integrity: sha512-/2B0nQF4UdupuxeKTJA2+Rj1D+uDemo6P4kMwKCpbfpnzeVaWSELTsAw4Lxn3VJD6APtRrZOCuYo+4nHUQfTfg==} - '@types/aws-lambda@8.10.145': - resolution: {integrity: sha512-dtByW6WiFk5W5Jfgz1VM+YPA21xMXTuSFoLYIDY0L44jDLLflVPtZkYuu3/YxpGcvjzKFBZLU+GyKjR0HOYtyw==} + '@types/aws-lambda@8.10.147': + resolution: {integrity: sha512-nD0Z9fNIZcxYX5Mai2CTmFD7wX7UldCkW2ezCF8D1T5hdiLsnTWDGRpfRYntU6VjTdLQjOvyszru7I1c1oCQew==} '@types/bn.js@5.1.6': resolution: {integrity: sha512-Xh8vSwUeMKeYYrj3cX4lGQgFSF/N03r+tv4AiLl1SucqV+uTQpxRcnM8AkXKHwYP9ZPXOYXRr2KPXpVlIvqh9w==} @@ -1904,17 +1870,14 @@ packages: '@types/long@4.0.2': resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} - '@types/mdast@3.0.15': - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} - - '@types/ms@0.7.34': - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@22.10.1': - resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==} + '@types/node@22.12.0': + resolution: {integrity: sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==} '@types/node@22.7.5': resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} @@ -1928,8 +1891,8 @@ packages: '@types/prop-types@15.7.14': resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==} - '@types/react@18.3.14': - resolution: {integrity: sha512-NzahNKvjNhVjuPBQ+2G7WlxstQ+47kXZNHlUvFakDViuIEfGY926GqhMueQFZ7woG+sPiQKlF36XfrIUVSUfFg==} + '@types/react@18.3.18': + resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==} '@types/responselike@1.0.3': resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} @@ -1946,9 +1909,6 @@ packages: '@types/tmp@0.2.6': resolution: {integrity: sha512-chhaNf2oKHlRkDGt+tiKE2Z5aJ6qalm7Z9rlLdBwmOiAAf09YQvvoLXjWK4HWPF1xU/fqvMgfNfpVoBscA/tKA==} - '@types/unist@2.0.11': - resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} - '@types/uuid@9.0.8': resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} @@ -1964,26 +1924,26 @@ packages: '@unique-nft/opal-testnet-types@1003.70.0': resolution: {integrity: sha512-vXJoV7cqwO21svd03DFL7bl8H77zFbJzgkUgNPLPbVA6YkZt+ZeDmbP9lKKPbNadB1DP84kOZPVvsbmzx7+Jxg==} peerDependencies: - '@polkadot/api': 15.4.1 - '@polkadot/types': 15.4.1 + '@polkadot/api': 15.5.1 + '@polkadot/types': 15.5.1 '@unique-nft/quartz-mainnet-types@1003.70.0': resolution: {integrity: sha512-qs5iwMcDpBeJ6mXzSAbMB6DY9NkdAqPD1KmekOVG9Vug+hKWvSlfW5ozd63O/J2h7iliqwL0WZjDdwvBNdcTNg==} peerDependencies: - '@polkadot/api': 15.4.1 - '@polkadot/types': 15.4.1 + '@polkadot/api': 15.5.1 + '@polkadot/types': 15.5.1 '@unique-nft/sapphire-mainnet-types@1003.70.0': resolution: {integrity: sha512-hEMpLDPZxUuGW+B90AxaF3Clw/kvGn20oao+Ejq4nrCNRF/2k3CjjuG1NScZVcPZuGgKPAkBPiHNSF9aRN6qFg==} peerDependencies: - '@polkadot/api': 15.4.1 - '@polkadot/types': 15.4.1 + '@polkadot/api': 15.5.1 + '@polkadot/types': 15.5.1 '@unique-nft/unique-mainnet-types@1001.63.0': resolution: {integrity: sha512-IVr+F7+QvbW2zhbI2aWNtiOBXYAcd6GQ9HmDUdfSd4S0s3TSa8PAC/ikNvD3fk1A2FlBbWjVO0JyPDnnybv/og==} peerDependencies: - '@polkadot/api': 15.4.1 - '@polkadot/types': 15.4.1 + '@polkadot/api': 15.5.1 + '@polkadot/types': 15.5.1 '@vitest/expect@2.1.8': resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} @@ -2071,8 +2031,8 @@ packages: zod: optional: true - abortcontroller-polyfill@1.7.5: - resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==} + abortcontroller-polyfill@1.7.8: + resolution: {integrity: sha512-9f1iZ2uWh92VcrU9Y8x+LdM4DLj75VE0MJB8zuF1iUnroEptStw+DQ8EQPMUdfe5k+PkB1uUfDQfWbhstH8LrQ==} abstract-leveldown@6.2.3: resolution: {integrity: sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==} @@ -2104,8 +2064,8 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} - agent-base@7.1.1: - resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} + agent-base@7.1.3: + resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} engines: {node: '>= 14'} agentkeepalive@4.6.0: @@ -2244,9 +2204,6 @@ packages: resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} engines: {node: '>=8'} - binary-searching@2.0.5: - resolution: {integrity: sha512-v4N2l3RxL+m4zDxyxz3Ne2aTmiPn8ZUpKFpdPtO+ItW1NcTCXA7JeHG5GMBSvoKSkQZ9ycS+EouDVxYB9ufKWA==} - bindings@1.5.0: resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} @@ -2319,12 +2276,12 @@ packages: buffer@6.0.3: resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - bufferutil@4.0.8: - resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==} + bufferutil@4.0.9: + resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==} engines: {node: '>=6.14.2'} - bundle-require@5.0.0: - resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} + bundle-require@5.1.0: + resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: esbuild: '>=0.18' @@ -2357,14 +2314,14 @@ packages: resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} engines: {node: '>= 0.4'} - call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} - call-bind@1.0.8: resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} engines: {node: '>= 0.4'} + call-bound@1.0.3: + resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} + engines: {node: '>= 0.4'} + camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} @@ -2403,9 +2360,6 @@ packages: resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} - chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} @@ -2420,8 +2374,8 @@ packages: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} - chokidar@4.0.1: - resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} engines: {node: '>= 14.16.0'} chownr@1.1.4: @@ -2436,8 +2390,9 @@ packages: engines: {node: '>=4.0.0', npm: '>=3.0.0'} deprecated: This module has been superseded by the multiformats module - cipher-base@1.0.4: - resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} + cipher-base@1.0.6: + resolution: {integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==} + engines: {node: '>= 0.10'} class-is@1.1.0: resolution: {integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==} @@ -2531,8 +2486,8 @@ packages: command-exists@1.2.9: resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} - commander@12.1.0: - resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + commander@13.1.0: + resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==} engines: {node: '>=18'} commander@2.7.1: @@ -2551,10 +2506,6 @@ packages: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} - comment-parser@1.4.1: - resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} - engines: {node: '>= 12.0.0'} - complex.js@2.4.2: resolution: {integrity: sha512-qtx7HRhPGSCBtGiST4/WGHuW+zeaND/6Ld+db6PbrulIB1i2Ev/2UPiqcmpQNPSyfBKraC0EOvOKCB5dGZKt3g==} @@ -2564,8 +2515,8 @@ packages: config-chain@1.1.13: resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} - consola@3.2.3: - resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + consola@3.4.0: + resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==} engines: {node: ^14.18.0 || >=16.10.0} console-control-strings@1.1.0: @@ -2589,8 +2540,8 @@ packages: cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - cookie@0.6.0: - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + cookie@0.7.1: + resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} engines: {node: '>= 0.6'} copy-to-clipboard@3.3.3: @@ -2617,11 +2568,11 @@ packages: create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - cross-fetch@4.0.0: - resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==} + cross-fetch@4.1.0: + resolution: {integrity: sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==} - cross-spawn@7.0.5: - resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==} + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} css-color-keywords@1.0.0: @@ -2635,8 +2586,8 @@ packages: resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} - cssstyle@4.1.0: - resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==} + cssstyle@4.2.1: + resolution: {integrity: sha512-9+vem03dMXG7gDmZ62uqmRiMRNtinIZ9ZyuF6BdxzfOD+FdN5hretzynkn0ReS2DO2GSw76RWHs0UmJPI2zUjw==} engines: {node: '>=18'} csstype@3.1.3: @@ -2694,11 +2645,8 @@ packages: resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} engines: {node: '>=10'} - decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - - decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + decimal.js@10.5.0: + resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==} decode-uri-component@0.2.2: resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} @@ -2724,8 +2672,8 @@ packages: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} - deepmerge-ts@7.1.3: - resolution: {integrity: sha512-qCSH6I0INPxd9Y1VtAiLpnYvz5O//6rCfJXKk0z66Up9/VOSr+1yS8XSKA5IWRxjocFGlzPyaZYe+jxq7OOLtQ==} + deepmerge-ts@7.1.4: + resolution: {integrity: sha512-fxqo6nHGQ9zOVgI4KXqtWXJR/yCLtC7aXIVq+6jc8tHPFUxlFmuUcm2kC4vztQ+LJxQ3gER/XAWearGYQ8niGA==} engines: {node: '>=16.0.0'} defer-to-connect@2.0.1: @@ -2760,10 +2708,6 @@ packages: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} - dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} @@ -2801,8 +2745,8 @@ packages: resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} engines: {node: '>=12'} - dunder-proto@1.0.0: - resolution: {integrity: sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==} + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} engines: {node: '>= 0.4'} eastasianwidth@0.2.0: @@ -2817,8 +2761,8 @@ packages: elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} - 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==} @@ -2870,10 +2814,6 @@ packages: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true - es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} - es-define-property@1.0.1: resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} engines: {node: '>= 0.4'} @@ -2882,11 +2822,15 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + es-module-lexer@1.6.0: + resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} - es-toolkit@1.29.0: - resolution: {integrity: sha512-GjTll+E6APcfAQA09D89HdT8Qn2Yb+TeDSDBTMcxAo+V+w1amAtCI15LJu4YPH/UCPoSo/F47Gr1LIM0TE0lZA==} + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-toolkit@1.31.0: + resolution: {integrity: sha512-vwS0lv/tzjM2/t4aZZRAgN9I9TP0MSkWuvt6By+hEXfG/uLs8yg2S1/ayRXH/x3pinbLgVJYT+eppueg3cM6tg==} es5-ext@0.10.64: resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} @@ -2918,8 +2862,8 @@ packages: engines: {node: '>=18'} hasBin: true - esbuild@0.24.0: - resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==} + esbuild@0.24.2: + resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} engines: {node: '>=18'} hasBin: true @@ -3013,8 +2957,8 @@ packages: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} - execa@9.5.1: - resolution: {integrity: sha512-QY5PPtSonnGwhhHDNI7+3RvY285c7iuJFFB+lU+oEzMY/gEGJ808owqJsrr8Otd1E/x07po1LkUBmdAc5duPAg==} + execa@9.5.2: + resolution: {integrity: sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==} engines: {node: ^18.19.0 || >=20.5.0} expand-template@2.0.3: @@ -3025,8 +2969,8 @@ packages: resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} engines: {node: '>=12.0.0'} - express@4.21.0: - resolution: {integrity: sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==} + express@4.21.2: + resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} engines: {node: '>= 0.10.0'} ext@1.7.0: @@ -3043,6 +2987,9 @@ packages: resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} engines: {'0': node >=0.6.0} + fast-content-type-parse@2.0.1: + resolution: {integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==} + fast-copy@3.0.2: resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} @@ -3062,8 +3009,8 @@ packages: fast-sha256@1.3.0: resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} - fdir@6.4.2: - resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + fdir@6.4.3: + resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==} peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: @@ -3116,8 +3063,9 @@ packages: debug: optional: true - for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + for-each@0.3.4: + resolution: {integrity: sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==} + engines: {node: '>= 0.4'} foreground-child@3.3.0: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} @@ -3155,8 +3103,8 @@ packages: fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + fs-extra@11.3.0: + resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} engines: {node: '>=14.14'} fs-extra@4.0.3: @@ -3202,18 +3150,18 @@ packages: get-func-name@2.0.2: resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} - - get-intrinsic@1.2.5: - resolution: {integrity: sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg==} + get-intrinsic@1.2.7: + resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==} engines: {node: '>= 0.4'} get-port@7.1.0: resolution: {integrity: sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw==} engines: {node: '>=16'} + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + get-stream@5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} @@ -3226,8 +3174,8 @@ packages: resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} engines: {node: '>=18'} - get-tsconfig@4.8.1: - resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + get-tsconfig@4.10.0: + resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} getpass@0.1.7: resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} @@ -3263,9 +3211,6 @@ packages: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - gopd@1.2.0: resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} engines: {node: '>= 0.4'} @@ -3308,14 +3253,6 @@ packages: has-property-descriptors@1.0.2: resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} - - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - has-symbols@1.1.0: resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} engines: {node: '>= 0.4'} @@ -3393,8 +3330,8 @@ packages: resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} engines: {node: '>= 6'} - https-proxy-agent@7.0.5: - resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} engines: {node: '>= 14'} human-signals@2.1.0: @@ -3492,8 +3429,8 @@ packages: resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} engines: {node: '>= 0.10'} - is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + is-arguments@1.2.0: + resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} engines: {node: '>= 0.4'} is-binary-path@2.1.0: @@ -3534,8 +3471,8 @@ packages: is-function@1.0.2: resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} - is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + is-generator-function@1.1.0: + resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} engines: {node: '>= 0.4'} is-glob@4.0.3: @@ -3580,6 +3517,10 @@ packages: is-promise@2.2.2: resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} @@ -3588,8 +3529,8 @@ packages: resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==} engines: {node: '>=18'} - is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} engines: {node: '>= 0.4'} is-typedarray@1.0.0: @@ -3699,6 +3640,7 @@ packages: resolution: {integrity: sha512-Quz3MvAwHxVYNXsOByL7xI5EB2WYOeFswqaHIA3qOK3isRWTxiplBEocmmru6XmxDB2L7jDNYtYA4FyimoAFEw==} engines: {node: '>=8.17.0'} hasBin: true + bundledDependencies: [] jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} @@ -3728,10 +3670,6 @@ packages: resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} engines: {node: '>=0.10.0'} - kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - level-codec@9.0.2: resolution: {integrity: sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==} engines: {node: '>=6'} @@ -3778,8 +3716,8 @@ packages: resolution: {integrity: sha512-EXFrhSpiHtJ+/L8xXDvQNK5VjUMG51u878jzZcaT5XhuN/zFg6PWJFnl/qB2Y2j7eMWnvCRP7Kp+ua2H36cG4g==} engines: {node: '>=12.0.0'} - lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} engines: {node: '>=14'} lines-and-columns@1.2.4: @@ -3823,8 +3761,8 @@ packages: loupe@2.3.7: resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} - loupe@3.1.2: - resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} + loupe@3.1.3: + resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==} lowercase-keys@2.0.0: resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} @@ -3851,8 +3789,8 @@ packages: ltgt@2.2.1: resolution: {integrity: sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==} - magic-string@0.30.15: - resolution: {integrity: sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==} + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} @@ -3865,6 +3803,10 @@ packages: resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==} engines: {node: '>=10'} + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + mathjs@13.2.3: resolution: {integrity: sha512-I67Op0JU7gGykFK64bJexkSAmX498x0oybxfVXn1rroEMZTmfxppORhnk8mEUnPrbTfabDKCqvm18vJKMk2UJQ==} engines: {node: '>= 18'} @@ -3873,12 +3815,6 @@ packages: md5.js@1.3.5: resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} - mdast-util-from-markdown@1.3.1: - resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} - - mdast-util-to-string@3.2.0: - resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} - mdn-data@2.0.30: resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} @@ -3915,69 +3851,6 @@ packages: micro-ftch@0.3.1: resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==} - micromark-core-commonmark@1.1.0: - resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} - - micromark-factory-destination@1.1.0: - resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} - - micromark-factory-label@1.1.0: - resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} - - micromark-factory-space@1.1.0: - resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} - - micromark-factory-title@1.1.0: - resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} - - micromark-factory-whitespace@1.1.0: - resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} - - micromark-util-character@1.2.0: - resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} - - micromark-util-chunked@1.1.0: - resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} - - micromark-util-classify-character@1.1.0: - resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} - - micromark-util-combine-extensions@1.1.0: - resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} - - micromark-util-decode-numeric-character-reference@1.1.0: - resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} - - micromark-util-decode-string@1.1.0: - resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} - - micromark-util-encode@1.1.0: - resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} - - micromark-util-html-tag-name@1.2.0: - resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} - - micromark-util-normalize-identifier@1.1.0: - resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} - - micromark-util-resolve-all@1.1.0: - resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} - - micromark-util-sanitize-uri@1.2.0: - resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} - - micromark-util-subtokenize@1.1.0: - resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} - - micromark-util-symbol@1.1.0: - resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} - - micromark-util-types@1.1.0: - resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} - - micromark@3.2.0: - resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} - mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} @@ -4114,10 +3987,6 @@ packages: moonbeam-types-bundle@2.0.10: resolution: {integrity: sha512-QDk/ktioLqDQCOLUu/+FyyF3UYWdKOqqa6q1vwI75pdKBg5elNpRXugEC1irzkLolTanvMRc2rO+qarT9ijjyg==} - mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - mrmime@2.0.0: resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} engines: {node: '>=10'} @@ -4221,6 +4090,9 @@ packages: node-addon-api@2.0.2: resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} + node-addon-api@5.1.0: + resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} + node-addon-api@7.1.1: resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} @@ -4245,12 +4117,8 @@ packages: resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} engines: {node: '>= 6.13.0'} - node-gyp-build@4.8.2: - resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==} - hasBin: true - - node-gyp-build@4.8.3: - resolution: {integrity: sha512-EMS95CMJzdoSKoIiXo8pxKoL8DYxwIZXYlLmgPb8KUv794abpnLK6ynsCAWNliOjREKruYKdzbh76HHYUHX7nw==} + node-gyp-build@4.8.4: + resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} hasBin: true node-gyp@8.4.1: @@ -4433,8 +4301,8 @@ packages: resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} engines: {node: '>=16 || 14 >=14.18'} - path-to-regexp@0.1.10: - resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==} + path-to-regexp@0.1.12: + resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} pathe@1.1.2: resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} @@ -4489,8 +4357,8 @@ packages: pnglib@0.0.1: resolution: {integrity: sha512-95ChzOoYLOPIyVmL+Y6X+abKGXUJlvOVLkB1QQkyXl7Uczc6FElUy/x01NS7r2GX6GRezloO/ecCX9h4U9KadA==} - polkadot-api@1.7.7: - resolution: {integrity: sha512-W6YmA4LhPVv2xhp5dKHM/lZp0fclpaKvspR0h+TBANNdUpBp5aAxq6qdkPAZ4sWTC6Rfi+j5PZZP88oQweOHWg==} + polkadot-api@1.8.4: + resolution: {integrity: sha512-3zMx9tQ8g0dqjSyxElVKDyWUCiASC18xToSTRnc50dSkytd94oRyWip8F/4vh0M0ICxzZDOZbbzj4wdAwA619A==} hasBin: true peerDependencies: rxjs: '>=7.8.0' @@ -4527,8 +4395,8 @@ packages: resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} engines: {node: ^10 || ^12 || >=14} - postcss@8.4.49: - resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + postcss@8.5.1: + resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==} engines: {node: ^10 || ^12 || >=14} prebuild-install@7.1.3: @@ -4536,17 +4404,6 @@ packages: engines: {node: '>=10'} hasBin: true - prettier-plugin-jsdoc@0.3.38: - resolution: {integrity: sha512-h81ZV/nFk5gr3fzWMWzWoz/M/8FneAZxscT7DVSy+5jMIuWYnBFZfSswVKYZyTaZ5r6+6k4hpFTDWhRp85C1tg==} - engines: {node: '>=12.0.0'} - peerDependencies: - prettier: '>=2.1.2' - - prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - pretty-ms@9.2.0: resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==} engines: {node: '>=18'} @@ -4594,8 +4451,8 @@ packages: prr@1.0.1: resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} - psl@1.10.0: - resolution: {integrity: sha512-KSKHEbjAnpUuAUserOq0FxGXCUrzC3WniuSJhvdbs102rL55266ZcHBqLWOsG30spQMlPdpy7icATiAQehg/iA==} + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} pump@3.0.2: resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} @@ -4654,17 +4511,14 @@ packages: peerDependencies: react: ^15.3.0 || 16 || 17 || 18 - react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + react-dom@19.0.0: + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} peerDependencies: - react: ^18.3.1 + react: ^19.0.0 react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - react-reconciler@0.29.2: resolution: {integrity: sha512-zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg==} engines: {node: '>=0.10.0'} @@ -4687,9 +4541,9 @@ packages: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} - readdirp@4.0.2: - resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} - engines: {node: '>= 14.16.0'} + readdirp@4.1.1: + resolution: {integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==} + engines: {node: '>= 14.18.0'} real-require@0.2.0: resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} @@ -4762,16 +4616,16 @@ packages: resolution: {integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==} engines: {node: '>=8.0'} - rollup@4.28.1: - resolution: {integrity: sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==} + rollup@4.32.1: + resolution: {integrity: sha512-z+aeEsOeEa3mEbS1Tjl6sAZ8NE3+AalQz1RJGj81M+fizusbdDMoEJwdJNHfaB40Scr4qNu+welOfes7maKonA==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true rrweb-cssom@0.6.0: resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} - rrweb-cssom@0.7.1: - resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} + rrweb-cssom@0.8.0: + resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} run-async@3.0.0: resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} @@ -4780,16 +4634,16 @@ packages: rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} - sade@1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} - safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + safe-stable-stringify@2.5.0: resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} engines: {node: '>=10'} @@ -4807,12 +4661,15 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.25.0: + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} + scrypt-js@3.0.1: resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==} - secp256k1@4.0.3: - resolution: {integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==} - engines: {node: '>=10.0.0'} + secp256k1@4.0.4: + resolution: {integrity: sha512-6JfvwvjUOn8F/jUoBY2Q1v5WY5XS+rj8qSe0v8Y4ezH4InLgTEeOOPQsRll9OV429Pvo6BCHGavIyJfr3TAhsw==} + engines: {node: '>=18.0.0'} secure-json-parse@2.7.0: resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} @@ -4883,8 +4740,20 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} engines: {node: '>= 0.4'} siginfo@2.0.0: @@ -4925,8 +4794,8 @@ packages: smoldot@2.0.26: resolution: {integrity: sha512-F+qYmH4z2s2FK+CxGj8moYcd1ekSIKH8ywkdqlOz88Dat35iB1DIYL11aILN46YSGMzQW/lbJNS307zBSDN5Ig==} - smoldot@2.0.33: - resolution: {integrity: sha512-EnGqFb2oJSYjR04WsvL4tZNPrkdSiScBk3yQUhvWwJqpJ2bBu8Sq/hQgyVB20J1NxJ6FL0cgldjnGJmH1iQCTg==} + smoldot@2.0.34: + resolution: {integrity: sha512-mw9tCbGEhEp0koMqLL0jBEixVY1MIN/xI3pE6ZY1TuOPU+LnYy8FloODVyzkvzQPaBYrETXJdRlmA/+k6g3gow==} socks-proxy-agent@6.2.1: resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} @@ -4969,8 +4838,8 @@ packages: spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - spdx-license-ids@3.0.20: - resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} + spdx-license-ids@3.0.21: + resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==} split2@4.2.0: resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} @@ -5133,8 +5002,8 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@0.3.1: - resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} tinyglobby@0.2.10: resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} @@ -5167,6 +5036,10 @@ packages: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} + toad-cache@3.7.0: + resolution: {integrity: sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==} + engines: {node: '>=12'} + toggle-selection@1.0.6: resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} @@ -5277,8 +5150,8 @@ packages: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} - type-fest@4.29.0: - resolution: {integrity: sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==} + type-fest@4.33.0: + resolution: {integrity: sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==} engines: {node: '>=16'} type-is@1.6.18: @@ -5363,8 +5236,13 @@ packages: engines: {node: '>=14.17'} hasBin: true - typescript@5.7.2: - resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} + typescript@5.5.4: + resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} + engines: {node: '>=14.17'} + hasBin: true + + typescript@5.7.3: + resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} engines: {node: '>=14.17'} hasBin: true @@ -5399,9 +5277,6 @@ packages: unique-slug@2.0.2: resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} - unist-util-stringify-position@3.0.3: - resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} - universal-github-app-jwt@2.2.0: resolution: {integrity: sha512-G5o6f95b5BggDGuUfKDApKaCgNYy2x7OdHY0zSMF081O0EJobw+1130VONhrA7ezGSV2FNOGyM+KQpQZAr9bIQ==} @@ -5459,11 +5334,6 @@ packages: resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} hasBin: true - uvu@0.5.6: - resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} - engines: {node: '>=8'} - hasBin: true - v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} @@ -5494,8 +5364,8 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} hasBin: true - vite@5.4.11: - resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} + vite@5.4.14: + resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -5590,10 +5460,6 @@ packages: resolution: {integrity: sha512-9KSeASCb/y6BG7rwhgtYC4CvYY66JfkmGNEYb7q1xgjt9BWfkf09MJPaRyoyT5trdOxYDHkT9tDlypvQWaU8UQ==} engines: {node: '>=14', npm: '>=6.12.0'} - web3-errors@1.3.0: - resolution: {integrity: sha512-j5JkAKCtuVMbY3F5PYXBqg1vWrtF4jcyyMY1rlw8a4PV67AkqlepjGgpzWJZd56Mt+TvHy6DA1F/3Id8LatDSQ==} - engines: {node: '>=14', npm: '>=6.12.0'} - web3-errors@1.3.1: resolution: {integrity: sha512-w3NMJujH+ZSW4ltIZZKtdbkbyQEvBzyp3JRn59Ckli0Nz4VMsVq8aF1bLWM7A2kuQ+yVEm3ySeNU+7mSRwx7RQ==} engines: {node: '>=14', npm: '>=6.12.0'} @@ -5702,18 +5568,10 @@ packages: resolution: {integrity: sha512-0IXoaAFtFc8Yin7cCdQfB9ZmjafrbP6BO0f0KT/khMhXKUpoJ6yShrVhiNpyRBo8QQjuOagsWzwSK2H49I7sbw==} engines: {node: '>=14', npm: '>=6.12.0'} - web3-types@1.9.0: - resolution: {integrity: sha512-I520KBPoXqEaM/ybj6xHD1E3gRb8/WdudLQaRBvJNQSSfHuPW9P2sD59mbhm6dsKtnje+T90dIxSyzVVFlEdlg==} - engines: {node: '>=14', npm: '>=6.12.0'} - web3-utils@1.10.4: resolution: {integrity: sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==} engines: {node: '>=8.0.0'} - web3-utils@4.3.2: - resolution: {integrity: sha512-bEFpYEBMf6ER78Uvj2mdsCbaLGLK9kABOsa3TtXOEEhuaMy/RK0KlRkKoZ2vmf/p3hB8e1q5erknZ6Hy7AVp7A==} - engines: {node: '>=14', npm: '>=6.12.0'} - web3-utils@4.3.3: resolution: {integrity: sha512-kZUeCwaQm+RNc2Bf1V3BYbF29lQQKz28L0y+FA4G0lS8IxtJVGi5SeDTUkpwqqkdHHC7JcapPDnyyzJ1lfWlOw==} engines: {node: '>=14', npm: '>=6.12.0'} @@ -5752,8 +5610,8 @@ packages: resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} engines: {node: '>=18'} - whatwg-url@14.0.0: - resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==} + whatwg-url@14.1.0: + resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==} engines: {node: '>=18'} whatwg-url@5.0.0: @@ -5762,8 +5620,8 @@ packages: whatwg-url@7.1.0: resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} - which-typed-array@1.1.16: - resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==} + which-typed-array@1.1.18: + resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} engines: {node: '>= 0.4'} which@2.0.2: @@ -5948,13 +5806,13 @@ packages: snapshots: - '@acala-network/chopsticks-core@1.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@acala-network/chopsticks-core@1.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: '@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/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 + '@polkadot/types-known': 15.5.1 '@polkadot/util': 13.3.1 '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) comlink: 4.4.2 @@ -5970,13 +5828,13 @@ snapshots: - supports-color - utf-8-validate - '@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)': + '@acala-network/chopsticks-db@1.0.2(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(utf-8-validate@5.0.10)': dependencies: - '@acala-network/chopsticks-core': 1.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@acala-network/chopsticks-core': 1.0.2(bufferutil@4.0.9)(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)) + typeorm: 0.3.20(sqlite3@5.1.7)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3)) transitivePeerDependencies: - '@google-cloud/spanner' - '@sap/hana-client' @@ -6004,15 +5862,15 @@ snapshots: '@polkadot/util': 13.3.1 '@polkadot/wasm-util': 7.4.1(@polkadot/util@13.3.1) - '@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)': + '@acala-network/chopsticks@1.0.2(bufferutil@4.0.9)(debug@4.3.7)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(utf-8-validate@5.0.10)': dependencies: - '@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) + '@acala-network/chopsticks-core': 1.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@acala-network/chopsticks-db': 1.0.2(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(utf-8-validate@5.0.10) '@pnpm/npm-conf': 2.3.1 - '@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/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.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) @@ -6022,7 +5880,7 @@ snapshots: 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) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) yargs: 17.7.2 zod: 3.24.1 transitivePeerDependencies: @@ -6048,15 +5906,15 @@ snapshots: - typeorm-aurora-data-api-driver - utf-8-validate - '@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)': + '@acala-network/chopsticks@1.0.2(bufferutil@4.0.9)(debug@4.4.0)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(utf-8-validate@5.0.10)': dependencies: - '@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) + '@acala-network/chopsticks-core': 1.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@acala-network/chopsticks-db': 1.0.2(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(utf-8-validate@5.0.10) '@pnpm/npm-conf': 2.3.1 - '@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/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.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) @@ -6066,7 +5924,7 @@ snapshots: 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) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) yargs: 17.7.2 zod: 3.24.1 transitivePeerDependencies: @@ -6092,9 +5950,9 @@ snapshots: - typeorm-aurora-data-api-driver - utf-8-validate - '@acala-network/type-definitions@5.1.2(@polkadot/types@15.4.1)': + '@acala-network/type-definitions@5.1.2(@polkadot/types@15.5.1)': dependencies: - '@polkadot/types': 15.4.1 + '@polkadot/types': 15.5.1 '@adraffy/ens-normalize@1.10.1': {} @@ -6105,6 +5963,14 @@ snapshots: ansi-styles: 6.2.1 is-fullwidth-code-point: 4.0.0 + '@asamuzakjp/css-color@2.8.3': + dependencies: + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) + '@csstools/css-tokenizer': 3.0.3 + lru-cache: 10.4.3 + '@asamuzakjp/dom-selector@2.0.2': dependencies: bidi-js: 1.0.3 @@ -6119,17 +5985,13 @@ snapshots: '@babel/helper-validator-identifier@7.25.9': {} - '@babel/runtime@7.26.0': - dependencies: - regenerator-runtime: 0.14.1 - '@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))': + '@bifrost-finance/type-definitions@1.11.3(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@biomejs/biome@1.9.4': optionalDependencies: @@ -6169,9 +6031,9 @@ snapshots: '@colors/colors@1.5.0': optional: true - '@commander-js/extra-typings@12.1.0(commander@12.1.0)': + '@commander-js/extra-typings@13.1.0(commander@13.1.0)': dependencies: - commander: 12.1.0 + commander: 13.1.0 '@crustio/type-definitions@1.3.0': dependencies: @@ -6181,6 +6043,26 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.9 + '@csstools/color-helpers@5.0.1': {} + + '@csstools/css-calc@2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': + dependencies: + '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) + '@csstools/css-tokenizer': 3.0.3 + + '@csstools/css-color-parser@3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': + dependencies: + '@csstools/color-helpers': 5.0.1 + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) + '@csstools/css-tokenizer': 3.0.3 + + '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)': + dependencies: + '@csstools/css-tokenizer': 3.0.3 + + '@csstools/css-tokenizer@3.0.3': {} + '@darwinia/types-known@2.8.10': {} '@darwinia/types@2.8.10': {} @@ -6188,7 +6070,7 @@ snapshots: '@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': 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': 15.5.1 transitivePeerDependencies: - '@polkadot/util' - '@polkadot/util-crypto' @@ -6213,7 +6095,7 @@ snapshots: '@esbuild/aix-ppc64@0.23.1': optional: true - '@esbuild/aix-ppc64@0.24.0': + '@esbuild/aix-ppc64@0.24.2': optional: true '@esbuild/android-arm64@0.21.5': @@ -6222,7 +6104,7 @@ snapshots: '@esbuild/android-arm64@0.23.1': optional: true - '@esbuild/android-arm64@0.24.0': + '@esbuild/android-arm64@0.24.2': optional: true '@esbuild/android-arm@0.21.5': @@ -6231,7 +6113,7 @@ snapshots: '@esbuild/android-arm@0.23.1': optional: true - '@esbuild/android-arm@0.24.0': + '@esbuild/android-arm@0.24.2': optional: true '@esbuild/android-x64@0.21.5': @@ -6240,7 +6122,7 @@ snapshots: '@esbuild/android-x64@0.23.1': optional: true - '@esbuild/android-x64@0.24.0': + '@esbuild/android-x64@0.24.2': optional: true '@esbuild/darwin-arm64@0.21.5': @@ -6249,7 +6131,7 @@ snapshots: '@esbuild/darwin-arm64@0.23.1': optional: true - '@esbuild/darwin-arm64@0.24.0': + '@esbuild/darwin-arm64@0.24.2': optional: true '@esbuild/darwin-x64@0.21.5': @@ -6258,7 +6140,7 @@ snapshots: '@esbuild/darwin-x64@0.23.1': optional: true - '@esbuild/darwin-x64@0.24.0': + '@esbuild/darwin-x64@0.24.2': optional: true '@esbuild/freebsd-arm64@0.21.5': @@ -6267,7 +6149,7 @@ snapshots: '@esbuild/freebsd-arm64@0.23.1': optional: true - '@esbuild/freebsd-arm64@0.24.0': + '@esbuild/freebsd-arm64@0.24.2': optional: true '@esbuild/freebsd-x64@0.21.5': @@ -6276,7 +6158,7 @@ snapshots: '@esbuild/freebsd-x64@0.23.1': optional: true - '@esbuild/freebsd-x64@0.24.0': + '@esbuild/freebsd-x64@0.24.2': optional: true '@esbuild/linux-arm64@0.21.5': @@ -6285,7 +6167,7 @@ snapshots: '@esbuild/linux-arm64@0.23.1': optional: true - '@esbuild/linux-arm64@0.24.0': + '@esbuild/linux-arm64@0.24.2': optional: true '@esbuild/linux-arm@0.21.5': @@ -6294,7 +6176,7 @@ snapshots: '@esbuild/linux-arm@0.23.1': optional: true - '@esbuild/linux-arm@0.24.0': + '@esbuild/linux-arm@0.24.2': optional: true '@esbuild/linux-ia32@0.21.5': @@ -6303,7 +6185,7 @@ snapshots: '@esbuild/linux-ia32@0.23.1': optional: true - '@esbuild/linux-ia32@0.24.0': + '@esbuild/linux-ia32@0.24.2': optional: true '@esbuild/linux-loong64@0.21.5': @@ -6312,7 +6194,7 @@ snapshots: '@esbuild/linux-loong64@0.23.1': optional: true - '@esbuild/linux-loong64@0.24.0': + '@esbuild/linux-loong64@0.24.2': optional: true '@esbuild/linux-mips64el@0.21.5': @@ -6321,7 +6203,7 @@ snapshots: '@esbuild/linux-mips64el@0.23.1': optional: true - '@esbuild/linux-mips64el@0.24.0': + '@esbuild/linux-mips64el@0.24.2': optional: true '@esbuild/linux-ppc64@0.21.5': @@ -6330,7 +6212,7 @@ snapshots: '@esbuild/linux-ppc64@0.23.1': optional: true - '@esbuild/linux-ppc64@0.24.0': + '@esbuild/linux-ppc64@0.24.2': optional: true '@esbuild/linux-riscv64@0.21.5': @@ -6339,7 +6221,7 @@ snapshots: '@esbuild/linux-riscv64@0.23.1': optional: true - '@esbuild/linux-riscv64@0.24.0': + '@esbuild/linux-riscv64@0.24.2': optional: true '@esbuild/linux-s390x@0.21.5': @@ -6348,7 +6230,7 @@ snapshots: '@esbuild/linux-s390x@0.23.1': optional: true - '@esbuild/linux-s390x@0.24.0': + '@esbuild/linux-s390x@0.24.2': optional: true '@esbuild/linux-x64@0.21.5': @@ -6357,7 +6239,10 @@ snapshots: '@esbuild/linux-x64@0.23.1': optional: true - '@esbuild/linux-x64@0.24.0': + '@esbuild/linux-x64@0.24.2': + optional: true + + '@esbuild/netbsd-arm64@0.24.2': optional: true '@esbuild/netbsd-x64@0.21.5': @@ -6366,13 +6251,13 @@ snapshots: '@esbuild/netbsd-x64@0.23.1': optional: true - '@esbuild/netbsd-x64@0.24.0': + '@esbuild/netbsd-x64@0.24.2': optional: true '@esbuild/openbsd-arm64@0.23.1': optional: true - '@esbuild/openbsd-arm64@0.24.0': + '@esbuild/openbsd-arm64@0.24.2': optional: true '@esbuild/openbsd-x64@0.21.5': @@ -6381,7 +6266,7 @@ snapshots: '@esbuild/openbsd-x64@0.23.1': optional: true - '@esbuild/openbsd-x64@0.24.0': + '@esbuild/openbsd-x64@0.24.2': optional: true '@esbuild/sunos-x64@0.21.5': @@ -6390,7 +6275,7 @@ snapshots: '@esbuild/sunos-x64@0.23.1': optional: true - '@esbuild/sunos-x64@0.24.0': + '@esbuild/sunos-x64@0.24.2': optional: true '@esbuild/win32-arm64@0.21.5': @@ -6399,7 +6284,7 @@ snapshots: '@esbuild/win32-arm64@0.23.1': optional: true - '@esbuild/win32-arm64@0.24.0': + '@esbuild/win32-arm64@0.24.2': optional: true '@esbuild/win32-ia32@0.21.5': @@ -6408,7 +6293,7 @@ snapshots: '@esbuild/win32-ia32@0.23.1': optional: true - '@esbuild/win32-ia32@0.24.0': + '@esbuild/win32-ia32@0.24.2': optional: true '@esbuild/win32-x64@0.21.5': @@ -6417,7 +6302,7 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true - '@esbuild/win32-x64@0.24.0': + '@esbuild/win32-x64@0.24.2': optional: true '@ethereumjs/common@2.6.5': @@ -6563,21 +6448,21 @@ snapshots: '@ethersproject/properties': 5.7.0 '@ethersproject/strings': 5.7.0 - '@fragnova/api-augment@0.1.0-spec-1.0.4-mainnet(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@fragnova/api-augment@0.1.0-spec-1.0.4-mainnet(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@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 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@frequency-chain/api-augment@1.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@frequency-chain/api-augment@1.11.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@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 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 transitivePeerDependencies: - bufferutil - supports-color @@ -6586,111 +6471,110 @@ snapshots: '@gar/promisify@1.1.3': optional: true - '@inquirer/checkbox@4.0.3(@types/node@22.10.1)': + '@inquirer/checkbox@4.0.7(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/figures': 1.0.8 - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/figures': 1.0.10 + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 - '@inquirer/confirm@5.1.0(@types/node@22.10.1)': + '@inquirer/confirm@5.1.4(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 - '@inquirer/core@10.1.1(@types/node@22.10.1)': + '@inquirer/core@10.1.5(@types/node@22.12.0)': dependencies: - '@inquirer/figures': 1.0.8 - '@inquirer/type': 3.0.1(@types/node@22.10.1) + '@inquirer/figures': 1.0.10 + '@inquirer/type': 3.0.3(@types/node@22.12.0) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 - strip-ansi: 6.0.1 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 transitivePeerDependencies: - '@types/node' - '@inquirer/editor@4.2.0(@types/node@22.10.1)': + '@inquirer/editor@4.2.4(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 external-editor: 3.1.0 - '@inquirer/expand@4.0.3(@types/node@22.10.1)': + '@inquirer/expand@4.0.7(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 yoctocolors-cjs: 2.1.2 - '@inquirer/figures@1.0.8': {} + '@inquirer/figures@1.0.10': {} - '@inquirer/input@4.1.0(@types/node@22.10.1)': + '@inquirer/input@4.1.4(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 - '@inquirer/number@3.0.3(@types/node@22.10.1)': + '@inquirer/number@3.0.7(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 - '@inquirer/password@4.0.3(@types/node@22.10.1)': + '@inquirer/password@4.0.7(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 ansi-escapes: 4.3.2 - '@inquirer/prompts@7.2.0(@types/node@22.10.1)': - dependencies: - '@inquirer/checkbox': 4.0.3(@types/node@22.10.1) - '@inquirer/confirm': 5.1.0(@types/node@22.10.1) - '@inquirer/editor': 4.2.0(@types/node@22.10.1) - '@inquirer/expand': 4.0.3(@types/node@22.10.1) - '@inquirer/input': 4.1.0(@types/node@22.10.1) - '@inquirer/number': 3.0.3(@types/node@22.10.1) - '@inquirer/password': 4.0.3(@types/node@22.10.1) - '@inquirer/rawlist': 4.0.3(@types/node@22.10.1) - '@inquirer/search': 3.0.3(@types/node@22.10.1) - '@inquirer/select': 4.0.3(@types/node@22.10.1) - '@types/node': 22.10.1 - - '@inquirer/rawlist@4.0.3(@types/node@22.10.1)': - dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/prompts@7.2.4(@types/node@22.12.0)': + dependencies: + '@inquirer/checkbox': 4.0.7(@types/node@22.12.0) + '@inquirer/confirm': 5.1.4(@types/node@22.12.0) + '@inquirer/editor': 4.2.4(@types/node@22.12.0) + '@inquirer/expand': 4.0.7(@types/node@22.12.0) + '@inquirer/input': 4.1.4(@types/node@22.12.0) + '@inquirer/number': 3.0.7(@types/node@22.12.0) + '@inquirer/password': 4.0.7(@types/node@22.12.0) + '@inquirer/rawlist': 4.0.7(@types/node@22.12.0) + '@inquirer/search': 3.0.7(@types/node@22.12.0) + '@inquirer/select': 4.0.7(@types/node@22.12.0) + '@types/node': 22.12.0 + + '@inquirer/rawlist@4.0.7(@types/node@22.12.0)': + dependencies: + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 yoctocolors-cjs: 2.1.2 - '@inquirer/search@3.0.3(@types/node@22.10.1)': + '@inquirer/search@3.0.7(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/figures': 1.0.8 - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/figures': 1.0.10 + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 yoctocolors-cjs: 2.1.2 - '@inquirer/select@4.0.3(@types/node@22.10.1)': + '@inquirer/select@4.0.7(@types/node@22.12.0)': dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/figures': 1.0.8 - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/figures': 1.0.10 + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 - '@inquirer/type@3.0.1(@types/node@22.10.1)': + '@inquirer/type@3.0.3(@types/node@22.12.0)': dependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@interlay/interbtc-types@1.13.0': {} @@ -6703,7 +6587,7 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@jridgewell/gen-mapping@0.3.5': + '@jridgewell/gen-mapping@0.3.8': dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.0 @@ -6725,17 +6609,17 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@kiltprotocol/type-definitions@1.11401.1(@polkadot/types@15.4.1)': + '@kiltprotocol/type-definitions@1.11401.1(@polkadot/types@15.5.1)': dependencies: - '@polkadot/types': 15.4.1 + '@polkadot/types': 15.5.1 '@laminar/type-definitions@0.3.1': dependencies: '@open-web3/orml-type-definitions': 0.8.2-11 - '@logion/node-api@0.27.0-4(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@logion/node-api@0.27.0-4(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(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 @@ -6746,52 +6630,126 @@ snapshots: - supports-color - utf-8-validate - '@mangata-finance/type-definitions@2.1.2(@polkadot/types@15.4.1)': + '@mangata-finance/type-definitions@2.1.2(@polkadot/types@15.5.1)': dependencies: - '@polkadot/types': 15.4.1 + '@polkadot/types': 15.5.1 '@metaverse-network-sdk/type-definitions@0.0.1-16': dependencies: lodash.merge: 4.6.2 - '@moonbeam-network/api-augment@0.3300.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@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': 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) + '@moonbeam-network/api-augment@0.3401.1(bufferutil@4.0.9)(postcss@8.5.1)(utf-8-validate@5.0.10)(yaml@2.4.5)': + dependencies: + '@biomejs/biome': 1.9.4 + '@moonbeam-network/types-bundle': 1.0.0(bufferutil@4.0.9)(postcss@8.5.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/typegen': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 + '@types/node': 22.12.0 + tsup: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.5.4)(yaml@2.4.5) + tsx: 4.19.2 + typescript: 5.5.4 + transitivePeerDependencies: + - '@microsoft/api-extractor' + - '@swc/core' + - bufferutil + - jiti + - postcss + - supports-color + - utf-8-validate + - yaml + + '@moonbeam-network/api-augment@0.3401.1(bufferutil@4.0.9)(postcss@8.5.1)(utf-8-validate@5.0.10)(yaml@2.6.1)': + dependencies: + '@biomejs/biome': 1.9.4 + '@moonbeam-network/types-bundle': 1.0.0(bufferutil@4.0.9)(postcss@8.5.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/typegen': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 + '@types/node': 22.12.0 + tsup: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.5.4)(yaml@2.6.1) tsx: 4.19.2 - typescript: 5.7.2 + typescript: 5.5.4 + transitivePeerDependencies: + - '@microsoft/api-extractor' + - '@swc/core' + - bufferutil + - jiti + - postcss + - supports-color + - utf-8-validate + - yaml + + '@moonbeam-network/types-bundle@1.0.0(bufferutil@4.0.9)(postcss@8.5.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5)': + dependencies: + '@biomejs/biome': 1.9.4 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/typegen': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 + tsup: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.5.4)(yaml@2.4.5) + typescript: 5.5.4 + transitivePeerDependencies: + - '@microsoft/api-extractor' + - '@swc/core' + - bufferutil + - jiti + - postcss + - supports-color + - tsx + - utf-8-validate + - yaml + + '@moonbeam-network/types-bundle@1.0.0(bufferutil@4.0.9)(postcss@8.5.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1)': + dependencies: + '@biomejs/biome': 1.9.4 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/typegen': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 + tsup: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.5.4)(yaml@2.6.1) + typescript: 5.5.4 transitivePeerDependencies: + - '@microsoft/api-extractor' + - '@swc/core' - bufferutil + - jiti + - postcss - supports-color + - tsx - utf-8-validate + - yaml - '@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)': + '@moonwall/cli@5.9.1(@types/node@22.12.0)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(tsx@4.19.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1)': dependencies: - '@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.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.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) + '@acala-network/chopsticks': 1.0.2(bufferutil@4.0.9)(debug@4.3.7)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3))(utf-8-validate@5.0.10) + '@inquirer/prompts': 7.2.4(@types/node@22.12.0) + '@moonbeam-network/api-augment': 0.3401.1(bufferutil@4.0.9)(postcss@8.5.1)(utf-8-validate@5.0.10)(yaml@2.4.5) + '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1) + '@moonwall/util': 5.9.1(@types/node@22.12.0)(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1) + '@octokit/rest': 21.1.0 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.5.1(bufferutil@4.0.9)(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/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) - '@types/react': 18.3.14 + '@types/react': 18.3.18 '@types/tmp': 0.2.6 '@vitest/ui': 2.1.8(vitest@2.1.8) - '@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) + '@zombienet/orchestrator': 0.0.97(@polkadot/util@13.3.1)(@types/node@22.12.0)(bufferutil@4.0.9)(chokidar@3.6.0)(utf-8-validate@5.0.10) + '@zombienet/utils': 0.0.26(@types/node@22.12.0)(chokidar@3.6.0)(typescript@5.3.3) bottleneck: 2.19.5 cfonts: 3.3.0 chalk: 5.3.0 @@ -6800,21 +6758,21 @@ snapshots: colors: 1.4.0 debug: 4.3.7 dotenv: 16.4.5 - ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ethers: 6.13.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) get-port: 7.1.0 - ink: 5.1.0(@types/react@18.3.14)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) + ink: 5.1.0(@types/react@18.3.18)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10) jsonc-parser: 3.3.1 minimatch: 9.0.5 - 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) + polkadot-api: 1.8.4(bufferutil@4.0.9)(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5) react: 18.3.1 semver: 7.6.3 tiny-invariant: 1.3.3 tmp: 0.2.3 - 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.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) + viem: 2.22.13(bufferutil@4.0.9)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + vitest: 2.1.8(@types/node@22.12.0)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + web3: 4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) yaml: 2.4.5 yargs: 17.7.2 transitivePeerDependencies: @@ -6865,23 +6823,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.1)': + '@moonwall/types@5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1)': dependencies: - '@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/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.5.1(bufferutil@4.0.9)(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': 15.5.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.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) + '@types/node': 22.12.0 + '@zombienet/utils': 0.0.26(@types/node@22.12.0)(chokidar@3.6.0)(typescript@5.3.3) 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.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.1) + ethers: 6.13.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) + polkadot-api: 1.8.4(bufferutil@4.0.9)(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5) + viem: 2.22.13(bufferutil@4.0.9)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + vitest: 2.1.8(@types/node@22.12.0)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + web3: 4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) transitivePeerDependencies: - '@edge-runtime/vm' - '@microsoft/api-extractor' @@ -6912,23 +6870,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.1)': + '@moonwall/types@5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.1)': dependencies: - '@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/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.5.1(bufferutil@4.0.9)(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': 15.5.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.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2) + '@types/node': 22.12.0 + '@zombienet/utils': 0.0.26(@types/node@22.12.0)(chokidar@3.6.0)(typescript@5.3.3) 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.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.1) + ethers: 6.13.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) + polkadot-api: 1.8.4(bufferutil@4.0.9)(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1) + viem: 2.22.13(bufferutil@4.0.9)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + vitest: 2.1.8(@types/node@22.12.0)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + web3: 4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) transitivePeerDependencies: - '@edge-runtime/vm' - '@microsoft/api-extractor' @@ -6959,17 +6917,17 @@ 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.1)': + '@moonwall/util@5.9.1(@types/node@22.12.0)(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(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.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) + '@inquirer/prompts': 7.2.4(@types/node@22.12.0) + '@moonbeam-network/api-augment': 0.3401.1(bufferutil@4.0.9)(postcss@8.5.1)(utf-8-validate@5.0.10)(yaml@2.4.5) + '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(yaml@2.4.5)(zod@3.24.1) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.5.1(bufferutil@4.0.9)(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/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) bottleneck: 2.19.5 @@ -6979,13 +6937,13 @@ snapshots: colors: 1.4.0 debug: 4.3.7 dotenv: 16.4.5 - ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ethers: 6.13.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) rlp: 3.0.0 semver: 7.6.3 - 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.1) - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + viem: 2.22.13(bufferutil@4.0.9)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + vitest: 2.1.8(@types/node@22.12.0)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + web3: 4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) yargs: 17.7.2 transitivePeerDependencies: - '@edge-runtime/vm' @@ -7018,17 +6976,17 @@ 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.1)': + '@moonwall/util@5.9.1(@types/node@22.12.0)(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(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.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) + '@inquirer/prompts': 7.2.4(@types/node@22.12.0) + '@moonbeam-network/api-augment': 0.3401.1(bufferutil@4.0.9)(postcss@8.5.1)(utf-8-validate@5.0.10)(yaml@2.6.1) + '@moonwall/types': 5.9.1(@vitest/ui@2.1.8)(bufferutil@4.0.9)(chokidar@3.6.0)(encoding@0.1.13)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(yaml@2.6.1)(zod@3.24.1) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.5.1(bufferutil@4.0.9)(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/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) bottleneck: 2.19.5 @@ -7038,13 +6996,13 @@ snapshots: colors: 1.4.0 debug: 4.3.7 dotenv: 16.4.5 - ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ethers: 6.13.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) rlp: 3.0.0 semver: 7.6.3 - 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.1) - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + viem: 2.22.13(bufferutil@4.0.9)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + vitest: 2.1.8(@types/node@22.12.0)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + web3: 4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) yargs: 17.7.2 transitivePeerDependencies: - '@edge-runtime/vm' @@ -7085,10 +7043,6 @@ snapshots: dependencies: '@noble/hashes': 1.4.0 - '@noble/curves@1.7.0': - dependencies: - '@noble/hashes': 1.6.0 - '@noble/curves@1.8.1': dependencies: '@noble/hashes': 1.7.1 @@ -7099,10 +7053,6 @@ snapshots: '@noble/hashes@1.4.0': {} - '@noble/hashes@1.6.0': {} - - '@noble/hashes@1.6.1': {} - '@noble/hashes@1.7.1': {} '@noble/secp256k1@1.7.1': {} @@ -7119,161 +7069,162 @@ snapshots: rimraf: 3.0.2 optional: true - '@octokit/app@15.1.0': + '@octokit/app@15.1.2': dependencies: - '@octokit/auth-app': 7.1.1 - '@octokit/auth-unauthenticated': 6.1.0 - '@octokit/core': 6.1.2 - '@octokit/oauth-app': 7.1.3 - '@octokit/plugin-paginate-rest': 11.3.5(@octokit/core@6.1.2) - '@octokit/types': 13.6.0 - '@octokit/webhooks': 13.3.0 + '@octokit/auth-app': 7.1.4 + '@octokit/auth-unauthenticated': 6.1.1 + '@octokit/core': 6.1.3 + '@octokit/oauth-app': 7.1.5 + '@octokit/plugin-paginate-rest': 11.4.0(@octokit/core@6.1.3) + '@octokit/types': 13.7.0 + '@octokit/webhooks': 13.4.3 - '@octokit/auth-app@7.1.1': + '@octokit/auth-app@7.1.4': dependencies: - '@octokit/auth-oauth-app': 8.1.1 - '@octokit/auth-oauth-user': 5.1.1 - '@octokit/request': 9.1.3 - '@octokit/request-error': 6.1.5 - '@octokit/types': 13.6.0 - lru-cache: 10.4.3 + '@octokit/auth-oauth-app': 8.1.2 + '@octokit/auth-oauth-user': 5.1.2 + '@octokit/request': 9.2.0 + '@octokit/request-error': 6.1.6 + '@octokit/types': 13.7.0 + toad-cache: 3.7.0 universal-github-app-jwt: 2.2.0 universal-user-agent: 7.0.2 - '@octokit/auth-oauth-app@8.1.1': + '@octokit/auth-oauth-app@8.1.2': dependencies: - '@octokit/auth-oauth-device': 7.1.1 - '@octokit/auth-oauth-user': 5.1.1 - '@octokit/request': 9.1.3 - '@octokit/types': 13.6.0 + '@octokit/auth-oauth-device': 7.1.2 + '@octokit/auth-oauth-user': 5.1.2 + '@octokit/request': 9.2.0 + '@octokit/types': 13.7.0 universal-user-agent: 7.0.2 - '@octokit/auth-oauth-device@7.1.1': + '@octokit/auth-oauth-device@7.1.2': dependencies: - '@octokit/oauth-methods': 5.1.2 - '@octokit/request': 9.1.3 - '@octokit/types': 13.6.0 + '@octokit/oauth-methods': 5.1.3 + '@octokit/request': 9.2.0 + '@octokit/types': 13.7.0 universal-user-agent: 7.0.2 - '@octokit/auth-oauth-user@5.1.1': + '@octokit/auth-oauth-user@5.1.2': dependencies: - '@octokit/auth-oauth-device': 7.1.1 - '@octokit/oauth-methods': 5.1.2 - '@octokit/request': 9.1.3 - '@octokit/types': 13.6.0 + '@octokit/auth-oauth-device': 7.1.2 + '@octokit/oauth-methods': 5.1.3 + '@octokit/request': 9.2.0 + '@octokit/types': 13.7.0 universal-user-agent: 7.0.2 - '@octokit/auth-token@5.1.1': {} + '@octokit/auth-token@5.1.2': {} - '@octokit/auth-unauthenticated@6.1.0': + '@octokit/auth-unauthenticated@6.1.1': dependencies: - '@octokit/request-error': 6.1.5 - '@octokit/types': 13.6.0 + '@octokit/request-error': 6.1.6 + '@octokit/types': 13.7.0 - '@octokit/core@6.1.2': + '@octokit/core@6.1.3': dependencies: - '@octokit/auth-token': 5.1.1 - '@octokit/graphql': 8.1.1 - '@octokit/request': 9.1.3 - '@octokit/request-error': 6.1.5 - '@octokit/types': 13.6.0 + '@octokit/auth-token': 5.1.2 + '@octokit/graphql': 8.1.2 + '@octokit/request': 9.2.0 + '@octokit/request-error': 6.1.6 + '@octokit/types': 13.7.0 before-after-hook: 3.0.2 universal-user-agent: 7.0.2 - '@octokit/endpoint@10.1.1': + '@octokit/endpoint@10.1.2': dependencies: - '@octokit/types': 13.6.0 + '@octokit/types': 13.7.0 universal-user-agent: 7.0.2 - '@octokit/graphql@8.1.1': + '@octokit/graphql@8.1.2': dependencies: - '@octokit/request': 9.1.3 - '@octokit/types': 13.6.0 + '@octokit/request': 9.2.0 + '@octokit/types': 13.7.0 universal-user-agent: 7.0.2 - '@octokit/oauth-app@7.1.3': + '@octokit/oauth-app@7.1.5': dependencies: - '@octokit/auth-oauth-app': 8.1.1 - '@octokit/auth-oauth-user': 5.1.1 - '@octokit/auth-unauthenticated': 6.1.0 - '@octokit/core': 6.1.2 + '@octokit/auth-oauth-app': 8.1.2 + '@octokit/auth-oauth-user': 5.1.2 + '@octokit/auth-unauthenticated': 6.1.1 + '@octokit/core': 6.1.3 '@octokit/oauth-authorization-url': 7.1.1 - '@octokit/oauth-methods': 5.1.2 - '@types/aws-lambda': 8.10.145 + '@octokit/oauth-methods': 5.1.3 + '@types/aws-lambda': 8.10.147 universal-user-agent: 7.0.2 '@octokit/oauth-authorization-url@7.1.1': {} - '@octokit/oauth-methods@5.1.2': + '@octokit/oauth-methods@5.1.3': dependencies: '@octokit/oauth-authorization-url': 7.1.1 - '@octokit/request': 9.1.3 - '@octokit/request-error': 6.1.5 - '@octokit/types': 13.6.0 + '@octokit/request': 9.2.0 + '@octokit/request-error': 6.1.6 + '@octokit/types': 13.7.0 - '@octokit/openapi-types@22.2.0': {} + '@octokit/openapi-types@23.0.1': {} - '@octokit/openapi-webhooks-types@8.3.0': {} + '@octokit/openapi-webhooks-types@8.5.1': {} - '@octokit/plugin-paginate-graphql@5.2.3(@octokit/core@6.1.2)': + '@octokit/plugin-paginate-graphql@5.2.4(@octokit/core@6.1.3)': dependencies: - '@octokit/core': 6.1.2 + '@octokit/core': 6.1.3 - '@octokit/plugin-paginate-rest@11.3.5(@octokit/core@6.1.2)': + '@octokit/plugin-paginate-rest@11.4.0(@octokit/core@6.1.3)': dependencies: - '@octokit/core': 6.1.2 - '@octokit/types': 13.6.0 + '@octokit/core': 6.1.3 + '@octokit/types': 13.7.0 - '@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.2)': + '@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.3)': dependencies: - '@octokit/core': 6.1.2 + '@octokit/core': 6.1.3 - '@octokit/plugin-rest-endpoint-methods@13.2.5(@octokit/core@6.1.2)': + '@octokit/plugin-rest-endpoint-methods@13.3.0(@octokit/core@6.1.3)': dependencies: - '@octokit/core': 6.1.2 - '@octokit/types': 13.6.0 + '@octokit/core': 6.1.3 + '@octokit/types': 13.7.0 - '@octokit/plugin-retry@7.1.2(@octokit/core@6.1.2)': + '@octokit/plugin-retry@7.1.3(@octokit/core@6.1.3)': dependencies: - '@octokit/core': 6.1.2 - '@octokit/request-error': 6.1.5 - '@octokit/types': 13.6.0 + '@octokit/core': 6.1.3 + '@octokit/request-error': 6.1.6 + '@octokit/types': 13.7.0 bottleneck: 2.19.5 - '@octokit/plugin-throttling@9.3.1(@octokit/core@6.1.2)': + '@octokit/plugin-throttling@9.4.0(@octokit/core@6.1.3)': dependencies: - '@octokit/core': 6.1.2 - '@octokit/types': 13.6.0 + '@octokit/core': 6.1.3 + '@octokit/types': 13.7.0 bottleneck: 2.19.5 - '@octokit/request-error@6.1.5': + '@octokit/request-error@6.1.6': dependencies: - '@octokit/types': 13.6.0 + '@octokit/types': 13.7.0 - '@octokit/request@9.1.3': + '@octokit/request@9.2.0': dependencies: - '@octokit/endpoint': 10.1.1 - '@octokit/request-error': 6.1.5 - '@octokit/types': 13.6.0 + '@octokit/endpoint': 10.1.2 + '@octokit/request-error': 6.1.6 + '@octokit/types': 13.7.0 + fast-content-type-parse: 2.0.1 universal-user-agent: 7.0.2 - '@octokit/rest@21.0.2': + '@octokit/rest@21.1.0': dependencies: - '@octokit/core': 6.1.2 - '@octokit/plugin-paginate-rest': 11.3.5(@octokit/core@6.1.2) - '@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.2) - '@octokit/plugin-rest-endpoint-methods': 13.2.5(@octokit/core@6.1.2) + '@octokit/core': 6.1.3 + '@octokit/plugin-paginate-rest': 11.4.0(@octokit/core@6.1.3) + '@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.3) + '@octokit/plugin-rest-endpoint-methods': 13.3.0(@octokit/core@6.1.3) - '@octokit/types@13.6.0': + '@octokit/types@13.7.0': dependencies: - '@octokit/openapi-types': 22.2.0 + '@octokit/openapi-types': 23.0.1 '@octokit/webhooks-methods@5.1.0': {} - '@octokit/webhooks@13.3.0': + '@octokit/webhooks@13.4.3': dependencies: - '@octokit/openapi-webhooks-types': 8.3.0 - '@octokit/request-error': 6.1.5 + '@octokit/openapi-webhooks-types': 8.5.1 + '@octokit/request-error': 6.1.6 '@octokit/webhooks-methods': 5.1.0 '@open-web3/orml-type-definitions@0.8.2-11': {} @@ -7324,33 +7275,33 @@ snapshots: '@polka/url@1.0.0-next.28': {} - '@polkadot-api/cli@0.9.21(bufferutil@4.0.8)(postcss@8.4.49)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5)': + '@polkadot-api/cli@0.10.3(bufferutil@4.0.9)(postcss@8.5.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5)': dependencies: - '@commander-js/extra-typings': 12.1.0(commander@12.1.0) - '@polkadot-api/codegen': 0.12.9 - '@polkadot-api/ink-contracts': 0.2.2 + '@commander-js/extra-typings': 13.1.0(commander@13.1.0) + '@polkadot-api/codegen': 0.12.13 + '@polkadot-api/ink-contracts': 0.2.5 '@polkadot-api/json-rpc-provider': 0.0.4 - '@polkadot-api/known-chains': 0.5.8 - '@polkadot-api/metadata-compatibility': 0.1.12 - '@polkadot-api/observable-client': 0.6.3(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1) + '@polkadot-api/known-chains': 0.6.1 + '@polkadot-api/metadata-compatibility': 0.1.15 + '@polkadot-api/observable-client': 0.7.2(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1) '@polkadot-api/polkadot-sdk-compat': 2.3.1 - '@polkadot-api/sm-provider': 0.1.7(@polkadot-api/smoldot@0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@polkadot-api/smoldot': 0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/sm-provider': 0.1.7(@polkadot-api/smoldot@0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@polkadot-api/smoldot': 0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/substrate-client': 0.3.0 '@polkadot-api/utils': 0.1.2 '@polkadot-api/wasm-executor': 0.1.2 - '@polkadot-api/ws-provider': 0.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@types/node': 22.10.1 - commander: 12.1.0 - execa: 9.5.1 + '@polkadot-api/ws-provider': 0.3.6(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@types/node': 22.12.0 + commander: 13.1.0 + execa: 9.5.2 fs.promises.exists: 1.1.4 ora: 8.1.1 read-pkg: 9.0.1 rxjs: 7.8.1 - tsc-prog: 2.3.0(typescript@5.7.2) - tsup: 8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.4.5) - typescript: 5.7.2 + tsc-prog: 2.3.0(typescript@5.7.3) + tsup: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.4.5) + typescript: 5.7.3 write-package: 7.1.0 transitivePeerDependencies: - '@microsoft/api-extractor' @@ -7363,33 +7314,33 @@ snapshots: - utf-8-validate - yaml - '@polkadot-api/cli@0.9.21(bufferutil@4.0.8)(postcss@8.4.49)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1)': + '@polkadot-api/cli@0.10.3(bufferutil@4.0.9)(postcss@8.5.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1)': dependencies: - '@commander-js/extra-typings': 12.1.0(commander@12.1.0) - '@polkadot-api/codegen': 0.12.9 - '@polkadot-api/ink-contracts': 0.2.2 + '@commander-js/extra-typings': 13.1.0(commander@13.1.0) + '@polkadot-api/codegen': 0.12.13 + '@polkadot-api/ink-contracts': 0.2.5 '@polkadot-api/json-rpc-provider': 0.0.4 - '@polkadot-api/known-chains': 0.5.8 - '@polkadot-api/metadata-compatibility': 0.1.12 - '@polkadot-api/observable-client': 0.6.3(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1) + '@polkadot-api/known-chains': 0.6.1 + '@polkadot-api/metadata-compatibility': 0.1.15 + '@polkadot-api/observable-client': 0.7.2(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1) '@polkadot-api/polkadot-sdk-compat': 2.3.1 - '@polkadot-api/sm-provider': 0.1.7(@polkadot-api/smoldot@0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@polkadot-api/smoldot': 0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/sm-provider': 0.1.7(@polkadot-api/smoldot@0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@polkadot-api/smoldot': 0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/substrate-client': 0.3.0 '@polkadot-api/utils': 0.1.2 '@polkadot-api/wasm-executor': 0.1.2 - '@polkadot-api/ws-provider': 0.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@types/node': 22.10.1 - commander: 12.1.0 - execa: 9.5.1 + '@polkadot-api/ws-provider': 0.3.6(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@types/node': 22.12.0 + commander: 13.1.0 + execa: 9.5.2 fs.promises.exists: 1.1.4 ora: 8.1.1 read-pkg: 9.0.1 rxjs: 7.8.1 - tsc-prog: 2.3.0(typescript@5.7.2) - tsup: 8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) - typescript: 5.7.2 + tsc-prog: 2.3.0(typescript@5.7.3) + tsup: 8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.6.1) + typescript: 5.7.3 write-package: 7.1.0 transitivePeerDependencies: - '@microsoft/api-extractor' @@ -7402,18 +7353,18 @@ snapshots: - utf-8-validate - yaml - '@polkadot-api/codegen@0.12.9': + '@polkadot-api/codegen@0.12.13': dependencies: - '@polkadot-api/ink-contracts': 0.2.2 - '@polkadot-api/metadata-builders': 0.9.2 - '@polkadot-api/metadata-compatibility': 0.1.12 - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/ink-contracts': 0.2.5 + '@polkadot-api/metadata-builders': 0.10.1 + '@polkadot-api/metadata-compatibility': 0.1.15 + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/utils': 0.1.2 - '@polkadot-api/ink-contracts@0.2.2': + '@polkadot-api/ink-contracts@0.2.5': dependencies: - '@polkadot-api/metadata-builders': 0.9.2 - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/metadata-builders': 0.10.1 + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/utils': 0.1.2 scale-ts: 1.6.1 @@ -7427,7 +7378,7 @@ snapshots: '@polkadot-api/json-rpc-provider@0.0.4': {} - '@polkadot-api/known-chains@0.5.8': {} + '@polkadot-api/known-chains@0.6.1': {} '@polkadot-api/logs-provider@0.0.6': dependencies: @@ -7439,26 +7390,26 @@ snapshots: '@polkadot-api/substrate-bindings': 0.10.0 '@polkadot-api/utils': 0.1.2 + '@polkadot-api/metadata-builders@0.10.1': + dependencies: + '@polkadot-api/substrate-bindings': 0.11.0 + '@polkadot-api/utils': 0.1.2 + '@polkadot-api/metadata-builders@0.3.2': dependencies: '@polkadot-api/substrate-bindings': 0.6.0 '@polkadot-api/utils': 0.1.0 optional: true - '@polkadot-api/metadata-builders@0.9.2': - dependencies: - '@polkadot-api/substrate-bindings': 0.9.4 - '@polkadot-api/utils': 0.1.2 - '@polkadot-api/metadata-builders@0.9.3': dependencies: '@polkadot-api/substrate-bindings': 0.10.0 '@polkadot-api/utils': 0.1.2 - '@polkadot-api/metadata-compatibility@0.1.12': + '@polkadot-api/metadata-compatibility@0.1.15': dependencies: - '@polkadot-api/metadata-builders': 0.9.2 - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/metadata-builders': 0.10.1 + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/observable-client@0.3.2(@polkadot-api/substrate-client@0.1.4)(rxjs@7.8.1)': dependencies: @@ -7469,20 +7420,20 @@ snapshots: rxjs: 7.8.1 optional: true - '@polkadot-api/observable-client@0.6.3(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1)': + '@polkadot-api/observable-client@0.7.2(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1)': dependencies: - '@polkadot-api/metadata-builders': 0.9.2 - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/metadata-builders': 0.10.1 + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/substrate-client': 0.3.0 '@polkadot-api/utils': 0.1.2 rxjs: 7.8.1 - '@polkadot-api/pjs-signer@0.6.1': + '@polkadot-api/pjs-signer@0.6.4': dependencies: - '@polkadot-api/metadata-builders': 0.9.2 + '@polkadot-api/metadata-builders': 0.10.1 '@polkadot-api/polkadot-signer': 0.1.6 - '@polkadot-api/signers-common': 0.1.2 - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/signers-common': 0.1.5 + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/utils': 0.1.2 '@polkadot-api/polkadot-sdk-compat@2.3.1': @@ -7491,56 +7442,56 @@ snapshots: '@polkadot-api/polkadot-signer@0.1.6': {} - '@polkadot-api/signer@0.1.11': + '@polkadot-api/signer@0.1.14': dependencies: - '@noble/hashes': 1.6.1 + '@noble/hashes': 1.7.1 '@polkadot-api/polkadot-signer': 0.1.6 - '@polkadot-api/signers-common': 0.1.2 - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/signers-common': 0.1.5 + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/utils': 0.1.2 - '@polkadot-api/signers-common@0.1.2': + '@polkadot-api/signers-common@0.1.5': dependencies: - '@polkadot-api/metadata-builders': 0.9.2 + '@polkadot-api/metadata-builders': 0.10.1 '@polkadot-api/polkadot-signer': 0.1.6 - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/utils': 0.1.2 - '@polkadot-api/sm-provider@0.1.7(@polkadot-api/smoldot@0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + '@polkadot-api/sm-provider@0.1.7(@polkadot-api/smoldot@0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: '@polkadot-api/json-rpc-provider': 0.0.4 '@polkadot-api/json-rpc-provider-proxy': 0.2.4 - '@polkadot-api/smoldot': 0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot-api/smoldot': 0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@polkadot-api/smoldot@0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot-api/smoldot@0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@types/node': 22.10.1 - smoldot: 2.0.33(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@types/node': 22.12.0 + smoldot: 2.0.34(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate '@polkadot-api/substrate-bindings@0.10.0': dependencies: - '@noble/hashes': 1.6.1 + '@noble/hashes': 1.7.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-bindings@0.6.0': + '@polkadot-api/substrate-bindings@0.11.0': dependencies: - '@noble/hashes': 1.6.1 - '@polkadot-api/utils': 0.1.0 + '@noble/hashes': 1.7.1 + '@polkadot-api/utils': 0.1.2 '@scure/base': 1.2.4 scale-ts: 1.6.1 - optional: true - '@polkadot-api/substrate-bindings@0.9.4': + '@polkadot-api/substrate-bindings@0.6.0': dependencies: - '@noble/hashes': 1.6.1 - '@polkadot-api/utils': 0.1.2 + '@noble/hashes': 1.7.1 + '@polkadot-api/utils': 0.1.0 '@scure/base': 1.2.4 scale-ts: 1.6.1 + optional: true '@polkadot-api/substrate-client@0.1.4': dependencies: @@ -7560,22 +7511,22 @@ snapshots: '@polkadot-api/wasm-executor@0.1.2': {} - '@polkadot-api/ws-provider@0.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot-api/ws-provider@0.3.6(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: '@polkadot-api/json-rpc-provider': 0.0.4 '@polkadot-api/json-rpc-provider-proxy': 0.2.4 - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - '@polkadot/api-augment@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-augment@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@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/api-base': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-augment': 15.5.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 tslib: 2.8.1 transitivePeerDependencies: @@ -7583,10 +7534,10 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-base@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-base@15.5.1(bufferutil@4.0.9)(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': 15.4.1 + '@polkadot/rpc-core': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 '@polkadot/util': 13.3.1 rxjs: 7.8.1 tslib: 2.8.1 @@ -7595,38 +7546,14 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-base@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api-derive@15.5.1(bufferutil@4.0.9)(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.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@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@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-derive@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@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/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) rxjs: 7.8.1 @@ -7636,20 +7563,20 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/api@15.5.1(bufferutil@4.0.9)(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/api-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-base': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.5.1(bufferutil@4.0.9)(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/rpc-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-core': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-augment': 15.5.1 + '@polkadot/types-codec': 15.5.1 + '@polkadot/types-create': 15.5.1 + '@polkadot/types-known': 15.5.1 '@polkadot/util': 13.3.1 '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) eventemitter3: 5.0.1 @@ -7660,10 +7587,10 @@ snapshots: - supports-color - utf-8-validate - '@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)': + '@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.9)(react-dom@19.0.0(react@18.3.1))(react-is@16.13.1)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: - '@acala-network/type-definitions': 5.1.2(@polkadot/types@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)) + '@acala-network/type-definitions': 5.1.2(@polkadot/types@15.5.1) + '@bifrost-finance/type-definitions': 1.11.3(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@crustio/type-definitions': 1.3.0 '@darwinia/types': 2.8.10 '@darwinia/types-known': 2.8.10 @@ -7671,40 +7598,40 @@ snapshots: '@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) + '@fragnova/api-augment': 0.1.0-spec-1.0.4-mainnet(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@frequency-chain/api-augment': 1.11.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@interlay/interbtc-types': 1.13.0 - '@kiltprotocol/type-definitions': 1.11401.1(@polkadot/types@15.4.1) + '@kiltprotocol/type-definitions': 1.11401.1(@polkadot/types@15.5.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) + '@logion/node-api': 0.27.0-4(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@mangata-finance/type-definitions': 2.1.2(@polkadot/types@15.5.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/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-derive': 15.5.1(bufferutil@4.0.9)(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/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@19.0.0(react@18.3.1))(react-is@16.13.1)(react@18.3.1) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.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) + '@polkadot/x-ws': 13.3.1(bufferutil@4.0.9)(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) + '@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.9)(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) + '@subsocial/definitions': 0.8.14(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@unique-nft/opal-testnet-types': 1003.70.0(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@polkadot/types@15.5.1) + '@unique-nft/quartz-mainnet-types': 1003.70.0(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@polkadot/types@15.5.1) + '@unique-nft/sapphire-mainnet-types': 1003.70.0(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@polkadot/types@15.5.1) + '@unique-nft/unique-mainnet-types': 1001.63.0(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@polkadot/types@15.5.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) + moonbeam-types-bundle: 2.0.10(bufferutil@4.0.9)(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 @@ -7729,7 +7656,7 @@ snapshots: '@substrate/ss58-registry': 1.51.0 tslib: 2.8.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/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@19.0.0(react@18.3.1))(react-is@16.13.1)(react@18.3.1)': dependencies: '@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) @@ -7740,18 +7667,18 @@ snapshots: 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.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-dom: 19.0.0(react@18.3.1) + react-is: 16.13.1 + styled-components: 6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1) tslib: 2.8.1 transitivePeerDependencies: - '@polkadot/networks' - '@polkadot/rpc-augment@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-augment@15.5.1(bufferutil@4.0.9)(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': 15.4.1 - '@polkadot/types-codec': 15.4.1 + '@polkadot/rpc-core': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 tslib: 2.8.1 transitivePeerDependencies: @@ -7759,61 +7686,11 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-augment@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-core@15.5.1(bufferutil@4.0.9)(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.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@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@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 - - supports-color - - utf-8-validate - - '@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': 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/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.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/rpc-core@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@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/rpc-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 '@polkadot/util': 13.3.1 rxjs: 7.8.1 tslib: 2.8.1 @@ -7822,63 +7699,41 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-provider@15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/rpc-provider@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: '@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/types': 15.5.1 + '@polkadot/types-support': 15.5.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) + '@polkadot/x-ws': 13.3.1(bufferutil@4.0.9)(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/typegen@14.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@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': 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': 15.4.1 - '@polkadot/types-create': 14.3.1 - '@polkadot/types-support': 14.3.1 - '@polkadot/util': 13.3.1 - '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) - '@polkadot/x-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 + '@substrate/connect': 0.8.11(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/typegen@15.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@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.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.4.1 - '@polkadot/types-create': 15.0.1 - '@polkadot/types-support': 15.0.1 + '@polkadot/typegen@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + dependencies: + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/api-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-augment': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/rpc-provider': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 + '@polkadot/types-augment': 15.5.1 + '@polkadot/types-codec': 15.5.1 + '@polkadot/types-create': 15.5.1 + '@polkadot/types-support': 15.5.1 '@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) + '@polkadot/x-ws': 13.3.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) handlebars: 4.7.8 tslib: 2.8.1 yargs: 17.7.2 @@ -7887,81 +7742,45 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/types-augment@14.3.1': + '@polkadot/types-augment@15.5.1': dependencies: - '@polkadot/types': 15.4.1 - '@polkadot/types-codec': 15.4.1 + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/types-augment@15.0.1': - dependencies: - '@polkadot/types': 15.4.1 - '@polkadot/types-codec': 15.4.1 - '@polkadot/util': 13.3.1 - tslib: 2.8.1 - - '@polkadot/types-augment@15.4.1': - dependencies: - '@polkadot/types': 15.4.1 - '@polkadot/types-codec': 15.4.1 - '@polkadot/util': 13.3.1 - tslib: 2.8.1 - - '@polkadot/types-codec@15.4.1': + '@polkadot/types-codec@15.5.1': dependencies: '@polkadot/util': 13.3.1 '@polkadot/x-bigint': 13.3.1 tslib: 2.8.1 - '@polkadot/types-create@14.3.1': + '@polkadot/types-create@15.5.1': dependencies: - '@polkadot/types-codec': 15.4.1 + '@polkadot/types-codec': 15.5.1 '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/types-create@15.0.1': - dependencies: - '@polkadot/types-codec': 15.4.1 - '@polkadot/util': 13.3.1 - tslib: 2.8.1 - - '@polkadot/types-create@15.4.1': - dependencies: - '@polkadot/types-codec': 15.4.1 - '@polkadot/util': 13.3.1 - tslib: 2.8.1 - - '@polkadot/types-known@15.4.1': + '@polkadot/types-known@15.5.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/types-support@14.3.1': - dependencies: - '@polkadot/util': 13.3.1 - tslib: 2.8.1 - - '@polkadot/types-support@15.0.1': - dependencies: + '@polkadot/types': 15.5.1 + '@polkadot/types-codec': 15.5.1 + '@polkadot/types-create': 15.5.1 '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/types-support@15.4.1': + '@polkadot/types-support@15.5.1': dependencies: '@polkadot/util': 13.3.1 tslib: 2.8.1 - '@polkadot/types@15.4.1': + '@polkadot/types@15.5.1': dependencies: '@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/types-augment': 15.5.1 + '@polkadot/types-codec': 15.5.1 + '@polkadot/types-create': 15.5.1 '@polkadot/util': 13.3.1 '@polkadot/util-crypto': 13.3.1(@polkadot/util@13.3.1) rxjs: 7.8.1 @@ -7984,15 +7803,15 @@ snapshots: '@polkadot/util-crypto@13.3.1(@polkadot/util@13.3.1)': dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.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 + '@scure/base': 1.2.4 tslib: 2.8.1 '@polkadot/util@13.3.1': @@ -8081,11 +7900,11 @@ snapshots: '@polkadot/x-global': 13.3.1 tslib: 2.8.1 - '@polkadot/x-ws@13.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@polkadot/x-ws@13.3.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: '@polkadot/x-global': 13.3.1 tslib: 2.8.1 - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate @@ -8115,66 +7934,68 @@ snapshots: '@protobufjs/utf8@1.1.0': {} - '@rollup/rollup-android-arm-eabi@4.28.1': + '@rollup/rollup-android-arm-eabi@4.32.1': optional: true - '@rollup/rollup-android-arm64@4.28.1': + '@rollup/rollup-android-arm64@4.32.1': optional: true - '@rollup/rollup-darwin-arm64@4.28.1': + '@rollup/rollup-darwin-arm64@4.32.1': optional: true - '@rollup/rollup-darwin-x64@4.28.1': + '@rollup/rollup-darwin-x64@4.32.1': optional: true - '@rollup/rollup-freebsd-arm64@4.28.1': + '@rollup/rollup-freebsd-arm64@4.32.1': optional: true - '@rollup/rollup-freebsd-x64@4.28.1': + '@rollup/rollup-freebsd-x64@4.32.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': + '@rollup/rollup-linux-arm-gnueabihf@4.32.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.28.1': + '@rollup/rollup-linux-arm-musleabihf@4.32.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.28.1': + '@rollup/rollup-linux-arm64-gnu@4.32.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.28.1': + '@rollup/rollup-linux-arm64-musl@4.32.1': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.28.1': + '@rollup/rollup-linux-loongarch64-gnu@4.32.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': + '@rollup/rollup-linux-powerpc64le-gnu@4.32.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.28.1': + '@rollup/rollup-linux-riscv64-gnu@4.32.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.28.1': + '@rollup/rollup-linux-s390x-gnu@4.32.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.28.1': + '@rollup/rollup-linux-x64-gnu@4.32.1': optional: true - '@rollup/rollup-linux-x64-musl@4.28.1': + '@rollup/rollup-linux-x64-musl@4.32.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.28.1': + '@rollup/rollup-win32-arm64-msvc@4.32.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.28.1': + '@rollup/rollup-win32-ia32-msvc@4.32.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.28.1': + '@rollup/rollup-win32-x64-msvc@4.32.1': optional: true - '@scure/base@1.1.9': {} + '@rx-state/core@0.1.4(rxjs@7.8.1)': + dependencies: + rxjs: 7.8.1 - '@scure/base@1.2.1': {} + '@scure/base@1.1.9': {} '@scure/base@1.2.4': {} @@ -8206,11 +8027,11 @@ snapshots: '@sindresorhus/merge-streams@4.0.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)': + '@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.9)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(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': 15.5.1 transitivePeerDependencies: - '@polkadot/util' - '@polkadot/util-crypto' @@ -8224,9 +8045,9 @@ snapshots: '@sqltools/formatter@1.2.5': {} - '@subsocial/definitions@0.8.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@subsocial/definitions@0.8.14(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) lodash.camelcase: 4.3.0 transitivePeerDependencies: - bufferutil @@ -8236,37 +8057,37 @@ snapshots: '@substrate/connect-extension-protocol@2.2.1': optional: true - '@substrate/connect-known-chains@1.8.0': + '@substrate/connect-known-chains@1.9.1': optional: true - '@substrate/connect@0.8.11(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@substrate/connect@0.8.11(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: '@substrate/connect-extension-protocol': 2.2.1 - '@substrate/connect-known-chains': 1.8.0 - '@substrate/light-client-extension-helpers': 1.0.0(smoldot@2.0.26(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - smoldot: 2.0.26(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@substrate/connect-known-chains': 1.9.1 + '@substrate/light-client-extension-helpers': 1.0.0(smoldot@2.0.26(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + smoldot: 2.0.26(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate optional: true - '@substrate/light-client-extension-helpers@1.0.0(smoldot@2.0.26(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + '@substrate/light-client-extension-helpers@1.0.0(smoldot@2.0.26(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: '@polkadot-api/json-rpc-provider': 0.0.1 '@polkadot-api/json-rpc-provider-proxy': 0.1.0 '@polkadot-api/observable-client': 0.3.2(@polkadot-api/substrate-client@0.1.4)(rxjs@7.8.1) '@polkadot-api/substrate-client': 0.1.4 '@substrate/connect-extension-protocol': 2.2.1 - '@substrate/connect-known-chains': 1.8.0 + '@substrate/connect-known-chains': 1.9.1 rxjs: 7.8.1 - smoldot: 2.0.26(bufferutil@4.0.8)(utf-8-validate@5.0.10) + smoldot: 2.0.26(bufferutil@4.0.9)(utf-8-validate@5.0.10) optional: true '@substrate/ss58-registry@1.51.0': {} - '@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)': + '@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.9)(utf-8-validate@5.0.10)': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(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: @@ -8276,9 +8097,9 @@ snapshots: - supports-color - utf-8-validate - '@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)': + '@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.9)(utf-8-validate@5.0.10)': dependencies: - '@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) + '@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.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@polkadot/util' - '@polkadot/util-crypto' @@ -8307,22 +8128,22 @@ snapshots: '@types/abstract-leveldown@7.2.5': {} - '@types/aws-lambda@8.10.145': {} + '@types/aws-lambda@8.10.147': {} '@types/bn.js@5.1.6': dependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@types/responselike': 1.0.3 '@types/debug@4.1.12': dependencies: - '@types/ms': 0.7.34 + '@types/ms': 2.1.0 '@types/estree@1.0.6': {} @@ -8332,7 +8153,7 @@ snapshots: '@types/keyv@3.1.4': dependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@types/level-errors@3.0.2': {} @@ -8340,19 +8161,15 @@ snapshots: dependencies: '@types/abstract-leveldown': 7.2.5 '@types/level-errors': 3.0.2 - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@types/long@4.0.2': {} - '@types/mdast@3.0.15': - dependencies: - '@types/unist': 2.0.11 - - '@types/ms@0.7.34': {} + '@types/ms@2.1.0': {} '@types/node@12.20.55': {} - '@types/node@22.10.1': + '@types/node@22.12.0': dependencies: undici-types: 6.20.0 @@ -8364,22 +8181,22 @@ snapshots: '@types/pbkdf2@3.1.2': dependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@types/prop-types@15.7.14': {} - '@types/react@18.3.14': + '@types/react@18.3.18': dependencies: '@types/prop-types': 15.7.14 csstype: 3.1.3 '@types/responselike@1.0.3': dependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@types/secp256k1@4.0.6': dependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@types/semver@7.5.8': {} @@ -8387,13 +8204,11 @@ snapshots: '@types/tmp@0.2.6': {} - '@types/unist@2.0.11': {} - '@types/uuid@9.0.8': {} '@types/ws@8.5.3': dependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@types/yargs-parser@21.0.3': {} @@ -8401,25 +8216,25 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@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/opal-testnet-types@1003.70.0(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@polkadot/types@15.5.1)': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.4.1 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.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/quartz-mainnet-types@1003.70.0(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@polkadot/types@15.5.1)': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.4.1 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.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/sapphire-mainnet-types@1003.70.0(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@polkadot/types@15.5.1)': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.4.1 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.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)': + '@unique-nft/unique-mainnet-types@1001.63.0(@polkadot/api@15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@polkadot/types@15.5.1)': dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot/types': 15.4.1 + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot/types': 15.5.1 '@vitest/expect@2.1.8': dependencies: @@ -8428,13 +8243,13 @@ snapshots: chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@22.10.1))': + '@vitest/mocker@2.1.8(vite@5.4.14(@types/node@22.12.0))': dependencies: '@vitest/spy': 2.1.8 estree-walker: 3.0.3 - magic-string: 0.30.15 + magic-string: 0.30.17 optionalDependencies: - vite: 5.4.11(@types/node@22.10.1) + vite: 5.4.14(@types/node@22.12.0) '@vitest/pretty-format@2.1.8': dependencies: @@ -8448,7 +8263,7 @@ snapshots: '@vitest/snapshot@2.1.8': dependencies: '@vitest/pretty-format': 2.1.8 - magic-string: 0.30.15 + magic-string: 0.30.17 pathe: 1.1.2 '@vitest/spy@2.1.8': @@ -8464,30 +8279,30 @@ snapshots: sirv: 3.0.0 tinyglobby: 0.2.10 tinyrainbow: 1.2.0 - 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)) + vitest: 2.1.8(@types/node@22.12.0)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@vitest/utils@2.1.8': dependencies: '@vitest/pretty-format': 2.1.8 - loupe: 3.1.2 + loupe: 3.1.3 tinyrainbow: 1.2.0 '@zeitgeistpm/type-defs@1.0.0': {} '@zeroio/type-definitions@0.0.14': {} - '@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/orchestrator@0.0.97(@polkadot/util@13.3.1)(@types/node@22.12.0)(bufferutil@4.0.9)(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/api': 15.5.1(bufferutil@4.0.9)(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) + '@zombienet/utils': 0.0.25(@types/node@22.12.0)(chokidar@3.6.0)(typescript@5.5.4) 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) + fs-extra: 11.3.0 + jsdom: 23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) json-bigint: 1.0.0 libp2p-crypto: 0.21.2 minimatch: 9.0.5 @@ -8495,7 +8310,7 @@ snapshots: napi-maybe-compressed-blob: 0.0.11 peer-id: 0.16.0 tmp-promise: 3.0.3 - typescript: 5.3.3 + typescript: 5.5.4 yaml: 2.6.1 transitivePeerDependencies: - '@polkadot/util' @@ -8508,18 +8323,18 @@ 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)': + '@zombienet/orchestrator@0.0.98(@polkadot/util@13.3.1)(@types/node@22.12.0)(bufferutil@4.0.9)(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/api': 15.5.1(bufferutil@4.0.9)(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) + '@zombienet/utils': 0.0.26(@types/node@22.12.0)(chokidar@3.6.0)(typescript@5.5.4) 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) + fs-extra: 11.3.0 + jsdom: 23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) json-bigint: 1.0.0 libp2p-crypto: 0.21.2 minimatch: 9.0.5 @@ -8527,7 +8342,7 @@ snapshots: napi-maybe-compressed-blob: 0.0.11 peer-id: 0.16.0 tmp-promise: 3.0.3 - typescript: 5.7.2 + typescript: 5.5.4 yaml: 2.6.1 transitivePeerDependencies: - '@polkadot/util' @@ -8540,14 +8355,30 @@ snapshots: - supports-color - utf-8-validate - '@zombienet/utils@0.0.25(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.3.3)': + '@zombienet/utils@0.0.25(@types/node@22.12.0)(chokidar@3.6.0)(typescript@5.5.4)': + dependencies: + cli-table3: 0.6.5 + debug: 4.4.0(supports-color@8.1.1) + mocha: 10.8.2 + nunjucks: 3.2.4(chokidar@3.6.0) + toml: 3.0.0 + ts-node: 10.9.2(@types/node@22.12.0)(typescript@5.5.4) + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - chokidar + - supports-color + - typescript + + '@zombienet/utils@0.0.26(@types/node@22.12.0)(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.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) + ts-node: 10.9.2(@types/node@22.12.0)(typescript@5.3.3) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -8556,14 +8387,14 @@ snapshots: - supports-color - typescript - '@zombienet/utils@0.0.26(@types/node@22.10.1)(chokidar@3.6.0)(typescript@5.7.2)': + '@zombienet/utils@0.0.26(@types/node@22.12.0)(chokidar@3.6.0)(typescript@5.5.4)': dependencies: cli-table3: 0.6.5 debug: 4.4.0(supports-color@8.1.1) 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) + ts-node: 10.9.2(@types/node@22.12.0)(typescript@5.5.4) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -8582,18 +8413,18 @@ snapshots: abbrev@1.1.1: optional: true - abitype@0.7.1(typescript@5.7.2)(zod@3.24.1): + abitype@0.7.1(typescript@5.3.3)(zod@3.24.1): dependencies: - typescript: 5.7.2 + typescript: 5.3.3 optionalDependencies: zod: 3.24.1 - abitype@1.0.8(typescript@5.7.2)(zod@3.24.1): + abitype@1.0.8(typescript@5.3.3)(zod@3.24.1): optionalDependencies: - typescript: 5.7.2 + typescript: 5.3.3 zod: 3.24.1 - abortcontroller-polyfill@1.7.5: {} + abortcontroller-polyfill@1.7.8: {} abstract-leveldown@6.2.3: dependencies: @@ -8631,11 +8462,7 @@ snapshots: - supports-color optional: true - agent-base@7.1.1: - dependencies: - debug: 4.4.0(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + agent-base@7.1.3: {} agentkeepalive@4.6.0: dependencies: @@ -8765,8 +8592,6 @@ snapshots: binary-extensions@2.3.0: {} - binary-searching@2.0.5: {} - bindings@1.5.0: dependencies: file-uri-to-path: 1.0.0 @@ -8831,7 +8656,7 @@ snapshots: browserify-aes@1.2.0: dependencies: buffer-xor: 1.0.3 - cipher-base: 1.0.4 + cipher-base: 1.0.6 create-hash: 1.2.0 evp_bytestokey: 1.0.3 inherits: 2.0.4 @@ -8861,13 +8686,13 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - bufferutil@4.0.8: + bufferutil@4.0.9: dependencies: - node-gyp-build: 4.8.3 + node-gyp-build: 4.8.4 - bundle-require@5.0.0(esbuild@0.24.0): + bundle-require@5.1.0(esbuild@0.24.2): dependencies: - esbuild: 0.24.0 + esbuild: 0.24.2 load-tsconfig: 0.2.5 bytes@3.1.2: {} @@ -8917,28 +8742,25 @@ snapshots: es-errors: 1.3.0 function-bind: 1.1.2 - call-bind@1.0.7: - dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - set-function-length: 1.2.2 - call-bind@1.0.8: dependencies: call-bind-apply-helpers: 1.0.1 es-define-property: 1.0.1 - get-intrinsic: 1.2.5 + get-intrinsic: 1.2.7 set-function-length: 1.2.2 + call-bound@1.0.3: + dependencies: + call-bind-apply-helpers: 1.0.1 + get-intrinsic: 1.2.7 + camelcase@6.3.0: {} camelize@1.0.1: {} canvas-renderer@2.2.1: dependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 caseless@0.12.0: {} @@ -8962,7 +8784,7 @@ snapshots: assertion-error: 2.0.1 check-error: 2.1.1 deep-eql: 5.0.2 - loupe: 3.1.2 + loupe: 3.1.3 pathval: 2.0.0 chalk@3.0.0: @@ -8977,8 +8799,6 @@ snapshots: chalk@5.3.0: {} - character-entities@2.0.2: {} - chardet@0.7.0: {} check-error@1.0.3: @@ -8999,9 +8819,9 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - chokidar@4.0.1: + chokidar@4.0.3: dependencies: - readdirp: 4.0.2 + readdirp: 4.1.1 chownr@1.1.4: {} @@ -9015,7 +8835,7 @@ snapshots: multicodec: 1.0.4 multihashes: 0.4.21 - cipher-base@1.0.4: + cipher-base@1.0.6: dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 @@ -9108,7 +8928,7 @@ snapshots: command-exists@1.2.9: {} - commander@12.1.0: {} + commander@13.1.0: {} commander@2.7.1: dependencies: @@ -9120,8 +8940,6 @@ snapshots: commander@8.3.0: {} - comment-parser@1.4.1: {} - complex.js@2.4.2: {} concat-map@0.0.1: @@ -9132,7 +8950,7 @@ snapshots: ini: 1.3.8 proto-list: 1.2.4 - consola@3.2.3: {} + consola@3.4.0: {} console-control-strings@1.1.0: optional: true @@ -9153,7 +8971,7 @@ snapshots: cookie-signature@1.0.6: {} - cookie@0.6.0: {} + cookie@0.7.1: {} copy-to-clipboard@3.3.3: dependencies: @@ -9170,7 +8988,7 @@ snapshots: create-hash@1.2.0: dependencies: - cipher-base: 1.0.4 + cipher-base: 1.0.6 inherits: 2.0.4 md5.js: 1.3.5 ripemd160: 2.0.2 @@ -9178,7 +8996,7 @@ snapshots: create-hmac@1.1.7: dependencies: - cipher-base: 1.0.4 + cipher-base: 1.0.6 create-hash: 1.2.0 inherits: 2.0.4 ripemd160: 2.0.2 @@ -9187,13 +9005,13 @@ snapshots: create-require@1.1.1: {} - cross-fetch@4.0.0(encoding@0.1.13): + cross-fetch@4.1.0(encoding@0.1.13): dependencies: node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding - cross-spawn@7.0.5: + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 @@ -9212,9 +9030,10 @@ snapshots: mdn-data: 2.0.30 source-map-js: 1.2.1 - cssstyle@4.1.0: + cssstyle@4.2.1: dependencies: - rrweb-cssom: 0.7.1 + '@asamuzakjp/css-color': 2.8.3 + rrweb-cssom: 0.8.0 csstype@3.1.3: {} @@ -9232,7 +9051,7 @@ snapshots: data-urls@5.0.0: dependencies: whatwg-mimetype: 4.0.0 - whatwg-url: 14.0.0 + whatwg-url: 14.1.0 dateformat@4.6.3: {} @@ -9254,11 +9073,7 @@ snapshots: decamelize@4.0.0: {} - decimal.js@10.4.3: {} - - decode-named-character-reference@1.0.2: - dependencies: - character-entities: 2.0.2 + decimal.js@10.5.0: {} decode-uri-component@0.2.2: {} @@ -9278,7 +9093,7 @@ snapshots: deep-extend@0.6.0: {} - deepmerge-ts@7.1.3: {} + deepmerge-ts@7.1.4: {} defer-to-connect@2.0.1: {} @@ -9289,9 +9104,9 @@ snapshots: define-data-property@1.1.4: dependencies: - es-define-property: 1.0.0 + es-define-property: 1.0.1 es-errors: 1.3.0 - gopd: 1.0.1 + gopd: 1.2.0 define-properties@1.2.1: dependencies: @@ -9310,8 +9125,6 @@ snapshots: depd@2.0.0: {} - dequal@2.0.3: {} - destroy@1.2.0: {} detect-indent@7.0.1: {} @@ -9332,7 +9145,7 @@ snapshots: dotenv@16.4.7: {} - dunder-proto@1.0.0: + dunder-proto@1.0.1: dependencies: call-bind-apply-helpers: 1.0.1 es-errors: 1.3.0 @@ -9357,7 +9170,7 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - elliptic@6.5.7: + elliptic@6.6.1: dependencies: bn.js: 4.12.1 brorand: 1.1.0 @@ -9409,17 +9222,17 @@ snapshots: dependencies: prr: 1.0.1 - es-define-property@1.0.0: - dependencies: - get-intrinsic: 1.2.4 - es-define-property@1.0.1: {} es-errors@1.3.0: {} - es-module-lexer@1.5.4: {} + es-module-lexer@1.6.0: {} - es-toolkit@1.29.0: {} + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + es-toolkit@1.31.0: {} es5-ext@0.10.64: dependencies: @@ -9503,32 +9316,33 @@ snapshots: '@esbuild/win32-ia32': 0.23.1 '@esbuild/win32-x64': 0.23.1 - esbuild@0.24.0: + esbuild@0.24.2: optionalDependencies: - '@esbuild/aix-ppc64': 0.24.0 - '@esbuild/android-arm': 0.24.0 - '@esbuild/android-arm64': 0.24.0 - '@esbuild/android-x64': 0.24.0 - '@esbuild/darwin-arm64': 0.24.0 - '@esbuild/darwin-x64': 0.24.0 - '@esbuild/freebsd-arm64': 0.24.0 - '@esbuild/freebsd-x64': 0.24.0 - '@esbuild/linux-arm': 0.24.0 - '@esbuild/linux-arm64': 0.24.0 - '@esbuild/linux-ia32': 0.24.0 - '@esbuild/linux-loong64': 0.24.0 - '@esbuild/linux-mips64el': 0.24.0 - '@esbuild/linux-ppc64': 0.24.0 - '@esbuild/linux-riscv64': 0.24.0 - '@esbuild/linux-s390x': 0.24.0 - '@esbuild/linux-x64': 0.24.0 - '@esbuild/netbsd-x64': 0.24.0 - '@esbuild/openbsd-arm64': 0.24.0 - '@esbuild/openbsd-x64': 0.24.0 - '@esbuild/sunos-x64': 0.24.0 - '@esbuild/win32-arm64': 0.24.0 - '@esbuild/win32-ia32': 0.24.0 - '@esbuild/win32-x64': 0.24.0 + '@esbuild/aix-ppc64': 0.24.2 + '@esbuild/android-arm': 0.24.2 + '@esbuild/android-arm64': 0.24.2 + '@esbuild/android-x64': 0.24.2 + '@esbuild/darwin-arm64': 0.24.2 + '@esbuild/darwin-x64': 0.24.2 + '@esbuild/freebsd-arm64': 0.24.2 + '@esbuild/freebsd-x64': 0.24.2 + '@esbuild/linux-arm': 0.24.2 + '@esbuild/linux-arm64': 0.24.2 + '@esbuild/linux-ia32': 0.24.2 + '@esbuild/linux-loong64': 0.24.2 + '@esbuild/linux-mips64el': 0.24.2 + '@esbuild/linux-ppc64': 0.24.2 + '@esbuild/linux-riscv64': 0.24.2 + '@esbuild/linux-s390x': 0.24.2 + '@esbuild/linux-x64': 0.24.2 + '@esbuild/netbsd-arm64': 0.24.2 + '@esbuild/netbsd-x64': 0.24.2 + '@esbuild/openbsd-arm64': 0.24.2 + '@esbuild/openbsd-x64': 0.24.2 + '@esbuild/sunos-x64': 0.24.2 + '@esbuild/win32-arm64': 0.24.2 + '@esbuild/win32-ia32': 0.24.2 + '@esbuild/win32-x64': 0.24.2 escalade@3.2.0: {} @@ -9558,13 +9372,13 @@ snapshots: idna-uts46-hx: 2.3.1 js-sha3: 0.5.7 - eth-lib@0.1.29(bufferutil@4.0.8)(utf-8-validate@5.0.10): + eth-lib@0.1.29(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: bn.js: 4.12.1 - elliptic: 6.5.7 + elliptic: 6.6.1 nano-json-stream-parser: 0.1.2 servify: 0.1.12 - ws: 3.3.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 3.3.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) xhr-request-promise: 0.1.3 transitivePeerDependencies: - bufferutil @@ -9574,14 +9388,14 @@ snapshots: eth-lib@0.2.8: dependencies: bn.js: 4.12.1 - elliptic: 6.5.7 + elliptic: 6.6.1 xhr-request-promise: 0.1.3 - eth-object@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): + eth-object@https://codeload.github.com/aurora-is-near/eth-object/tar.gz/378b8dbf44a71f7049666cea5a16ab88d45aed06(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: eth-util-lite: https://codeload.github.com/near/eth-util-lite/tar.gz/427b7634a123d171432f3b38c6542913a3897ac7 ethereumjs-util: 7.1.5 - web3: 1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3: 1.10.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - encoding @@ -9601,7 +9415,7 @@ snapshots: ethereum-bloom-filters@1.2.0: dependencies: - '@noble/hashes': 1.6.1 + '@noble/hashes': 1.7.1 ethereum-cryptography@0.1.3: dependencies: @@ -9618,7 +9432,7 @@ snapshots: randombytes: 2.1.0 safe-buffer: 5.2.1 scrypt-js: 3.0.1 - secp256k1: 4.0.3 + secp256k1: 4.0.4 setimmediate: 1.0.5 ethereum-cryptography@2.2.1: @@ -9636,7 +9450,7 @@ snapshots: ethereum-cryptography: 0.1.3 rlp: 2.2.7 - ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10): + ethers@6.13.4(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@adraffy/ens-normalize': 1.10.1 '@noble/curves': 1.2.0 @@ -9644,7 +9458,7 @@ snapshots: '@types/node': 22.7.5 aes-js: 4.0.0-beta.5 tslib: 2.7.0 - ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.17.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate @@ -9672,7 +9486,7 @@ snapshots: execa@5.1.1: dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.6 get-stream: 6.0.1 human-signals: 2.1.0 is-stream: 2.0.1 @@ -9682,10 +9496,10 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - execa@9.5.1: + execa@9.5.2: dependencies: '@sindresorhus/merge-streams': 4.0.0 - cross-spawn: 7.0.5 + cross-spawn: 7.0.6 figures: 6.1.0 get-stream: 9.0.1 human-signals: 8.0.0 @@ -9701,14 +9515,14 @@ snapshots: expect-type@1.1.0: {} - express@4.21.0: + express@4.21.2: dependencies: accepts: 1.3.8 array-flatten: 1.1.1 body-parser: 1.20.3 content-disposition: 0.5.4 content-type: 1.0.5 - cookie: 0.6.0 + cookie: 0.7.1 cookie-signature: 1.0.6 debug: 2.6.9 depd: 2.0.0 @@ -9722,7 +9536,7 @@ snapshots: methods: 1.1.2 on-finished: 2.4.1 parseurl: 1.3.3 - path-to-regexp: 0.1.10 + path-to-regexp: 0.1.12 proxy-addr: 2.0.7 qs: 6.13.0 range-parser: 1.2.1 @@ -9751,6 +9565,8 @@ snapshots: extsprintf@1.3.0: {} + fast-content-type-parse@2.0.1: {} + fast-copy@3.0.2: {} fast-deep-equal@3.1.3: {} @@ -9763,7 +9579,7 @@ snapshots: fast-sha256@1.3.0: {} - fdir@6.4.2(picomatch@4.0.2): + fdir@6.4.3(picomatch@4.0.2): optionalDependencies: picomatch: 4.0.2 @@ -9818,13 +9634,13 @@ snapshots: optionalDependencies: debug: 4.4.0(supports-color@8.1.1) - for-each@0.3.3: + for-each@0.3.4: dependencies: is-callable: 1.2.7 foreground-child@3.3.0: dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.6 signal-exit: 4.1.0 forever-agent@0.6.1: {} @@ -9855,7 +9671,7 @@ snapshots: fs-constants@1.0.0: {} - fs-extra@11.2.0: + fs-extra@11.3.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -9904,27 +9720,26 @@ snapshots: get-func-name@2.0.2: {} - get-intrinsic@1.2.4: - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - - get-intrinsic@1.2.5: + get-intrinsic@1.2.7: dependencies: call-bind-apply-helpers: 1.0.1 - dunder-proto: 1.0.0 es-define-property: 1.0.1 es-errors: 1.3.0 + es-object-atoms: 1.1.1 function-bind: 1.1.2 + get-proto: 1.0.1 gopd: 1.2.0 has-symbols: 1.1.0 hasown: 2.0.2 + math-intrinsics: 1.1.0 get-port@7.1.0: {} + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + get-stream@5.2.0: dependencies: pump: 3.0.2 @@ -9936,7 +9751,7 @@ snapshots: '@sec-ant/readable-stream': 0.4.1 is-stream: 4.0.1 - get-tsconfig@4.8.1: + get-tsconfig@4.10.0: dependencies: resolve-pkg-maps: 1.0.0 @@ -9996,10 +9811,6 @@ snapshots: define-properties: 1.2.1 gopd: 1.2.0 - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.4 - gopd@1.2.0: {} got@11.8.6: @@ -10058,11 +9869,7 @@ snapshots: has-property-descriptors@1.0.2: dependencies: - es-define-property: 1.0.0 - - has-proto@1.0.3: {} - - has-symbols@1.0.3: {} + es-define-property: 1.0.1 has-symbols@1.1.0: {} @@ -10131,7 +9938,7 @@ snapshots: http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.1 + agent-base: 7.1.3 debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -10160,9 +9967,9 @@ snapshots: - supports-color optional: true - https-proxy-agent@7.0.5: + https-proxy-agent@7.0.6: dependencies: - agent-base: 7.1.1 + agent-base: 7.1.3 debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -10217,7 +10024,7 @@ snapshots: ini@1.3.8: {} - ink@5.1.0(@types/react@18.3.14)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10): + ink@5.1.0(@types/react@18.3.18)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10): dependencies: '@alcalzone/ansi-tokenize': 0.1.3 ansi-escapes: 7.0.0 @@ -10228,7 +10035,7 @@ snapshots: cli-cursor: 4.0.0 cli-truncate: 4.0.0 code-excerpt: 4.0.0 - es-toolkit: 1.29.0 + es-toolkit: 1.31.0 indent-string: 5.0.0 is-in-ci: 1.0.0 patch-console: 2.0.0 @@ -10239,23 +10046,23 @@ snapshots: slice-ansi: 7.1.0 stack-utils: 2.0.6 string-width: 7.2.0 - type-fest: 4.29.0 + type-fest: 4.33.0 widest-line: 5.0.0 wrap-ansi: 9.0.0 - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) yoga-wasm-web: 0.3.3 optionalDependencies: - '@types/react': 18.3.14 + '@types/react': 18.3.18 transitivePeerDependencies: - bufferutil - utf-8-validate - inquirer@12.2.0(@types/node@22.10.1): + inquirer@12.2.0(@types/node@22.12.0): dependencies: - '@inquirer/core': 10.1.1(@types/node@22.10.1) - '@inquirer/prompts': 7.2.0(@types/node@22.10.1) - '@inquirer/type': 3.0.1(@types/node@22.10.1) - '@types/node': 22.10.1 + '@inquirer/core': 10.1.5(@types/node@22.12.0) + '@inquirer/prompts': 7.2.4(@types/node@22.12.0) + '@inquirer/type': 3.0.3(@types/node@22.12.0) + '@types/node': 22.12.0 ansi-escapes: 4.3.2 mute-stream: 2.0.0 run-async: 3.0.0 @@ -10273,9 +10080,9 @@ snapshots: dependencies: hasown: 2.0.2 - is-arguments@1.1.1: + is-arguments@1.2.0: dependencies: - call-bind: 1.0.8 + call-bound: 1.0.3 has-tostringtag: 1.0.2 is-binary-path@2.1.0: @@ -10307,9 +10114,12 @@ snapshots: is-function@1.0.2: {} - is-generator-function@1.0.10: + is-generator-function@1.1.0: dependencies: + call-bound: 1.0.3 + get-proto: 1.0.1 has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 is-glob@4.0.3: dependencies: @@ -10338,13 +10148,20 @@ snapshots: is-promise@2.2.2: {} + is-regex@1.2.1: + dependencies: + call-bound: 1.0.3 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + is-stream@2.0.1: {} is-stream@4.0.1: {} - is-typed-array@1.1.13: + is-typed-array@1.1.15: dependencies: - which-typed-array: 1.1.16 + which-typed-array: 1.1.18 is-typedarray@1.0.0: {} @@ -10363,13 +10180,13 @@ snapshots: events: 3.3.0 readable-stream: 3.6.2 - isomorphic-ws@5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): + isomorphic-ws@5.0.0(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)): dependencies: - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - isows@1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): + isows@1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)): dependencies: - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) isstream@0.1.2: {} @@ -10402,16 +10219,16 @@ snapshots: jsbn@1.1.0: optional: true - jsdom@23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@asamuzakjp/dom-selector': 2.0.2 - cssstyle: 4.1.0 + cssstyle: 4.2.1 data-urls: 5.0.0 - decimal.js: 10.4.3 + decimal.js: 10.5.0 form-data: 4.0.1 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.5 + https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 parse5: 7.2.1 rrweb-cssom: 0.6.0 @@ -10422,8 +10239,8 @@ snapshots: webidl-conversions: 7.0.0 whatwg-encoding: 3.1.1 whatwg-mimetype: 4.0.0 - whatwg-url: 14.0.0 - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + whatwg-url: 14.1.0 + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) xml-name-validator: 5.0.0 transitivePeerDependencies: - bufferutil @@ -10442,7 +10259,7 @@ snapshots: json-stable-stringify@1.1.1: dependencies: - call-bind: 1.0.7 + call-bind: 1.0.8 isarray: 2.0.5 jsonify: 0.0.1 object-keys: 1.1.1 @@ -10480,7 +10297,7 @@ snapshots: keccak@3.0.4: dependencies: node-addon-api: 2.0.2 - node-gyp-build: 4.8.2 + node-gyp-build: 4.8.4 readable-stream: 3.6.2 keyv@4.5.4: @@ -10491,8 +10308,6 @@ snapshots: dependencies: is-buffer: 1.1.6 - kleur@4.1.5: {} - level-codec@9.0.2: dependencies: buffer: 5.7.1 @@ -10548,7 +10363,7 @@ snapshots: protobufjs: 6.11.4 uint8arrays: 3.1.1 - lilconfig@3.1.2: {} + lilconfig@3.1.3: {} lines-and-columns@1.2.4: {} @@ -10586,7 +10401,7 @@ snapshots: dependencies: get-func-name: 2.0.2 - loupe@3.1.2: {} + loupe@3.1.3: {} lowercase-keys@2.0.0: {} @@ -10607,7 +10422,7 @@ snapshots: ltgt@2.2.1: {} - magic-string@0.30.15: + magic-string@0.30.17: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -10640,11 +10455,13 @@ snapshots: dependencies: escape-string-regexp: 4.0.0 + math-intrinsics@1.1.0: {} + mathjs@13.2.3: dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.26.7 complex.js: 2.4.2 - decimal.js: 10.4.3 + decimal.js: 10.5.0 escape-latex: 1.2.0 fraction.js: 4.3.7 javascript-natural-sort: 0.7.1 @@ -10658,27 +10475,6 @@ snapshots: inherits: 2.0.4 safe-buffer: 5.2.1 - mdast-util-from-markdown@1.3.1: - dependencies: - '@types/mdast': 3.0.15 - '@types/unist': 2.0.11 - decode-named-character-reference: 1.0.2 - mdast-util-to-string: 3.2.0 - micromark: 3.2.0 - micromark-util-decode-numeric-character-reference: 1.1.0 - micromark-util-decode-string: 1.1.0 - micromark-util-normalize-identifier: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - unist-util-stringify-position: 3.0.3 - uvu: 0.5.6 - transitivePeerDependencies: - - supports-color - - mdast-util-to-string@3.2.0: - dependencies: - '@types/mdast': 3.0.15 - mdn-data@2.0.30: {} media-typer@0.3.0: {} @@ -10722,139 +10518,6 @@ snapshots: micro-ftch@0.3.1: {} - micromark-core-commonmark@1.1.0: - dependencies: - decode-named-character-reference: 1.0.2 - micromark-factory-destination: 1.1.0 - micromark-factory-label: 1.1.0 - micromark-factory-space: 1.1.0 - micromark-factory-title: 1.1.0 - micromark-factory-whitespace: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-chunked: 1.1.0 - micromark-util-classify-character: 1.1.0 - micromark-util-html-tag-name: 1.2.0 - micromark-util-normalize-identifier: 1.1.0 - micromark-util-resolve-all: 1.1.0 - micromark-util-subtokenize: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - - micromark-factory-destination@1.1.0: - dependencies: - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - - micromark-factory-label@1.1.0: - dependencies: - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - - micromark-factory-space@1.1.0: - dependencies: - micromark-util-character: 1.2.0 - micromark-util-types: 1.1.0 - - micromark-factory-title@1.1.0: - dependencies: - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - - micromark-factory-whitespace@1.1.0: - dependencies: - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - - micromark-util-character@1.2.0: - dependencies: - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - - micromark-util-chunked@1.1.0: - dependencies: - micromark-util-symbol: 1.1.0 - - micromark-util-classify-character@1.1.0: - dependencies: - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - - micromark-util-combine-extensions@1.1.0: - dependencies: - micromark-util-chunked: 1.1.0 - micromark-util-types: 1.1.0 - - micromark-util-decode-numeric-character-reference@1.1.0: - dependencies: - micromark-util-symbol: 1.1.0 - - micromark-util-decode-string@1.1.0: - dependencies: - decode-named-character-reference: 1.0.2 - micromark-util-character: 1.2.0 - micromark-util-decode-numeric-character-reference: 1.1.0 - micromark-util-symbol: 1.1.0 - - micromark-util-encode@1.1.0: {} - - micromark-util-html-tag-name@1.2.0: {} - - micromark-util-normalize-identifier@1.1.0: - dependencies: - micromark-util-symbol: 1.1.0 - - micromark-util-resolve-all@1.1.0: - dependencies: - micromark-util-types: 1.1.0 - - micromark-util-sanitize-uri@1.2.0: - dependencies: - micromark-util-character: 1.2.0 - micromark-util-encode: 1.1.0 - micromark-util-symbol: 1.1.0 - - micromark-util-subtokenize@1.1.0: - dependencies: - micromark-util-chunked: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - - micromark-util-symbol@1.1.0: {} - - micromark-util-types@1.1.0: {} - - micromark@3.2.0: - dependencies: - '@types/debug': 4.1.12 - debug: 4.4.0(supports-color@8.1.1) - decode-named-character-reference: 1.0.2 - micromark-core-commonmark: 1.1.0 - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-chunked: 1.1.0 - micromark-util-combine-extensions: 1.1.0 - micromark-util-decode-numeric-character-reference: 1.1.0 - micromark-util-encode: 1.1.0 - micromark-util-normalize-identifier: 1.1.0 - micromark-util-resolve-all: 1.1.0 - micromark-util-sanitize-uri: 1.2.0 - micromark-util-subtokenize: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - transitivePeerDependencies: - - supports-color - mime-db@1.52.0: {} mime-types@2.1.35: @@ -10988,17 +10651,15 @@ snapshots: mock-socket@9.3.1: {} - moonbeam-types-bundle@2.0.10(bufferutil@4.0.8)(utf-8-validate@5.0.10): + moonbeam-types-bundle@2.0.10(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - '@polkadot/api': 15.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot/api': 15.5.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) typescript: 4.9.5 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - mri@1.2.0: {} - mrmime@2.0.0: {} ms@2.0.0: {} @@ -11088,6 +10749,8 @@ snapshots: node-addon-api@2.0.2: {} + node-addon-api@5.1.0: {} + node-addon-api@7.1.1: {} node-domexception@1.0.0: {} @@ -11106,9 +10769,7 @@ snapshots: node-forge@1.3.1: {} - node-gyp-build@4.8.2: {} - - node-gyp-build@4.8.3: {} + node-gyp-build@4.8.4: {} node-gyp@8.4.1: dependencies: @@ -11186,16 +10847,16 @@ snapshots: octokit@4.0.2: dependencies: - '@octokit/app': 15.1.0 - '@octokit/core': 6.1.2 - '@octokit/oauth-app': 7.1.3 - '@octokit/plugin-paginate-graphql': 5.2.3(@octokit/core@6.1.2) - '@octokit/plugin-paginate-rest': 11.3.5(@octokit/core@6.1.2) - '@octokit/plugin-rest-endpoint-methods': 13.2.5(@octokit/core@6.1.2) - '@octokit/plugin-retry': 7.1.2(@octokit/core@6.1.2) - '@octokit/plugin-throttling': 9.3.1(@octokit/core@6.1.2) - '@octokit/request-error': 6.1.5 - '@octokit/types': 13.6.0 + '@octokit/app': 15.1.2 + '@octokit/core': 6.1.3 + '@octokit/oauth-app': 7.1.5 + '@octokit/plugin-paginate-graphql': 5.2.4(@octokit/core@6.1.3) + '@octokit/plugin-paginate-rest': 11.4.0(@octokit/core@6.1.3) + '@octokit/plugin-rest-endpoint-methods': 13.3.0(@octokit/core@6.1.3) + '@octokit/plugin-retry': 7.1.3(@octokit/core@6.1.3) + '@octokit/plugin-throttling': 9.4.0(@octokit/core@6.1.3) + '@octokit/request-error': 6.1.6 + '@octokit/types': 13.7.0 on-exit-leak-free@2.1.2: {} @@ -11229,17 +10890,17 @@ snapshots: os-tmpdir@1.0.2: {} - ox@0.6.7(typescript@5.7.2)(zod@3.24.1): + ox@0.6.7(typescript@5.3.3)(zod@3.24.1): dependencies: '@adraffy/ens-normalize': 1.11.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) + abitype: 1.0.8(typescript@5.3.3)(zod@3.24.1) eventemitter3: 5.0.1 optionalDependencies: - typescript: 5.7.2 + typescript: 5.3.3 transitivePeerDependencies: - zod @@ -11268,7 +10929,7 @@ snapshots: dependencies: '@babel/code-frame': 7.26.2 index-to-position: 0.1.2 - type-fest: 4.29.0 + type-fest: 4.33.0 parse-ms@4.0.0: {} @@ -11302,7 +10963,7 @@ snapshots: lru-cache: 10.4.3 minipass: 7.1.2 - path-to-regexp@0.1.10: {} + path-to-regexp@0.1.12: {} pathe@1.1.2: {} @@ -11374,26 +11035,27 @@ snapshots: pnglib@0.0.1: {} - 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): + polkadot-api@1.8.4(bufferutil@4.0.9)(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5): dependencies: - '@polkadot-api/cli': 0.9.21(bufferutil@4.0.8)(postcss@8.4.49)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5) - '@polkadot-api/ink-contracts': 0.2.2 + '@polkadot-api/cli': 0.10.3(bufferutil@4.0.9)(postcss@8.5.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.4.5) + '@polkadot-api/ink-contracts': 0.2.5 '@polkadot-api/json-rpc-provider': 0.0.4 - '@polkadot-api/known-chains': 0.5.8 + '@polkadot-api/known-chains': 0.6.1 '@polkadot-api/logs-provider': 0.0.6 - '@polkadot-api/metadata-builders': 0.9.2 - '@polkadot-api/metadata-compatibility': 0.1.12 - '@polkadot-api/observable-client': 0.6.3(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1) - '@polkadot-api/pjs-signer': 0.6.1 + '@polkadot-api/metadata-builders': 0.10.1 + '@polkadot-api/metadata-compatibility': 0.1.15 + '@polkadot-api/observable-client': 0.7.2(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1) + '@polkadot-api/pjs-signer': 0.6.4 '@polkadot-api/polkadot-sdk-compat': 2.3.1 '@polkadot-api/polkadot-signer': 0.1.6 - '@polkadot-api/signer': 0.1.11 - '@polkadot-api/sm-provider': 0.1.7(@polkadot-api/smoldot@0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@polkadot-api/smoldot': 0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/signer': 0.1.14 + '@polkadot-api/sm-provider': 0.1.7(@polkadot-api/smoldot@0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@polkadot-api/smoldot': 0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/substrate-client': 0.3.0 '@polkadot-api/utils': 0.1.2 - '@polkadot-api/ws-provider': 0.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot-api/ws-provider': 0.3.6(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@rx-state/core': 0.1.4(rxjs@7.8.1) rxjs: 7.8.1 transitivePeerDependencies: - '@microsoft/api-extractor' @@ -11406,26 +11068,27 @@ snapshots: - utf-8-validate - yaml - 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): + polkadot-api@1.8.4(bufferutil@4.0.9)(postcss@8.5.1)(rxjs@7.8.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1): dependencies: - '@polkadot-api/cli': 0.9.21(bufferutil@4.0.8)(postcss@8.4.49)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1) - '@polkadot-api/ink-contracts': 0.2.2 + '@polkadot-api/cli': 0.10.3(bufferutil@4.0.9)(postcss@8.5.1)(tsx@4.19.2)(utf-8-validate@5.0.10)(yaml@2.6.1) + '@polkadot-api/ink-contracts': 0.2.5 '@polkadot-api/json-rpc-provider': 0.0.4 - '@polkadot-api/known-chains': 0.5.8 + '@polkadot-api/known-chains': 0.6.1 '@polkadot-api/logs-provider': 0.0.6 - '@polkadot-api/metadata-builders': 0.9.2 - '@polkadot-api/metadata-compatibility': 0.1.12 - '@polkadot-api/observable-client': 0.6.3(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1) - '@polkadot-api/pjs-signer': 0.6.1 + '@polkadot-api/metadata-builders': 0.10.1 + '@polkadot-api/metadata-compatibility': 0.1.15 + '@polkadot-api/observable-client': 0.7.2(@polkadot-api/substrate-client@0.3.0)(rxjs@7.8.1) + '@polkadot-api/pjs-signer': 0.6.4 '@polkadot-api/polkadot-sdk-compat': 2.3.1 '@polkadot-api/polkadot-signer': 0.1.6 - '@polkadot-api/signer': 0.1.11 - '@polkadot-api/sm-provider': 0.1.7(@polkadot-api/smoldot@0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@polkadot-api/smoldot': 0.3.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@polkadot-api/substrate-bindings': 0.9.4 + '@polkadot-api/signer': 0.1.14 + '@polkadot-api/sm-provider': 0.1.7(@polkadot-api/smoldot@0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@polkadot-api/smoldot': 0.3.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@polkadot-api/substrate-bindings': 0.11.0 '@polkadot-api/substrate-client': 0.3.0 '@polkadot-api/utils': 0.1.2 - '@polkadot-api/ws-provider': 0.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@polkadot-api/ws-provider': 0.3.6(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@rx-state/core': 0.1.4(rxjs@7.8.1) rxjs: 7.8.1 transitivePeerDependencies: - '@microsoft/api-extractor' @@ -11441,7 +11104,7 @@ snapshots: 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': 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': 15.5.1 typescript: 4.9.5 transitivePeerDependencies: - '@polkadot/util' @@ -11449,19 +11112,19 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-load-config@6.0.1(postcss@8.4.49)(tsx@4.19.2)(yaml@2.4.5): + postcss-load-config@6.0.1(postcss@8.5.1)(tsx@4.19.2)(yaml@2.4.5): dependencies: - lilconfig: 3.1.2 + lilconfig: 3.1.3 optionalDependencies: - postcss: 8.4.49 + postcss: 8.5.1 tsx: 4.19.2 yaml: 2.4.5 - postcss-load-config@6.0.1(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1): + postcss-load-config@6.0.1(postcss@8.5.1)(tsx@4.19.2)(yaml@2.6.1): dependencies: - lilconfig: 3.1.2 + lilconfig: 3.1.3 optionalDependencies: - postcss: 8.4.49 + postcss: 8.5.1 tsx: 4.19.2 yaml: 2.6.1 @@ -11473,7 +11136,7 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - postcss@8.4.49: + postcss@8.5.1: dependencies: nanoid: 3.3.8 picocolors: 1.1.1 @@ -11494,17 +11157,6 @@ snapshots: tar-fs: 2.1.2 tunnel-agent: 0.6.0 - prettier-plugin-jsdoc@0.3.38(prettier@2.8.8): - dependencies: - binary-searching: 2.0.5 - comment-parser: 1.4.1 - mdast-util-from-markdown: 1.3.1 - prettier: 2.8.8 - transitivePeerDependencies: - - supports-color - - prettier@2.8.8: {} - pretty-ms@9.2.0: dependencies: parse-ms: 4.0.0 @@ -11545,7 +11197,7 @@ snapshots: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.2 - '@types/node': 22.10.1 + '@types/node': 22.12.0 long: 4.0.0 proxy-addr@2.0.7: @@ -11557,7 +11209,7 @@ snapshots: prr@1.0.1: {} - psl@1.10.0: + psl@1.15.0: dependencies: punycode: 2.3.1 @@ -11572,7 +11224,7 @@ snapshots: qs@6.13.0: dependencies: - side-channel: 1.0.6 + side-channel: 1.1.0 qs@6.5.3: {} @@ -11619,16 +11271,13 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 - react-dom@18.3.1(react@18.3.1): + react-dom@19.0.0(react@18.3.1): dependencies: - loose-envify: 1.4.0 react: 18.3.1 - scheduler: 0.23.2 + scheduler: 0.25.0 react-is@16.13.1: {} - react-is@18.3.1: {} - react-reconciler@0.29.2(react@18.3.1): dependencies: loose-envify: 1.4.0 @@ -11644,7 +11293,7 @@ snapshots: '@types/normalize-package-data': 2.4.4 normalize-package-data: 6.0.2 parse-json: 8.1.0 - type-fest: 4.29.0 + type-fest: 4.33.0 unicorn-magic: 0.1.0 readable-stream@3.6.2: @@ -11657,7 +11306,7 @@ snapshots: dependencies: picomatch: 2.3.1 - readdirp@4.0.2: {} + readdirp@4.1.1: {} real-require@0.2.0: {} @@ -11742,34 +11391,34 @@ snapshots: semver-compare: 1.0.0 sprintf-js: 1.1.3 - rollup@4.28.1: + rollup@4.32.1: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.28.1 - '@rollup/rollup-android-arm64': 4.28.1 - '@rollup/rollup-darwin-arm64': 4.28.1 - '@rollup/rollup-darwin-x64': 4.28.1 - '@rollup/rollup-freebsd-arm64': 4.28.1 - '@rollup/rollup-freebsd-x64': 4.28.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.28.1 - '@rollup/rollup-linux-arm-musleabihf': 4.28.1 - '@rollup/rollup-linux-arm64-gnu': 4.28.1 - '@rollup/rollup-linux-arm64-musl': 4.28.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.28.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.28.1 - '@rollup/rollup-linux-riscv64-gnu': 4.28.1 - '@rollup/rollup-linux-s390x-gnu': 4.28.1 - '@rollup/rollup-linux-x64-gnu': 4.28.1 - '@rollup/rollup-linux-x64-musl': 4.28.1 - '@rollup/rollup-win32-arm64-msvc': 4.28.1 - '@rollup/rollup-win32-ia32-msvc': 4.28.1 - '@rollup/rollup-win32-x64-msvc': 4.28.1 + '@rollup/rollup-android-arm-eabi': 4.32.1 + '@rollup/rollup-android-arm64': 4.32.1 + '@rollup/rollup-darwin-arm64': 4.32.1 + '@rollup/rollup-darwin-x64': 4.32.1 + '@rollup/rollup-freebsd-arm64': 4.32.1 + '@rollup/rollup-freebsd-x64': 4.32.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.32.1 + '@rollup/rollup-linux-arm-musleabihf': 4.32.1 + '@rollup/rollup-linux-arm64-gnu': 4.32.1 + '@rollup/rollup-linux-arm64-musl': 4.32.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.32.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.32.1 + '@rollup/rollup-linux-riscv64-gnu': 4.32.1 + '@rollup/rollup-linux-s390x-gnu': 4.32.1 + '@rollup/rollup-linux-x64-gnu': 4.32.1 + '@rollup/rollup-linux-x64-musl': 4.32.1 + '@rollup/rollup-win32-arm64-msvc': 4.32.1 + '@rollup/rollup-win32-ia32-msvc': 4.32.1 + '@rollup/rollup-win32-x64-msvc': 4.32.1 fsevents: 2.3.3 rrweb-cssom@0.6.0: {} - rrweb-cssom@0.7.1: {} + rrweb-cssom@0.8.0: {} run-async@3.0.0: {} @@ -11777,14 +11426,16 @@ snapshots: dependencies: tslib: 2.8.1 - sade@1.8.1: - dependencies: - mri: 1.2.0 - safe-buffer@5.1.2: {} safe-buffer@5.2.1: {} + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-regex: 1.2.1 + safe-stable-stringify@2.5.0: {} safer-buffer@2.1.2: {} @@ -11799,13 +11450,15 @@ snapshots: dependencies: loose-envify: 1.4.0 + scheduler@0.25.0: {} + scrypt-js@3.0.1: {} - secp256k1@4.0.3: + secp256k1@4.0.4: dependencies: - elliptic: 6.5.7 - node-addon-api: 2.0.2 - node-gyp-build: 4.8.2 + elliptic: 6.6.1 + node-addon-api: 5.1.0 + node-gyp-build: 4.8.4 secure-json-parse@2.7.0: {} @@ -11858,7 +11511,7 @@ snapshots: dependencies: body-parser: 1.20.3 cors: 2.8.5 - express: 4.21.0 + express: 4.21.2 request: 2.88.2 xhr: 2.6.0 transitivePeerDependencies: @@ -11872,8 +11525,8 @@ snapshots: define-data-property: 1.1.4 es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.4 - gopd: 1.0.1 + get-intrinsic: 1.2.7 + gopd: 1.2.0 has-property-descriptors: 1.0.2 setimmediate@1.0.5: {} @@ -11893,13 +11546,34 @@ snapshots: shebang-regex@3.0.0: {} - side-channel@1.0.6: + side-channel-list@1.0.0: dependencies: - call-bind: 1.0.8 es-errors: 1.3.0 - get-intrinsic: 1.2.5 object-inspect: 1.13.3 + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.7 + object-inspect: 1.13.3 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.7 + object-inspect: 1.13.3 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + siginfo@2.0.0: {} signal-exit@3.0.7: {} @@ -11939,17 +11613,17 @@ snapshots: smart-buffer@4.2.0: optional: true - smoldot@2.0.26(bufferutil@4.0.8)(utf-8-validate@5.0.10): + smoldot@2.0.26(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate optional: true - smoldot@2.0.33(bufferutil@4.0.8)(utf-8-validate@5.0.10): + smoldot@2.0.34(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate @@ -12000,16 +11674,16 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.20 + spdx-license-ids: 3.0.21 spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.20 + spdx-license-ids: 3.0.21 - spdx-license-ids@3.0.20: {} + spdx-license-ids@3.0.21: {} split2@4.2.0: {} @@ -12102,7 +11776,7 @@ snapshots: strip-json-comments@3.1.1: {} - styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + styled-components@6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1): dependencies: '@emotion/is-prop-valid': 1.2.2 '@emotion/unitless': 0.8.1 @@ -12111,7 +11785,7 @@ snapshots: csstype: 3.1.3 postcss: 8.4.38 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0(react@18.3.1) shallowequal: 1.1.0 stylis: 4.3.2 tslib: 2.6.2 @@ -12120,7 +11794,7 @@ snapshots: sucrase@3.35.0: dependencies: - '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/gen-mapping': 0.3.8 commander: 4.1.1 glob: 10.4.5 lines-and-columns: 1.2.4 @@ -12136,11 +11810,11 @@ snapshots: dependencies: has-flag: 4.0.0 - swarm-js@0.1.42(bufferutil@4.0.8)(utf-8-validate@5.0.10): + swarm-js@0.1.42(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: bluebird: 3.7.2 buffer: 5.7.1 - eth-lib: 0.1.29(bufferutil@4.0.8)(utf-8-validate@5.0.10) + eth-lib: 0.1.29(bufferutil@4.0.9)(utf-8-validate@5.0.10) fs-extra: 4.0.3 got: 11.8.6 mime-types: 2.1.35 @@ -12217,11 +11891,11 @@ snapshots: tinybench@2.9.0: {} - tinyexec@0.3.1: {} + tinyexec@0.3.2: {} tinyglobby@0.2.10: dependencies: - fdir: 6.4.2(picomatch@4.0.2) + fdir: 6.4.3(picomatch@4.0.2) picomatch: 4.0.2 tinypool@1.0.2: {} @@ -12244,6 +11918,8 @@ snapshots: dependencies: is-number: 7.0.0 + toad-cache@3.7.0: {} + toggle-selection@1.0.6: {} toidentifier@1.0.1: {} @@ -12254,12 +11930,12 @@ snapshots: tough-cookie@2.5.0: dependencies: - psl: 1.10.0 + psl: 1.15.0 punycode: 2.3.1 tough-cookie@4.1.4: dependencies: - psl: 1.10.0 + psl: 1.15.0 punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 @@ -12278,14 +11954,14 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-node@10.9.2(@types/node@22.10.1)(typescript@5.3.3): + ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.10.1 + '@types/node': 22.12.0 acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 @@ -12296,27 +11972,27 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2): + ts-node@10.9.2(@types/node@22.12.0)(typescript@5.5.4): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.10.1 + '@types/node': 22.12.0 acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.7.2 + typescript: 5.5.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - tsc-prog@2.3.0(typescript@5.7.2): + tsc-prog@2.3.0(typescript@5.7.3): dependencies: - typescript: 5.7.2 + typescript: 5.7.3 tslib@2.6.2: {} @@ -12324,54 +12000,135 @@ snapshots: tslib@2.8.1: {} - tsup@8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.4.5): + tsup@8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.3.3)(yaml@2.6.1): + dependencies: + bundle-require: 5.1.0(esbuild@0.24.2) + cac: 6.7.14 + chokidar: 4.0.3 + consola: 3.4.0 + debug: 4.4.0(supports-color@8.1.1) + esbuild: 0.24.2 + joycon: 3.1.1 + picocolors: 1.1.1 + postcss-load-config: 6.0.1(postcss@8.5.1)(tsx@4.19.2)(yaml@2.6.1) + resolve-from: 5.0.0 + rollup: 4.32.1 + source-map: 0.8.0-beta.0 + sucrase: 3.35.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.10 + tree-kill: 1.2.2 + optionalDependencies: + postcss: 8.5.1 + typescript: 5.3.3 + transitivePeerDependencies: + - jiti + - supports-color + - tsx + - yaml + + tsup@8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.5.4)(yaml@2.4.5): + dependencies: + bundle-require: 5.1.0(esbuild@0.24.2) + cac: 6.7.14 + chokidar: 4.0.3 + consola: 3.4.0 + debug: 4.4.0(supports-color@8.1.1) + esbuild: 0.24.2 + joycon: 3.1.1 + picocolors: 1.1.1 + postcss-load-config: 6.0.1(postcss@8.5.1)(tsx@4.19.2)(yaml@2.4.5) + resolve-from: 5.0.0 + rollup: 4.32.1 + source-map: 0.8.0-beta.0 + sucrase: 3.35.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.10 + tree-kill: 1.2.2 + optionalDependencies: + postcss: 8.5.1 + typescript: 5.5.4 + transitivePeerDependencies: + - jiti + - supports-color + - tsx + - yaml + + tsup@8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.5.4)(yaml@2.6.1): + dependencies: + bundle-require: 5.1.0(esbuild@0.24.2) + cac: 6.7.14 + chokidar: 4.0.3 + consola: 3.4.0 + debug: 4.4.0(supports-color@8.1.1) + esbuild: 0.24.2 + joycon: 3.1.1 + picocolors: 1.1.1 + postcss-load-config: 6.0.1(postcss@8.5.1)(tsx@4.19.2)(yaml@2.6.1) + resolve-from: 5.0.0 + rollup: 4.32.1 + source-map: 0.8.0-beta.0 + sucrase: 3.35.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.10 + tree-kill: 1.2.2 + optionalDependencies: + postcss: 8.5.1 + typescript: 5.5.4 + transitivePeerDependencies: + - jiti + - supports-color + - tsx + - yaml + + tsup@8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.4.5): dependencies: - bundle-require: 5.0.0(esbuild@0.24.0) + bundle-require: 5.1.0(esbuild@0.24.2) cac: 6.7.14 - chokidar: 4.0.1 - consola: 3.2.3 + chokidar: 4.0.3 + consola: 3.4.0 debug: 4.4.0(supports-color@8.1.1) - esbuild: 0.24.0 + esbuild: 0.24.2 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(postcss@8.4.49)(tsx@4.19.2)(yaml@2.4.5) + postcss-load-config: 6.0.1(postcss@8.5.1)(tsx@4.19.2)(yaml@2.4.5) resolve-from: 5.0.0 - rollup: 4.28.1 + rollup: 4.32.1 source-map: 0.8.0-beta.0 sucrase: 3.35.0 - tinyexec: 0.3.1 + tinyexec: 0.3.2 tinyglobby: 0.2.10 tree-kill: 1.2.2 optionalDependencies: - postcss: 8.4.49 - typescript: 5.7.2 + postcss: 8.5.1 + typescript: 5.7.3 transitivePeerDependencies: - jiti - supports-color - tsx - yaml - tsup@8.3.5(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1): + tsup@8.3.5(postcss@8.5.1)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.6.1): dependencies: - bundle-require: 5.0.0(esbuild@0.24.0) + bundle-require: 5.1.0(esbuild@0.24.2) cac: 6.7.14 - chokidar: 4.0.1 - consola: 3.2.3 + chokidar: 4.0.3 + consola: 3.4.0 debug: 4.4.0(supports-color@8.1.1) - esbuild: 0.24.0 + esbuild: 0.24.2 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1) + postcss-load-config: 6.0.1(postcss@8.5.1)(tsx@4.19.2)(yaml@2.6.1) resolve-from: 5.0.0 - rollup: 4.28.1 + rollup: 4.32.1 source-map: 0.8.0-beta.0 sucrase: 3.35.0 - tinyexec: 0.3.1 + tinyexec: 0.3.2 tinyglobby: 0.2.10 tree-kill: 1.2.2 optionalDependencies: - postcss: 8.4.49 - typescript: 5.7.2 + postcss: 8.5.1 + typescript: 5.7.3 transitivePeerDependencies: - jiti - supports-color @@ -12381,7 +12138,7 @@ snapshots: tsx@4.19.2: dependencies: esbuild: 0.23.1 - get-tsconfig: 4.8.1 + get-tsconfig: 4.10.0 optionalDependencies: fsevents: 2.3.3 @@ -12397,7 +12154,7 @@ snapshots: type-fest@0.21.3: {} - type-fest@4.29.0: {} + type-fest@4.33.0: {} type-is@1.6.18: dependencies: @@ -12412,7 +12169,7 @@ snapshots: dependencies: is-typedarray: 1.0.0 - typeorm@0.3.20(sqlite3@5.1.7)(ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2)): + typeorm@0.3.20(sqlite3@5.1.7)(ts-node@10.9.2(@types/node@22.12.0)(typescript@5.3.3)): dependencies: '@sqltools/formatter': 1.2.5 app-root-path: 3.1.0 @@ -12431,7 +12188,7 @@ snapshots: yargs: 17.7.2 optionalDependencies: sqlite3: 5.1.7 - ts-node: 10.9.2(@types/node@22.10.1)(typescript@5.7.2) + ts-node: 10.9.2(@types/node@22.12.0)(typescript@5.3.3) transitivePeerDependencies: - supports-color @@ -12439,7 +12196,9 @@ snapshots: typescript@5.3.3: {} - typescript@5.7.2: {} + typescript@5.5.4: {} + + typescript@5.7.3: {} uglify-js@3.19.3: optional: true @@ -12468,10 +12227,6 @@ snapshots: imurmurhash: 0.1.4 optional: true - unist-util-stringify-position@3.0.3: - dependencies: - '@types/unist': 2.0.11 - universal-github-app-jwt@2.2.0: {} universal-user-agent@7.0.2: {} @@ -12497,7 +12252,7 @@ snapshots: utf-8-validate@5.0.10: dependencies: - node-gyp-build: 4.8.3 + node-gyp-build: 4.8.4 utf8@3.0.0: {} @@ -12506,10 +12261,10 @@ snapshots: util@0.12.5: dependencies: inherits: 2.0.4 - is-arguments: 1.1.1 - is-generator-function: 1.0.10 - is-typed-array: 1.1.13 - which-typed-array: 1.1.16 + is-arguments: 1.2.0 + is-generator-function: 1.1.0 + is-typed-array: 1.1.15 + which-typed-array: 1.1.18 utils-merge@1.0.1: {} @@ -12517,13 +12272,6 @@ snapshots: uuid@9.0.1: {} - uvu@0.5.6: - dependencies: - dequal: 2.0.3 - diff: 5.2.0 - kleur: 4.1.5 - sade: 1.8.1 - v8-compile-cache-lib@3.0.1: {} validate-npm-package-license@3.0.4: @@ -12541,30 +12289,30 @@ snapshots: core-util-is: 1.0.2 extsprintf: 1.3.0 - viem@2.22.13(bufferutil@4.0.8)(typescript@5.7.2)(utf-8-validate@5.0.10)(zod@3.24.1): + viem@2.22.13(bufferutil@4.0.9)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1): dependencies: '@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.6.7(typescript@5.7.2)(zod@3.24.1) - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + abitype: 1.0.8(typescript@5.3.3)(zod@3.24.1) + isows: 1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.6.7(typescript@5.3.3)(zod@3.24.1) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.7.2 + typescript: 5.3.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - vite-node@2.1.8(@types/node@22.10.1): + vite-node@2.1.8(@types/node@22.12.0): dependencies: cac: 6.7.14 debug: 4.4.0(supports-color@8.1.1) - es-module-lexer: 1.5.4 + es-module-lexer: 1.6.0 pathe: 1.1.2 - vite: 5.4.11(@types/node@22.10.1) + vite: 5.4.14(@types/node@22.12.0) transitivePeerDependencies: - '@types/node' - less @@ -12576,19 +12324,19 @@ snapshots: - supports-color - terser - vite@5.4.11(@types/node@22.10.1): + vite@5.4.14(@types/node@22.12.0): dependencies: esbuild: 0.21.5 - postcss: 8.4.49 - rollup: 4.28.1 + postcss: 8.5.1 + rollup: 4.32.1 optionalDependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 fsevents: 2.3.3 - 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)): + vitest@2.1.8(@types/node@22.12.0)(@vitest/ui@2.1.8)(jsdom@23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)): dependencies: '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.1)) + '@vitest/mocker': 2.1.8(vite@5.4.14(@types/node@22.12.0)) '@vitest/pretty-format': 2.1.8 '@vitest/runner': 2.1.8 '@vitest/snapshot': 2.1.8 @@ -12597,20 +12345,20 @@ snapshots: chai: 5.1.2 debug: 4.4.0(supports-color@8.1.1) expect-type: 1.1.0 - magic-string: 0.30.15 + magic-string: 0.30.17 pathe: 1.1.2 std-env: 3.8.0 tinybench: 2.9.0 - tinyexec: 0.3.1 + tinyexec: 0.3.2 tinypool: 1.0.2 tinyrainbow: 1.2.0 - vite: 5.4.11(@types/node@22.10.1) - vite-node: 2.1.8(@types/node@22.10.1) + vite: 5.4.14(@types/node@22.12.0) + vite-node: 2.1.8(@types/node@22.12.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.10.1 + '@types/node': 22.12.0 '@vitest/ui': 2.1.8(vitest@2.1.8) - jsdom: 23.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + jsdom: 23.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - less - lightningcss @@ -12628,11 +12376,11 @@ snapshots: web-streams-polyfill@3.3.3: {} - web3-bzz@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10): + web3-bzz@1.10.4(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@types/node': 12.20.55 got: 12.1.0 - swarm-js: 0.1.42(bufferutil@4.0.8)(utf-8-validate@5.0.10) + swarm-js: 0.1.42(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - supports-color @@ -12684,13 +12432,13 @@ snapshots: - encoding - supports-color - web3-core@4.7.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): + web3-core@4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: web3-errors: 1.3.1 web3-eth-accounts: 4.3.1 web3-eth-iban: 4.0.7 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) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 web3-validator: 2.0.6 @@ -12701,10 +12449,6 @@ snapshots: - encoding - utf-8-validate - web3-errors@1.3.0: - dependencies: - web3-types: 1.10.0 - web3-errors@1.3.1: dependencies: web3-types: 1.10.0 @@ -12714,9 +12458,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.1): + web3-eth-abi@4.4.1(typescript@5.3.3)(zod@3.24.1): dependencies: - abitype: 0.7.1(typescript@5.7.2)(zod@3.24.1) + abitype: 0.7.1(typescript@5.3.3)(zod@3.24.1) web3-errors: 1.3.1 web3-types: 1.10.0 web3-utils: 4.3.3 @@ -12765,13 +12509,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.1): + web3-eth-contract@4.7.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(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-core: 4.7.1(bufferutil@4.0.9)(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.1) - web3-eth-abi: 4.4.1(typescript@5.7.2)(zod@3.24.1) + web3-eth: 4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-eth-abi: 4.4.1(typescript@5.3.3)(zod@3.24.1) web3-types: 1.10.0 web3-utils: 4.3.3 web3-validator: 2.0.6 @@ -12796,14 +12540,14 @@ 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.1): + web3-eth-ens@4.4.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(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-core: 4.7.1(bufferutil@4.0.9)(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.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-eth: 4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-eth-contract: 4.7.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-net: 4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 web3-validator: 2.0.6 @@ -12838,11 +12582,11 @@ 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.1): + web3-eth-personal@4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(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.1) - web3-rpc-methods: 1.3.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-eth: 4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-rpc-methods: 1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 web3-validator: 2.0.6 @@ -12871,16 +12615,16 @@ 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.1): + web3-eth@4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(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-core: 4.7.1(bufferutil@4.0.9)(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.1) + web3-eth-abi: 4.4.1(typescript@5.3.3)(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) - web3-rpc-methods: 1.3.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-net: 4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 web3-validator: 2.0.6 @@ -12900,10 +12644,10 @@ snapshots: - encoding - supports-color - web3-net@4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): + web3-net@4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: - web3-core: 4.7.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - web3-rpc-methods: 1.3.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 transitivePeerDependencies: @@ -12913,8 +12657,8 @@ snapshots: web3-providers-http@1.10.4(encoding@0.1.13): dependencies: - abortcontroller-polyfill: 1.7.5 - cross-fetch: 4.0.0(encoding@0.1.13) + abortcontroller-polyfill: 1.7.8 + cross-fetch: 4.1.0(encoding@0.1.13) es6-promise: 4.2.8 web3-core-helpers: 1.10.4 transitivePeerDependencies: @@ -12922,7 +12666,7 @@ snapshots: web3-providers-http@4.2.0(encoding@0.1.13): dependencies: - cross-fetch: 4.0.0(encoding@0.1.13) + cross-fetch: 4.1.0(encoding@0.1.13) web3-errors: 1.3.1 web3-types: 1.10.0 web3-utils: 4.3.3 @@ -12949,21 +12693,21 @@ snapshots: transitivePeerDependencies: - supports-color - web3-providers-ws@4.0.8(bufferutil@4.0.8)(utf-8-validate@5.0.10): + web3-providers-ws@4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: '@types/ws': 8.5.3 - isomorphic-ws: 5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - web3-errors: 1.3.0 - web3-types: 1.9.0 - web3-utils: 4.3.2 - ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isomorphic-ws: 5.0.0(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + web3-errors: 1.3.1 + web3-types: 1.10.0 + web3-utils: 4.3.3 + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - utf-8-validate - web3-rpc-methods@1.3.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): + web3-rpc-methods@1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: - web3-core: 4.7.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-core: 4.7.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-validator: 2.0.6 transitivePeerDependencies: @@ -12971,11 +12715,11 @@ snapshots: - encoding - utf-8-validate - web3-rpc-providers@1.0.0-rc.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): + web3-rpc-providers@1.0.0-rc.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: web3-errors: 1.3.1 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) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 web3-validator: 2.0.6 @@ -12996,8 +12740,6 @@ snapshots: web3-types@1.10.0: {} - web3-types@1.9.0: {} - web3-utils@1.10.4: dependencies: '@ethereumjs/util': 8.1.0 @@ -13009,14 +12751,6 @@ snapshots: randombytes: 2.1.0 utf8: 3.0.0 - web3-utils@4.3.2: - dependencies: - ethereum-cryptography: 2.2.1 - eventemitter3: 5.0.1 - web3-errors: 1.3.1 - web3-types: 1.10.0 - web3-validator: 2.0.6 - web3-utils@4.3.3: dependencies: ethereum-cryptography: 2.2.1 @@ -13033,9 +12767,9 @@ snapshots: web3-types: 1.10.0 zod: 3.24.1 - web3@1.10.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): + web3@1.10.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: - web3-bzz: 1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-bzz: 1.10.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) web3-core: 1.10.4(encoding@0.1.13) web3-eth: 1.10.4(encoding@0.1.13) web3-eth-personal: 1.10.4(encoding@0.1.13) @@ -13048,22 +12782,22 @@ 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.1): + web3@4.16.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(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-core: 4.7.1(bufferutil@4.0.9)(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.1) - web3-eth-abi: 4.4.1(typescript@5.7.2)(zod@3.24.1) + web3-eth: 4.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-eth-abi: 4.4.1(typescript@5.3.3)(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.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-contract: 4.7.2(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-eth-ens: 4.4.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(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.1) - web3-net: 4.1.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-eth-personal: 4.1.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.24.1) + web3-net: 4.1.0(bufferutil@4.0.9)(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) - web3-rpc-methods: 1.3.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - web3-rpc-providers: 1.0.0-rc.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-providers-ws: 4.0.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.3.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-rpc-providers: 1.0.0-rc.4(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-types: 1.10.0 web3-utils: 4.3.3 web3-validator: 2.0.6 @@ -13082,7 +12816,7 @@ snapshots: websocket@1.0.35: dependencies: - bufferutil: 4.0.8 + bufferutil: 4.0.9 debug: 2.6.9 es5-ext: 0.10.64 typedarray-to-buffer: 3.1.5 @@ -13097,7 +12831,7 @@ snapshots: whatwg-mimetype@4.0.0: {} - whatwg-url@14.0.0: + whatwg-url@14.1.0: dependencies: tr46: 5.0.0 webidl-conversions: 7.0.0 @@ -13113,11 +12847,12 @@ snapshots: tr46: 1.0.1 webidl-conversions: 4.0.2 - which-typed-array@1.1.16: + which-typed-array@1.1.18: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.8 - for-each: 0.3.3 + call-bound: 1.0.3 + for-each: 0.3.4 gopd: 1.2.0 has-tostringtag: 1.0.2 @@ -13188,29 +12923,29 @@ snapshots: write-package@7.1.0: dependencies: - deepmerge-ts: 7.1.3 + deepmerge-ts: 7.1.4 read-pkg: 9.0.1 sort-keys: 5.1.0 - type-fest: 4.29.0 + type-fest: 4.33.0 write-json-file: 6.0.0 - ws@3.3.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): + ws@3.3.3(bufferutil@4.0.9)(utf-8-validate@5.0.10): dependencies: async-limiter: 1.0.1 safe-buffer: 5.1.2 ultron: 1.1.1 optionalDependencies: - bufferutil: 4.0.8 + bufferutil: 4.0.9 utf-8-validate: 5.0.10 - ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10): + ws@8.17.1(bufferutil@4.0.9)(utf-8-validate@5.0.10): optionalDependencies: - bufferutil: 4.0.8 + bufferutil: 4.0.9 utf-8-validate: 5.0.10 - ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): optionalDependencies: - bufferutil: 4.0.8 + bufferutil: 4.0.9 utf-8-validate: 5.0.10 xhr-request-promise@0.1.3: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 94b03152f6..8a5dff5d0e 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,4 +1,4 @@ packages: - "test" - "typescript-api" - - "moonbeam-types-bundle" + - "types-bundle" diff --git a/test/helpers/common.ts b/test/helpers/common.ts index 65abc49a3a..549302f61f 100644 --- a/test/helpers/common.ts +++ b/test/helpers/common.ts @@ -119,7 +119,7 @@ export function signWith( * @param size - Size of a chunk */ export function chunk(array: Array, size: number): Array> { - const chunks = []; + const chunks: Array> = []; for (let i = 0; i < array.length; i += size) { chunks.push(array.slice(i, i + size)); } diff --git a/test/helpers/xcm.ts b/test/helpers/xcm.ts index a153485937..6d769892ff 100644 --- a/test/helpers/xcm.ts +++ b/test/helpers/xcm.ts @@ -871,11 +871,12 @@ export const registerXcmTransactorDerivativeIndex = async (context: DevModeConte export const expectXcmEventMessage = async (context: DevModeContext, message: string) => { const records = await context.polkadotJs().query.system.events(); - const filteredEvents = records - .map(({ event }) => (context.polkadotJs().events.xcmpQueue.Fail.is(event) ? event : undefined)) - .filter((event) => event); - - return filteredEvents.length ? filteredEvents[0]!.data.error.toString() === message : false; + return records + .filter(({ event }) => context.polkadotJs().events.xcmpQueue.Fail.is(event)) + .some( + ({ event: { data: eventData } }: { event: { data: any } }) => + eventData.error.toString() === message + ); }; type XcmCallback = (this: XcmFragment) => void; diff --git a/test/package.json b/test/package.json index beb617ad1e..334efe1b68 100644 --- a/test/package.json +++ b/test/package.json @@ -6,7 +6,7 @@ "private": true, "type": "module", "scripts": { - "bundle-types": "cd ../moonbeam-types-bundle && pnpm build; cd ../test", + "bundle-types": "cd ../types-bundle && pnpm build; cd ../test", "typegen": "pnpm bundle-types && cd ../typescript-api && pnpm scrape && pnpm generate && pnpm build; cd ../test", "clean": "rm -rf node_modules", "fmt": "biome format .", @@ -29,7 +29,6 @@ "@openzeppelin/contracts": "4.9.6", "@polkadot-api/merkleize-metadata": "1.1.11", "@polkadot/api": "*", - "@polkadot/api-augment": "*", "@polkadot/api-derive": "*", "@polkadot/apps-config": "0.148.1", "@polkadot/keyring": "*", @@ -49,7 +48,7 @@ "json-bigint": "1.0.0", "json-stable-stringify": "1.1.1", "merkle-patricia-tree": "4.2.4", - "moonbeam-types-bundle": "workspace:*", + "@moonbeam-network/types-bundle": "workspace:*", "octokit": "4.0.2", "randomness": "1.6.16", "rlp": "3.0.0", diff --git a/test/scripts/fast-execute-chopstick-proposal.ts b/test/scripts/fast-execute-chopstick-proposal.ts index cfe561480f..a829bf2e4a 100644 --- a/test/scripts/fast-execute-chopstick-proposal.ts +++ b/test/scripts/fast-execute-chopstick-proposal.ts @@ -127,7 +127,7 @@ const main = async () => { // Instantiate Api const api = await getApiFor(argv); const totalIssuance = (await api.query.balances.totalIssuance()).toBigInt(); - const proposalIndex = argv["generate-proposal"] + const proposalIndex: number = argv["generate-proposal"] ? (await api.query.referenda.referendumCount()).toNumber() : argv["proposal-index"]; @@ -143,6 +143,7 @@ const main = async () => { const referendumData = await api.query.referenda.referendumInfoFor(proposalIndex); const referendumKey = api.query.referenda.referendumInfoFor.key(proposalIndex); + if (!referendumData.isSome) { throw new Error(`Referendum ${proposalIndex} not found`); } diff --git a/test/scripts/update-local-types.ts b/test/scripts/update-local-types.ts index d143bb741d..49ccd1d8cf 100644 --- a/test/scripts/update-local-types.ts +++ b/test/scripts/update-local-types.ts @@ -106,9 +106,9 @@ const executeUpdateAPIScript = async () => { await checkBinary(); // Bundle types - await executeScript("../../moonbeam-types-bundle", "pnpm i"); - await executeScript("../../moonbeam-types-bundle", "pnpm build"); - await executeScript("../../moonbeam-types-bundle", "pnpm check:fix"); + await executeScript("../../types-bundle", "pnpm i"); + await executeScript("../../types-bundle", "pnpm build"); + await executeScript("../../types-bundle", "pnpm check:fix"); // Generate types console.log("Extracting metadata for all runtimes..."); diff --git a/test/suites/dev/moonbase/test-assets/test-assets-transfer.ts b/test/suites/dev/moonbase/test-assets/test-assets-transfer.ts index 51683897da..85974d3e90 100644 --- a/test/suites/dev/moonbase/test-assets/test-assets-transfer.ts +++ b/test/suites/dev/moonbase/test-assets/test-assets-transfer.ts @@ -1,7 +1,6 @@ import "@moonbeam-network/api-augment"; import { beforeAll, describeSuite, expect } from "@moonwall/cli"; import { ALITH_ADDRESS, BALTATHAR_ADDRESS, alith, baltathar } from "@moonwall/util"; -import "@polkadot/api-augment"; import type { u128 } from "@polkadot/types"; import type { ApiPromise } from "@polkadot/api"; import type { PalletAssetsAssetAccount, PalletAssetsAssetDetails } from "@polkadot/types/lookup"; diff --git a/test/suites/dev/moonbase/test-moon/test-moon-rpc.ts b/test/suites/dev/moonbase/test-moon/test-moon-rpc.ts index d32ee383c9..111553eee2 100644 --- a/test/suites/dev/moonbase/test-moon/test-moon-rpc.ts +++ b/test/suites/dev/moonbase/test-moon/test-moon-rpc.ts @@ -1,20 +1,38 @@ -import "@moonbeam-network/api-augment"; -import { customDevRpcRequest, describeSuite, expect } from "@moonwall/cli"; +import "@moonbeam-network/api-augment/moonbase"; +import { beforeEach, describeSuite, expect } from "@moonwall/cli"; import { BALTATHAR_ADDRESS, createViemTransaction } from "@moonwall/util"; +import { types as BundledTypes } from "@moonbeam-network/types-bundle"; import { DEFAULT_TXN_MAX_BASE_FEE } from "../../../../helpers"; +import { ApiPromise, WsProvider } from "@polkadot/api"; + +const createApi = async (endpoint: string) => + ApiPromise.create({ + provider: new WsProvider(endpoint), + noInitWarn: true, + throwOnConnect: false, + throwOnUnknown: false, + typesBundle: BundledTypes, + }); describeSuite({ id: "D012101", title: "Moon RPC Methods - moon_isBlockFinalized ", foundationMethods: "dev", testCases: ({ context, it }) => { + let api: ApiPromise; + + beforeEach(async function () { + const endpoint = `ws://127.0.0.1:${process.env.MOONWALL_RPC_PORT}`; + api = await createApi(endpoint); + }); + it({ id: "T01", title: "should return as finalized when true", test: async function () { const blockHash = (await context.createBlock([], { finalize: true })).block.hash; - const resp = await customDevRpcRequest("moon_isBlockFinalized", [blockHash]); - expect(resp, "Block finalization status mismatch").toBe(true); + const resp = await api.rpc.moon.isBlockFinalized(blockHash); + expect(resp.isTrue, "Block finalization status mismatch").toBe(true); }, }); @@ -23,8 +41,8 @@ describeSuite({ title: "should return as unfinalized when false", test: async function () { const blockHash = (await context.createBlock([], { finalize: false })).block.hash; - const resp = await customDevRpcRequest("moon_isBlockFinalized", [blockHash]); - expect(resp, "Block finalization status mismatch").toBe(false); + const resp = await api.rpc.moon.isBlockFinalized(blockHash); + expect(resp.isTrue, "Block finalization status mismatch").toBe(false); }, }); @@ -33,8 +51,8 @@ describeSuite({ title: "should return as unfinalized when block not found", test: async function () { const blockHash = "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"; - const resp = await customDevRpcRequest("moon_isBlockFinalized", [blockHash]); - expect(resp, "Block finalization status mismatch").toBe(false); + const resp = await api.rpc.moon.isBlockFinalized(blockHash); + expect(resp.isTrue, "Block finalization status mismatch").toBe(false); }, }); @@ -44,8 +62,8 @@ describeSuite({ test: async function () { const blockHash = (await context.createBlock([], { finalize: false })).block.hash; await context.createBlock([], { finalize: true }); - const resp = await customDevRpcRequest("moon_isBlockFinalized", [blockHash]); - expect(resp, "Block finalization status mismatch").toBe(true); + const resp = await api.rpc.moon.isBlockFinalized(blockHash); + expect(resp.isTrue, "Block finalization status mismatch").toBe(true); }, }); @@ -57,8 +75,8 @@ describeSuite({ await context.createBlock([], { finalize: false }); await context.createBlock([], { finalize: true, parentHash: blockHash }); - const resp = await customDevRpcRequest("moon_isBlockFinalized", [blockHash]); - expect(resp, "Block finalization status mismatch").toBe(true); + const resp = await api.rpc.moon.isBlockFinalized(blockHash); + expect(resp.isTrue, "Block finalization status mismatch").toBe(true); }, }); @@ -77,8 +95,8 @@ describeSuite({ ); const block = await context.viem().getBlock(); - const resp = await customDevRpcRequest("moon_isTxFinalized", [block.transactions[0]]); - expect(resp, "Transaction finalization status mismatch").toBe(true); + const resp = await api.rpc.moon.isTxFinalized(block.transactions[0]); + expect(resp.isTrue, "Transaction finalization status mismatch").toBe(true); }, }); @@ -97,8 +115,8 @@ describeSuite({ ); const block = await context.viem().getBlock(); - const resp = await customDevRpcRequest("moon_isTxFinalized", [block.transactions[0]]); - expect(resp, "Transaction finalization status mismatch").toBe(false); + const resp = await api.rpc.moon.isTxFinalized(block.transactions[0]); + expect(resp.isTrue, "Transaction finalization status mismatch").toBe(false); }, }); @@ -107,8 +125,8 @@ describeSuite({ title: "should return as unfinalized when txn not found", test: async function () { const txnHash = "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"; - const resp = await customDevRpcRequest("moon_isTxFinalized", [txnHash]); - expect(resp, "Transaction finalization status mismatch").toBe(false); + const resp = await api.rpc.moon.isTxFinalized(txnHash); + expect(resp.isTrue, "Transaction finalization status mismatch").toBe(false); }, }); @@ -127,8 +145,8 @@ describeSuite({ ); const block = await context.viem().getBlock(); await context.createBlock([], { finalize: true }); - const resp = await customDevRpcRequest("moon_isTxFinalized", [block.transactions[0]]); - expect(resp, "Transaction finalization status mismatch").toBe(true); + const resp = await api.rpc.moon.isTxFinalized(block.transactions[0]); + expect(resp.isTrue, "Transaction finalization status mismatch").toBe(true); }, }); @@ -151,8 +169,8 @@ describeSuite({ const block = await context.viem().getBlock(); await context.createBlock([], { finalize: false }); await context.createBlock([], { finalize: true, parentHash: blockHash }); - const resp = await customDevRpcRequest("moon_isTxFinalized", [block.transactions[0]]); - expect(resp, "Transaction finalization status mismatch").toBe(true); + const resp = await api.rpc.moon.isTxFinalized(block.transactions[0]); + expect(resp.isTrue, "Transaction finalization status mismatch").toBe(true); }, }); @@ -162,9 +180,9 @@ describeSuite({ test: async function () { const expected = await context.createBlock([], { finalize: true }); const firstBlockHash = (await context.polkadotJs().rpc.chain.getBlockHash(0)).toHex(); - const resp = await customDevRpcRequest("moon_getEthSyncBlockRange", []); - expect(resp[0], "First block hash").toBe(firstBlockHash); - expect(resp[1], "Latest block hash").toBe(expected.block.hash); + const resp = await api.rpc.moon.getEthSyncBlockRange(); + expect(resp[0].toHex(), "First block hash").toBe(firstBlockHash); + expect(resp[1].toHex(), "Latest block hash").toBe(expected.block.hash); }, }); }, diff --git a/test/suites/dev/moonbase/test-moonbeam-lazy-migrations/test-foreign-assets-migration.ts b/test/suites/dev/moonbase/test-moonbeam-lazy-migrations/test-foreign-assets-migration.ts index 0d50cc5699..9bf8a9772e 100644 --- a/test/suites/dev/moonbase/test-moonbeam-lazy-migrations/test-foreign-assets-migration.ts +++ b/test/suites/dev/moonbase/test-moonbeam-lazy-migrations/test-foreign-assets-migration.ts @@ -1,3 +1,4 @@ +import "@moonbeam-network/api-augment"; import { describeSuite, expect, beforeAll } from "@moonwall/cli"; import type { ApiPromise } from "@polkadot/api"; import { ethers, parseEther } from "ethers"; diff --git a/test/suites/dev/moonbase/test-referenda/test-referenda-fast-general-admin.ts b/test/suites/dev/moonbase/test-referenda/test-referenda-fast-general-admin.ts index d26adb3805..86ec566a5f 100644 --- a/test/suites/dev/moonbase/test-referenda/test-referenda-fast-general-admin.ts +++ b/test/suites/dev/moonbase/test-referenda/test-referenda-fast-general-admin.ts @@ -1,7 +1,6 @@ import "@moonbeam-network/api-augment"; import { beforeAll, describeSuite, expect, proposeReferendaAndDeposit } from "@moonwall/cli"; import { alith } from "@moonwall/util"; -import "@polkadot/api-augment"; describeSuite({ id: "D013301", diff --git a/test/suites/dev/moonbase/test-referenda/test-referenda-general-admin.ts b/test/suites/dev/moonbase/test-referenda/test-referenda-general-admin.ts index 467b17d316..1f0dfdc0ae 100644 --- a/test/suites/dev/moonbase/test-referenda/test-referenda-general-admin.ts +++ b/test/suites/dev/moonbase/test-referenda/test-referenda-general-admin.ts @@ -1,7 +1,6 @@ import "@moonbeam-network/api-augment"; import { beforeAll, describeSuite, expect, proposeReferendaAndDeposit } from "@moonwall/cli"; import { alith } from "@moonwall/util"; -import "@polkadot/api-augment"; describeSuite({ id: "D013302", diff --git a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound2.ts b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound2.ts index 6052b5c81a..a54c9b25b9 100644 --- a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound2.ts +++ b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound2.ts @@ -1,4 +1,3 @@ -// import "@polkadot/api-augment"; import "@moonbeam-network/api-augment"; import { beforeAll, describeSuite, expect } from "@moonwall/cli"; import { MIN_GLMR_DELEGATOR, alith, ethan } from "@moonwall/util"; diff --git a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound3.ts b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound3.ts index 3553b7e1b6..e89a5c2493 100644 --- a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound3.ts +++ b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound3.ts @@ -1,4 +1,3 @@ -// import "@polkadot/api-augment"; import "@moonbeam-network/api-augment"; import { beforeAll, describeSuite, expect } from "@moonwall/cli"; import { diff --git a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound4.ts b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound4.ts index db5d9ecaff..711b9d4862 100644 --- a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound4.ts +++ b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound4.ts @@ -1,4 +1,3 @@ -// import "@polkadot/api-augment"; import "@moonbeam-network/api-augment"; import { beforeAll, describeSuite, expect } from "@moonwall/cli"; import { diff --git a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound5.ts b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound5.ts index 27e5c35b18..c853e7b9ee 100644 --- a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound5.ts +++ b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound5.ts @@ -1,4 +1,3 @@ -// import "@polkadot/api-augment"; import "@moonbeam-network/api-augment"; import { beforeAll, describeSuite, expect } from "@moonwall/cli"; import { diff --git a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound6.ts b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound6.ts index 4c173aea01..dae5b07ffb 100644 --- a/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound6.ts +++ b/test/suites/dev/moonbase/test-staking/test-delegate-with-auto-compound6.ts @@ -1,4 +1,3 @@ -// import "@polkadot/api-augment"; import "@moonbeam-network/api-augment"; import { beforeAll, describeSuite, expect } from "@moonwall/cli"; import { MIN_GLMR_DELEGATOR, alith, ethan } from "@moonwall/util"; diff --git a/test/suites/smoke/test-balances-consistency.ts b/test/suites/smoke/test-balances-consistency.ts index fe61a490dc..a0c404c49a 100644 --- a/test/suites/smoke/test-balances-consistency.ts +++ b/test/suites/smoke/test-balances-consistency.ts @@ -1,5 +1,4 @@ import "@moonbeam-network/api-augment/moonbase"; -import "@polkadot/api-augment"; import type { ApiDecoration } from "@polkadot/api/types"; import { xxhashAsU8a } from "@polkadot/util-crypto"; import { hexToBigInt, u8aConcat, u8aToHex } from "@polkadot/util"; diff --git a/test/suites/smoke/test-block-finalized.ts b/test/suites/smoke/test-block-finalized.ts index 2137a03bac..ef4c4b9639 100644 --- a/test/suites/smoke/test-block-finalized.ts +++ b/test/suites/smoke/test-block-finalized.ts @@ -1,5 +1,4 @@ -import "@polkadot/api-augment"; -import "@moonbeam-network/api-augment/moonbase"; +import "@moonbeam-network/api-augment"; import { checkBlockFinalized, getBlockTime, diff --git a/test/suites/smoke/test-block-weights.ts b/test/suites/smoke/test-block-weights.ts index 643ef20648..9ba4d2eaa4 100644 --- a/test/suites/smoke/test-block-weights.ts +++ b/test/suites/smoke/test-block-weights.ts @@ -2,7 +2,6 @@ import "@moonbeam-network/api-augment/moonbase"; import { beforeAll, describeSuite, expect } from "@moonwall/cli"; import { THIRTY_MINS, WEIGHT_PER_GAS, extractWeight, getBlockArray } from "@moonwall/util"; import type { ApiPromise } from "@polkadot/api"; -import "@polkadot/api-augment"; import type { GenericExtrinsic } from "@polkadot/types"; import type { FrameSystemEventRecord } from "@polkadot/types/lookup"; import type { AnyTuple } from "@polkadot/types/types"; diff --git a/test/suites/smoke/test-relay-indices.ts b/test/suites/smoke/test-relay-indices.ts index d8cf91e468..5014416bd1 100644 --- a/test/suites/smoke/test-relay-indices.ts +++ b/test/suites/smoke/test-relay-indices.ts @@ -1,5 +1,4 @@ -// import "@moonbeam-network/api-augment"; -import "@polkadot/api-augment"; +import "@moonbeam-network/api-augment"; import { describeSuite, expect, beforeAll, fetchCompiledContract } from "@moonwall/cli"; import { type Contract, ethers, type InterfaceAbi, type WebSocketProvider } from "ethers"; import { ALITH_SESSION_ADDRESS, PRECOMPILES } from "@moonwall/util"; diff --git a/test/suites/smoke/test-staking-round-cleanup.ts b/test/suites/smoke/test-staking-round-cleanup.ts index 6f62ca697d..de49cd3bd7 100644 --- a/test/suites/smoke/test-staking-round-cleanup.ts +++ b/test/suites/smoke/test-staking-round-cleanup.ts @@ -1,4 +1,3 @@ -import "@polkadot/api-augment"; import "@moonbeam-network/api-augment"; import { describeSuite, expect, beforeAll } from "@moonwall/cli"; import type { BN } from "@polkadot/util"; diff --git a/tools/test-scripts/test-alpha.ts b/tools/test-scripts/test-alpha.ts index 79aab862c9..6b7e179aa3 100644 --- a/tools/test-scripts/test-alpha.ts +++ b/tools/test-scripts/test-alpha.ts @@ -1,6 +1,6 @@ import { ApiPromise, WsProvider } from "@polkadot/api"; import Web3 from "web3"; -import { typesBundlePre900 } from "../../moonbeam-types-bundle/dist"; +import { typesBundlePre900 } from "moonbeam-types-bundle"; import { FAITH } from "../test-constants"; const wsProviderUrl = `wss://wss.testnet.moonbeam.network`; diff --git a/tools/test-scripts/test-staking.ts b/tools/test-scripts/test-staking.ts index 24726563c1..8bd2de3891 100644 --- a/tools/test-scripts/test-staking.ts +++ b/tools/test-scripts/test-staking.ts @@ -1,6 +1,6 @@ import { ApiPromise, Keyring, WsProvider } from "@polkadot/api"; import { start } from "polkadot-launch"; -import { typesBundlePre900 } from "../../moonbeam-types-bundle/dist"; +import { typesBundlePre900 } from "moonbeam-types-bundle"; import { ALITH, GERALD, diff --git a/moonbeam-types-bundle/.gitignore b/types-bundle/.gitignore similarity index 100% rename from moonbeam-types-bundle/.gitignore rename to types-bundle/.gitignore diff --git a/types-bundle/README.md b/types-bundle/README.md new file mode 100644 index 0000000000..c696f1fc22 --- /dev/null +++ b/types-bundle/README.md @@ -0,0 +1,19 @@ +# Moonbeam Types Bundle + +Exports npm package `@moonbeam-network/types-bundle`, formated as per polkadot-js specification to use +with the app or the API. + +# Development + +`typesBundlePre900` is of type OverrideBundleType to associate runtime names with correct definitions. + +`moonbeamDefinitions` is of types OverrideBundleDefinition and returns a different set of types for +each runtime version. + +## Print Types + +To print and save types JSON for a specific version run: +`ts-node generateJSON.ts ` + +To print and save the latest: +`ts-node generateJSON.ts latest` diff --git a/moonbeam-types-bundle/package.json b/types-bundle/package.json similarity index 88% rename from moonbeam-types-bundle/package.json rename to types-bundle/package.json index ec9a8064a5..583150ebdc 100644 --- a/moonbeam-types-bundle/package.json +++ b/types-bundle/package.json @@ -1,6 +1,6 @@ { - "name": "moonbeam-types-bundle", - "version": "3.0.1", + "name": "@moonbeam-network/types-bundle", + "version": "1.0.2", "description": "Bundled types to instantiate the Polkadot JS api with a Moonbeam network", "main": "./dist/definitions.cjs", "prepublish": "tsc", @@ -46,9 +46,11 @@ ], "author": "Moonsong Labs", "license": "GPL-3.0-only", + "homepage": "https://github.com/moonbeam-foundation/moonbeam/tree/master/types-bundle#readme", "repository": { "type": "git", - "url": "git+https://github.com/moonbeam-foundation/moonbeam.git" + "url": "git+https://github.com/moonbeam-foundation/moonbeam.git", + "directory": "typescript-api" }, "dependencies": { "@biomejs/biome": "*", diff --git a/moonbeam-types-bundle/src/definitions.ts b/types-bundle/src/definitions.ts similarity index 87% rename from moonbeam-types-bundle/src/definitions.ts rename to types-bundle/src/definitions.ts index 6244fa16a0..9baf3254da 100644 --- a/moonbeam-types-bundle/src/definitions.ts +++ b/types-bundle/src/definitions.ts @@ -17,7 +17,7 @@ export const moduleDefinitions: Record = { }, }; -export const moonbeamDefinitions = { +export const moonbeamDefinitions: OverrideBundleDefinition = { alias: moduleDefinitions, rpc: rpcDefinitions, instances: { @@ -78,9 +78,9 @@ export const moonbeamDefinitions = { types: Types.TYPES_POST_900, }, ], -} as OverrideBundleDefinition; +}; -export const moonbeamDefinitionsDeprecated = { +export const moonbeamDefinitionsDeprecated: OverrideBundleDefinition = { ...moonbeamDefinitions, types: [ ...(moonbeamDefinitions.types as OverrideVersionedType[]), @@ -89,25 +89,25 @@ export const moonbeamDefinitionsDeprecated = { types: Types.TYPES_900_undefined_deprecated, }, ], -} as OverrideBundleDefinition; +}; -export const typesBundlePre900 = { +export const typesBundle: OverrideBundleType = { spec: { moonbeam: moonbeamDefinitions, moonbeamDefinitions, moonbase: moonbeamDefinitions, moonriver: moonbeamDefinitions, }, -} as OverrideBundleType; +}; -export const typesBundleDeprecated = { +export const typesBundleDeprecated: OverrideBundleType = { spec: { moonbeam: moonbeamDefinitionsDeprecated, moonbeamDefinitions: moonbeamDefinitionsDeprecated, moonbase: moonbeamDefinitionsDeprecated, moonriver: moonbeamDefinitionsDeprecated, }, -} as OverrideBundleType; +}; // default types to use -export const types = typesBundlePre900; +export const types = typesBundle; diff --git a/moonbeam-types-bundle/src/rpc.ts b/types-bundle/src/rpc.ts similarity index 93% rename from moonbeam-types-bundle/src/rpc.ts rename to types-bundle/src/rpc.ts index 7fbbd99e10..c212a764dd 100644 --- a/moonbeam-types-bundle/src/rpc.ts +++ b/types-bundle/src/rpc.ts @@ -69,10 +69,10 @@ export const rpcDefinitions: Record metadata-moonriver.json", "load:meta:moonbeam": "curl -s -H \"Content-Type: application/json\" -d '{\"id\":\"1\", \"jsonrpc\":\"2.0\", \"method\": \"state_getMetadata\", \"params\":[]}' https://rpc.api.moonbeam.network > metadata-moonbeam.json", "generate:defs": "pnpm run generate:defs:moonbase && pnpm generate:defs:moonriver && pnpm generate:defs:moonbeam", - "generate:defs:moonbase": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-defs.mjs --package @moonbeam/api-augment/moonbase/interfaces --input ./src/moonbase/interfaces --endpoint ./metadata-moonbase.json", - "generate:defs:moonriver": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-defs.mjs --package @moonbeam/api-augment/moonriver/interfaces --input ./src/moonriver/interfaces --endpoint ./metadata-moonriver.json", - "generate:defs:moonbeam": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-defs.mjs --package @moonbeam/api-augment/moonbeam/interfaces --input ./src/moonbeam/interfaces --endpoint ./metadata-moonbeam.json", + "generate:defs:moonbase": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-defs.mjs --package @moonbeam-network/api-augment/moonbase/interfaces --input ./src/moonbase/interfaces --endpoint ./metadata-moonbase.json", + "generate:defs:moonriver": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-defs.mjs --package @moonbeam-network/api-augment/moonriver/interfaces --input ./src/moonriver/interfaces --endpoint ./metadata-moonriver.json", + "generate:defs:moonbeam": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-defs.mjs --package @moonbeam-network/api-augment/moonbeam/interfaces --input ./src/moonbeam/interfaces --endpoint ./metadata-moonbeam.json", "generate:meta": "pnpm run generate:meta:moonbase && pnpm generate:meta:moonriver && pnpm generate:meta:moonbeam", - "generate:meta:moonbase": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-chain.mjs --endpoint ./metadata-moonbase.json --package @moonbeam/api-augment/moonbeam/interfaces --output ./src/moonbase/interfaces", - "generate:meta:moonriver": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-chain.mjs --endpoint ./metadata-moonriver.json --package @moonbeam/api-augment/moonbeam/interfaces --output ./src/moonriver/interfaces", - "generate:meta:moonbeam": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-chain.mjs --endpoint ./metadata-moonbeam.json --package @moonbeam/api-augment/moonbeam/interfaces --output ./src/moonbeam/interfaces", + "generate:meta:moonbase": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-chain.mjs --endpoint ./metadata-moonbase.json --package @moonbeam-network/api-augment/moonbeam/interfaces --output ./src/moonbase/interfaces", + "generate:meta:moonriver": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-chain.mjs --endpoint ./metadata-moonriver.json --package @moonbeam-network/api-augment/moonbeam/interfaces --output ./src/moonriver/interfaces", + "generate:meta:moonbeam": "pnpm tsx node_modules/@polkadot/typegen/scripts/polkadot-types-from-chain.mjs --endpoint ./metadata-moonbeam.json --package @moonbeam-network/api-augment/moonbeam/interfaces --output ./src/moonbeam/interfaces", "build": "tsup", "deploy": "pnpm generate && pnpm build && pnpm publish", "fmt": "biome format .", "fmt:fix": "biome format . --write", - "check":"biome check .", + "check": "biome check .", "check:fix": "biome check . --write" }, "main": "./dist/moonbeam/index.cjs", @@ -44,24 +44,24 @@ "types": "./dist/moonbeam/index.d.ts", "exports": { ".": { + "types": "./dist/moonbeam/index.d.ts", "require": "./dist/moonbeam/index.cjs", - "import": "./dist/moonbeam/index.js", - "types": "./dist/moonbeam/index.d.ts" + "import": "./dist/moonbeam/index.js" }, "./moonbeam": { + "types": "./dist/moonbeam/index.d.ts", "require": "./dist/moonbeam/index.cjs", - "import": "./dist/moonbeam/index.js", - "types": "./dist/moonbeam/index.d.ts" + "import": "./dist/moonbeam/index.js" }, "./moonriver": { + "types": "./dist/moonriver/index.d.ts", "require": "./dist/moonriver/index.cjs", - "import": "./dist/moonriver/index.js", - "types": "./dist/moonriver/index.d.ts" + "import": "./dist/moonriver/index.js" }, "./moonbase": { + "types": "./dist/moonbase/index.d.ts", "require": "./dist/moonbase/index.cjs", - "import": "./dist/moonbase/index.js", - "types": "./dist/moonbase/index.d.ts" + "import": "./dist/moonbase/index.js" } }, "typesVersions": { @@ -93,9 +93,9 @@ "@polkadot/types": "*", "@polkadot/types-codec": "*", "@types/node": "*", - "moonbeam-types-bundle": "workspace:*", + "@moonbeam-network/types-bundle": "workspace:*", "tsup": "*", "tsx": "*", "typescript": "*" } -} +} \ No newline at end of file diff --git a/typescript-api/src/moonbase/interfaces/augment-api-query.ts b/typescript-api/src/moonbase/interfaces/augment-api-query.ts index f3c023c7b8..a927574a88 100644 --- a/typescript-api/src/moonbase/interfaces/augment-api-query.ts +++ b/typescript-api/src/moonbase/interfaces/augment-api-query.ts @@ -119,7 +119,6 @@ import type { SpWeightsWeightV2Weight, StagingXcmV4Instruction, StagingXcmV4Location, - StagingXcmV4Xcm, XcmVersionedAssetId, XcmVersionedLocation } from "@polkadot/types/lookup"; diff --git a/typescript-api/src/moonbase/interfaces/augment-api-rpc.ts b/typescript-api/src/moonbase/interfaces/augment-api-rpc.ts index 7752ea2d20..f1806bf175 100644 --- a/typescript-api/src/moonbase/interfaces/augment-api-rpc.ts +++ b/typescript-api/src/moonbase/interfaces/augment-api-rpc.ts @@ -22,7 +22,7 @@ import type { u32, u64 } from "@polkadot/types-codec"; -import type { AnyNumber, Codec } from "@polkadot/types-codec/types"; +import type { AnyNumber, Codec, ITuple } from "@polkadot/types-codec/types"; import type { ExtrinsicOrHash, ExtrinsicStatus } from "@polkadot/types/interfaces/author"; import type { EpochAuthorship } from "@polkadot/types/interfaces/babe"; import type { BeefyVersionedFinalityProof } from "@polkadot/types/interfaces/beefy"; @@ -763,9 +763,9 @@ declare module "@polkadot/rpc-core/types/jsonrpc" { }; moon: { /** - * Returns the latest synced block from frontier's backend + * Returns the range of blocks that are fully indexed in frontier's backend. **/ - getLatestSyncedBlock: AugmentedRpc<() => Observable>; + getEthSyncBlockRange: AugmentedRpc<() => Observable>>; /** * Returns whether an Ethereum block is finalized **/ @@ -790,6 +790,15 @@ declare module "@polkadot/rpc-core/types/jsonrpc" { version: AugmentedRpc<() => Observable>; }; offchain: { + /** + * Clear offchain local storage under given key and prefix + **/ + localStorageClear: AugmentedRpc< + ( + kind: StorageKind | "PERSISTENT" | "LOCAL" | number | Uint8Array, + key: Bytes | string | Uint8Array + ) => Observable + >; /** * Get offchain local storage under given key and prefix **/ diff --git a/typescript-api/src/moonbase/interfaces/moon/definitions.ts b/typescript-api/src/moonbase/interfaces/moon/definitions.ts index 9f581c812e..29d2bb906e 100644 --- a/typescript-api/src/moonbase/interfaces/moon/definitions.ts +++ b/typescript-api/src/moonbase/interfaces/moon/definitions.ts @@ -1,4 +1,4 @@ -import { moonbeamDefinitions } from "moonbeam-types-bundle"; +import { moonbeamDefinitions } from "@moonbeam-network/types-bundle"; export default { types: {}, diff --git a/typescript-api/src/moonbase/tsconfig.json b/typescript-api/src/moonbase/tsconfig.json index a96231aac4..91d88fc979 100644 --- a/typescript-api/src/moonbase/tsconfig.json +++ b/typescript-api/src/moonbase/tsconfig.json @@ -7,7 +7,7 @@ "declarationDir": "../../dist/moonbase", "declarationMap": true, "paths": { - "@moonbeam/api-augment/moonbase/*": ["src/moonbase/*"], + "@moonbeam-network/api-augment/moonbase/*": ["src/moonbase/*"], "@polkadot/api/augment": ["src/moonbase/interfaces/augment-api.ts"], "@polkadot/types/augment": ["src/moonbase/interfaces/augment-types.ts"], "@polkadot/types/lookup": ["src/moonbase/interfaces/types-lookup.ts"] diff --git a/typescript-api/src/moonbeam/interfaces/augment-api-query.ts b/typescript-api/src/moonbeam/interfaces/augment-api-query.ts index c572d87eaf..b2712e9646 100644 --- a/typescript-api/src/moonbeam/interfaces/augment-api-query.ts +++ b/typescript-api/src/moonbeam/interfaces/augment-api-query.ts @@ -119,7 +119,6 @@ import type { SpWeightsWeightV2Weight, StagingXcmV4Instruction, StagingXcmV4Location, - StagingXcmV4Xcm, XcmVersionedAssetId, XcmVersionedLocation } from "@polkadot/types/lookup"; diff --git a/typescript-api/src/moonbeam/interfaces/augment-api-rpc.ts b/typescript-api/src/moonbeam/interfaces/augment-api-rpc.ts index 7752ea2d20..f1806bf175 100644 --- a/typescript-api/src/moonbeam/interfaces/augment-api-rpc.ts +++ b/typescript-api/src/moonbeam/interfaces/augment-api-rpc.ts @@ -22,7 +22,7 @@ import type { u32, u64 } from "@polkadot/types-codec"; -import type { AnyNumber, Codec } from "@polkadot/types-codec/types"; +import type { AnyNumber, Codec, ITuple } from "@polkadot/types-codec/types"; import type { ExtrinsicOrHash, ExtrinsicStatus } from "@polkadot/types/interfaces/author"; import type { EpochAuthorship } from "@polkadot/types/interfaces/babe"; import type { BeefyVersionedFinalityProof } from "@polkadot/types/interfaces/beefy"; @@ -763,9 +763,9 @@ declare module "@polkadot/rpc-core/types/jsonrpc" { }; moon: { /** - * Returns the latest synced block from frontier's backend + * Returns the range of blocks that are fully indexed in frontier's backend. **/ - getLatestSyncedBlock: AugmentedRpc<() => Observable>; + getEthSyncBlockRange: AugmentedRpc<() => Observable>>; /** * Returns whether an Ethereum block is finalized **/ @@ -790,6 +790,15 @@ declare module "@polkadot/rpc-core/types/jsonrpc" { version: AugmentedRpc<() => Observable>; }; offchain: { + /** + * Clear offchain local storage under given key and prefix + **/ + localStorageClear: AugmentedRpc< + ( + kind: StorageKind | "PERSISTENT" | "LOCAL" | number | Uint8Array, + key: Bytes | string | Uint8Array + ) => Observable + >; /** * Get offchain local storage under given key and prefix **/ diff --git a/typescript-api/src/moonbeam/interfaces/moon/definitions.ts b/typescript-api/src/moonbeam/interfaces/moon/definitions.ts index 9f581c812e..29d2bb906e 100644 --- a/typescript-api/src/moonbeam/interfaces/moon/definitions.ts +++ b/typescript-api/src/moonbeam/interfaces/moon/definitions.ts @@ -1,4 +1,4 @@ -import { moonbeamDefinitions } from "moonbeam-types-bundle"; +import { moonbeamDefinitions } from "@moonbeam-network/types-bundle"; export default { types: {}, diff --git a/typescript-api/src/moonbeam/tsconfig.json b/typescript-api/src/moonbeam/tsconfig.json index c7c72d20df..57baa612c4 100644 --- a/typescript-api/src/moonbeam/tsconfig.json +++ b/typescript-api/src/moonbeam/tsconfig.json @@ -7,7 +7,7 @@ "declarationDir": "../../dist/moonbeam", "declarationMap": true, "paths": { - "@moonbeam/api-augment/*": ["src/moonbeam/*"], + "@moonbeam-network/api-augment/*": ["src/moonbeam/*"], "@polkadot/api/augment": ["src/moonbeam/interfaces/augment-api.ts"], "@polkadot/types/augment": ["src/moonbeam/interfaces/augment-types.ts"], "@polkadot/types/lookup": ["src/moonbeam/interfaces/types-lookup.ts"] diff --git a/typescript-api/src/moonriver/interfaces/augment-api-query.ts b/typescript-api/src/moonriver/interfaces/augment-api-query.ts index 4d9811bfe1..80bdb4f039 100644 --- a/typescript-api/src/moonriver/interfaces/augment-api-query.ts +++ b/typescript-api/src/moonriver/interfaces/augment-api-query.ts @@ -119,7 +119,6 @@ import type { SpWeightsWeightV2Weight, StagingXcmV4Instruction, StagingXcmV4Location, - StagingXcmV4Xcm, XcmVersionedAssetId, XcmVersionedLocation } from "@polkadot/types/lookup"; diff --git a/typescript-api/src/moonriver/interfaces/augment-api-rpc.ts b/typescript-api/src/moonriver/interfaces/augment-api-rpc.ts index 7752ea2d20..f1806bf175 100644 --- a/typescript-api/src/moonriver/interfaces/augment-api-rpc.ts +++ b/typescript-api/src/moonriver/interfaces/augment-api-rpc.ts @@ -22,7 +22,7 @@ import type { u32, u64 } from "@polkadot/types-codec"; -import type { AnyNumber, Codec } from "@polkadot/types-codec/types"; +import type { AnyNumber, Codec, ITuple } from "@polkadot/types-codec/types"; import type { ExtrinsicOrHash, ExtrinsicStatus } from "@polkadot/types/interfaces/author"; import type { EpochAuthorship } from "@polkadot/types/interfaces/babe"; import type { BeefyVersionedFinalityProof } from "@polkadot/types/interfaces/beefy"; @@ -763,9 +763,9 @@ declare module "@polkadot/rpc-core/types/jsonrpc" { }; moon: { /** - * Returns the latest synced block from frontier's backend + * Returns the range of blocks that are fully indexed in frontier's backend. **/ - getLatestSyncedBlock: AugmentedRpc<() => Observable>; + getEthSyncBlockRange: AugmentedRpc<() => Observable>>; /** * Returns whether an Ethereum block is finalized **/ @@ -790,6 +790,15 @@ declare module "@polkadot/rpc-core/types/jsonrpc" { version: AugmentedRpc<() => Observable>; }; offchain: { + /** + * Clear offchain local storage under given key and prefix + **/ + localStorageClear: AugmentedRpc< + ( + kind: StorageKind | "PERSISTENT" | "LOCAL" | number | Uint8Array, + key: Bytes | string | Uint8Array + ) => Observable + >; /** * Get offchain local storage under given key and prefix **/ diff --git a/typescript-api/src/moonriver/interfaces/moon/definitions.ts b/typescript-api/src/moonriver/interfaces/moon/definitions.ts index 9f581c812e..29d2bb906e 100644 --- a/typescript-api/src/moonriver/interfaces/moon/definitions.ts +++ b/typescript-api/src/moonriver/interfaces/moon/definitions.ts @@ -1,4 +1,4 @@ -import { moonbeamDefinitions } from "moonbeam-types-bundle"; +import { moonbeamDefinitions } from "@moonbeam-network/types-bundle"; export default { types: {}, diff --git a/typescript-api/src/moonriver/tsconfig.json b/typescript-api/src/moonriver/tsconfig.json index 65e422f9a9..4f575b5fed 100644 --- a/typescript-api/src/moonriver/tsconfig.json +++ b/typescript-api/src/moonriver/tsconfig.json @@ -7,7 +7,7 @@ "declarationDir": "../../dist/moonriver", "declarationMap": true, "paths": { - "@moonbeam/api-augment/moonriver/*": ["src/moonriver/*"], + "@moonbeam-network/api-augment/moonriver/*": ["src/moonriver/*"], "@polkadot/api/augment": ["src/moonriver/interfaces/augment-api.ts"], "@polkadot/types/augment": ["src/moonriver/interfaces/augment-types.ts"], "@polkadot/types/lookup": ["src/moonriver/interfaces/types-lookup.ts"]