Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

chore(deps-dev): bump hardhat from 2.0.11 to 2.8.0#303

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/hardhat-2.8.0
Closed

chore(deps-dev): bump hardhat from 2.0.11 to 2.8.0#303
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/hardhat-2.8.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2022

Bumps hardhat from 2.0.11 to 2.8.0.

Release notes

Sourced from hardhat's releases.

Hardhat v2.8.0

This release adds support for using a custom hardfork history when forking networks that aren't officially supported by Hardhat (networks like xDai, Polygon, Avalanche, etc.) This is only relevant if you are forking one of those networks and making calls in the context of historical blocks. You can read more about this here.

This version also fixes a small problem with the output of the node task when it was redirected to a file (#467).

Hardhat v2.7.1

This release adds support for the Arrow Glacier hardfork.

Besides, it fixes an issue (#1466) that prevented Hardhat from working when the compilers list was partially downloaded.

Hardhat v2.7.0

This release adds a FIFO mode to Hardhat Network's mempool and makes the coinbase address customizable. It also includes some minor bug fixes and improvements.

Mempool modes

The way Hardhat Network's mempool orders transactions is now customizable. By default, they are prioritized following Geth's rules, but you can enable a FIFO (first in, first out) mode instead. This mode ensures that transactions are added to blocks in the same order they are sent, and it's useful to recreate blocks from other networks.

You can enable the FIFO mode in your config with:

networks: {
  hardhat: {
    mining: {
      auto: false,
      mempool: {
        order: "fifo",
      },
    },
  },
}

Huge thanks to @​ngotchac for this contribution!

Customizable coinbase address

You can configure the coinbase address via a config field and a new RPC method. This is the address that will receive the block reward when a new block is mined.

The config field is part of the Hardhat Network configuration:

networks: {
  hardhat: {
    coinbase: "0x590c193534A11590b1BcE02896d2805bAC54Da2C"
  },
},

You can also use the new hardhat_setCoinbase RPC method to change the coinbase address in runtime:

... (truncated)

Commits
  • c8eefd9 Version Packages
  • 8e219bf Merge pull request #2154 from nomiclabs/development
  • 438ea0e Merge pull request #2153 from nomiclabs/fvictorio-patch-1
  • e5de9a5 Use less strict match for error in test
  • b499253 Merge branch 'master' into development
  • 7b41e49 Add John to auto assigner
  • b132715 Merge pull request #2119 from nomiclabs/fvictorio-patch-2
  • 75589c7 Version Packages
  • 1021154 Fix recovering from malformed compiler list (#2102)
  • 060d727 changeset: rm ignored pkg docs
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [hardhat](https://github.com/nomiclabs/hardhat) from 2.0.11 to 2.8.0.
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/hardhat-core-v2.0.11...hardhat@2.8.0)

---
updated-dependencies:
- dependency-name: hardhat
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2022
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 1, 2022

Superseded by #317.

@dependabot dependabot bot closed this Feb 1, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/hardhat-2.8.0 branch February 1, 2022 08:09
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

Comments