From dcb50e1ceb8a99635a4351d875f11743d5273507 Mon Sep 17 00:00:00 2001 From: Sj-001 Date: Sun, 26 Mar 2023 17:34:43 +0530 Subject: [PATCH] Add Neon Devnet Support --- 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 ad2f85c4d..d6444fdaa 100644 --- a/gnosis/eth/clients/etherscan_client.py +++ b/gnosis/eth/clients/etherscan_client.py @@ -42,6 +42,7 @@ class EtherscanClient: EthereumNetwork.CRONOS_TESTNET: "https://testnet.cronoscan.com", EthereumNetwork.CELO_MAINNET: "https://celoscan.io", EthereumNetwork.BASE_GOERLI_TESTNET: "https://goerli.basescan.org", + EthereumNetwork.NEON_EVM_DEVNET: "https://neonscan.org" } NETWORK_WITH_API_URL = { @@ -64,6 +65,7 @@ class EtherscanClient: EthereumNetwork.CRONOS_TESTNET: "https://api-testnet.cronoscan.com", EthereumNetwork.CELO_MAINNET: "https://api.celoscan.io", EthereumNetwork.BASE_GOERLI_TESTNET: "https://api-goerli.basescan.org", + EthereumNetwork.NEON_EVM_DEVNET: "https://devnet-api.neonscan.org" } HTTP_HEADERS = { "User-Agent": "curl/7.77.0",