0

遵循https://ethereum.org/vi/developers/tutorials/hello-world-smart-contract/的指南

尝试运行我的部署脚本时出现此错误。我完全不知道为什么这不起作用,因为我直接从指南中复制了每段代码。

我的 hardhat.config.js

require('dotenv').config();

require("@nomiclabs/hardhat-ethers");
const { API_URL, PRIVATE_KEY } = process.env;

/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
   solidity: "0.7.3",
   defaultNetwork: "ropsten",
   networks: {
      hardhat: {},
      ropsten: {
         url: API_URL,
         accounts: [`0x${PRIVATE_KEY}`]
      }
   },
}

我的 deploy.js

async function main() {
    const HelloWorld = await ethers.getContractFactory("HelloWorld");
 
    // Start deployment, returning a promise that resolves to a contract object
    const hello_world = await HelloWorld.deploy("Hello World!");
    console.log("Contract deployed to address:", hello_world.address);}
 
 main()
   .then(() => process.exit(0))
   .catch(error => {
     console.error(error);
     process.exit(1);
   });
 

我的 .env

API_URL = "https://eth-ropsten.alchemyapi.io/v2/[REDACTED]"
PRIVATE_KEY = "[REDACTED]".  // my private key goes here, not including the 0x

它编译得很好,但是当我使用命令时给了我错误

npx 安全帽运行脚本/deploy.js --network ropsten

4

2 回答 2

0

您不需要私钥中的 0x,只需输入您从元掩码获得的确切密钥 :)

于 2021-11-19T17:38:26.970 回答
0

https://github.com/ethereumjs/ethereumjs-tx

根据使用示例,我们需要在创建交易时添加链名。

const tx = new Tx(txObject , { chain: 'rinkeby' })
于 2021-12-25T02:41:11.480 回答