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