From ed4694123b396968f826a343aed4c489e6a2aa37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:24:15 +0000 Subject: [PATCH 1/4] Add new chain 2192 --- safe_eth/eth/ethereum_network.py | 1 + 1 file changed, 1 insertion(+) 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 From a71316e1b431d66bea4829894ba6fb8fb72adac8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:24:16 +0000 Subject: [PATCH 2/4] Add new explorer client URL: https://explorer.snaxchain.io/api/v1/graphql --- safe_eth/eth/clients/blockscout_client.py | 1 + 1 file changed, 1 insertion(+) 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): From b2f17d4176542ff83e3ec54b5c0383633f384288 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:24:18 +0000 Subject: [PATCH 3/4] Add new proxy address 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC --- safe_eth/safe/addresses.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/safe_eth/safe/addresses.py b/safe_eth/safe/addresses.py index 73c8f4ac..36524f86 100644 --- a/safe_eth/safe/addresses.py +++ b/safe_eth/safe/addresses.py @@ -2620,4 +2620,7 @@ EthereumNetwork.BOB_SEPOLIA: [ ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 1298122), # v1.3.0 ], + EthereumNetwork.SNAXCHAIN: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 378233), # v1.3.0 + ], } From 731aa339a19d7e5311c741eb4ed2204fa40d9c85 Mon Sep 17 00:00:00 2001 From: Felipe Alvarado Date: Tue, 17 Sep 2024 13:27:17 +0200 Subject: [PATCH 4/4] Add master copies addresses with genesis block --- safe_eth/safe/addresses.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/safe_eth/safe/addresses.py b/safe_eth/safe/addresses.py index 36524f86..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]]] = {