Skip to content

build(deps): bump the minor-and-patch-npm-weekly group across 10 directories with 20 updates #4166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 6, 2025

Bumps the minor-and-patch-npm-weekly group with 5 updates in the /dapp-example directory:

Package From To
@hashgraph/sdk 2.60.1 2.70.0
@mui/material 7.2.0 7.3.1
@babel/core 7.26.9 7.28.0
start-server-and-test 2.0.12 2.0.13
eslint-plugin-import 2.29.1 2.32.0

Bumps the minor-and-patch-npm-weekly group with 7 updates in the /tools/hardhat-example directory:

Package From To
@hashgraph/sdk 2.62.0 2.70.0
typescript 5.3.3 5.9.2
@hashgraph/hedera-local 2.35.0 2.37.1
hardhat 2.26.1 2.26.2
@nomicfoundation/hardhat-chai-matchers 2.0.8 2.1.0
solidity-coverage 0.8.14 0.8.16
@types/mocha 10.0.6 10.0.10

Bumps the minor-and-patch-npm-weekly group with 7 updates in the /tools/hardhat-viem-example directory:

Package From To
@hashgraph/sdk 2.62.0 2.70.0
@hashgraph/hedera-local 2.35.0 2.37.1
hardhat 2.26.1 2.26.2
@nomicfoundation/hardhat-chai-matchers 2.0.6 2.1.0
solidity-coverage 0.8.12 0.8.16
@types/mocha 10.0.6 10.0.10
viem 2.12.5 2.33.2

Bumps the minor-and-patch-npm-weekly group with 5 updates in the /tools/hedera-crosschain-bridge directory:

Package From To
@hashgraph/sdk 2.69.0 2.70.0
typescript 5.8.3 5.9.2
hardhat 2.26.1 2.26.2
@layerzerolabs/lz-evm-oapp-v2 3.0.98 3.0.121
@layerzerolabs/lz-v2-utilities 3.0.98 3.0.121

Bumps the minor-and-patch-npm-weekly group with 7 updates in the /tools/solidity-coverage-example directory:

Package From To
typescript 5.2.2 5.9.2
hardhat 2.26.1 2.26.2
@nomicfoundation/hardhat-chai-matchers 2.0.2 2.1.0
solidity-coverage 0.8.5 0.8.16
@types/mocha 10.0.1 10.0.10
ts-node 10.9.1 10.9.2
typechain 8.3.1 8.3.2

Bumps the minor-and-patch-npm-weekly group with 8 updates in the /tools/subgraph-example directory:

Package From To
@hashgraph/sdk 2.62.0 2.70.0
typescript 5.8.3 5.9.2
@hashgraph/hedera-local 2.35.0 2.37.1
hardhat 2.26.1 2.26.2
solidity-coverage 0.8.5 0.8.16
@nomiclabs/hardhat-etherscan 3.1.7 3.1.8
eslint-plugin-import 2.28.1 2.32.0
ts-node 10.9.1 10.9.2

Bumps the minor-and-patch-npm-weekly group with 2 updates in the /tools/waffle-example directory: typescript and chai.
Bumps the minor-and-patch-npm-weekly group with 1 update in the /tools/wagmi-example directory: @tanstack/react-query.
Bumps the minor-and-patch-npm-weekly group with 1 update in the /tools/web3js-example directory: typescript.
Bumps the minor-and-patch-npm-weekly group with 5 updates in the /tools/whbar-hardhat-example directory:

Package From To
@hashgraph/sdk 2.69.0 2.70.0
typescript 5.7.2 5.9.2
hardhat 2.26.1 2.26.2
@nomicfoundation/hardhat-chai-matchers 2.0.8 2.1.0
solidity-coverage 0.8.14 0.8.16

Updates @hashgraph/sdk from 2.60.1 to 2.70.0

Release notes

Sourced from @​hashgraph/sdk's releases.

v2.70.0

What's Changed

Full Changelog: hiero-ledger/hiero-sdk-js@v2.69.0...v2.70.0

v2.69.0

What's Changed

Summary

This release improves transaction safety and network identification: Transactions that modify or delete nodes now require explicit nodeId to prevent unintended actions. The SDK's X-User-Agent header is now correctly formatted to ensure accurate classification by the Consensus Node.

