From 4f45d0031dc38470e9583e12d89194f4765de2cd Mon Sep 17 00:00:00 2001 From: Nikita Zasimuk Date: Wed, 21 Feb 2024 22:53:17 +0700 Subject: [PATCH] feat: add blockscout client for Blast Sepolia --- gnosis/eth/clients/etherscan_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnosis/eth/clients/etherscan_client.py b/gnosis/eth/clients/etherscan_client.py index e56023899..65828825b 100644 --- a/gnosis/eth/clients/etherscan_client.py +++ b/gnosis/eth/clients/etherscan_client.py @@ -58,6 +58,7 @@ class EtherscanClient: EthereumNetwork.SCROLL: "https://scrollscan.com", EthereumNetwork.KROMA: "https://kromascan.com", EthereumNetwork.KROMA_SEPOLIA: "https://sepolia.kromascan.com", + EthereumNetwork.BLAST_SEPOLIA_TESTNET: "https://testnet.blastscan.io", } NETWORK_WITH_API_URL = { @@ -98,6 +99,7 @@ class EtherscanClient: EthereumNetwork.SCROLL: "https://api.scrollscan.com", EthereumNetwork.KROMA: "https://api.kromascan.com", EthereumNetwork.KROMA_SEPOLIA: "https://api-sepolia.kromascan.com", + EthereumNetwork.BLAST_SEPOLIA_TESTNET: "https://api.routescan.io/v2/network/testnet/evm/168587773/etherscan", } HTTP_HEADERS = { "User-Agent": "curl/7.77.0",