From 8700b2a06552e8df13d3fca84904b0780bc0fb68 Mon Sep 17 00:00:00 2001 From: nick8319 Date: Mon, 16 Oct 2023 15:44:15 +0200 Subject: [PATCH] fix: update blockscout urls to graphiql --- gnosis/eth/clients/blockscout_client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnosis/eth/clients/blockscout_client.py b/gnosis/eth/clients/blockscout_client.py index 18e0ee38c..16d1367aa 100644 --- a/gnosis/eth/clients/blockscout_client.py +++ b/gnosis/eth/clients/blockscout_client.py @@ -54,11 +54,11 @@ class BlockscoutClient: EthereumNetwork.CROSSBELL: "https://scan.crossbell.io/graphiql", EthereumNetwork.ETHEREUM_CLASSIC_MAINNET: "https://blockscout.com/etc/mainnet/graphiql", EthereumNetwork.ETHEREUM_CLASSIC_TESTNET_MORDOR: "https://blockscout.com/etc/mordor/graphiql", - EthereumNetwork.SCROLL_SEPOLIA_TESTNET: "https://sepolia-blockscout.scroll.io/", + EthereumNetwork.SCROLL_SEPOLIA_TESTNET: "https://sepolia-blockscout.scroll.io/graphiql", EthereumNetwork.MANTLE: "https://explorer.mantle.xyz/graphiql", EthereumNetwork.MANTLE_TESTNET: "https://explorer.testnet.mantle.xyz/graphiql", - EthereumNetwork.ZETACHAIN_ATHENS_TESTNET: "https://zetachain-athens-3.blockscout.com/", - EthereumNetwork.SCROLL: "https://blockscout.scroll.io/", + EthereumNetwork.ZETACHAIN_ATHENS_TESTNET: "https://zetachain-athens-3.blockscout.com/graphiql", + EthereumNetwork.SCROLL: "https://blockscout.scroll.io/graphiql", } def __init__(self, network: EthereumNetwork):