From 0286e433644f7e9ce222b9a1f0825d7ca7b1d43a Mon Sep 17 00:00:00 2001 From: Andrew Dmytrenko Date: Thu, 13 Jun 2024 12:38:19 +0300 Subject: [PATCH] fix etherscan url --- hardhat.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 0891ad7..8e50f78 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -82,7 +82,7 @@ const config: HardhatUserConfig = { showMethodSig: true, currency: 'USD', token: 'ETH', - gasPriceApi: 'https://api.bscscan.com/api?module=proxy&action=eth_gasPrice&apikey=' + process.env.ETHERSCAN_API_KEY, + gasPriceApi: 'https://api.etherscan.io/api?module=proxy&action=eth_gasPrice&apikey=' + process.env.ETHERSCAN_API_KEY, coinmarketcap: process.env.CMC_API_KEY || '', noColors: true, reportFormat: "markdown",