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.4.1 for chain RE_AL #1094

Merged
merged 5 commits into from
Jun 10, 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 @@ -114,6 +114,7 @@ class BlockscoutClient:
EthereumNetwork.GARNET_HOLESKY: "https://api.explorer.garnet.qry.live/api/v1/graphql",
EthereumNetwork.TAIKO_HEKLA_L2: "https://blockscoutapi.hekla.taiko.xyz/graphiql",
EthereumNetwork.ASTAR_ZKEVM: "https://astar-zkevm.explorer.startale.com/api/v1/graphql",
EthereumNetwork.RE_AL: "https://explorer.re.al/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 @@ -1038,6 +1038,7 @@ class EthereumNetwork(Enum):
QUARKCHAIN_DEVNET_SHARD_7 = 110008
SIBERIUM_TEST_NETWORK = 111000
SIBERIUM_NETWORK = 111111
RE_AL = 111188
METACHAIN_ONE_MAINNET = 112358
ADIL_DEVNET = 123456
ETHERLINK_TESTNET = 128123
Expand Down
7 changes: 7 additions & 0 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1261,6 +1261,10 @@
("0x41675C099F32341bf84BFc5382aF534df5C7461a", 100429, "1.4.1"), # v1.4.1
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 100427, "1.4.1+L2"), # v1.4.1+L2
],
EthereumNetwork.RE_AL: [
("0x41675C099F32341bf84BFc5382aF534df5C7461a", 81988, "1.4.1"), # v1.4.1
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 81987, "1.4.1+L2"), # v1.4.1+L2
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -1970,4 +1974,7 @@
EthereumNetwork.HOLESKY: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 100413), # v1.4.1
],
EthereumNetwork.RE_AL: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 81980), # v1.4.1
],
}
Loading