diff --git a/safe_eth/eth/clients/blockscout_client.py b/safe_eth/eth/clients/blockscout_client.py index 0cb5b458..bc13ca8e 100644 --- a/safe_eth/eth/clients/blockscout_client.py +++ b/safe_eth/eth/clients/blockscout_client.py @@ -132,6 +132,7 @@ class BlockscoutClient: EthereumNetwork.SKOPJE_TESTNET: "https://skopje-explorer.gptprotocol.io/api/v1/graphql", EthereumNetwork.GPT_MAINNET: "https://explorer.gptprotocol.io/api/v1/graphql", EthereumNetwork.BOB_SEPOLIA: "https://bob-sepolia.explorer.gobob.xyz/api/v1/graphql", + EthereumNetwork.SNAXCHAIN: "https://explorer.snaxchain.io/api/v1/graphql", } def __init__(self, network: EthereumNetwork): diff --git a/safe_eth/eth/ethereum_network.py b/safe_eth/eth/ethereum_network.py index 668e6b2b..47639fd4 100644 --- a/safe_eth/eth/ethereum_network.py +++ b/safe_eth/eth/ethereum_network.py @@ -664,6 +664,7 @@ class EthereumNetwork(Enum): FINDORA_TESTNET = 2153 FINDORA_FORGE = 2154 ANIMECHAIN_TESTNET = 2162 + SNAXCHAIN = 2192 MOONSAMA_NETWORK = 2199 ANTOFY_MAINNET = 2202 BITCOIN_EVM = 2203 diff --git a/safe_eth/safe/addresses.py b/safe_eth/safe/addresses.py index 73c8f4ac..e28298ba 100644 --- a/safe_eth/safe/addresses.py +++ b/safe_eth/safe/addresses.py @@ -1745,6 +1745,10 @@ ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 0, "1.3.0"), # v1.3.0 ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 0, "1.3.0+L2"), # v1.3.0+L2 ], + EthereumNetwork.SNAXCHAIN: [ + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 0, "1.3.0"), # v1.3.0 + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 0, "1.3.0+L2"), # v1.3.0+L2 + ], } PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = { @@ -2620,4 +2624,7 @@ EthereumNetwork.BOB_SEPOLIA: [ ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 1298122), # v1.3.0 ], + EthereumNetwork.SNAXCHAIN: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 378233), # v1.3.0 + ], }