Skip to content
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

Bump the yarn group across 1 directory with 14 updates #46

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 19, 2024

Bumps the yarn group with 14 updates in the / directory:

Package From To
prettier 3.2.5 3.3.3
solhint 4.1.1 5.0.3
@nomicfoundation/hardhat-network-helpers 1.0.10 1.0.11
@nomicfoundation/hardhat-toolbox-viem 2.0.0 3.0.0
@nomicfoundation/hardhat-verify 2.0.5 2.0.9
@nomicfoundation/hardhat-viem 2.0.0 2.0.3
@types/mocha 10.0.6 10.0.7
@types/node 20.11.25 22.4.1
chai 4.4.1 5.1.1
hardhat 2.21.0 2.22.8
hardhat-gas-reporter 2.0.2 2.2.1
solidity-coverage 0.8.11 0.8.12
typescript 5.4.2 5.5.4
viem 2.8.9 2.19.7

Updates prettier from 3.2.5 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​footagged template
class X {}
// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits

Updates solhint from 4.1.1 to 5.0.3

Release notes

Sourced from solhint's releases.

v5.0.3

[5.0.3] - 2024-08-03

Fixed

  • New Rule: Imports order #593

v5.0.2

[5.0.2] - 2024-07-25

Fixed

Added

  • New Rule: Imports order #587

v5.0.1

[5.0.1] - 2024-05-13

BREAKING CHANGES (refer to v5.0.0)

Fixed an issue on the returining values where only was evaluating the first report instead of all of them.

v5.0.0

[5.0.0] - 2024-05-11

BREAKING CHANGES

Solhint EXIT codes

Solhint changed how the exit codes are implemented:

Exit with 0 code When execution was ok and there were no errors when evaluating the code according to the rules Exit with 1 code When execution was ok and there are errors reported Exit with 1 code When execution was ok and max warnings is lower than the reported warnings Exit with 255 code When there's an error in the execution (bad config, writing not allowed, wrong parameter, file not found, etc)

Solhint QUIET mode

QUIET mode (-c quiet) option now works with the warnings and may exit with 1 if there are more than defined by user Thanks to @​juanpcapurro for providing the code

v4.5.4

[4.5.4] - 2024-04-10

Fixed

  • gas-custom-errors improved logic to ranged pragma versions #573
  • gas-indexed-events #573

v4.5.2

[4.5.2] - 2024-03-15

Updated

  • Update Readme file to include all autofix rules
  • Update docker file

... (truncated)

Changelog

Sourced from solhint's changelog.

[5.0.3] - 2024-08-03

Fixed

  • New Rule: Imports order #593

[5.0.2] - 2024-07-25

Fixed

Added

  • New Rule: Imports order #587

[5.0.1] - 2024-05-13

BREAKING CHANGES (refer to v5.0.0)

Fixed an issue on the returining values where only was evaluating the first report instead of all of them.

[5.0.0] - 2024-05-11

BREAKING CHANGES

Solhint EXIT codes

Solhint changed how the exit codes are implemented:

Exit with 0 code When execution was ok and there were no errors when evaluating the code according to the rules Exit with 1 code When execution was ok and there are errors reported Exit with 1 code When execution was ok and max warnings is lower than the reported warnings Exit with 255 code When there's an error in the execution (bad config, writing not allowed, wrong parameter, file not found, etc)

Solhint QUIET mode

QUIET mode (-c quiet) option now works with the warnings and may exit with 1 if there are more than defined by user

Thanks to @​juanpcapurro for providing the code

[4.5.4] - 2024-04-10

Fixed

  • gas-custom-errors improved logic to ranged pragma versions #573
  • gas-indexed-events #573

[4.5.2] - 2024-03-15

Updated

  • Update Readme file to include all autofix rules
  • Update docker file

... (truncated)

