Skip to content

Commit

Permalink
Add 1.3.0 contracts on Fraxtal Mainnet (#829)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElvisKrop authored Mar 27, 2024
1 parent 20c3b26 commit b0ef4b9
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gnosis/eth/clients/etherscan_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ class EtherscanClient:
EthereumNetwork.KROMA: "https://kromascan.com",
EthereumNetwork.KROMA_SEPOLIA: "https://sepolia.kromascan.com",
EthereumNetwork.BLAST_SEPOLIA_TESTNET: "https://sepolia.blastscan.io",
EthereumNetwork.FRAXTAL_MAINNET: "https://fraxscan.com",
}

NETWORK_WITH_API_URL = {
Expand Down Expand Up @@ -100,6 +101,7 @@ class EtherscanClient:
EthereumNetwork.KROMA: "https://api.kromascan.com",
EthereumNetwork.KROMA_SEPOLIA: "https://api-sepolia.kromascan.com",
EthereumNetwork.BLAST_SEPOLIA_TESTNET: "https://api-sepolia.blastscan.io",
EthereumNetwork.FRAXTAL_MAINNET: "https://api.fraxscan.com",
}
HTTP_HEADERS = {
"User-Agent": "curl/7.77.0",
Expand Down
32 changes: 32 additions & 0 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,28 @@
("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 84, "1.3.0+L2"),
("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 85, "1.3.0"),
],
EthereumNetwork.FRAXTAL_MAINNET: [
(
"0x3E5c63644E683549055b9Be8653de26E0B4CD36E",
1675112,
"1.3.0+L2",
), # default singleton address
(
"0xfb1bffC9d739B8D520DaF37dF666da4C687191EA",
0,
"1.3.0+L2",
), # safe singleton address
(
"0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552",
2353663,
"1.3.0",
), # default singleton address
(
"0x69f4D1788e39c87893C980c06EdF4b7f686e2938",
0,
"1.3.0",
), # safe singleton address
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -1426,4 +1448,14 @@
EthereumNetwork.REYA_NETWORK: [
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 77), # v1.3.0
],
EthereumNetwork.FRAXTAL_MAINNET: [
(
"0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC",
0,
), # v1.3.0 safe singleton address
(
"0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2",
1675084,
), # v1.3.0 default singleton address
],
}

0 comments on commit b0ef4b9

Please sign in to comment.