diff --git a/gnosis/eth/clients/blockscout_client.py b/gnosis/eth/clients/blockscout_client.py index 66dbaf87b..6389d8a7c 100644 --- a/gnosis/eth/clients/blockscout_client.py +++ b/gnosis/eth/clients/blockscout_client.py @@ -94,6 +94,7 @@ class BlockscoutClient: EthereumNetwork.TAIKO_KATLA_L2: "https://explorer.katla.taiko.xyz/graphiql", EthereumNetwork.SEI_DEVNET: "https://seitrace.com/graphiql", EthereumNetwork.LISK_SEPOLIA_TESTNET: "https://sepolia-blockscout.lisk.com/graphiql", + EthereumNetwork.REYA_NETWORK: "https://explorer.reya.network/graphiql", } def __init__(self, network: EthereumNetwork): diff --git a/gnosis/eth/ethereum_network.py b/gnosis/eth/ethereum_network.py index 02f61c53c..d68cf5c1c 100644 --- a/gnosis/eth/ethereum_network.py +++ b/gnosis/eth/ethereum_network.py @@ -450,6 +450,7 @@ class EthereumNetwork(Enum): TBSI_MAINNET = 1707 TBSI_TESTNET = 1708 PALETTE_CHAIN_MAINNET = 1718 + REYA_NETWORK = 1729 PARTYCHAIN = 1773 GAUSS_MAINNET = 1777 KERLEANO = 1804 diff --git a/gnosis/safe/addresses.py b/gnosis/safe/addresses.py index 3c6177760..95bc9a1fe 100644 --- a/gnosis/safe/addresses.py +++ b/gnosis/safe/addresses.py @@ -873,6 +873,10 @@ ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1087958, "1.3.0+L2"), ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 1087964, "1.3.0"), ], + EthereumNetwork.REYA_NETWORK: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 84, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 85, "1.3.0"), + ], } PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = { @@ -1419,4 +1423,7 @@ EthereumNetwork.BLAST_SEPOLIA_TESTNET: [ ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1087898), # v1.3.0 ], + EthereumNetwork.REYA_NETWORK: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 77), # v1.3.0 + ], }