Commits
  • 018c459 Merge pull request #593 from protofire/fix-imports-order-v2
  • 534b6dd fix: imports-order for direct paths
  • 476679a fix: imports-order for direct paths
  • e06930b fix: imports-order for direct paths
  • 0f0f313 fix: imports-order for direct paths
  • 8012672 Merge branch 'master' into develop
  • 0b5fea1 Merge pull request #589 from protofire/502-pre-release
  • 7bdc059 5.0.2 pre-release
  • e31d090 Merge pull request #587 from protofire/import-order-rule
  • efea5d8 Merge branch 'develop' into import-order-rule
  • Additional commits viewable in compare view

Updates @nomicfoundation/hardhat-network-helpers from 1.0.10 to 1.0.11

Release notes

Sourced from @​nomicfoundation/hardhat-network-helpers's releases.

@​nomicfoundation/hardhat-network-helpers@​1.0.11

This release adds support for using network helpers on anvil network (thanks @​tmigone!)


💡 The Nomic Foundation is hiring! Check our open positions.


Commits
  • f579adc Version Packages
  • 0c7b68e Merge pull request #5195 from NomicFoundation/hardhat-tracer-support
  • b45eb94 Fix pnpm wrongly handling deep peer deps
  • 3c27724 Update pnpm-lock.yaml
  • 0b8e781 Merge branch 'main' into hardhat-tracer-support
  • 001b948 Bump EDR dependency to ^0.4.0
  • d2ce024 Merge pull request #5290 from NomicFoundation/main-pnpm-9
  • 5fcf38e Migrate to pnpm 9
  • 389f9fe Merge remote-tracking branch 'refs/remotes/origin/hardhat-tracer-support' int...
  • 06171bd Merge branch 'main' into hardhat-tracer-support
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by kanej, a new releaser for @​nomicfoundation/hardhat-network-helpers since your current version.


Updates @nomicfoundation/hardhat-toolbox-viem from 2.0.0 to 3.0.0

Release notes

Sourced from @​nomicfoundation/hardhat-toolbox-viem's releases.

@​nomicfoundation/hardhat-toolbox-viem@​3.0.0

This version of Hardhat Toolbox adds Hardhat Ignition as the default deployment system. See the Hardhat Ignition docs for more information.

The version of hardhat-viem has been bumped to include viem@2 support, see the Viem@2 migration guide for more details.

Commits
  • a3ada90 Version Packages
  • 3ee20fc chore: bump edr version to 0.3.1
  • 0f0f470 test: fix assert.isDefined issue
  • 6694140 chore: loosen typescript peer dep for viem toolbox
  • 49f4ffe chore: bump the version of Ignition in toolboxes
  • 90c3f41 Add default tab for new combination
  • ac43eec remove ignition-core as peer dep
  • 4da8ba6 update boilerplate docs
  • 137ee9a docs: revert the change to project setup
  • 779c167 docs: clarify module file in deploying guide
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by kanej, a new releaser for @​nomicfoundation/hardhat-toolbox-viem since your current version.


Updates @nomicfoundation/hardhat-verify from 2.0.5 to 2.0.9

Release notes

Sourced from @​nomicfoundation/hardhat-verify's releases.

@​nomicfoundation/hardhat-verify@​2.0.9

Enhance force flag to allow verification when is verified check fails. Thanks @​3commascapital!


💡 The Nomic Foundation is hiring! Check our open positions.


@​nomicfoundation/hardhat-verify@​2.0.8

This release improves validation of constructor arguments (thanks @​fwx5618177!)


💡 The Nomic Foundation is hiring! Check our open positions.


@​nomicfoundation/hardhat-verify@​2.0.7

This release:

  • Improves error handling and messaging for errors from the block explorer.
  • Adds support for the Polygon Amoy testnet (thanks @​FournyP!).
  • Adds a --force flag to allow verification of partially verified contracts (thanks @​rimrakhimov!).

@​nomicfoundation/hardhat-verify@​2.0.6

Added baseSepolia to supported chains (thanks @​hironate)


