AbdelStark / token-vesting-contracts

ERC20 token vesting smart contracts 💰⏳
Apache License 2.0
193 stars 135 forks source link

Bump @nomiclabs/hardhat-ethers from 2.0.2 to 2.2.3 #32

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps @nomiclabs/hardhat-ethers from 2.0.2 to 2.2.3.

Release notes

Sourced from @​nomiclabs/hardhat-ethers's releases.

@​nomiclabs/hardhat-ethers v2.2.3

Make getContractFactory's params validation more flexible (thanks @​jtakalai!)

@​nomiclabs/hardhat-ethers v2.2.1

getContractAt doesn't throw anymore if the given address is not a contract. We removed this check because it caused smock to stop working.

@​nomiclabs/hardhat-ethers v2.2.0

This version adds a new helper to the hre.ethers object: deployContract.

// before
const Foo = await ethers.getContractFactory("Foo")
const foo = await Foo.deploy()

// after const foo = await ethers.deployContract("Foo")

If your contract has constructor arguments, you can pass them as an array:

const foo = await ethers.deployContract("Foo", [1000, "some string"])

Thanks to @​zemse for working on this!

@​nomiclabs/hardhat-ethers v2.1.1

The getContractAt function now throws an error if the given address does not correspond to a contract.

Thanks @​SfyMantissa for fixing this!

@​nomiclabs/hardhat-ethers v2.0.6

  • 7403ec1d: Stop publishing tsconfig.json files

@​nomiclabs/hardhat-ethers v2.0.5

This is a small patch release that fixes an issue when using this plugin with TypeScript.

Changelog

Fix an issue that was causing typescript projects to also compile Hardhat's source (#2260).

hardhat-ethers v2.0.4

This version adds two methods to the ethers object included in the Hardhat Runtime Environment: getContractFactoryFromArtifact and getContractAt (#1716). These are low-level methods that are useful when you have your own artifact-loading logic, but that won't be necessary for most users.

hardhat-ethers v2.0.3

This release fixes an issue (#1247) with hardhat-ethers, where the provider wasn't correctly reset after hardhat_reset was called.

It also adds a better inspection result for ethers's BigNumber instances (issue #2109). So now if you evaluate a BigNumber in the console, the result will look like this:

</tr></table> 

... (truncated)

Commits
  • 29a55f2 Version Packages
  • 7645946 Merge pull request #3767 from NomicFoundation/shanghai
  • 5426f58 Merge pull request #3806 from zZoMROT/aurora-apiurl
  • 4e1fcdc Add changeset
  • c939a4c Fix aurora api url
  • dfc4465 Merge pull request #3778 from shungo0222/patch-1
  • 83254fd Merge pull request #3797 from NomicFoundation/add-hh-storage-dumper
  • 1cc5cee Run prettier
  • 7bb0025 Add docs/**/*.ts files to prettier script
  • 57ce19a Merge branch 'NomicFoundation:main' into hardhat-storage-dumper
  • 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)