Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
安全帽不支持 https 导入。使用 npm 安装 openzeppelin 和 chainlink 并使用 @openzeppelin/@chainlink 后,我们会遇到编译指示/编译器版本问题,即使在 hardhat.config.js 中使用不同的编译器版本,甚至覆盖。您如何使用安全帽和这些导入进行开发和编译?
在你的hardhat.config.js你可以添加多个编译器。
hardhat.config.js
module.exports = { solidity: { compilers: [ { version: "0.6.6" }, { version: "0.4.24" } ] } }