繁体   English   中英

尝试通过 hardhat 功能编译我的合约时出错

[英]Error in trying to compile my contract through the hardhat feature

请解释为什么当我尝试通过 hardhat 功能编译我的合约时收到此错误消息以及我如何解决它。

下面是 hardhat.config.js 脚本

    require("@nomiclabs/hardhat-waffle");
require('@nomiclabs/hardhat-ethers');

module.exports = {
  solidity: '0.8.0',
  network: {
    ropsten: {
      url: "https://eth-ropsten.alchemyapi.io/v2/Bn5tm9fX90ET1hKwb76lKJB0rzU3JBi2",
      accounts: ["63b598044c3cce8d656a3db5c.........c64beb17eb1687aebbefc5cac8a"]
    }
  }
}

下面是每当我尝试使用运行编译它时我不断遇到的错误

PS C:\Users\Temitope\Desktop\kredar\smart_contract> npx hardhat run scripts/deploy.js --network ropsten
Error HH100: Network ropsten doesn't exist

For more info go to https://hardhat.org/HH100 or run Hardhat with --show-stack-traces
PS C:\Users\Temitope\Desktop\kredar\smart_contract> 

谢谢。

通过查看您的配置,我猜network应该是networks

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM