智能合约全栈开发示例(三)- 设置路径并编译

 

设置 paths 参数

  使编译后的文件在 指定路径下

module.exports = {
  solidity: "0.8.17",
  paths: {
    artifacts: "./src/artifacts",
  },
  networks: {
    hardhat: {
      chainId: 1337,
    },
  },
};

 

编译

npx hardhat compile

编译完成

可以看到 src 下面有个 artifacts 的文件

 


交流微博:https://weibo.com/u/2434823180

 

posted @ 2022-11-20 12:27  apeNote  阅读(60)  评论(0编辑  收藏  举报