diff --git a/gnosis/eth/clients/blockscout_client.py b/gnosis/eth/clients/blockscout_client.py index 78360b428..b5d02912e 100644 --- a/gnosis/eth/clients/blockscout_client.py +++ b/gnosis/eth/clients/blockscout_client.py @@ -96,6 +96,7 @@ class BlockscoutClient: EthereumNetwork.LISK_SEPOLIA_TESTNET: "https://sepolia-blockscout.lisk.com/graphiql", EthereumNetwork.REYA_NETWORK: "https://explorer.reya.network/graphiql", EthereumNetwork.AURORIA_TESTNET: "https://auroria.explorer.stratisevm.com/graphiql", + EthereumNetwork.STRATIS_MAINNET: "https://explorer.stratisevm.com/graphiql", } def __init__(self, network: EthereumNetwork): diff --git a/gnosis/eth/ethereum_network.py b/gnosis/eth/ethereum_network.py index f11b80470..5d68a20df 100644 --- a/gnosis/eth/ethereum_network.py +++ b/gnosis/eth/ethereum_network.py @@ -1013,6 +1013,7 @@ class EthereumNetwork(Enum): DEPRECATED_CHI = 100100 SOVERUN_TESTNET = 101010 CRYSTALEUM = 103090 + STRATIS_MAINNET = 105105 BROCHAIN_MAINNET = 108801 QUARKCHAIN_DEVNET_ROOT = 110000 QUARKCHAIN_DEVNET_SHARD_0 = 110001 diff --git a/gnosis/safe/addresses.py b/gnosis/safe/addresses.py index 062fc4132..b98ca6693 100644 --- a/gnosis/safe/addresses.py +++ b/gnosis/safe/addresses.py @@ -902,6 +902,9 @@ EthereumNetwork.AURORIA_TESTNET: [ ("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 186765, "1.4.1+L2"), # v1.4.1+L2 ], + EthereumNetwork.STRATIS_MAINNET: [ + ("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 106947, "1.4.1+L2"), # v1.4.1+L2 + ], } PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = { @@ -1464,4 +1467,7 @@ EthereumNetwork.AURORIA_TESTNET: [ ("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 186758), # v1.4.1 ], + EthereumNetwork.STRATIS_MAINNET: [ + ("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 106940), # v1.4.1 + ], }