Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add addresses 1.3.0 for chain EVERCLEAR_MAINNET #1374

Merged
merged 5 commits into from
Oct 9, 2024
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 @@ -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
],
}