尝试通过 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
。
请解释为什么当我尝试通过 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
。