From 4ec84e50d90389d66ae3fe97df62f0e520242928 Mon Sep 17 00:00:00 2001 From: tom Date: Tue, 14 Jul 2026 00:35:41 +0800 Subject: [PATCH] Add Blockscout explorer URLs for Humanity Protocol chains Registers the Alchemy-hosted Blockscout instances for Humanity Protocol mainnet (6985385) and testnet (7080969) so contract ABIs can be fetched automatically (verified: /api/v2/smart-contracts returns verified ABIs on both). Based on v7.22.0 (the version pinned by safe-decoder-service). Co-Authored-By: Claude Fable 5 --- safe_eth/eth/clients/blockscout_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/safe_eth/eth/clients/blockscout_client.py b/safe_eth/eth/clients/blockscout_client.py index f1e458a10..d46195da8 100644 --- a/safe_eth/eth/clients/blockscout_client.py +++ b/safe_eth/eth/clients/blockscout_client.py @@ -50,6 +50,8 @@ class BlockscoutClient: EthereumNetwork.HAQQ_NETWORK: "https://explorer.haqq.network/api/v2/", EthereumNetwork.HASHKEY_CHAIN: "https://explorer.hsk.xyz/api/v2/", EthereumNetwork.HASHKEY_CHAIN_TESTNET: "https://hashkeychain-testnet-explorer.alt.technology/api/v2/", + EthereumNetwork.HUMANITY_PROTOCOL: "https://humanity-mainnet.explorer.alchemy.com/api/v2/", + EthereumNetwork.HUMANITY_PROTOCOL_TESTNET: "https://humanity-testnet.explorer.alchemy.com/api/v2/", EthereumNetwork.IOTA_EVM: "https://iota-evm.blockscout.com/api/v2/", EthereumNetwork.INK: "https://explorer.inkonchain.com/api/v2/", EthereumNetwork.INK_SEPOLIA: "https://explorer-sepolia.inkonchain.com/api/v2/",