Skip to content

Commit

Permalink
Add Reya Network support (#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElvisKrop authored Mar 26, 2024
1 parent b3b61ce commit 20c3b26
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions gnosis/eth/clients/blockscout_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ class BlockscoutClient:
EthereumNetwork.TAIKO_KATLA_L2: "https://explorer.katla.taiko.xyz/graphiql",
EthereumNetwork.SEI_DEVNET: "https://seitrace.com/graphiql",
EthereumNetwork.LISK_SEPOLIA_TESTNET: "https://sepolia-blockscout.lisk.com/graphiql",
EthereumNetwork.REYA_NETWORK: "https://explorer.reya.network/graphiql",
}

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 @@ -450,6 +450,7 @@ class EthereumNetwork(Enum):
TBSI_MAINNET = 1707
TBSI_TESTNET = 1708
PALETTE_CHAIN_MAINNET = 1718
REYA_NETWORK = 1729
PARTYCHAIN = 1773
GAUSS_MAINNET = 1777
KERLEANO = 1804
Expand Down
7 changes: 7 additions & 0 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,10 @@
("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1087958, "1.3.0+L2"),
("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 1087964, "1.3.0"),
],
EthereumNetwork.REYA_NETWORK: [
("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 84, "1.3.0+L2"),
("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 85, "1.3.0"),
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -1419,4 +1423,7 @@
EthereumNetwork.BLAST_SEPOLIA_TESTNET: [
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1087898), # v1.3.0
],
EthereumNetwork.REYA_NETWORK: [
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 77), # v1.3.0
],
}

0 comments on commit 20c3b26

Please sign in to comment.