wighawag / hardhat-deploy-ethers

MIT License
70 stars 25 forks source link

hardhat-deploy-ethers expect an earlier version of hardhat-deploy #37

Open mgroovyank opened 2 months ago

mgroovyank commented 2 months ago

Here is my package.json:

{
  "devDependencies": {
    "@chainlink/contracts": "^1.1.0",
    "@nomicfoundation/hardhat-toolbox": "^5.0.0",
    "hardhat": "^2.22.3",
    "hardhat-deploy": "^0.12.2"
  }
}

After the below command:

npm install --save-dev hardhat-deploy

Here is the error I get, when I try to proceed ahead with.

npm install --save-dev hardhat-deploy-ethers

image

wighawag commented 2 months ago

I publised 0.4.2 that update peer dependencies to latest hardhat-deploy Let me know if this does not fix your issue

mgroovyank commented 2 months ago

Thanks @wighawag . This is awesome. I'm able to proceed ahead now with latest dependencies.

{
  "devDependencies": {
    "@chainlink/contracts": "^1.1.0",
    "@nomicfoundation/hardhat-toolbox": "^5.0.0",
    "hardhat": "^2.22.3",
    "hardhat-deploy": "^0.12.4",
    "hardhat-deploy-ethers": "^0.4.2"
  }
}