From 1a475b5c688a4d1613922b4af1a7d33ee424acfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20S=C3=A1nchez?= Date: Thu, 2 Feb 2023 19:18:40 +0100 Subject: [PATCH] Add Sepolia network --- src/etherscan.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/etherscan.ts b/src/etherscan.ts index 2550683b..fe2cb026 100644 --- a/src/etherscan.ts +++ b/src/etherscan.ts @@ -229,6 +229,9 @@ export async function submitSources( case '43114': host = 'https://api.snowtrace.io'; break; + case '11155111': + host = 'https://api-sepolia.etherscan.io'; + break; default: return logError( `Network with chainId: ${chainId} not supported. You can specify the url manually via --api-url .`