Fteepromax/hardhat.config.js
2025-02-21 00:31:21 +08:00

15 lines
350 B
JavaScript

require('@nomiclabs/hardhat-waffle');
module.exports = {
solidity: "0.8.0",
networks: {
ganache: {
url: "http://localhost:7545",
accounts: [
// 在这里添加 Ganache 提供的私钥
"0x1f177cbe4a64a644a8897b1a32fe1743dde46309d21013c90d0f6266943e4dd4",
// 可以添加更多私钥
],
},
},
};