diff --git a/.changeset/@graphprotocol_graph-cli-1996-dependencies.md b/.changeset/@graphprotocol_graph-cli-1996-dependencies.md new file mode 100644 index 000000000..c3fdf33d5 --- /dev/null +++ b/.changeset/@graphprotocol_graph-cli-1996-dependencies.md @@ -0,0 +1,9 @@ +--- +"@graphprotocol/graph-cli": patch +--- +dependencies updates: + - Updated dependency [`@oclif/core@4.2.10` ↗︎](https://www.npmjs.com/package/@oclif/core/v/4.2.10) (from `4.2.8`, in `dependencies`) + - Updated dependency [`docker-compose@1.2.0` ↗︎](https://www.npmjs.com/package/docker-compose/v/1.2.0) (from `1.1.1`, in `dependencies`) + - Updated dependency [`immutable@5.1.1` ↗︎](https://www.npmjs.com/package/immutable/v/5.1.1) (from `5.0.3`, in `dependencies`) + - Updated dependency [`undici@7.7.0` ↗︎](https://www.npmjs.com/package/undici/v/7.7.0) (from `7.4.0`, in `dependencies`) + - Updated dependency [`yaml@2.7.1` ↗︎](https://www.npmjs.com/package/yaml/v/2.7.1) (from `2.7.0`, in `dependencies`) diff --git a/package.json b/package.json index f5ec39783..6ce9f922c 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "@theguild/eslint-config": "0.13.2", "@theguild/prettier-config": "3.0.0", "@types/node": "^22.10.1", - "eslint": "9.21.0", + "eslint": "9.23.0", "prettier": "3.5.3" }, "pnpm": { diff --git a/packages/cli/package.json b/packages/cli/package.json index ada02597a..25b2d0af9 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -37,7 +37,7 @@ }, "dependencies": { "@float-capital/float-subgraph-uncrashable": "0.0.0-internal-testing.5", - "@oclif/core": "4.2.8", + "@oclif/core": "4.2.10", "@oclif/plugin-autocomplete": "^3.2.11", "@oclif/plugin-not-found": "^3.2.29", "@oclif/plugin-warn-if-update-available": "^3.1.24", @@ -46,12 +46,12 @@ "assemblyscript": "0.19.23", "chokidar": "4.0.3", "debug": "4.4.0", - "docker-compose": "1.1.1", + "docker-compose": "1.2.0", "fs-extra": "11.3.0", "glob": "11.0.1", "gluegun": "5.2.0", "graphql": "16.10.0", - "immutable": "5.0.3", + "immutable": "5.1.1", "jayson": "4.1.3", "js-yaml": "4.1.0", "kubo-rpc-client": "^5.0.2", @@ -59,9 +59,9 @@ "prettier": "3.5.3", "semver": "7.7.1", "tmp-promise": "3.0.3", - "undici": "7.4.0", + "undici": "7.7.0", "web3-eth-abi": "4.4.1", - "yaml": "2.7.0" + "yaml": "2.7.1" }, "devDependencies": { "@types/debug": "^4.1.12", diff --git a/packages/cli/src/subgraph.ts b/packages/cli/src/subgraph.ts index 93b84fcf4..90bcea2fe 100644 --- a/packages/cli/src/subgraph.ts +++ b/packages/cli/src/subgraph.ts @@ -86,10 +86,10 @@ export default class Subgraph { if (validationErrors.size > 0) { subgraphDebug.extend('validate')('Schema validation failed for %s', filename); - errors = validationErrors.groupBy(error => error.get('entity')).sort(); + errors = validationErrors.groupBy(error => error.get('entity') ?? '').sort(); const msg = errors.reduce( (msg, errors, entity) => { - errors = errors.groupBy((error: any) => error.get('directive')); + errors = errors.groupBy((error: any) => error.get('directive') ?? ''); const inner_msgs = errors.reduce((msg: string, errors: any[], directive: string) => { return `${msg}${ directive diff --git a/packages/cli/src/validation/manifest.ts b/packages/cli/src/validation/manifest.ts index ab053f032..30ddd6e1d 100644 --- a/packages/cli/src/validation/manifest.ts +++ b/packages/cli/src/validation/manifest.ts @@ -275,8 +275,10 @@ const dataSourceListToMap = (dataSources: any[]) => dataSources.reduce( (protocolKinds, dataSource) => protocolKinds.update(Protocol.normalizeName(dataSource.kind), (networks: any) => - (networks || immutable.OrderedMap()).update(dataSource.network, (dataSourceNames: any) => - (dataSourceNames || immutable.OrderedSet()).add(dataSource.name), + (networks || immutable.OrderedMap()).update( + dataSource.network ?? '', + (dataSourceNames: any) => + (dataSourceNames || immutable.OrderedSet()).add(dataSource.name), ), ), immutable.OrderedMap(), @@ -294,9 +296,9 @@ const validateDataSourceProtocolAndNetworks = (value: any) => { message: `Conflicting protocol kinds used in data sources and templates: ${protocolNetworkMap .map( - (dataSourceNames: any, protocolKind: string | undefined) => + (dataSourceNames: any, protocolKind: string) => ` ${ - protocolKind === undefined + protocolKind === '' ? 'Data sources and templates having no protocol kind set' : `Data sources and templates using '${protocolKind}'` }:\n${dataSourceNames @@ -320,9 +322,9 @@ Recommendation: Make all data sources and templates use the same protocol kind.` message: `Conflicting networks used in data sources and templates: ${networks .map( - (dataSources: any, network: string | undefined) => + (dataSources: any, network: string) => ` ${ - network === undefined + network === '' ? 'Data sources and templates having no network set' : `Data sources and templates using '${network}'` }:\n${dataSources.map((ds: string) => ` - ${ds}`).join('\n')}`, diff --git a/packages/cli/tests/cli/validation/call-handler-with-tuple/generated/schema.ts b/packages/cli/tests/cli/validation/call-handler-with-tuple/generated/schema.ts index b1cdef810..64ee920ec 100644 --- a/packages/cli/tests/cli/validation/call-handler-with-tuple/generated/schema.ts +++ b/packages/cli/tests/cli/validation/call-handler-with-tuple/generated/schema.ts @@ -9,6 +9,7 @@ import { Bytes, BigInt, BigDecimal, + Int8, } from "@graphprotocol/graph-ts"; export class MyEntity extends Entity { diff --git a/packages/cli/tests/cli/validation/example-values-found/generated/schema.ts b/packages/cli/tests/cli/validation/example-values-found/generated/schema.ts index b1cdef810..64ee920ec 100644 --- a/packages/cli/tests/cli/validation/example-values-found/generated/schema.ts +++ b/packages/cli/tests/cli/validation/example-values-found/generated/schema.ts @@ -9,6 +9,7 @@ import { Bytes, BigInt, BigDecimal, + Int8, } from "@graphprotocol/graph-ts"; export class MyEntity extends Entity { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3dcbd269e..be44fd349 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -21,19 +21,19 @@ importers: version: 2.28.1 '@eslint/js': specifier: ^9.16.0 - version: 9.21.0 + version: 9.23.0 '@theguild/eslint-config': specifier: 0.13.2 - version: 0.13.2(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) + version: 0.13.2(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) '@theguild/prettier-config': specifier: 3.0.0 version: 3.0.0(prettier@3.5.3) '@types/node': specifier: ^22.10.1 - version: 22.13.8 + version: 22.14.0 eslint: - specifier: 9.21.0 - version: 9.21.0(jiti@2.4.2) + specifier: 9.23.0 + version: 9.23.0(jiti@2.4.2) prettier: specifier: 3.5.3 version: 3.5.3 @@ -42,7 +42,7 @@ importers: dependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: ^0.35.1 version: 0.35.1 @@ -55,7 +55,7 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 @@ -71,7 +71,7 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 @@ -90,7 +90,7 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 @@ -109,7 +109,7 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 @@ -128,7 +128,7 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 @@ -140,10 +140,10 @@ importers: dependencies: '@nomicfoundation/hardhat-chai-matchers': specifier: ^2.0.8 - version: 2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + version: 2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) '@nomicfoundation/hardhat-network-helpers': specifier: ^1.0.12 - version: 1.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + version: 1.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) '@types/chai': specifier: ^4.2.0 version: 4.3.20 @@ -159,34 +159,34 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 '@nomicfoundation/hardhat-toolbox': specifier: ^5.0.0 - version: 5.0.0(2ntyi7zaicxxbodgivc2a3lqhu) + version: 5.0.0(5lzy66wxggmv6wfqqvuf6gabnq) apollo-fetch: specifier: ^0.7.0 version: 0.7.0 hardhat: specifier: ^2.22.17 - version: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) examples/ethereum-gravatar: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 '@nomicfoundation/hardhat-toolbox': specifier: ^5.0.0 - version: 5.0.0(ksuwi4g3p5sqbosqqcl6zmbpj4) + version: 5.0.0(oewp3mmshsc7q4vpgwqemjn2je) hardhat: specifier: ^2.22.17 - version: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) examples/example-subgraph: devDependencies: @@ -198,7 +198,7 @@ importers: dependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 @@ -211,7 +211,7 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 @@ -220,7 +220,7 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.35.1 version: 0.35.1 @@ -229,7 +229,7 @@ importers: devDependencies: '@graphprotocol/graph-cli': specifier: 0.90.1 - version: 0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) + version: 0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10) packages/cli: dependencies: @@ -237,14 +237,14 @@ importers: specifier: 0.0.0-internal-testing.5 version: 0.0.0-internal-testing.5 '@oclif/core': - specifier: 4.2.8 - version: 4.2.8 + specifier: 4.2.10 + version: 4.2.10 '@oclif/plugin-autocomplete': specifier: ^3.2.11 version: 3.2.24 '@oclif/plugin-not-found': specifier: ^3.2.29 - version: 3.2.44(@types/node@22.13.8) + version: 3.2.44(@types/node@22.14.0) '@oclif/plugin-warn-if-update-available': specifier: ^3.1.24 version: 3.1.35 @@ -264,8 +264,8 @@ importers: specifier: 4.4.0 version: 4.4.0(supports-color@5.5.0) docker-compose: - specifier: 1.1.1 - version: 1.1.1 + specifier: 1.2.0 + version: 1.2.0 fs-extra: specifier: 11.3.0 version: 11.3.0 @@ -279,8 +279,8 @@ importers: specifier: 16.10.0 version: 16.10.0 immutable: - specifier: 5.0.3 - version: 5.0.3 + specifier: 5.1.1 + version: 5.1.1 jayson: specifier: 4.1.3 version: 4.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) @@ -289,7 +289,7 @@ importers: version: 4.1.0 kubo-rpc-client: specifier: ^5.0.2 - version: 5.1.0(undici@7.4.0) + version: 5.1.0(undici@7.7.0) open: specifier: 10.1.0 version: 10.1.0 @@ -303,14 +303,14 @@ importers: specifier: 3.0.3 version: 3.0.3 undici: - specifier: 7.4.0 - version: 7.4.0 + specifier: 7.7.0 + version: 7.7.0 web3-eth-abi: specifier: 4.4.1 version: 4.4.1(typescript@5.8.2)(zod@3.24.2) yaml: - specifier: 2.7.0 - version: 2.7.0 + specifier: 2.7.1 + version: 2.7.1 devDependencies: '@types/debug': specifier: ^4.1.12 @@ -332,7 +332,7 @@ importers: version: 2.4.1 oclif: specifier: 4.16.0 - version: 4.16.0(patch_hash=ofxhflhoc4vkbbfnh6gtk4pfua)(@types/node@22.13.8) + version: 4.16.0(patch_hash=ofxhflhoc4vkbbfnh6gtk4pfua)(@types/node@22.14.0) spawn-command: specifier: 1.0.0 version: 1.0.0 @@ -344,7 +344,7 @@ importers: version: 5.8.2 vitest: specifier: ^3.0.0 - version: 3.0.7(@types/debug@4.1.12)(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) + version: 3.0.7(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) packages/ts: dependencies: @@ -407,7 +407,7 @@ importers: version: 16.10.0 kubo-rpc-client: specifier: ^5.0.2 - version: 5.1.0(undici@7.4.0) + version: 5.1.0(undici@7.7.0) react: specifier: ^19.0.0 version: 19.0.0 @@ -434,13 +434,13 @@ importers: version: 2.23.5(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.24.2) vite-plugin-node-polyfills: specifier: ^0.23.0 - version: 0.23.0(rollup@4.34.8)(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0)) + version: 0.23.0(rollup@4.34.8)(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1)) wagmi: specifier: ^2.13.3 version: 2.14.12(@tanstack/query-core@5.66.11)(@tanstack/react-query@5.66.11(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(encoding@0.1.13)(immer@10.0.2)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.5(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2) yaml: - specifier: 2.7.0 - version: 2.7.0 + specifier: 2.7.1 + version: 2.7.1 zod: specifier: ^3.23.8 version: 3.24.2 @@ -452,11 +452,11 @@ importers: specifier: ^4.0.0 version: 4.0.9 '@tanstack/router-cli': - specifier: 1.112.3 - version: 1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) + specifier: 1.114.34 + version: 1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) '@tanstack/router-vite-plugin': - specifier: 1.112.3 - version: 1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0)) + specifier: 1.114.34 + version: 1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1)) '@types/react': specifier: ^19.0.0 version: 19.0.10 @@ -468,7 +468,7 @@ importers: version: 7.5.8 '@vitejs/plugin-react': specifier: ^4.3.4 - version: 4.3.4(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0)) + version: 4.3.4(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1)) postcss: specifier: ^8.4.49 version: 8.5.3 @@ -483,7 +483,7 @@ importers: version: 5.8.2 vite: specifier: ^6.0.2 - version: 6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) + version: 6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) packages: @@ -1659,16 +1659,20 @@ packages: resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/config-helpers@0.2.1': + resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@0.12.0': resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/eslintrc@3.3.0': - resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==} + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.21.0': - resolution: {integrity: sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==} + '@eslint/js@9.23.0': + resolution: {integrity: sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.6': @@ -2513,8 +2517,8 @@ packages: resolution: {integrity: sha512-1QlPaHMhOORySCXkQyzjsIsy2GYTilOw3LkjeHkCgsPJQjAT4IclVytJusWktPbYNys9O+O4V23J44yomQvnBQ==} engines: {node: '>=14.0.0'} - '@oclif/core@4.2.8': - resolution: {integrity: sha512-OWv4Va6bERxIhrYcnUGzyhGRqktc64lJO6cZ3UwkzJDpfR8ZrbCxRfKRBBah1i8kzUlOAeAXnpbMBMah3skKwA==} + '@oclif/core@4.2.10': + resolution: {integrity: sha512-fAqcXgqkUm4v5FYy7qWP4w1HaOlVSVJveah+yVTo5Nm5kTiXhmD5mQQ7+knGeBaStyrtQy6WardoC2xSic9rlQ==} engines: {node: '>=18.0.0'} '@oclif/plugin-autocomplete@2.3.10': @@ -3443,6 +3447,10 @@ packages: '@tailwindcss/postcss@4.0.9': resolution: {integrity: sha512-BT/E+pdMqulavEAVM5NCpxmGEwHiLDPpkmg/c/X25ZBW+izTe+aZ+v1gf/HXTrihRoCxrUp5U4YyHsBTzspQKQ==} + '@tanstack/history@1.114.29': + resolution: {integrity: sha512-OTRMhwidScQSA0xsc5OCtm3K/oAChe47jy1e4OY3VpXUnKrI7C8iwfQ9XDRdpdsRASH2xi6P5I0+7ksFBehaQQ==} + engines: {node: '>=12'} + '@tanstack/history@1.99.13': resolution: {integrity: sha512-JMd7USmnp8zV8BRGIjALqzPxazvKtQ7PGXQC7n39HpbqdsmfV2ePCzieO84IvN+mwsTrXErpbjI4BfKCa+ZNCg==} engines: {node: '>=12'} @@ -3468,8 +3476,8 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tanstack/router-cli@1.112.3': - resolution: {integrity: sha512-5SFfeufROGNb18zCxJb6+3Q2zhXANjPDx8WNjDda/4soTsWB/o6wx4ZUOjU6AAJK7xN7Oc3Zc1YuIGqsuZXvOA==} + '@tanstack/router-cli@1.114.34': + resolution: {integrity: sha512-D2dfMPXK4aOJIUkRdeQqXUOkRI2OmBeJ0G2K4MN2AHtjhDvm4uk7szSqurD8S/h1o8Ea3AnwTB/sL84Wis8kyQ==} engines: {node: '>=12'} hasBin: true @@ -3477,21 +3485,25 @@ packages: resolution: {integrity: sha512-kmpMiBuz17Hxyl+ZO+B6/F98p07NSEmgr2JlZkKXcdupLIBAWqcXw+bjowFXNcTEwe9RWsS/WjAC/bBTftr0rA==} engines: {node: '>=12'} - '@tanstack/router-generator@1.112.3': - resolution: {integrity: sha512-RUT+O/j7YIjbemVJjkP4qM8MYaaOltKYhyp9VGtcWxWGS8U2QDwC9UsskjBVOj7QV7aq3UcnExicABwK/AMCCQ==} + '@tanstack/router-core@1.114.33': + resolution: {integrity: sha512-jSBo7R+oat3k///Q4XpgNp9sVveQdjdmju5a7u2ibi8V/qPXEAaaYh57vMXvIOpE3ZDDLPYLjWPAf+SvHV8JeA==} + engines: {node: '>=12'} + + '@tanstack/router-generator@1.114.34': + resolution: {integrity: sha512-+lBA2LAoffzBaGHWKT/YeEgwN/aUZMIhbtsbifLsqGIyKmXXbg+U/CQz8uO5Nqv4m36SmhjevOoVUxkPZbEPDg==} engines: {node: '>=12'} peerDependencies: - '@tanstack/react-router': ^1.112.0 + '@tanstack/react-router': ^1.114.34 peerDependenciesMeta: '@tanstack/react-router': optional: true - '@tanstack/router-plugin@1.112.3': - resolution: {integrity: sha512-XhKXFoJ7eajqghAPwHXfggyB8khopr5yVXiYQRiL+9Gek2q5M8N4z9+Uh2MM31KjTuiaJ72lZpUgT5FDj1m6Tg==} + '@tanstack/router-plugin@1.114.34': + resolution: {integrity: sha512-G3OxypoRnijDKIlCJkJ29+Zq2b050nqDCbhZYz2yMIvfzYB2BnKLpJSHmQuT9AEiM5drrUgL5WdGlUcRU3tNxg==} engines: {node: '>=12'} peerDependencies: '@rsbuild/core': '>=1.0.2' - '@tanstack/react-router': ^1.112.0 + '@tanstack/react-router': ^1.114.34 vite: '>=5.0.0 || >=6.0.0' vite-plugin-solid: ^2.11.2 webpack: '>=5.92.0' @@ -3507,19 +3519,19 @@ packages: webpack: optional: true - '@tanstack/router-utils@1.102.2': - resolution: {integrity: sha512-Uwl2nbrxhCzviaHHBLNPhSC/OMpZLdOTxTJndUSsXTzWUP4IoQcVmngaIsxi9iriE3ArC1VXuanUAkfGmimNOQ==} + '@tanstack/router-utils@1.114.29': + resolution: {integrity: sha512-RDn3aMOHPrXYCQGXNaN4P0MvwiuCZHBKTO9srtLqYYCzW2iipqbyZ53RI54TzPgNLE37jtN5XaEH4FNF0Ydodg==} engines: {node: '>=12'} - '@tanstack/router-vite-plugin@1.112.3': - resolution: {integrity: sha512-ietl8MXWXN9xFgCVQwLr910YOFGE7XMoiDP4EfbiuPN9LHX44s2RBsiOYnxsHXZ4WFwlQv8HKDyuOxLcldTE3w==} + '@tanstack/router-vite-plugin@1.114.34': + resolution: {integrity: sha512-SMNCPcb4CnWvZ2jT891AMUTjchhMcGNLMwO8mIVK8y1uz6keaoW/bNZ8wq0k++NGaOu4OIb/yySBmzHCaox7yg==} engines: {node: '>=12'} '@tanstack/store@0.7.0': resolution: {integrity: sha512-CNIhdoUsmD2NolYuaIs8VfWM467RK6oIBAW4nPEKZhg1smZ+/CwtCdpURgp7nxSqOaV9oKkzdWD80+bC66F/Jg==} - '@tanstack/virtual-file-routes@1.99.0': - resolution: {integrity: sha512-XvX8bfdo4CYiCW+ItVdBfCorh3PwQFqYqd7ll+XKWiWOJpqUGIG7VlziVavARZpUySiY2VBlHadiUYS7jhgjRg==} + '@tanstack/virtual-file-routes@1.114.29': + resolution: {integrity: sha512-DufKsQy/qxDpOTiggJCgshhJkpSyUygwHHfl2LA66CXOf3aUjZtlNu4io1UpmJNf8C/9lVlGARhkoq5fTRRk0w==} engines: {node: '>=12'} '@theguild/eslint-config@0.13.2': @@ -3681,11 +3693,8 @@ packages: '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@22.13.4': - resolution: {integrity: sha512-ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg==} - - '@types/node@22.13.8': - resolution: {integrity: sha512-G3EfaZS+iOGYWLLRCEAXdWK9my08oHNZ+FHluRiggIYJPOXzhOiDgpVCUHaUvyIC5/fj7C/p637jdzC666AOKQ==} + '@types/node@22.14.0': + resolution: {integrity: sha512-Kmpl+z84ILoG+3T/zQFyAJsU6EPTmOCj8/2+83fSN6djd6I4o7uOuGIH6vq3PrjY5BGitSbFuMN18j3iknubbA==} '@types/node@22.7.5': resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} @@ -4108,6 +4117,10 @@ packages: resolution: {integrity: sha512-sU7d/tfZiYrsIAXbdL/CNZld5bCkruzwT5KmqmadCJYxuLxHAOBjidxD5+iLmN/6xEfjcQq1l7OpsiCBlc4LzA==} engines: {node: '>=14'} + ansis@3.17.0: + resolution: {integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==} + engines: {node: '>=14'} + antlr4ts@0.5.0-alpha.4: resolution: {integrity: sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ==} @@ -4297,8 +4310,8 @@ packages: babel-core@6.26.3: resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==} - babel-dead-code-elimination@1.0.9: - resolution: {integrity: sha512-JLIhax/xullfInZjtu13UJjaLHDeTzt3vOeomaSUdO/nAMEL/pWC/laKrSvWylXMnVWyL5bpmG9njqBZlUQOdg==} + babel-dead-code-elimination@1.0.10: + resolution: {integrity: sha512-DV5bdJZTzZ0zn0DC24v3jD7Mnidh6xhKa4GfKCbq3sfW8kaWhDdZjP3i81geA8T33tdYqWKw4D3fVv0CwEgKVA==} babel-generator@6.26.1: resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==} @@ -5148,8 +5161,8 @@ packages: resolution: {integrity: sha512-v5vNLIdUqwj4my80wxFDkNH+4S85zsRuH29SO7dCWVWPCMt/ohZBsGN6g6KXWifT0pzQ7uOxqEKCYCDPJ8Vz4g==} engines: {node: '>= 6.0.0'} - docker-compose@1.1.1: - resolution: {integrity: sha512-UkIUz0LtzuO17Ijm6SXMGtfZMs7IvbNwvuJBiBuN93PIhr/n9/sbJMqpvYFaCBGfwu1ZM4PPPDgQzeeke4lEoA==} + docker-compose@1.2.0: + resolution: {integrity: sha512-wIU1eHk3Op7dFgELRdmOYlPYS4gP8HhH1ZmZa13QZF59y0fblzFDFmKPhyc05phCy2hze9OEvNZAsoljrs+72w==} engines: {node: '>= 6.0.0'} docker-modem@1.0.9: @@ -5487,8 +5500,8 @@ packages: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} engines: {node: '>=8.0.0'} - eslint-scope@8.2.0: - resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} + eslint-scope@8.3.0: + resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} eslint-visitor-keys@2.1.0: @@ -5503,8 +5516,8 @@ packages: resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.21.0: - resolution: {integrity: sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==} + eslint@9.23.0: + resolution: {integrity: sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -6231,8 +6244,8 @@ packages: immutable@4.3.7: resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} - immutable@5.0.3: - resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==} + immutable@5.1.1: + resolution: {integrity: sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==} import-fresh@3.3.1: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} @@ -9047,8 +9060,8 @@ packages: undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici-types@6.20.0: - resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} undici@5.28.5: resolution: {integrity: sha512-zICwjrDrcrUE0pyyJc1I2QzBkLM8FINsgOrt6WjA+BgajVq9Nxu2PbFFXUrAggLfDXlZGZBVZYw7WNV5KiBiBA==} @@ -9058,8 +9071,8 @@ packages: resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==} engines: {node: '>=14.0'} - undici@7.4.0: - resolution: {integrity: sha512-PUQM3/es3noM24oUn10u3kNNap0AbxESOmnssmW+dOi9yGwlUSi5nTNYl3bNbTkWOF8YZDkx2tCmj9OtQ3iGGw==} + undici@7.7.0: + resolution: {integrity: sha512-tZ6+5NBq4KH35rr46XJ2JPFKxfcBlYNaqLF/wyWIO9RMHqqU/gx/CLB1Y2qMcgB8lWw/bKHa7qzspqCN7mUHvA==} engines: {node: '>=20.18.1'} unicode-canonical-property-names-ecmascript@2.0.1: @@ -9612,8 +9625,8 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - yaml@2.7.0: - resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} + yaml@2.7.1: + resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==} engines: {node: '>= 14'} hasBin: true @@ -10257,11 +10270,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@9.21.0(jiti@2.4.2))': + '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@9.23.0(jiti@2.4.2))': dependencies: '@babel/core': 7.26.0 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) eslint-visitor-keys: 2.1.0 semver: 6.3.1 @@ -11340,9 +11353,9 @@ snapshots: '@esbuild/win32-x64@0.25.0': optional: true - '@eslint-community/eslint-utils@4.4.1(eslint@9.21.0(jiti@2.4.2))': + '@eslint-community/eslint-utils@4.4.1(eslint@9.23.0(jiti@2.4.2))': dependencies: - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} @@ -11355,11 +11368,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/config-helpers@0.2.1': {} + '@eslint/core@0.12.0': dependencies: '@types/json-schema': 7.0.15 - '@eslint/eslintrc@3.3.0': + '@eslint/eslintrc@3.3.1': dependencies: ajv: 6.12.6 debug: 4.4.0(supports-color@5.5.0) @@ -11373,7 +11388,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.21.0': {} + '@eslint/js@9.23.0': {} '@eslint/object-schema@2.1.6': {} @@ -11839,19 +11854,19 @@ snapshots: graphql: 16.10.0 typescript: 5.8.2 - '@graphprotocol/graph-cli@0.90.1(@types/node@22.13.8)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10)': + '@graphprotocol/graph-cli@0.90.1(@types/node@22.14.0)(bufferutil@4.0.9)(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13))(typescript@5.8.2)(utf-8-validate@5.0.10)': dependencies: '@float-capital/float-subgraph-uncrashable': 0.0.0-internal-testing.5 - '@oclif/core': 2.8.6(@types/node@22.13.8)(typescript@5.8.2) - '@oclif/plugin-autocomplete': 2.3.10(@types/node@22.13.8)(typescript@5.8.2) - '@oclif/plugin-not-found': 2.4.3(@types/node@22.13.8)(typescript@5.8.2) + '@oclif/core': 2.8.6(@types/node@22.14.0)(typescript@5.8.2) + '@oclif/plugin-autocomplete': 2.3.10(@types/node@22.14.0)(typescript@5.8.2) + '@oclif/plugin-not-found': 2.4.3(@types/node@22.14.0)(typescript@5.8.2) '@oclif/plugin-warn-if-update-available': 3.1.33 '@whatwg-node/fetch': 0.8.8 assemblyscript: 0.19.23 binary-install-raw: 0.0.13(debug@4.3.4) chalk: 3.0.0 chokidar: 3.5.3 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 docker-compose: 0.23.19 dockerode: 2.5.8 fs-extra: 9.1.0 @@ -11917,32 +11932,32 @@ snapshots: transitivePeerDependencies: - supports-color - '@inquirer/checkbox@4.1.2(@types/node@22.13.8)': + '@inquirer/checkbox@4.1.2(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) '@inquirer/figures': 1.0.10 - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/type': 3.0.4(@types/node@22.14.0) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@inquirer/confirm@3.2.0': dependencies: '@inquirer/core': 9.2.1 '@inquirer/type': 1.5.5 - '@inquirer/confirm@5.1.6(@types/node@22.13.8)': + '@inquirer/confirm@5.1.6(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) + '@inquirer/type': 3.0.4(@types/node@22.14.0) optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 - '@inquirer/core@10.1.7(@types/node@22.13.8)': + '@inquirer/core@10.1.7(@types/node@22.14.0)': dependencies: '@inquirer/figures': 1.0.10 - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/type': 3.0.4(@types/node@22.14.0) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -11950,14 +11965,14 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@inquirer/core@9.2.1': dependencies: '@inquirer/figures': 1.0.10 '@inquirer/type': 2.0.0 '@types/mute-stream': 0.0.4 - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 cli-width: 4.1.0 @@ -11967,21 +11982,21 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 - '@inquirer/editor@4.2.7(@types/node@22.13.8)': + '@inquirer/editor@4.2.7(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) + '@inquirer/type': 3.0.4(@types/node@22.14.0) external-editor: 3.1.0 optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 - '@inquirer/expand@4.0.9(@types/node@22.13.8)': + '@inquirer/expand@4.0.9(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) + '@inquirer/type': 3.0.4(@types/node@22.14.0) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@inquirer/figures@1.0.10': {} @@ -11990,59 +12005,59 @@ snapshots: '@inquirer/core': 9.2.1 '@inquirer/type': 1.5.5 - '@inquirer/input@4.1.6(@types/node@22.13.8)': + '@inquirer/input@4.1.6(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) + '@inquirer/type': 3.0.4(@types/node@22.14.0) optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 - '@inquirer/number@3.0.9(@types/node@22.13.8)': + '@inquirer/number@3.0.9(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) + '@inquirer/type': 3.0.4(@types/node@22.14.0) optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 - '@inquirer/password@4.0.9(@types/node@22.13.8)': + '@inquirer/password@4.0.9(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) + '@inquirer/type': 3.0.4(@types/node@22.14.0) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.13.8 - - '@inquirer/prompts@7.3.2(@types/node@22.13.8)': - dependencies: - '@inquirer/checkbox': 4.1.2(@types/node@22.13.8) - '@inquirer/confirm': 5.1.6(@types/node@22.13.8) - '@inquirer/editor': 4.2.7(@types/node@22.13.8) - '@inquirer/expand': 4.0.9(@types/node@22.13.8) - '@inquirer/input': 4.1.6(@types/node@22.13.8) - '@inquirer/number': 3.0.9(@types/node@22.13.8) - '@inquirer/password': 4.0.9(@types/node@22.13.8) - '@inquirer/rawlist': 4.0.9(@types/node@22.13.8) - '@inquirer/search': 3.0.9(@types/node@22.13.8) - '@inquirer/select': 4.0.9(@types/node@22.13.8) + '@types/node': 22.14.0 + + '@inquirer/prompts@7.3.2(@types/node@22.14.0)': + dependencies: + '@inquirer/checkbox': 4.1.2(@types/node@22.14.0) + '@inquirer/confirm': 5.1.6(@types/node@22.14.0) + '@inquirer/editor': 4.2.7(@types/node@22.14.0) + '@inquirer/expand': 4.0.9(@types/node@22.14.0) + '@inquirer/input': 4.1.6(@types/node@22.14.0) + '@inquirer/number': 3.0.9(@types/node@22.14.0) + '@inquirer/password': 4.0.9(@types/node@22.14.0) + '@inquirer/rawlist': 4.0.9(@types/node@22.14.0) + '@inquirer/search': 3.0.9(@types/node@22.14.0) + '@inquirer/select': 4.0.9(@types/node@22.14.0) optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 - '@inquirer/rawlist@4.0.9(@types/node@22.13.8)': + '@inquirer/rawlist@4.0.9(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) + '@inquirer/type': 3.0.4(@types/node@22.14.0) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 - '@inquirer/search@3.0.9(@types/node@22.13.8)': + '@inquirer/search@3.0.9(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) '@inquirer/figures': 1.0.10 - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/type': 3.0.4(@types/node@22.14.0) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@inquirer/select@2.5.0': dependencies: @@ -12052,15 +12067,15 @@ snapshots: ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 - '@inquirer/select@4.0.9(@types/node@22.13.8)': + '@inquirer/select@4.0.9(@types/node@22.14.0)': dependencies: - '@inquirer/core': 10.1.7(@types/node@22.13.8) + '@inquirer/core': 10.1.7(@types/node@22.14.0) '@inquirer/figures': 1.0.10 - '@inquirer/type': 3.0.4(@types/node@22.13.8) + '@inquirer/type': 3.0.4(@types/node@22.14.0) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@inquirer/type@1.5.5': dependencies: @@ -12070,9 +12085,9 @@ snapshots: dependencies: mute-stream: 1.0.0 - '@inquirer/type@3.0.4(@types/node@22.13.8)': + '@inquirer/type@3.0.4(@types/node@22.14.0)': optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@ipld/dag-cbor@7.0.3': dependencies: @@ -12530,54 +12545,54 @@ snapshots: '@nomicfoundation/ethereumjs-rlp': 5.0.4 ethereum-cryptography: 0.1.3 - '@nomicfoundation/hardhat-chai-matchers@2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': + '@nomicfoundation/hardhat-chai-matchers@2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': dependencies: - '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) '@types/chai-as-promised': 7.1.8 chai: 4.5.0 chai-as-promised: 7.1.2(chai@4.5.0) deep-eql: 4.1.4 ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) ordinal: 1.0.3 - '@nomicfoundation/hardhat-chai-matchers@2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@5.2.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': + '@nomicfoundation/hardhat-chai-matchers@2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@5.2.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': dependencies: - '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) '@types/chai-as-promised': 7.1.8 chai: 5.2.0 chai-as-promised: 7.1.2(chai@5.2.0) deep-eql: 4.1.4 ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) ordinal: 1.0.3 - '@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': + '@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': dependencies: debug: 4.4.0(supports-color@5.5.0) ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) lodash.isequal: 4.5.0 transitivePeerDependencies: - supports-color - '@nomicfoundation/hardhat-ignition-ethers@0.15.9(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.9(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': + '@nomicfoundation/hardhat-ignition-ethers@0.15.9(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.9(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': dependencies: - '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-ignition': 0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-ignition': 0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) '@nomicfoundation/ignition-core': 0.15.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) - '@nomicfoundation/hardhat-ignition@0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)': + '@nomicfoundation/hardhat-ignition@0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)': dependencies: - '@nomicfoundation/hardhat-verify': 2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-verify': 2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) '@nomicfoundation/ignition-core': 0.15.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@nomicfoundation/ignition-ui': 0.15.10 chalk: 4.1.2 debug: 4.4.0(supports-color@5.5.0) fs-extra: 10.1.0 - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) json5: 2.2.3 prompts: 2.4.2 transitivePeerDependencies: @@ -12585,60 +12600,60 @@ snapshots: - supports-color - utf-8-validate - '@nomicfoundation/hardhat-network-helpers@1.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': + '@nomicfoundation/hardhat-network-helpers@1.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': dependencies: ethereumjs-util: 7.1.5 - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) - '@nomicfoundation/hardhat-toolbox@5.0.0(2ntyi7zaicxxbodgivc2a3lqhu)': + '@nomicfoundation/hardhat-toolbox@5.0.0(5lzy66wxggmv6wfqqvuf6gabnq)': dependencies: - '@nomicfoundation/hardhat-chai-matchers': 2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-ignition-ethers': 0.15.9(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.9(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-network-helpers': 1.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-verify': 2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-chai-matchers': 2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-ignition-ethers': 0.15.9(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.9(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-network-helpers': 1.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-verify': 2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) '@typechain/ethers-v6': 0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2) - '@typechain/hardhat': 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2)) + '@typechain/hardhat': 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2)) '@types/chai': 4.3.20 '@types/mocha': 10.0.10 - '@types/node': 22.13.8 + '@types/node': 22.14.0 chai: 4.5.0 ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) - hardhat-gas-reporter: 1.0.10(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) - solidity-coverage: 0.8.14(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.8.2) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat-gas-reporter: 1.0.10(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + solidity-coverage: 0.8.14(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + ts-node: 10.9.2(@types/node@22.14.0)(typescript@5.8.2) typechain: 8.3.2(typescript@5.8.2) typescript: 5.8.2 - '@nomicfoundation/hardhat-toolbox@5.0.0(ksuwi4g3p5sqbosqqcl6zmbpj4)': + '@nomicfoundation/hardhat-toolbox@5.0.0(oewp3mmshsc7q4vpgwqemjn2je)': dependencies: - '@nomicfoundation/hardhat-chai-matchers': 2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@5.2.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-ignition-ethers': 0.15.9(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.9(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-network-helpers': 1.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - '@nomicfoundation/hardhat-verify': 2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-chai-matchers': 2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(chai@5.2.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-ethers': 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-ignition-ethers': 0.15.9(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.9(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.9(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-network-helpers': 1.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + '@nomicfoundation/hardhat-verify': 2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) '@typechain/ethers-v6': 0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2) - '@typechain/hardhat': 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2)) + '@typechain/hardhat': 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2)) '@types/chai': 4.3.20 '@types/mocha': 10.0.10 - '@types/node': 22.13.8 + '@types/node': 22.14.0 chai: 5.2.0 ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) - hardhat-gas-reporter: 1.0.10(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) - solidity-coverage: 0.8.14(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) - ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.8.2) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat-gas-reporter: 1.0.10(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + solidity-coverage: 0.8.14(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)) + ts-node: 10.9.2(@types/node@22.14.0)(typescript@5.8.2) typechain: 8.3.2(typescript@5.8.2) typescript: 5.8.2 - '@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': + '@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))': dependencies: '@ethersproject/abi': 5.8.0 '@ethersproject/address': 5.8.0 cbor: 8.1.0 debug: 4.4.0(supports-color@5.5.0) - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) lodash.clonedeep: 4.5.0 picocolors: 1.1.1 semver: 6.3.1 @@ -12748,7 +12763,7 @@ snapshots: dependencies: which: 4.0.0 - '@oclif/core@2.16.0(@types/node@22.13.8)(typescript@5.8.2)': + '@oclif/core@2.16.0(@types/node@22.14.0)(typescript@5.8.2)': dependencies: '@types/cli-progress': 3.11.6 ansi-escapes: 4.3.2 @@ -12757,7 +12772,7 @@ snapshots: chalk: 4.1.2 clean-stack: 3.0.1 cli-progress: 3.12.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) ejs: 3.1.10 get-package-type: 0.1.0 globby: 11.1.0 @@ -12773,7 +12788,7 @@ snapshots: strip-ansi: 6.0.1 supports-color: 8.1.1 supports-hyperlinks: 2.3.0 - ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.8.2) + ts-node: 10.9.2(@types/node@22.14.0)(typescript@5.8.2) tslib: 2.8.1 widest-line: 3.1.0 wordwrap: 1.0.0 @@ -12784,7 +12799,7 @@ snapshots: - '@types/node' - typescript - '@oclif/core@2.8.6(@types/node@22.13.8)(typescript@5.8.2)': + '@oclif/core@2.8.6(@types/node@22.14.0)(typescript@5.8.2)': dependencies: '@types/cli-progress': 3.11.6 ansi-escapes: 4.3.2 @@ -12810,7 +12825,7 @@ snapshots: strip-ansi: 6.0.1 supports-color: 8.1.1 supports-hyperlinks: 2.3.0 - ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.8.2) + ts-node: 10.9.2(@types/node@22.14.0)(typescript@5.8.2) tslib: 2.8.1 widest-line: 3.1.0 wordwrap: 1.0.0 @@ -12821,10 +12836,10 @@ snapshots: - '@types/node' - typescript - '@oclif/core@4.2.8': + '@oclif/core@4.2.10': dependencies: ansi-escapes: 4.3.2 - ansis: 3.16.0 + ansis: 3.17.0 clean-stack: 3.0.1 cli-spinners: 2.9.2 debug: 4.4.0(supports-color@8.1.1) @@ -12842,9 +12857,9 @@ snapshots: wordwrap: 1.0.0 wrap-ansi: 7.0.0 - '@oclif/plugin-autocomplete@2.3.10(@types/node@22.13.8)(typescript@5.8.2)': + '@oclif/plugin-autocomplete@2.3.10(@types/node@22.14.0)(typescript@5.8.2)': dependencies: - '@oclif/core': 2.16.0(@types/node@22.13.8)(typescript@5.8.2) + '@oclif/core': 2.16.0(@types/node@22.14.0)(typescript@5.8.2) chalk: 4.1.2 debug: 4.4.0(supports-color@5.5.0) transitivePeerDependencies: @@ -12856,7 +12871,7 @@ snapshots: '@oclif/plugin-autocomplete@3.2.24': dependencies: - '@oclif/core': 4.2.8 + '@oclif/core': 4.2.10 ansis: 3.16.0 debug: 4.4.0(supports-color@5.5.0) ejs: 3.1.10 @@ -12865,11 +12880,11 @@ snapshots: '@oclif/plugin-help@6.2.25': dependencies: - '@oclif/core': 4.2.8 + '@oclif/core': 4.2.10 - '@oclif/plugin-not-found@2.4.3(@types/node@22.13.8)(typescript@5.8.2)': + '@oclif/plugin-not-found@2.4.3(@types/node@22.14.0)(typescript@5.8.2)': dependencies: - '@oclif/core': 2.16.0(@types/node@22.13.8)(typescript@5.8.2) + '@oclif/core': 2.16.0(@types/node@22.14.0)(typescript@5.8.2) chalk: 4.1.2 fast-levenshtein: 3.0.0 transitivePeerDependencies: @@ -12878,10 +12893,10 @@ snapshots: - '@types/node' - typescript - '@oclif/plugin-not-found@3.2.44(@types/node@22.13.8)': + '@oclif/plugin-not-found@3.2.44(@types/node@22.14.0)': dependencies: - '@inquirer/prompts': 7.3.2(@types/node@22.13.8) - '@oclif/core': 4.2.8 + '@inquirer/prompts': 7.3.2(@types/node@22.14.0) + '@oclif/core': 4.2.10 ansis: 3.16.0 fast-levenshtein: 3.0.0 transitivePeerDependencies: @@ -12889,7 +12904,7 @@ snapshots: '@oclif/plugin-warn-if-update-available@3.1.33': dependencies: - '@oclif/core': 4.2.8 + '@oclif/core': 4.2.10 ansis: 3.15.0 debug: 4.4.0(supports-color@5.5.0) http-call: 5.3.0 @@ -12900,7 +12915,7 @@ snapshots: '@oclif/plugin-warn-if-update-available@3.1.35': dependencies: - '@oclif/core': 4.2.8 + '@oclif/core': 4.2.10 ansis: 3.16.0 debug: 4.4.0(supports-color@5.5.0) http-call: 5.3.0 @@ -13898,6 +13913,8 @@ snapshots: postcss: 8.5.3 tailwindcss: 4.0.9 + '@tanstack/history@1.114.29': {} + '@tanstack/history@1.99.13': {} '@tanstack/query-core@5.66.11': {} @@ -13925,9 +13942,9 @@ snapshots: react-dom: 19.0.0(react@19.0.0) use-sync-external-store: 1.4.0(react@19.0.0) - '@tanstack/router-cli@1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))': + '@tanstack/router-cli@1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))': dependencies: - '@tanstack/router-generator': 1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) + '@tanstack/router-generator': 1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) chokidar: 3.6.0 yargs: 17.7.2 transitivePeerDependencies: @@ -13938,16 +13955,22 @@ snapshots: '@tanstack/history': 1.99.13 '@tanstack/store': 0.7.0 - '@tanstack/router-generator@1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))': + '@tanstack/router-core@1.114.33': + dependencies: + '@tanstack/history': 1.114.29 + '@tanstack/store': 0.7.0 + tiny-invariant: 1.3.3 + + '@tanstack/router-generator@1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))': dependencies: - '@tanstack/virtual-file-routes': 1.99.0 + '@tanstack/virtual-file-routes': 1.114.29 prettier: 3.5.3 tsx: 4.19.2 zod: 3.24.2 optionalDependencies: '@tanstack/react-router': 1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tanstack/router-plugin@1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0))': + '@tanstack/router-plugin@1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1))': dependencies: '@babel/core': 7.26.9 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9) @@ -13955,33 +13978,33 @@ snapshots: '@babel/template': 7.26.9 '@babel/traverse': 7.26.9(supports-color@5.5.0) '@babel/types': 7.26.9 - '@tanstack/router-core': 1.112.0 - '@tanstack/router-generator': 1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) - '@tanstack/router-utils': 1.102.2 - '@tanstack/virtual-file-routes': 1.99.0 + '@tanstack/router-core': 1.114.33 + '@tanstack/router-generator': 1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) + '@tanstack/router-utils': 1.114.29 + '@tanstack/virtual-file-routes': 1.114.29 '@types/babel__core': 7.20.5 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 - babel-dead-code-elimination: 1.0.9 + babel-dead-code-elimination: 1.0.10 chokidar: 3.6.0 unplugin: 2.2.0 zod: 3.24.2 optionalDependencies: '@tanstack/react-router': 1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - vite: 6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) transitivePeerDependencies: - supports-color - '@tanstack/router-utils@1.102.2': + '@tanstack/router-utils@1.114.29': dependencies: '@babel/generator': 7.26.9 '@babel/parser': 7.26.9 ansis: 3.16.0 diff: 7.0.0 - '@tanstack/router-vite-plugin@1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0))': + '@tanstack/router-vite-plugin@1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1))': dependencies: - '@tanstack/router-plugin': 1.112.3(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0)) + '@tanstack/router-plugin': 1.114.34(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1)) transitivePeerDependencies: - '@rsbuild/core' - '@tanstack/react-router' @@ -13992,27 +14015,27 @@ snapshots: '@tanstack/store@0.7.0': {} - '@tanstack/virtual-file-routes@1.99.0': {} + '@tanstack/virtual-file-routes@1.114.29': {} - '@theguild/eslint-config@0.13.2(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2)': + '@theguild/eslint-config@0.13.2(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)': dependencies: '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/parser': 8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) - eslint: 9.21.0(jiti@2.4.2) - eslint-config-prettier: 9.1.0(eslint@9.21.0(jiti@2.4.2)) - eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-jsonc: 2.18.2(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-jsx-a11y: 6.10.2(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-mdx: 3.1.5(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-n: 17.14.0(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-promise: 7.2.1(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-react: 7.37.2(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-react-hooks: 5.0.0(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-sonarjs: 3.0.1(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-unicorn: 56.0.1(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-yml: 1.16.0(eslint@9.21.0(jiti@2.4.2)) + '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) + eslint: 9.23.0(jiti@2.4.2) + eslint-config-prettier: 9.1.0(eslint@9.23.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-jsonc: 2.18.2(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-mdx: 3.1.5(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-n: 17.14.0(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-promise: 7.2.1(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-react: 7.37.2(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-react-hooks: 5.0.0(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-sonarjs: 3.0.1(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-unicorn: 56.0.1(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-yml: 1.16.0(eslint@9.23.0(jiti@2.4.2)) typescript: 5.8.2 transitivePeerDependencies: - '@eslint/json' @@ -14057,12 +14080,12 @@ snapshots: typechain: 8.3.2(typescript@5.8.2) typescript: 5.8.2 - '@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))': + '@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))': dependencies: '@typechain/ethers-v6': 0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.2))(typescript@5.8.2) ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10) fs-extra: 9.1.0 - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) typechain: 8.3.2(typescript@5.8.2) '@types/acorn@4.0.6': @@ -14092,11 +14115,11 @@ snapshots: '@types/bn.js@4.11.6': dependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/bn.js@5.1.6': dependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/chai-as-promised@7.1.8': dependencies: @@ -14106,7 +14129,7 @@ snapshots: '@types/cli-progress@3.11.6': dependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/concat-stream@1.6.1': dependencies: @@ -14114,7 +14137,7 @@ snapshots: '@types/concat-stream@2.0.3': dependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/connect@3.4.38': dependencies: @@ -14126,7 +14149,7 @@ snapshots: '@types/dns-packet@5.6.5': dependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/estree-jsx@1.0.5': dependencies: @@ -14141,12 +14164,12 @@ snapshots: '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 22.13.4 + '@types/node': 22.14.0 '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/hast@3.0.4': dependencies: @@ -14164,7 +14187,7 @@ snapshots: '@types/jsonfile@6.1.4': dependencies: - '@types/node': 22.13.4 + '@types/node': 22.14.0 '@types/long@4.0.2': {} @@ -14188,19 +14211,15 @@ snapshots: '@types/mute-stream@0.0.4': dependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/node@10.17.60': {} '@types/node@12.20.55': {} - '@types/node@22.13.4': + '@types/node@22.14.0': dependencies: - undici-types: 6.20.0 - - '@types/node@22.13.8': - dependencies: - undici-types: 6.20.0 + undici-types: 6.21.0 '@types/node@22.7.5': dependencies: @@ -14214,7 +14233,7 @@ snapshots: '@types/pbkdf2@3.1.2': dependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/prettier@2.7.3': {} @@ -14230,7 +14249,7 @@ snapshots: '@types/secp256k1@4.0.6': dependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/semver@7.5.8': {} @@ -14250,15 +14269,15 @@ snapshots: dependencies: '@types/node': 12.20.55 - '@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) '@typescript-eslint/scope-manager': 8.17.0 - '@typescript-eslint/type-utils': 8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/utils': 8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/type-utils': 8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/utils': 8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) '@typescript-eslint/visitor-keys': 8.17.0 - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -14268,14 +14287,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/parser@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)': dependencies: '@typescript-eslint/scope-manager': 8.17.0 '@typescript-eslint/types': 8.17.0 '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.8.2) '@typescript-eslint/visitor-keys': 8.17.0 debug: 4.4.0(supports-color@5.5.0) - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) optionalDependencies: typescript: 5.8.2 transitivePeerDependencies: @@ -14286,12 +14305,12 @@ snapshots: '@typescript-eslint/types': 8.17.0 '@typescript-eslint/visitor-keys': 8.17.0 - '@typescript-eslint/type-utils@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/type-utils@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)': dependencies: '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.8.2) - '@typescript-eslint/utils': 8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/utils': 8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) debug: 4.4.0(supports-color@5.5.0) - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) ts-api-utils: 1.4.3(typescript@5.8.2) optionalDependencies: typescript: 5.8.2 @@ -14315,13 +14334,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/utils@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)': dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2)) '@typescript-eslint/scope-manager': 8.17.0 '@typescript-eslint/types': 8.17.0 '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.8.2) - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) optionalDependencies: typescript: 5.8.2 transitivePeerDependencies: @@ -14332,14 +14351,14 @@ snapshots: '@typescript-eslint/types': 8.17.0 eslint-visitor-keys: 4.2.0 - '@vitejs/plugin-react@4.3.4(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0))': + '@vitejs/plugin-react@4.3.4(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1))': dependencies: '@babel/core': 7.26.9 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.9) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.9) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) transitivePeerDependencies: - supports-color @@ -14350,13 +14369,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.0.7(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0))': + '@vitest/mocker@3.0.7(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1))': dependencies: '@vitest/spy': 3.0.7 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) '@vitest/pretty-format@3.0.7': dependencies: @@ -14932,6 +14951,8 @@ snapshots: ansis@3.16.0: {} + ansis@3.17.0: {} + antlr4ts@0.5.0-alpha.4: {} any-signal@2.1.2: @@ -15180,7 +15201,7 @@ snapshots: transitivePeerDependencies: - supports-color - babel-dead-code-elimination@1.0.9: + babel-dead-code-elimination@1.0.10: dependencies: '@babel/core': 7.26.9 '@babel/parser': 7.26.9 @@ -16023,11 +16044,9 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.3.4(supports-color@8.1.1): + debug@4.3.4: dependencies: ms: 2.1.2 - optionalDependencies: - supports-color: 8.1.1 debug@4.3.7: dependencies: @@ -16174,9 +16193,9 @@ snapshots: dependencies: yaml: 1.10.2 - docker-compose@1.1.1: + docker-compose@1.2.0: dependencies: - yaml: 2.7.0 + yaml: 2.7.1 docker-modem@1.0.9: dependencies: @@ -16494,19 +16513,19 @@ snapshots: optionalDependencies: source-map: 0.2.0 - eslint-compat-utils@0.5.1(eslint@9.21.0(jiti@2.4.2)): + eslint-compat-utils@0.5.1(eslint@9.23.0(jiti@2.4.2)): dependencies: - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) semver: 7.7.1 - eslint-compat-utils@0.6.4(eslint@9.21.0(jiti@2.4.2)): + eslint-compat-utils@0.6.4(eslint@9.23.0(jiti@2.4.2)): dependencies: - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) semver: 7.7.1 - eslint-config-prettier@9.1.0(eslint@9.21.0(jiti@2.4.2)): + eslint-config-prettier@9.1.0(eslint@9.23.0(jiti@2.4.2)): dependencies: - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) eslint-import-resolver-node@0.3.9: dependencies: @@ -16516,33 +16535,33 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)): + eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.23.0(jiti@2.4.2)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.0(supports-color@5.5.0) enhanced-resolve: 5.18.1 - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) fast-glob: 3.3.3 get-tsconfig: 4.10.0 is-bun-module: 1.3.0 is-glob: 4.0.3 stable-hash: 0.0.4 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.21.0(jiti@2.4.2)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.23.0(jiti@2.4.2)) transitivePeerDependencies: - supports-color - eslint-json-compat-utils@0.2.1(eslint@9.21.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.23.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0): dependencies: - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) esquery: 1.6.0 jsonc-eslint-parser: 2.4.0 - eslint-mdx@3.1.5(eslint@9.21.0(jiti@2.4.2)): + eslint-mdx@3.1.5(eslint@9.23.0(jiti@2.4.2)): dependencies: acorn: 8.14.0 acorn-jsx: 5.3.2(acorn@8.14.0) - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) espree: 9.6.1 estree-util-visit: 2.0.0 remark-mdx: 3.1.0 @@ -16559,25 +16578,25 @@ snapshots: - bluebird - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.21.0(jiti@2.4.2)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.23.0(jiti@2.4.2)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) - eslint: 9.21.0(jiti@2.4.2) + '@typescript-eslint/parser': 8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) + eslint: 9.23.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.23.0(jiti@2.4.2)) transitivePeerDependencies: - supports-color - eslint-plugin-es-x@7.8.0(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-es-x@7.8.0(eslint@9.23.0(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.21.0(jiti@2.4.2) - eslint-compat-utils: 0.5.1(eslint@9.21.0(jiti@2.4.2)) + eslint: 9.23.0(jiti@2.4.2) + eslint-compat-utils: 0.5.1(eslint@9.23.0(jiti@2.4.2)) - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.23.0(jiti@2.4.2)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -16586,9 +16605,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.21.0(jiti@2.4.2)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.23.0(jiti@2.4.2)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -16600,18 +16619,18 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.17.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.17.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jsonc@2.18.2(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-jsonc@2.18.2(eslint@9.23.0(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2)) - eslint: 9.21.0(jiti@2.4.2) - eslint-compat-utils: 0.6.4(eslint@9.21.0(jiti@2.4.2)) - eslint-json-compat-utils: 0.2.1(eslint@9.21.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2)) + eslint: 9.23.0(jiti@2.4.2) + eslint-compat-utils: 0.6.4(eslint@9.23.0(jiti@2.4.2)) + eslint-json-compat-utils: 0.2.1(eslint@9.23.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0) espree: 9.6.1 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 @@ -16620,7 +16639,7 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-jsx-a11y@6.10.2(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-jsx-a11y@6.10.2(eslint@9.23.0(jiti@2.4.2)): dependencies: aria-query: 5.3.2 array-includes: 3.1.8 @@ -16630,7 +16649,7 @@ snapshots: axobject-query: 4.1.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) hasown: 2.0.2 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 @@ -16639,18 +16658,18 @@ snapshots: safe-regex-test: 1.1.0 string.prototype.includes: 2.0.1 - eslint-plugin-markdown@3.0.1(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-markdown@3.0.1(eslint@9.23.0(jiti@2.4.2)): dependencies: - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: - supports-color - eslint-plugin-mdx@3.1.5(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-mdx@3.1.5(eslint@9.23.0(jiti@2.4.2)): dependencies: - eslint: 9.21.0(jiti@2.4.2) - eslint-mdx: 3.1.5(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-markdown: 3.0.1(eslint@9.21.0(jiti@2.4.2)) + eslint: 9.23.0(jiti@2.4.2) + eslint-mdx: 3.1.5(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-markdown: 3.0.1(eslint@9.23.0(jiti@2.4.2)) remark-mdx: 3.1.0 remark-parse: 11.0.0 remark-stringify: 11.0.0 @@ -16661,28 +16680,28 @@ snapshots: - bluebird - supports-color - eslint-plugin-n@17.14.0(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-n@17.14.0(eslint@9.23.0(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2)) enhanced-resolve: 5.18.1 - eslint: 9.21.0(jiti@2.4.2) - eslint-plugin-es-x: 7.8.0(eslint@9.21.0(jiti@2.4.2)) + eslint: 9.23.0(jiti@2.4.2) + eslint-plugin-es-x: 7.8.0(eslint@9.23.0(jiti@2.4.2)) get-tsconfig: 4.10.0 globals: 15.15.0 ignore: 5.3.2 minimatch: 9.0.5 semver: 7.7.1 - eslint-plugin-promise@7.2.1(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-promise@7.2.1(eslint@9.23.0(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2)) - eslint: 9.21.0(jiti@2.4.2) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2)) + eslint: 9.23.0(jiti@2.4.2) - eslint-plugin-react-hooks@5.0.0(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-react-hooks@5.0.0(eslint@9.23.0(jiti@2.4.2)): dependencies: - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) - eslint-plugin-react@7.37.2(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-react@7.37.2(eslint@9.23.0(jiti@2.4.2)): dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 @@ -16690,7 +16709,7 @@ snapshots: array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 es-iterator-helpers: 1.2.1 - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) estraverse: 5.3.0 hasown: 2.0.2 jsx-ast-utils: 3.3.5 @@ -16704,10 +16723,10 @@ snapshots: string.prototype.matchall: 4.0.12 string.prototype.repeat: 1.0.0 - eslint-plugin-sonarjs@3.0.1(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-sonarjs@3.0.1(eslint@9.23.0(jiti@2.4.2)): dependencies: '@babel/core': 7.26.0 - '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.21.0(jiti@2.4.2)) + '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.23.0(jiti@2.4.2)) '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) '@babel/preset-env': 7.26.0(@babel/core@7.26.0) '@babel/preset-flow': 7.25.9(@babel/core@7.26.0) @@ -16715,7 +16734,7 @@ snapshots: '@eslint-community/regexpp': 4.12.1 builtin-modules: 3.3.0 bytes: 3.1.2 - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) functional-red-black-tree: 1.0.1 jsx-ast-utils: 3.3.5 minimatch: 9.0.5 @@ -16725,14 +16744,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@56.0.1(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-unicorn@56.0.1(eslint@9.23.0(jiti@2.4.2)): dependencies: '@babel/helper-validator-identifier': 7.25.9 - '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2)) ci-info: 4.1.0 clean-regexp: 1.0.0 core-js-compat: 3.40.0 - eslint: 9.21.0(jiti@2.4.2) + eslint: 9.23.0(jiti@2.4.2) esquery: 1.6.0 globals: 15.15.0 indent-string: 4.0.0 @@ -16745,11 +16764,11 @@ snapshots: semver: 7.7.1 strip-indent: 3.0.0 - eslint-plugin-yml@1.16.0(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-yml@1.16.0(eslint@9.23.0(jiti@2.4.2)): dependencies: debug: 4.4.0(supports-color@5.5.0) - eslint: 9.21.0(jiti@2.4.2) - eslint-compat-utils: 0.6.4(eslint@9.21.0(jiti@2.4.2)) + eslint: 9.23.0(jiti@2.4.2) + eslint-compat-utils: 0.6.4(eslint@9.23.0(jiti@2.4.2)) lodash: 4.17.21 natural-compare: 1.4.0 yaml-eslint-parser: 1.2.3 @@ -16761,7 +16780,7 @@ snapshots: esrecurse: 4.3.0 estraverse: 4.3.0 - eslint-scope@8.2.0: + eslint-scope@8.3.0: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 @@ -16772,14 +16791,15 @@ snapshots: eslint-visitor-keys@4.2.0: {} - eslint@9.21.0(jiti@2.4.2): + eslint@9.23.0(jiti@2.4.2): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.19.2 + '@eslint/config-helpers': 0.2.1 '@eslint/core': 0.12.0 - '@eslint/eslintrc': 3.3.0 - '@eslint/js': 9.21.0 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.23.0 '@eslint/plugin-kit': 0.2.7 '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 @@ -16791,7 +16811,7 @@ snapshots: cross-spawn: 7.0.6 debug: 4.4.0(supports-color@5.5.0) escape-string-regexp: 4.0.0 - eslint-scope: 8.2.0 + eslint-scope: 8.3.0 eslint-visitor-keys: 4.2.0 espree: 10.3.0 esquery: 1.6.0 @@ -17175,7 +17195,7 @@ snapshots: follow-redirects@1.15.9(debug@4.3.4): optionalDependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 follow-redirects@1.15.9(debug@4.4.0): optionalDependencies: @@ -17588,11 +17608,11 @@ snapshots: optionalDependencies: uglify-js: 3.19.3 - hardhat-gas-reporter@1.0.10(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10): + hardhat-gas-reporter@1.0.10(bufferutil@4.0.9)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10): dependencies: array-uniq: 1.0.3 eth-gas-reporter: 0.2.27(bufferutil@4.0.9)(utf-8-validate@5.0.10) - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) sha1: 1.1.1 transitivePeerDependencies: - '@codechecks/client' @@ -17600,7 +17620,7 @@ snapshots: - debug - utf-8-validate - hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10): + hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10): dependencies: '@ethersproject/abi': 5.7.0 '@metamask/eth-sig-util': 4.0.1 @@ -17647,7 +17667,7 @@ snapshots: uuid: 8.3.2 ws: 7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.8.2) + ts-node: 10.9.2(@types/node@22.14.0)(typescript@5.8.2) typescript: 5.8.2 transitivePeerDependencies: - bufferutil @@ -17809,7 +17829,7 @@ snapshots: immutable@4.3.7: {} - immutable@5.0.3: {} + immutable@5.1.1: {} import-fresh@3.3.1: dependencies: @@ -18398,7 +18418,7 @@ snapshots: kleur@4.1.5: {} - kubo-rpc-client@5.1.0(undici@7.4.0): + kubo-rpc-client@5.1.0(undici@7.7.0): dependencies: '@ipld/dag-cbor': 9.2.2 '@ipld/dag-json': 10.2.3 @@ -18427,7 +18447,7 @@ snapshots: merge-options: 3.0.4 multiformats: 13.3.2 nanoid: 5.1.0 - native-fetch: 4.0.2(undici@7.4.0) + native-fetch: 4.0.2(undici@7.7.0) parse-duration: 2.1.3 react-native-fetch-api: 3.0.0 stream-to-it: 1.0.1 @@ -19135,9 +19155,9 @@ snapshots: dependencies: node-fetch: 2.7.0(encoding@0.1.13) - native-fetch@4.0.2(undici@7.4.0): + native-fetch@4.0.2(undici@7.7.0): dependencies: - undici: 7.4.0 + undici: 7.7.0 natural-compare@1.4.0: {} @@ -19332,16 +19352,16 @@ snapshots: obliterator@2.0.5: {} - oclif@4.16.0(patch_hash=ofxhflhoc4vkbbfnh6gtk4pfua)(@types/node@22.13.8): + oclif@4.16.0(patch_hash=ofxhflhoc4vkbbfnh6gtk4pfua)(@types/node@22.14.0): dependencies: '@aws-sdk/client-cloudfront': 3.749.0 '@aws-sdk/client-s3': 3.749.0 '@inquirer/confirm': 3.2.0 '@inquirer/input': 2.3.0 '@inquirer/select': 2.5.0 - '@oclif/core': 4.2.8 + '@oclif/core': 4.2.10 '@oclif/plugin-help': 6.2.25 - '@oclif/plugin-not-found': 3.2.44(@types/node@22.13.8) + '@oclif/plugin-not-found': 3.2.44(@types/node@22.14.0) '@oclif/plugin-warn-if-update-available': 3.1.35 async-retry: 1.3.3 chalk: 4.1.2 @@ -19751,7 +19771,7 @@ snapshots: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.2 - '@types/node': 22.13.8 + '@types/node': 22.14.0 long: 4.0.0 protons-runtime@5.5.0: @@ -20418,7 +20438,7 @@ snapshots: transitivePeerDependencies: - debug - solidity-coverage@0.8.14(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)): + solidity-coverage@0.8.14(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10)): dependencies: '@ethersproject/abi': 5.8.0 '@solidity-parser/parser': 0.19.0 @@ -20429,7 +20449,7 @@ snapshots: ghost-testrpc: 0.0.2 global-modules: 2.0.0 globby: 10.0.2 - hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) + hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2))(typescript@5.8.2)(utf-8-validate@5.0.10) jsonschema: 1.5.0 lodash: 4.17.21 mocha: 10.8.2 @@ -20912,14 +20932,14 @@ snapshots: dependencies: typescript: 5.8.2 - ts-node@10.9.2(@types/node@22.13.8)(typescript@5.8.2): + ts-node@10.9.2(@types/node@22.14.0)(typescript@5.8.2): 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.13.8 + '@types/node': 22.14.0 acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 @@ -21080,7 +21100,7 @@ snapshots: undici-types@6.19.8: {} - undici-types@6.20.0: {} + undici-types@6.21.0: {} undici@5.28.5: dependencies: @@ -21090,7 +21110,7 @@ snapshots: dependencies: '@fastify/busboy': 2.1.1 - undici@7.4.0: {} + undici@7.7.0: {} unicode-canonical-property-names-ecmascript@2.0.1: {} @@ -21108,7 +21128,7 @@ snapshots: '@types/concat-stream': 2.0.3 '@types/debug': 4.1.12 '@types/is-empty': 1.2.3 - '@types/node': 22.13.8 + '@types/node': 22.14.0 '@types/unist': 3.0.3 concat-stream: 2.0.0 debug: 4.4.0(supports-color@5.5.0) @@ -21125,7 +21145,7 @@ snapshots: vfile-message: 4.0.2 vfile-reporter: 8.1.1 vfile-statistics: 3.0.0 - yaml: 2.7.0 + yaml: 2.7.1 transitivePeerDependencies: - bluebird - supports-color @@ -21341,13 +21361,13 @@ snapshots: - utf-8-validate - zod - vite-node@3.0.7(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0): + vite-node@3.0.7(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1): dependencies: cac: 6.7.14 debug: 4.4.0(supports-color@5.5.0) es-module-lexer: 1.6.0 pathe: 2.0.3 - vite: 6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) transitivePeerDependencies: - '@types/node' - jiti @@ -21362,31 +21382,31 @@ snapshots: - tsx - yaml - vite-plugin-node-polyfills@0.23.0(rollup@4.34.8)(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0)): + vite-plugin-node-polyfills@0.23.0(rollup@4.34.8)(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1)): dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.34.8) node-stdlib-browser: 1.3.1 - vite: 6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) transitivePeerDependencies: - rollup - vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0): + vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1): dependencies: esbuild: 0.25.0 postcss: 8.5.3 rollup: 4.34.8 optionalDependencies: - '@types/node': 22.13.8 + '@types/node': 22.14.0 fsevents: 2.3.3 jiti: 2.4.2 lightningcss: 1.29.1 tsx: 4.19.2 - yaml: 2.7.0 + yaml: 2.7.1 - vitest@3.0.7(@types/debug@4.1.12)(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0): + vitest@3.0.7(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1): dependencies: '@vitest/expect': 3.0.7 - '@vitest/mocker': 3.0.7(vite@6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0)) + '@vitest/mocker': 3.0.7(vite@6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1)) '@vitest/pretty-format': 3.0.7 '@vitest/runner': 3.0.7 '@vitest/snapshot': 3.0.7 @@ -21402,12 +21422,12 @@ snapshots: tinyexec: 0.3.2 tinypool: 1.0.2 tinyrainbow: 2.0.0 - vite: 6.2.0(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) - vite-node: 3.0.7(@types/node@22.13.8)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.2.0(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) + vite-node: 3.0.7(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(tsx@4.19.2)(yaml@2.7.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.13.8 + '@types/node': 22.14.0 transitivePeerDependencies: - jiti - less @@ -21686,11 +21706,11 @@ snapshots: dependencies: eslint-visitor-keys: 3.4.3 lodash: 4.17.21 - yaml: 2.7.0 + yaml: 2.7.1 yaml@1.10.2: {} - yaml@2.7.0: {} + yaml@2.7.1: {} yargs-parser@18.1.3: dependencies: diff --git a/website/package.json b/website/package.json index d7b9b5161..3efb6c876 100644 --- a/website/package.json +++ b/website/package.json @@ -40,14 +40,14 @@ "viem": "^2.21.53", "vite-plugin-node-polyfills": "^0.23.0", "wagmi": "^2.13.3", - "yaml": "2.7.0", + "yaml": "2.7.1", "zod": "^3.23.8" }, "devDependencies": { "@0no-co/graphqlsp": "^1.12.16", "@tailwindcss/postcss": "^4.0.0", - "@tanstack/router-cli": "1.112.3", - "@tanstack/router-vite-plugin": "1.112.3", + "@tanstack/router-cli": "1.114.34", + "@tanstack/router-vite-plugin": "1.114.34", "@types/react": "^19.0.0", "@types/react-dom": "^19.0.0", "@types/semver": "^7.5.8",