diff --git a/gnosis/eth/clients/blockscout_client.py b/gnosis/eth/clients/blockscout_client.py index 52d131f8e..79d6ca419 100644 --- a/gnosis/eth/clients/blockscout_client.py +++ b/gnosis/eth/clients/blockscout_client.py @@ -98,6 +98,7 @@ class BlockscoutClient: EthereumNetwork.AURORIA_TESTNET: "https://auroria.explorer.stratisevm.com/graphiql", EthereumNetwork.STRATIS_MAINNET: "https://explorer.stratisevm.com/graphiql", EthereumNetwork.SHIMMEREVM: "https://explorer.evm.shimmer.network/graphiql", + EthereumNetwork.IOTA_EVM: "https://iota-evm.blockscout.com/graphiql", } def __init__(self, network: EthereumNetwork): diff --git a/gnosis/eth/ethereum_network.py b/gnosis/eth/ethereum_network.py index 5d68a20df..b4c29ba6f 100644 --- a/gnosis/eth/ethereum_network.py +++ b/gnosis/eth/ethereum_network.py @@ -730,6 +730,7 @@ class EthereumNetwork(Enum): STORAGECHAIN_TESTNET = 8727 ALPH_NETWORK = 8738 TMY_CHAIN = 8768 + IOTA_EVM = 8822 MARO_BLOCKCHAIN_MAINNET = 8848 UNIQUE = 8880 QUARTZ_BY_UNIQUE = 8881 diff --git a/gnosis/safe/addresses.py b/gnosis/safe/addresses.py index d1a324ac1..79eb11544 100644 --- a/gnosis/safe/addresses.py +++ b/gnosis/safe/addresses.py @@ -908,6 +908,9 @@ EthereumNetwork.SHIMMEREVM: [ ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 155333, "1.3.0"), # v1.3.0 ], + EthereumNetwork.IOTA_EVM: [ + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 13225, "1.3.0"), # v1.3.0 + ], } PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = { @@ -1476,4 +1479,7 @@ EthereumNetwork.SHIMMEREVM: [ ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 155079), # v1.3.0 ], + EthereumNetwork.IOTA_EVM: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 13212), # v1.3.0 + ], }