block/hardhat.config.js
2025-03-24 16:57:37 +08:00

14 lines
314 B
JavaScript

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