From 75225bfdf621a0bfa77dd3e4a035e5caf2361b19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 10:52:55 +0100 Subject: [PATCH] Add addresses 1.4.1 for chain PLUME_DEVNET (#1456) * Add new chain 98864 * Add new explorer client URL: https://test-explorer.plumenetwork.xyz/api/v1/graphql * Add new master copy address 0x41675C099F32341bf84BFc5382aF534df5C7461a * Add new master copy address 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 * Add new proxy address 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 * Apply linter fixes --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- safe_eth/eth/clients/blockscout_client.py | 1 + safe_eth/eth/ethereum_network.py | 1 + safe_eth/safe/addresses.py | 11 +++++++++++ 3 files changed, 13 insertions(+) diff --git a/safe_eth/eth/clients/blockscout_client.py b/safe_eth/eth/clients/blockscout_client.py index eee58927..f7783148 100644 --- a/safe_eth/eth/clients/blockscout_client.py +++ b/safe_eth/eth/clients/blockscout_client.py @@ -145,6 +145,7 @@ class BlockscoutClient: EthereumNetwork.INK_SEPOLIA: "https://explorer-sepolia.inkonchain.com/api/v1/graphql", EthereumNetwork.STORY_ODYSSEY_TESTNET: "https://odyssey-testnet-explorer.storyscan.xyz/api/v1/graphql", EthereumNetwork.SWELL_NETWORK_TESTNET: "https://swell-testnet-explorer.alt.technology/api/v1/graphql", + EthereumNetwork.PLUME_DEVNET: "https://test-explorer.plumenetwork.xyz/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 b86dc36b..092f45cf 100644 --- a/safe_eth/eth/ethereum_network.py +++ b/safe_eth/eth/ethereum_network.py @@ -1418,6 +1418,7 @@ class EthereumNetwork(Enum): SLINGSHOT_TESTNET = 97435 GREEN_CHAIN_TESTNET = 97531 OPTIMUSZ7_TESTNET = 97970 + PLUME_DEVNET = 98864 EBI_CHAIN = 98881 ELIBERTY_TESTNET = 99099 UB_SMART_CHAIN_TESTNET = 99998 diff --git a/safe_eth/safe/addresses.py b/safe_eth/safe/addresses.py index 612909f7..e199001d 100644 --- a/safe_eth/safe/addresses.py +++ b/safe_eth/safe/addresses.py @@ -1967,6 +1967,14 @@ ("0x41675C099F32341bf84BFc5382aF534df5C7461a", 13895, "1.4.1"), # v1.4.1 ("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 13894, "1.4.1+L2"), # v1.4.1+L2 ], + EthereumNetwork.PLUME_DEVNET: [ + ("0x41675C099F32341bf84BFc5382aF534df5C7461a", 5167643, "1.4.1"), # v1.4.1 + ( + "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + 5167648, + "1.4.1+L2", + ), # v1.4.1+L2 + ], } PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = { @@ -2955,4 +2963,7 @@ EthereumNetwork.NAHMII_3_MAINNET: [ ("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 13887), # v1.4.1 ], + EthereumNetwork.PLUME_DEVNET: [ + ("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 5167616), # v1.4.1 + ], }