Skip to content

Commit

Permalink
Add Lisk Sepolia Testnet support (#793)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElvisKrop authored Mar 1, 2024
1 parent f404558 commit a63b9b1
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 @@ -92,6 +92,7 @@ class BlockscoutClient:
EthereumNetwork.UNREAL_TESTNET: "https://unreal.blockscout.com/graphiql",
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",
}

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 @@ -613,6 +613,7 @@ class EthereumNetwork(Enum):
TIPBOXCOIN_TESTNET = 4141
PHI_NETWORK_V1 = 4181
LUKSO_TESTNET = 4201
LISK_SEPOLIA_TESTNET = 4202
NEXI_MAINNET = 4242
NEXI_V2_MAINNET = 4243
BOBAFUJI_TESTNET = 4328
Expand Down
7 changes: 7 additions & 0 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -851,6 +851,10 @@
("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 4552451, "1.3.0+L2"),
("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 4552489, "1.3.0"),
],
EthereumNetwork.LISK_SEPOLIA_TESTNET: [
("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 657757, "1.3.0+L2"),
("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 657761, "1.3.0"),
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -1381,4 +1385,7 @@
EthereumNetwork.SEI_DEVNET: [
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 4552166), # v1.3.0
],
EthereumNetwork.LISK_SEPOLIA_TESTNET: [
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 657735), # v1.3.0
],
}

0 comments on commit a63b9b1

Please sign in to comment.