diff --git a/ethers-etherscan/src/lib.rs b/ethers-etherscan/src/lib.rs index 472b1e91..a1dde68c 100644 --- a/ethers-etherscan/src/lib.rs +++ b/ethers-etherscan/src/lib.rs @@ -231,7 +231,7 @@ impl ClientBuilder { let (etherscan_api_url, etherscan_url) = match chain { Chain::Mainnet => urls("https://api.etherscan.io/api", "https://etherscan.io"), - Chain::Ropsten | Chain::Kovan | Chain::Rinkeby | Chain::Goerli => { + Chain::Ropsten | Chain::Kovan | Chain::Rinkeby | Chain::Goerli | Chain::Sepolia => { let chain_name = chain.to_string().to_lowercase(); urls( format!("https://api-{}.etherscan.io/api", chain_name),