Enhancements

  • Added validation to NodeUpdateTransaction and NodeDeleteTransaction to ensure that nodeId is explicitly set before execution. This prevents accidental updates to node 0.0.3 due to protobuf's default uint64 = 0 behavior. #3228

Fixed

  • Fixed the formatting of the X-User-Agent header in the JavaScript SDK to ensure proper identification by the Consensus Node. The header now follows the format: X-User-Agent: hiero-sdk-js/<version> (e.g., hiero-sdk-js/1.2.3), preventing misclassification as unknown/unspecified usage. #3216

Full Changelog: hiero-ledger/hiero-sdk-js@v2.68.0...v2.69.0

v2.69.0-beta.1

What's Changed

This release introduces robust support for dynamic network configuration in browser environments. These enhancements improve SDK reliability, support evolving node infrastructure, and ensure compatibility with mirror node-based discovery mechanisms.

Enhancements

... (truncated)

Changelog

Sourced from @​hashgraph/sdk's changelog.

v2.70.0

⚠️ Important Notice
Starting from this version (v2.70.0), we will be releasing all packages under both the @hiero-ledger and @hashgraph namespaces for a transitional period.
Eventually, @hashgraph/* packages will be deprecated and all development will continue solely under the @hiero-ledger/* scope.

No breaking changes are introduced in this release from a user perspective.

To support this transition, a detailed migration guide is available here.
Please begin migrating to @hiero-ledger packages at your earliest convenience.


Added

  • deleteGrpcWebProxyEndpoint method in NodeUpdateTransaction to support the removal of web proxy. #3268

Fixed

  • Aligned clear methods for array properties in TopicUpdateTransaction with other SDKs, ensuring they correctly remove the arrays from network state. #3265

Removed

  • Removed the gRPC proxy endpoint for node with account ID 0.0.5, as it was taken out of the address book by a council member. #3256

v2.69.0

Added

  • Added validation to NodeUpdateTransaction and NodeDeleteTransaction ensuring that nodeId is explicitly set before execution. This prevents accidental updates to node 0.0.3 due to protobuf's default uint64 = 0 behavior. 3228

Fixed

  • Fixed formatting of the X-User-Agent header in the JavaScript SDK to ensure correct identification by the Consensus Node. The header now uses the format: X-User-Agent: hiero-sdk-js/ (e.g., hiero-sdk-js/1.2.3), preventing misclassification as unknown/unspecified usage. 3216

v2.69.0-beta.1

Added

  • WebClient.forMirrorNetwork() factory method now works and correctly initializes and updates the address book during initialization.
  • WebClient now supports scheduled network updates via the scheduleNetworkUpdate: true option, and manual updates using the updateNetwork() method.
  • AddressBookQuery is now supported in browser environments.
  • MirrorNodeContractCallQuery is now supported in browser environments.
  • MirrorNodeContractЕstimateQuery is now supported in browser environments. #3092
  • For Mainnet, Testnet, and Previewnet, a fallback mechanism is in place: if the mirror node returns null or missing grpc_proxy_endpoint values, the SDK will retain and use the hardcoded list of gRPC web proxy endpoints.

v2.68.0

Added

  • <EntityId>.toEvmAddress() for AccountId, ContractId, ContractDelegateId, TopicId, TokenId, FileId. #3200

Changed

  • <EntityId>.fromEvmAddress(shard, realm, evmAddress) for AccountId, ContractId, and ContractDelegateId:
    • Shard and realm must now be explicitly provided and are not encoded in the EVM address. #3200

... (truncated)

Commits
  • fdec943 chore(release): v2.70.0 (#3270)
  • 5e21293 chore(ci): Set the dual publish defaults to true (#3272)
  • fc3de63 feat: clear grpc web proxy endpoint in NodeUpdate (#3268)
  • bb2b4de chore(deps-dev): bump eslint-plugin-jsdoc from 51.3.1 to 52.0.2 in /packages/...
  • 89c27d3 chore(deps-dev): bump eslint-plugin-jsdoc from 51.3.4 to 52.0.2 in /packages/...
  • 43f36c0 chore(deps-dev): bump eslint-plugin-jsdoc from 51.3.1 to 52.0.2 (#3261)
  • fcadee6 feat(TCK): Topic Endpoints (#3236)
  • b35fc3a fix: Clear methods in TopicUpdateTransaction (#3265)
  • e10aee0 feat: example of polling mirror node to simulate TopicMessageQuery (#3180)
  • e7f871c chore: remove grpc proxy for accoundId 0.0.5 (#3256)
  • Additional commits viewable in compare view

Updates @mui/material from 7.2.0 to 7.3.1

Release notes

Sourced from @​mui/material's releases.

v7.3.1

A big thanks to the 2 contributors who made this release possible.

@mui/[email protected]

All contributors of this release in alphabetical order: @​sai6855, @​ZeeshanTamboli

v7.3.0

A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨:

  • 🚀 Shipped nativeColor feature that eliminates JS color manipulation and unlocks support for all modern color spaces (#43942) @​siriwatknp!

    To learn more, check out the Native Color guide.

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

7.3.1

Aug 6, 2025

A big thanks to the 2 contributors who made this release possible.

@mui/[email protected]

All contributors of this release in alphabetical order: @​sai6855, @​ZeeshanTamboli

7.3.0

Aug 5, 2025

A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨:

  • 🚀 Shipped nativeColor feature that eliminates JS color manipulation and unlocks support for all modern color spaces (#43942) @​siriwatknp!

    To learn more, check out the Native Color guide.

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Commits

Updates @babel/core from 7.26.9 to 7.28.0

Release notes

Sourced from @​babel/core's releases.

v7.28.0 (2025-07-02)

🚀 New Feature

  • babel-node
  • babel-types
  • babel-compat-data, babel-preset-env
  • babel-core, babel-parser
  • babel-generator, babel-parser
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-transform-object-rest-spread, babel-traverse, babel-types
  • babel-parser, babel-traverse, babel-types
  • babel-generator, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring, babel-plugin-transform-explicit-resource-management, babel-plugin-transform-react-display-name, babel-types
  • babel-generator, babel-parser, babel-plugin-proposal-destructuring-private, babel-plugin-transform-block-scoping, babel-plugin-transform-object-rest-spread, babel-plugin-transform-typescript, babel-traverse, babel-types

🐛 Bug Fix

🏠 Internal

  • babel-compat-data, babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-json-modules, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs3

Committers: 5

v7.27.7 (2025-06-26)

Thanks @​arthur-mountain and @​evankanderson for your first PRs!

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-classes
  • babel-parser

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.28.0 (2025-07-02)

🚀 New Feature

  • babel-node
  • babel-types
  • babel-compat-data, babel-preset-env
  • babel-core, babel-parser
  • babel-generator, babel-parser
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-transform-object-rest-spread, babel-traverse, babel-types
  • babel-parser, babel-traverse, babel-types
  • babel-generator, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring, babel-plugin-transform-explicit-resource-management, babel-plugin-transform-react-display-name, babel-types
  • babel-generator, babel-parser, babel-plugin-proposal-destructuring-private, babel-plugin-transform-block-scoping, babel-plugin-transform-object-rest-spread, babel-plugin-transform-typescript, babel-traverse, babel-types

🐛 Bug Fix

🏠 Internal

  • babel-compat-data, babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-json-modules, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs3

v7.27.7 (2025-06-26)

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-classes
  • babel-parser

🐛 Bug Fix

🏠 Internal

  • babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread
    • #17389 Use NodePath#splitExportDeclaration in destructuring transforms (@​JLHwung)

... (truncated)

Commits

Updates start-server-and-test from 2.0.12 to 2.0.13

Release notes

Sourced from start-server-and-test's releases.

v2.0.13

2.0.13 (2025-08-03)

Bug Fixes

  • deps: update dependency wait-on to v8.0.4 (#405) (6385e1d)
Commits

Updates @hashgraph/sdk from 2.60.1 to 2.70.0

Release notes

Sourced from @​hashgraph/sdk's releases.

v2.70.0

What's Changed

Full Changelog: hiero-ledger/hiero-sdk-js@v2.69.0...v2.70.0

v2.69.0

What's Changed

Summary

This release improves transaction safety and network identification: Transactions that modify or delete nodes now require explicit nodeId to prevent unintended actions. The SDK's X-User-Agent header is now correctly formatted to ensure accurate classification by the Consensus Node.

Enhancements

  • Added validation to NodeUpdateTransaction and NodeDeleteTransaction to ensure that nodeId is explicitly set before execution. This prevents accidental updates to node 0.0.3 due to protobuf's default uint64 = 0 behavior. #3228

Fixed

  • Fixed the formatting of the X-User-Agent header in the JavaScript SDK to ensure proper identification by the Consensus Node. The header now follows the format: X-User-Agent: hiero-sdk-js/<version> (e.g., hiero-sdk-js/1.2.3), preventing misclassification as unknown/unspecified usage. #3216

Full Changelog: hiero-ledger/hiero-sdk-js@v2.68.0...v2.69.0

v2.69.0-beta.1

What's Changed

This release introduces robust support for dynamic network configuration in browser environments. These enhancements improve SDK reliability, support evolving node infrastructure, and ensure compatibility with mirror node-based discovery mechanisms.

Enhancements

... (truncated)

Changelog

Sourced from @​hashgraph/sdk's changelog.

v2.70.0

⚠️ Important Notice
Starting from this version (v2.70.0), we will be releasing all packages under both the @hiero-ledger and @hashgraph namespaces for a transitional period.
Eventually, @hashgraph/* packages will be deprecated and all development will continue solely under the @hiero-ledger/* scope.

No breaking changes are introduced in this release from a user perspective.

To support this transition, a detailed migration guide is available here.
Please begin migrating to @hiero-ledger packages at your earliest convenience.


Added

  • deleteGrpcWebProxyEndpoint method in NodeUpdateTransaction to support the removal of web proxy. #3268

Fixed

  • Aligned clear methods for array properties in TopicUpdateTransaction with other SDKs, ensuring they correctly remove the arrays from network state. #3265

Removed

  • Removed the gRPC proxy endpoint for node with account ID 0.0.5, as it was taken out of the address book by a council member. #3256

v2.69.0

Added

  • Added validation to NodeUpdateTransaction and NodeDeleteTransaction ensuring that nodeId is explicitly set before execution. This prevents accidental updates to node 0.0.3 due to protobuf's default uint64 = 0 behavior. 3228

Fixed

  • Fixed formatting of the X-User-Agent header in the JavaScript SDK to ensure correct identification by the Consensus Node. The header now uses the format: X-User-Agent: hiero-sdk-js/ (e.g., hiero-sdk-js/1.2.3), preventing misclassification as unknown/unspecified usage. 3216

v2.69.0-beta.1

Added

  • WebClient.forMirrorNetwork() factory method now works and correctly initializes and updates the address book during initialization.
  • WebClient now supports scheduled network updates via the scheduleNetworkUpdate: true option, and manual updates using the updateNetwork() method.
  • AddressBookQuery is now supported in browser environments.
  • MirrorNodeContractCallQuery is now supported in browser environments.
  • MirrorNodeContractЕstimateQuery is now supported in browser environments. #3092
  • For Mainnet, Testnet, and Previewnet, a fallback mechanism is in place: if the mirror node returns null or missing grpc_proxy_endpoint values, the SDK will retain and use the hardcoded list of gRPC web proxy endpoints.

v2.68.0

Added

  • <EntityId>.toEvmAddress() for AccountId, ContractId, ContractDelegateId, TopicId, TokenId, FileId. #3200

Changed

  • <EntityId>.fromEvmAddress(shard, realm, evmAddress) for AccountId, ContractId, and ContractDelegateId:
    • Shard and realm must now be explicitly provided and are not encoded in the EVM address. #3200

... (truncated)

Commits
  • fdec943 chore(release): v2.70.0 (#3270)
  • 5e21293 chore(ci): Set the dual publish defaults to true (#3272)
  • fc3de63 feat: clear grpc web proxy endpoint in NodeUpdate (#3268)
  • bb2b4de chore(deps-dev): bump eslint-plugin-jsdoc from 51.3.1 to 52.0.2 in /packages/...
  • 89c27d3 chore(deps-dev): bump eslint-plugin-jsdoc from 51.3.4 to 52.0.2 in /packages/...
  • 43f36c0 chore(deps-dev): bump eslint-plugin-jsdoc from 51.3.1 to 52.0.2 (#3261)
  • fcadee6 feat(TCK): Topic Endpoints (#3236)
  • b35fc3a fix: Clear methods in TopicUpdateTransaction (#3265)
  • e10aee0 feat: example of polling mirror node to simulate TopicMessageQuery (#3180)
  • e7f871c chore: remove grpc proxy for accoundId 0.0.5 (#3256)
  • Additional commits viewable in compare view

Updates eslint-plugin-import from 2.29.1 to 2.32.0

Release notes

Sourced from eslint-plugin-import's releases.

v2.32.0

Added

…ctories with 20 updates

Bumps the minor-and-patch-npm-weekly group with 5 updates in the /dapp-example directory:

| Package | From | To |
| --- | --- | --- |
| [@hashgraph/sdk](https://github.com/hiero-ledger/hiero-sdk-js) | `2.60.1` | `2.70.0` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `7.2.0` | `7.3.1` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.26.9` | `7.28.0` |
| [start-server-and-test](https://github.com/bahmutov/start-server-and-test) | `2.0.12` | `2.0.13` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.29.1` | `2.32.0` |

Bumps the minor-and-patch-npm-weekly group with 7 updates in the /tools/hardhat-example directory:

| Package | From | To |
| --- | --- | --- |
| [@hashgraph/sdk](https://github.com/hiero-ledger/hiero-sdk-js) | `2.62.0` | `2.70.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.3.3` | `5.9.2` |
| [@hashgraph/hedera-local](https://github.com/hashgraph/hedera-local-node) | `2.35.0` | `2.37.1` |
| [hardhat](https://github.com/nomiclabs/hardhat) | `2.26.1` | `2.26.2` |
| [@nomicfoundation/hardhat-chai-matchers](https://github.com/nomicfoundation/hardhat) | `2.0.8` | `2.1.0` |
| [solidity-coverage](https://github.com/sc-forks/solidity-coverage) | `0.8.14` | `0.8.16` |
| [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha) | `10.0.6` | `10.0.10` |

Bumps the minor-and-patch-npm-weekly group with 7 updates in the /tools/hardhat-viem-example directory:

| Package | From | To |
| --- | --- | --- |
| [@hashgraph/sdk](https://github.com/hiero-ledger/hiero-sdk-js) | `2.62.0` | `2.70.0` |
| [@hashgraph/hedera-local](https://github.com/hashgraph/hedera-local-node) | `2.35.0` | `2.37.1` |
| [hardhat](https://github.com/nomiclabs/hardhat) | `2.26.1` | `2.26.2` |
| [@nomicfoundation/hardhat-chai-matchers](https://github.com/nomicfoundation/hardhat) | `2.0.6` | `2.1.0` |
| [solidity-coverage](https://github.com/sc-forks/solidity-coverage) | `0.8.12` | `0.8.16` |
| [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha) | `10.0.6` | `10.0.10` |
| [viem](https://github.com/wevm/viem) | `2.12.5` | `2.33.2` |

Bumps the minor-and-patch-npm-weekly group with 5 updates in the /tools/hedera-crosschain-bridge directory:

| Package | From | To |
| --- | --- | --- |
| [@hashgraph/sdk](https://github.com/hiero-ledger/hiero-sdk-js) | `2.69.0` | `2.70.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |
| [hardhat](https://github.com/nomiclabs/hardhat) | `2.26.1` | `2.26.2` |
| @layerzerolabs/lz-evm-oapp-v2 | `3.0.98` | `3.0.121` |
| @layerzerolabs/lz-v2-utilities | `3.0.98` | `3.0.121` |

Bumps the minor-and-patch-npm-weekly group with 7 updates in the /tools/solidity-coverage-example directory:

| Package | From | To |
| --- | --- | --- |
| [typescript](https://github.com/microsoft/TypeScript) | `5.2.2` | `5.9.2` |
| [hardhat](https://github.com/nomiclabs/hardhat) | `2.26.1` | `2.26.2` |
| [@nomicfoundation/hardhat-chai-matchers](https://github.com/nomicfoundation/hardhat) | `2.0.2` | `2.1.0` |
| [solidity-coverage](https://github.com/sc-forks/solidity-coverage) | `0.8.5` | `0.8.16` |
| [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha) | `10.0.1` | `10.0.10` |
| [ts-node](https://github.com/TypeStrong/ts-node) | `10.9.1` | `10.9.2` |
| [typechain](https://github.com/ethereum-ts/Typechain) | `8.3.1` | `8.3.2` |

Bumps the minor-and-patch-npm-weekly group with 8 updates in the /tools/subgraph-example directory:

| Package | From | To |
| --- | --- | --- |
| [@hashgraph/sdk](https://github.com/hiero-ledger/hiero-sdk-js) | `2.62.0` | `2.70.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |
| [@hashgraph/hedera-local](https://github.com/hashgraph/hedera-local-node) | `2.35.0` | `2.37.1` |
| [hardhat](https://github.com/nomiclabs/hardhat) | `2.26.1` | `2.26.2` |
| [solidity-coverage](https://github.com/sc-forks/solidity-coverage) | `0.8.5` | `0.8.16` |
| [@nomiclabs/hardhat-etherscan](https://github.com/nomiclabs/hardhat) | `3.1.7` | `3.1.8` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.28.1` | `2.32.0` |
| [ts-node](https://github.com/TypeStrong/ts-node) | `10.9.1` | `10.9.2` |

Bumps the minor-and-patch-npm-weekly group with 2 updates in the /tools/waffle-example directory: [typescript](https://github.com/microsoft/TypeScript) and [chai](https://github.com/chaijs/chai).
Bumps the minor-and-patch-npm-weekly group with 1 update in the /tools/wagmi-example directory: [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query).
Bumps the minor-and-patch-npm-weekly group with 1 update in the /tools/web3js-example directory: [typescript](https://github.com/microsoft/TypeScript).
Bumps the minor-and-patch-npm-weekly group with 5 updates in the /tools/whbar-hardhat-example directory:

| Package | From | To |
| --- | --- | --- |
| [@hashgraph/sdk](https://github.com/hiero-ledger/hiero-sdk-js) | `2.69.0` | `2.70.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.9.2` |
| [hardhat](https://github.com/nomiclabs/hardhat) | `2.26.1` | `2.26.2` |
| [@nomicfoundation/hardhat-chai-matchers](https://github.com/nomicfoundation/hardhat) | `2.0.8` | `2.1.0` |
| [solidity-coverage](https://github.com/sc-forks/solidity-coverage) | `0.8.14` | `0.8.16` |



Updates `@hashgraph/sdk` from 2.60.1 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `@mui/material` from 7.2.0 to 7.3.1
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v7.3.1/packages/mui-material)

Updates `@babel/core` from 7.26.9 to 7.28.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.0/packages/babel-core)

Updates `start-server-and-test` from 2.0.12 to 2.0.13
- [Release notes](https://github.com/bahmutov/start-server-and-test/releases)
- [Commits](https://github.com/bahmutov/start-server-and-test/compare/v2.0.12...v2.0.13)

Updates `@hashgraph/sdk` from 2.60.1 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `eslint-plugin-import` from 2.29.1 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.1...v2.32.0)

Updates `@hashgraph/sdk` from 2.60.1 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `@hashgraph/sdk` from 2.62.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

Updates `typescript` from 5.3.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `@babel/core` from 7.26.10 to 7.28.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.0/packages/babel-core)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `@nomicfoundation/hardhat-chai-matchers` from 2.0.8 to 2.1.0
- [Release notes](https://github.com/nomicfoundation/hardhat/releases)
- [Commits](https://github.com/nomicfoundation/hardhat/compare/@nomicfoundation/[email protected]...@nomicfoundation/[email protected])

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/sdk` from 2.62.0 to 2.66.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.14 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `@types/mocha` from 10.0.6 to 10.0.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mocha)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.14 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `typescript` from 5.3.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

Updates `typescript` from 5.3.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `@hashgraph/sdk` from 2.62.0 to 2.66.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/sdk` from 2.62.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

Updates `@babel/core` from 7.26.10 to 7.28.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.0/packages/babel-core)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `@nomicfoundation/hardhat-chai-matchers` from 2.0.6 to 2.1.0
- [Release notes](https://github.com/nomicfoundation/hardhat/releases)
- [Commits](https://github.com/nomicfoundation/hardhat/compare/@nomicfoundation/[email protected]...@nomicfoundation/[email protected])

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/sdk` from 2.62.0 to 2.66.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.12 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `@types/mocha` from 10.0.6 to 10.0.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mocha)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.12 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

Updates `viem` from 2.12.5 to 2.33.2
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/[email protected]@2.33.2)

Updates `@hashgraph/sdk` from 2.62.0 to 2.66.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/sdk` from 2.69.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/sdk` from 2.69.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `@layerzerolabs/lz-evm-oapp-v2` from 3.0.98 to 3.0.121

Updates `@layerzerolabs/lz-v2-utilities` from 3.0.98 to 3.0.121

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `@hashgraph/sdk` from 2.69.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `typescript` from 5.2.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@nomicfoundation/hardhat-chai-matchers` from 2.0.2 to 2.1.0
- [Release notes](https://github.com/nomicfoundation/hardhat/releases)
- [Commits](https://github.com/nomicfoundation/hardhat/compare/@nomicfoundation/[email protected]...@nomicfoundation/[email protected])

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.5 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `@types/mocha` from 10.0.1 to 10.0.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mocha)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.5 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `ts-node` from 10.9.1 to 10.9.2
- [Release notes](https://github.com/TypeStrong/ts-node/releases)
- [Changelog](https://github.com/TypeStrong/ts-node/blob/main/development-docs/release-template.md)
- [Commits](https://github.com/TypeStrong/ts-node/compare/v10.9.1...v10.9.2)

Updates `typechain` from 8.3.1 to 8.3.2
- [Release notes](https://github.com/ethereum-ts/Typechain/releases)
- [Commits](https://github.com/ethereum-ts/Typechain/compare/[email protected]@8.3.2)

Updates `typescript` from 5.2.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `typescript` from 5.2.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/sdk` from 2.62.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `@babel/core` from 7.26.10 to 7.28.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.0/packages/babel-core)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/sdk` from 2.62.0 to 2.66.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.5 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `@hashgraph/hedera-local` from 2.35.0 to 2.37.1
- [Release notes](https://github.com/hashgraph/hedera-local-node/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-local-node/blob/main/release.config.js)
- [Commits](https://github.com/hashgraph/hedera-local-node/compare/v2.35.0...v2.37.1)

Updates `@nomiclabs/hardhat-etherscan` from 3.1.7 to 3.1.8
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/commits)

Updates `eslint-plugin-import` from 2.28.1 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.1...v2.32.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.5 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `ts-node` from 10.9.1 to 10.9.2
- [Release notes](https://github.com/TypeStrong/ts-node/releases)
- [Changelog](https://github.com/TypeStrong/ts-node/blob/main/development-docs/release-template.md)
- [Commits](https://github.com/TypeStrong/ts-node/compare/v10.9.1...v10.9.2)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `@hashgraph/sdk` from 2.62.0 to 2.66.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `typescript` from 5.5.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `chai` from 5.1.1 to 5.2.1
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](https://github.com/chaijs/chai/compare/v5.1.1...v5.2.1)

Updates `typescript` from 5.5.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `chai` from 5.1.1 to 5.2.1
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](https://github.com/chaijs/chai/compare/v5.1.1...v5.2.1)

Updates `typescript` from 5.5.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `chai` from 5.1.1 to 5.2.1
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](https://github.com/chaijs/chai/compare/v5.1.1...v5.2.1)

Updates `@tanstack/react-query` from 5.45.1 to 5.84.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.84.1/packages/react-query)

Updates `typescript` from 5.5.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `typescript` from 5.5.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `typescript` from 5.5.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `@hashgraph/sdk` from 2.69.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `typescript` from 5.7.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@nomicfoundation/hardhat-chai-matchers` from 2.0.8 to 2.1.0
- [Release notes](https://github.com/nomicfoundation/hardhat/releases)
- [Commits](https://github.com/nomicfoundation/hardhat/compare/@nomicfoundation/[email protected]...@nomicfoundation/[email protected])

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `@hashgraph/sdk` from 2.69.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.14 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

Updates `solidity-coverage` from 0.8.14 to 0.8.16
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.16)

Updates `typescript` from 5.7.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `typescript` from 5.7.2 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.9.2)

Updates `@hashgraph/sdk` from 2.69.0 to 2.70.0
- [Release notes](https://github.com/hiero-ledger/hiero-sdk-js/releases)
- [Changelog](https://github.com/hiero-ledger/hiero-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hiero-ledger/hiero-sdk-js/compare/v2.60.1...v2.70.0)

Updates `hardhat` from 2.26.1 to 2.26.2
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.26.2)

---
updated-dependencies:
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@mui/material"
  dependency-version: 7.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@babel/core"
  dependency-version: 7.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: start-server-and-test
  dependency-version: 2.0.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: eslint-plugin-import
  dependency-version: 2.32.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@babel/core"
  dependency-version: 7.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@nomicfoundation/hardhat-chai-matchers"
  dependency-version: 2.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.66.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@types/mocha"
  dependency-version: 10.0.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.66.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@babel/core"
  dependency-version: 7.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@nomicfoundation/hardhat-chai-matchers"
  dependency-version: 2.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.66.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@types/mocha"
  dependency-version: 10.0.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: viem
  dependency-version: 2.33.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.66.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@layerzerolabs/lz-evm-oapp-v2"
  dependency-version: 3.0.121
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@layerzerolabs/lz-v2-utilities"
  dependency-version: 3.0.121
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@nomicfoundation/hardhat-chai-matchers"
  dependency-version: 2.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@types/mocha"
  dependency-version: 10.0.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: ts-node
  dependency-version: 10.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typechain
  dependency-version: 8.3.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@babel/core"
  dependency-version: 7.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.66.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/hedera-local"
  dependency-version: 2.37.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@nomiclabs/hardhat-etherscan"
  dependency-version: 3.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: eslint-plugin-import
  dependency-version: 2.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: ts-node
  dependency-version: 10.9.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.66.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: chai
  dependency-version: 5.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: chai
  dependency-version: 5.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: chai
  dependency-version: 5.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.84.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@nomicfoundation/hardhat-chai-matchers"
  dependency-version: 2.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: solidity-coverage
  dependency-version: 0.8.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: "@hashgraph/sdk"
  dependency-version: 2.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-npm-weekly
- dependency-name: hardhat
  dependency-version: 2.26.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-npm-weekly
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 6, 2025
@dependabot dependabot bot requested review from a team as code owners August 6, 2025 16:01
@dependabot dependabot bot requested a review from Ferparishuertas August 6, 2025 16:01
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 6, 2025
@konstantinabl
Copy link
Contributor

@dependabot recreate

Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 14, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Aug 14, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dapp-example/minor-and-patch-npm-weekly-13196ab7b5 branch August 14, 2025 12:39
Copy link

codecov bot commented Aug 14, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.

❌ Your project status has failed because the head coverage (73.19%) is below the target coverage (80.00%). You can increase the head coverage or adjust the target coverage.

❗ There is a different number of reports uploaded between BASE (4b30f68) and HEAD (1857f31). Click for more details.

HEAD has 21 uploads less than BASE
Flag BASE (4b30f68) HEAD (1857f31)
config-service 1 0
relay 1 0
server 1 0
ws-server 1 0
19 2
@@             Coverage Diff             @@
##             main    #4166       +/-   ##
===========================================
- Coverage   95.38%   73.19%   -22.20%     
===========================================
  Files         122      122               
  Lines       20355    20355               
  Branches     1737      658     -1079     
===========================================
- Hits        19416    14898     -4518     
- Misses        914     5442     +4528     
+ Partials       25       15       -10     
Flag Coverage Δ
config-service ?
relay ?
server ?
ws-server ?

Flags with carried forward coverage won't be shown. Click here to find out more.
see 64 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant