Fix_hardhat_verify_timeout
修复hardhat发布合约代码出错的问题
hardhat-verify found one or more errors during the verification process:
Etherscan: An unexpected error occurred during the verification process. Please report this issue to the Hardhat team. Error Details: Connect Timeout Error
-
npm install –save-dev undici
-
在 hardhat.config.js 中添加以下代码:
const { ProxyAgent, setGlobalDispatcher } = require("undici");
const proxyAgent = new ProxyAgent("http://127.0.0.1:7890");
setGlobalDispatcher(proxyAgent);