💡 The Nomic Foundation is hiring! Check our open positions.


Commits

Updates @nomicfoundation/hardhat-viem from 2.0.0 to 2.0.3

Release notes

Sourced from @​nomicfoundation/hardhat-viem's releases.

@​nomicfoundation/hardhat-viem@​2.0.3

Changelog

  • a8a6038: Added ContractTypesMap to simplify contract type imports (thanks @​beepidibop!)
  • Update dependencies

@​nomicfoundation/hardhat-viem@​2.0.2

This release adds support for library linking (thanks @​Chlebamaticon!).

@​nomicfoundation/hardhat-viem@​2.0.1

Small fix to add guard for updated TransactionReceipt type in the latest viem.


💡 The Nomic Foundation is hiring! Check our open positions.


Commits
  • 411fef6 Version Packages (#5404)
  • 2c10c21 Merge pull request #5466 from NomicFoundation/bump-edr-0-4-1
  • 9fadc22 Create tall-turkeys-cheat.md
  • 1685112 Bump EDR to 0.4.1
  • ca57894 Merge pull request #5429 from NomicFoundation/refactor/vm-tracer-cleanup
  • 2fe2cff Rename injectVmTracer to setVmTracer
  • f6bb065 Merge pull request #5449 from Arvolear/update-distributed-lab-plugins
  • c731d3a update distributed lab plugins
  • 53c422c Merge pull request #5398 from beepidibop/Add-ContractTypesMap
  • 890bdee Fix lint
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by alcuadrado, a new releaser for @​nomicfoundation/hardhat-viem since your current version.


Updates @types/mocha from 10.0.6 to 10.0.7

Commits

Updates @types/node from 20.11.25 to 22.4.1

Commits

Updates chai from 4.4.1 to 5.1.1

Release notes

Sourced from chai's releases.

v5.1.1

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.1.0...v5.1.1

v5.1.0

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.0.3...v5.1.0

v5.0.3

Fix bad v5.0.2 publish.

Full Changelog: chaijs/chai@v5.0.2...v5.0.3

v5.0.2

What's Changed

Full Changelog: chaijs/chai@v5.0.1...v5.0.2

v5.0.0

BREAKING CHANGES

  • Chai now only supports EcmaScript Modules (ESM). This means your tests will need to either have import {...} from 'chai' or import('chai'). require('chai') will cause failures in nodejs. If you're using ESM and seeing failures, it may be due to a bundler or transpiler which is incorrectly converting import statements into require calls.

... (truncated)

Commits

Updates hardhat from 2.21.0 to 2.22.8

Release notes

Sourced from hardhat's releases.

Hardhat v2.22.8

This is a small bug fix release to resolve a bug with large responses from debug_traceTransaction.

Changes

  • f5d5d15: Fixed an issue with debug_traceTransaction when large responses were generated
  • 31d9d77: Upgraded EDR to v0.5.2

💡 The Nomic Foundation is hiring! Check our open positions.


Hardhat v2.22.7

This releases add support for RIP-7212 (Precompile for secp256r1 Curve Support). See the Hardhat network reference for details on how to enable the precompile.

Changes


💡 The Nomic Foundation is hiring! Check our open positions.


Hardhat v2.22.6

Changes

  • cdf0160: Upgrade bundled solcjs
  • 3c66da2: Add support for Node v22
  • 9fadc22: Bump EDR to v0.4.1.
  • 095faa4: Added hardfork histories for Optimim and Arbitrum chains

💡 The Nomic Foundation is hiring! Check our open positions.


Hardhat v2.22.5

This release re-enables support for hardhat-tracer and adds limited support for blob transactions, along with performance improvements and bug fixes.

Changelog

  • f65dc7c: Improved the validation of network and forking URLs (thanks @​kshyun28!)
  • 5d46baa: Internal changes to allow hardhat-tracer to be re-enabled with Hardhat after the EDR upgrade
  • 6e36f3f: Bump EDR to v0.4.0. This adds support for eth_maxPriorityFeePerGas, limited support for blob transactions, improves performance and fixes some bugs. Check out the v0.4.0 EDR release and v0.3.8 EDR release for more details.

💡 The Nomic Foundation is hiring! Check our open positions.


... (truncated)

Commits
  • fcd70ca Version Packages
  • 69c59e9 Merge pull request #5558 from NomicFoundation/fix/issue-543
  • f5d5d15 Create blue-ravens-smile.md
  • a9b0402 Merge branch 'main' into fix/issue-543
  • 61b2bf2 Merge pull request #5576 from NomicFoundation/edr-0-5-1
  • 3a5524c Update chilled-ads-wash.md
  • 1392faa Upgrade EDR to v0.5.2
  • 31d9d77 Create chilled-ads-wash.md
  • 2b13002 Upgrade EDR to v0.5.1
  • 83721d9 Merge pull request #5565 from NomicFoundation/galargh/github-actions-deduplic...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by kanej, a new releaser for hardhat since your current version.


Updates hardhat-gas-reporter from 2.0.2 to 2.2.1

Release notes

Sourced from hardhat-gas-reporter's releases.

v2.2.1 Fix L1 Etherscan api key logic

Bug Fixes

Recently, Etherscan began requiring an api key to fetch live gasPrice and baseFee data for Ethereum mainnet. This release fixes a bug in the way the L1Etherscan api key option was set which caused those data calls to fail.

Full Changelog: cgewecke/hardhat-gas-reporter@v2.2.0...v2.2.1

Gas Golfing Support

New

This release adds a trackGasDeltas option.

When enabled, the reporter displays changes in gas usage between test runs - super useful for optimization work.

Many thanks to @​0xVolosnikov for writing this feature.

Screen Shot 2024-05-23 at 11 40 47 AM

Bugfixes

  • A bug that prevented correct identification of factory deployed contracts in some cases has been fixed. (Thanks to @​CSY54 for reporting and providing a nice reproduction case to add to the test suite).

PRs

New Contributors

Full Changelog: cgewecke/hardhat-gas-reporter@v2.1.1...v2.2.0

Allow sub-gwei blobBaseFee

What's Changed

Full Changelog: cgewecke/hardhat-gas-reporter@v2.1.0...v2.1.1

Arbitrum & Base L2 Network Support

What's New

  • Arbitrum and Base have been added to the list of L2 networks the gas reporter can emulate
    gasReporter: {
      L2: "arbitrum" | "base" | "optimism",
      L2Etherscan: "ABC....",
      coinmarketcap: "abc...",

... (truncated)

Commits

Updates solidity-coverage from 0.8.11 to 0.8.12

Release notes

Sourced from solidity-coverage's releases.

v0.8.12

What's Changed

  • Adds "work-around" support for the hardhat-viem plugin. If you're using viem, run the coverage task with:
    SOLIDITY_COVERAGE=true npx hardhat coverage
    
  • Adds support for solc v0.4.x
  • Fixes a bug where plugin crashed if the contract sources directory name contained a period.
  • Fixes a bug where instrumentation failed if there was whitespace between require statement and the terminating semi-colon

PRs

Full Changelog: sc-forks/solidity-coverage@v0.8.11...v0.8.12

Changelog

Sourced from solidity-coverage's changelog.

Changelog

Commits

Updates typescript from 5.4.2 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates viem from 2.8.9 to 2.19.7

Release notes

Sourced from viem's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

Bumps the yarn group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` |
| [solhint](https://github.com/protofire/solhint) | `4.1.1` | `5.0.3` |
| [@nomicfoundation/hardhat-network-helpers](https://github.com/nomicfoundation/hardhat) | `1.0.10` | `1.0.11` |
| [@nomicfoundation/hardhat-toolbox-viem](https://github.com/nomicfoundation/hardhat) | `2.0.0` | `3.0.0` |
| [@nomicfoundation/hardhat-verify](https://github.com/nomicfoundation/hardhat) | `2.0.5` | `2.0.9` |
| [@nomicfoundation/hardhat-viem](https://github.com/nomicfoundation/hardhat) | `2.0.0` | `2.0.3` |
| [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha) | `10.0.6` | `10.0.7` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.25` | `22.4.1` |
| [chai](https://github.com/chaijs/chai) | `4.4.1` | `5.1.1` |
| [hardhat](https://github.com/nomiclabs/hardhat) | `2.21.0` | `2.22.8` |
| [hardhat-gas-reporter](https://github.com/cgewecke/hardhat-gas-reporter) | `2.0.2` | `2.2.1` |
| [solidity-coverage](https://github.com/sc-forks/solidity-coverage) | `0.8.11` | `0.8.12` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.2` | `5.5.4` |
| [viem](https://github.com/wevm/viem) | `2.8.9` | `2.19.7` |



Updates `prettier` from 3.2.5 to 3.3.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.2.5...3.3.3)

Updates `solhint` from 4.1.1 to 5.0.3
- [Release notes](https://github.com/protofire/solhint/releases)
- [Changelog](https://github.com/protofire/solhint/blob/develop/CHANGELOG.md)
- [Commits](protofire/solhint@v4.1.1...v5.0.3)

Updates `@nomicfoundation/hardhat-network-helpers` from 1.0.10 to 1.0.11
- [Release notes](https://github.com/nomicfoundation/hardhat/releases)
- [Commits](https://github.com/nomicfoundation/hardhat/compare/@nomicfoundation/[email protected]...@nomicfoundation/[email protected])

Updates `@nomicfoundation/hardhat-toolbox-viem` from 2.0.0 to 3.0.0
- [Release notes](https://github.com/nomicfoundation/hardhat/releases)
- [Commits](https://github.com/nomicfoundation/hardhat/compare/@nomicfoundation/[email protected]...@nomicfoundation/[email protected])

Updates `@nomicfoundation/hardhat-verify` from 2.0.5 to 2.0.9
- [Release notes](https://github.com/nomicfoundation/hardhat/releases)
- [Commits](https://github.com/nomicfoundation/hardhat/compare/@nomicfoundation/[email protected]...@nomicfoundation/[email protected])

Updates `@nomicfoundation/hardhat-viem` from 2.0.0 to 2.0.3
- [Release notes](https://github.com/nomicfoundation/hardhat/releases)
- [Commits](https://github.com/nomicfoundation/hardhat/compare/@nomicfoundation/[email protected]...@nomicfoundation/[email protected])

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

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

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

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

Updates `hardhat-gas-reporter` from 2.0.2 to 2.2.1
- [Release notes](https://github.com/cgewecke/hardhat-gas-reporter/releases)
- [Changelog](https://github.com/cgewecke/hardhat-gas-reporter/blob/master/CHANGELOG.md)
- [Commits](cgewecke/hardhat-gas-reporter@v2.0.2...v2.2.1)

Updates `solidity-coverage` from 0.8.11 to 0.8.12
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](sc-forks/solidity-coverage@v0.8.11...v0.8.12)

Updates `typescript` from 5.4.2 to 5.5.4
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.2...v5.5.4)

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

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: solhint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn
- dependency-name: "@nomicfoundation/hardhat-network-helpers"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: "@nomicfoundation/hardhat-toolbox-viem"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn
- dependency-name: "@nomicfoundation/hardhat-verify"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: "@nomicfoundation/hardhat-viem"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: "@types/mocha"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn
- dependency-name: chai
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: yarn
- dependency-name: hardhat
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: hardhat-gas-reporter
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: solidity-coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: viem
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: yarn
...

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 19, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 26, 2024

Superseded by #47.

@dependabot dependabot bot closed this Aug 26, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/yarn-305176dc5b branch August 26, 2024 16:51
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
Development

Successfully merging this pull request may close these issues.

0 participants