From bb63cf1ac342182860ca3eb530cda4c3fe35267b Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Mon, 27 Feb 2023 21:05:32 +0100 Subject: [PATCH] feat(etherscan): use binaries.soliditylang.org (#2198) --- ethers-etherscan/src/utils.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ethers-etherscan/src/utils.rs b/ethers-etherscan/src/utils.rs index 5549b1a96..a587fcd70 100644 --- a/ethers-etherscan/src/utils.rs +++ b/ethers-etherscan/src/utils.rs @@ -3,8 +3,7 @@ use ethers_core::types::Address; use semver::Version; use serde::{Deserialize, Deserializer}; -static SOLC_BIN_LIST_URL: &str = - "https://raw.githubusercontent.com/ethereum/solc-bin/gh-pages/bin/list.txt"; +static SOLC_BIN_LIST_URL: &str = "https://binaries.soliditylang.org/bin/list.txt"; /// Given a Solc [Version], lookup the build metadata and return the full SemVer. /// e.g. `0.8.13` -> `0.8.13+commit.abaa5c0e`