Skip to content

Commit

Permalink
Fix network name
Browse files Browse the repository at this point in the history
  • Loading branch information
falvaradorodriguez committed Jun 12, 2024
1 parent 55bd415 commit 116571b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
4 changes: 2 additions & 2 deletions gnosis/eth/clients/etherscan_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,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",
EthereumNetwork.FRAXTAL: "https://fraxscan.com",
EthereumNetwork.BASE: "https://api.basescan.org/",
EthereumNetwork.BLAST: "https://blastscan.io",
EthereumNetwork.TAIKO_MAINNET: "https://taikoscan.io",
Expand Down Expand Up @@ -108,7 +108,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",
EthereumNetwork.FRAXTAL: "https://api.fraxscan.com",
EthereumNetwork.BASE: "https://api.basescan.org",
EthereumNetwork.BLAST: "https://api.blastscan.io",
EthereumNetwork.TAIKO_MAINNET: "https://api.taikoscan.io",
Expand Down
2 changes: 1 addition & 1 deletion gnosis/eth/ethereum_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class EthereumNetwork(Enum):
ENERGY_WEB_CHAIN = 246
OASYS_MAINNET = 248
FANTOM_OPERA = 250
FRAXTAL_MAINNET = 252
FRAXTAL = 252
KROMA = 255
HUOBI_ECO_CHAIN_TESTNET = 256
SETHEUM = 258
Expand Down
22 changes: 9 additions & 13 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@
"1.4.1+L2",
), # v1.4.1+L2
],
EthereumNetwork.FRAXTAL_MAINNET: [
EthereumNetwork.FRAXTAL: [
(
"0x3E5c63644E683549055b9Be8653de26E0B4CD36E",
1675112,
Expand All @@ -1091,6 +1091,12 @@
0,
"1.3.0",
), # safe singleton address
("0x41675C099F32341bf84BFc5382aF534df5C7461a", 3452673, "1.4.1"), # v1.4.1
(
"0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
5195803,
"1.4.1+L2",
), # v1.4.1+L2
],
EthereumNetwork.AURORIA_TESTNET: [
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 186765, "1.4.1+L2"), # v1.4.1+L2
Expand Down Expand Up @@ -1409,14 +1415,6 @@
"1.4.1+L2",
), # v1.4.1+L2
],
EthereumNetwork.FRAXTAL: [
("0x41675C099F32341bf84BFc5382aF534df5C7461a", 3452673, "1.4.1"), # v1.4.1
(
"0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
5195803,
"1.4.1+L2",
), # v1.4.1+L2
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -2006,7 +2004,7 @@
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 77), # v1.3.0
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 2172952), # v1.4.1
],
EthereumNetwork.FRAXTAL_MAINNET: [
EthereumNetwork.FRAXTAL: [
(
"0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC",
0,
Expand All @@ -2015,6 +2013,7 @@
"0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2",
1675084,
), # v1.3.0 default singleton address
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 3452668), # v1.4.1
],
EthereumNetwork.AURORIA_TESTNET: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 186758), # v1.4.1
Expand Down Expand Up @@ -2161,7 +2160,4 @@
EthereumNetwork.LINEA_SEPOLIA: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 1305441), # v1.4.1
],
EthereumNetwork.FRAXTAL: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 3452668), # v1.4.1
],
}

0 comments on commit 116571b

Please sign in to comment.