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 OPEN_CAMPUS_CODEX #1183

Merged
merged 5 commits into from
Jun 26, 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 gnosis/eth/clients/blockscout_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ class BlockscoutClient:
EthereumNetwork.RE_AL: "https://explorer.re.al/api/v1/graphql",
EthereumNetwork.UNREAL: "https://unreal.blockscout.com/api/v1/graphql",
EthereumNetwork.LISK: "https://blockscout.lisk.com/api/v1/graphql",
EthereumNetwork.OPEN_CAMPUS_CODEX: "https://opencampus-codex.blockscout.com/api/v1/graphql",
}

def __init__(self, network: EthereumNetwork):
Expand Down
1 change: 1 addition & 0 deletions gnosis/eth/ethereum_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1123,6 +1123,7 @@ class EthereumNetwork(Enum):
HYPRA_MAINNET = 622277
BEAR_NETWORK_CHAIN_MAINNET = 641230
ALL_MAINNET = 651940
OPEN_CAMPUS_CODEX = 656476
VISION_VPIONEER_TEST_CHAIN = 666666
HELA_OFFICIAL_RUNTIME_TESTNET = 666888
SEI_DEVNET = 713715
Expand Down
7 changes: 7 additions & 0 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1543,6 +1543,10 @@
"1.3.0+L2",
), # v1.3.0+L2
],
EthereumNetwork.OPEN_CAMPUS_CODEX: [
("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 466, "1.3.0"), # v1.3.0
("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 465, "1.3.0+L2"), # v1.3.0+L2
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -2317,4 +2321,7 @@
EthereumNetwork.ZIRCUIT_TESTNET: [
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 9199668), # v1.3.0
],
EthereumNetwork.OPEN_CAMPUS_CODEX: [
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 458), # v1.3.0
],
}
Loading