Skip to content

Commit

Permalink
Add addresses 1.3.0 for chain EVERCLEAR_MAINNET (#1374)
Browse files Browse the repository at this point in the history
* Add new chain 25327

* Add new explorer client URL: https://scan.everclear.org/api/v1/graphql

* Add new master copy address 0x69f4D1788e39c87893C980c06EdF4b7f686e2938

* Add new master copy address 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA

* Add new proxy address 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Oct 9, 2024
1 parent 64098e3 commit c10aa5f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
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 @@ -137,6 +137,7 @@ class BlockscoutClient:
EthereumNetwork.Q_TESTNET: "https://explorer.qtestnet.org/api/v1/graphql",
EthereumNetwork.VANA_MOKSHA_TESTNET: "https://api.moksha.vanascan.io/api/v1/graphql",
EthereumNetwork.CONNEXT_SEPOLIA: "https://scan.testnet.everclear.org/api/v1/graphql",
EthereumNetwork.EVERCLEAR_MAINNET: "https://scan.everclear.org/api/v1/graphql",
}

def __init__(self, network: EthereumNetwork):
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 @@ -1178,6 +1178,7 @@ class EthereumNetwork(Enum):
WEBCHAIN = 24484
MINTME_COM_COIN = 24734
LIQUIDLAYER_MAINNET = 25186
EVERCLEAR_MAINNET = 25327
ALVEYCHAIN_TESTNET = 25839
HAMMER_CHAIN_MAINNET = 25888
BITKUB_CHAIN_TESTNET = 25925
Expand Down
7 changes: 7 additions & 0 deletions safe_eth/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1857,6 +1857,10 @@
("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 6526, "1.3.0"), # v1.3.0
("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 6525, "1.3.0+L2"), # v1.3.0+L2
],
EthereumNetwork.EVERCLEAR_MAINNET: [
("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 13152, "1.3.0"), # v1.3.0
("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 13151, "1.3.0+L2"), # v1.3.0+L2
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -2797,4 +2801,7 @@
EthereumNetwork.CONNEXT_SEPOLIA: [
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 6518), # v1.3.0
],
EthereumNetwork.EVERCLEAR_MAINNET: [
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 13144), # v1.3.0
],
}

0 comments on commit c10aa5f

Please sign in to comment.