Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions safe_eth/eth/clients/blockscout_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ class BlockscoutClient:
EthereumNetwork.MORPH_HOODI: "https://explorer-api-hoodi.morphl2.io/api/v2/",
EthereumNetwork.DOGEOS_CHIKYŪ_TESTNET: "https://blockscout.testnet.dogeos.com/api/v2/",
EthereumNetwork.ALPEN_TESTNET_II: "https://explorer.pectra-testnet.alpenlabs.io/api/v2/",
EthereumNetwork.TAIKO_HOODI: "https://blockscoutapi.hoodi.taiko.xyz/api/v2/",
}

def __init__(
Expand Down
1 change: 1 addition & 0 deletions safe_eth/eth/ethereum_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1765,6 +1765,7 @@ class EthereumNetwork(Enum):
TAIKO_JOLNIR_L2 = 167007
TAIKO_KATLA_L2 = 167008
TAIKO_HEKLA_L2 = 167009
TAIKO_HOODI = 167013
ZCHAINS = 168168
FAIR_TESTNET = 171000
WADZCHAIN_MAINNET = 171717
Expand Down
11 changes: 11 additions & 0 deletions safe_eth/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -3438,6 +3438,14 @@
"1.3.0+L2",
), # v1.3.0+L2
],
EthereumNetwork.TAIKO_HOODI: [
("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 3635058, "1.3.0"), # v1.3.0
(
"0xfb1bffC9d739B8D520DaF37dF666da4C687191EA",
3635054,
"1.3.0+L2",
), # v1.3.0+L2
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -4891,6 +4899,9 @@
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 2585410), # v1.3.0
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1876066), # v1.3.0
],
EthereumNetwork.TAIKO_HOODI: [
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 3635029), # v1.3.0
],
}


Expand Down