Skip to content

Commit 52cff61

Browse files
committed
add PGN and prepare for Arthera
1 parent 1a79f4e commit 52cff61

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

gnosis/eth/clients/blockscout_client.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ class BlockscoutClient:
5757
EthereumNetwork.SCROLL_SEPOLIA_TESTNET: "https://sepolia-blockscout.scroll.io/",
5858
EthereumNetwork.MANTLE: "https://explorer.mantle.xyz/graphiql",
5959
EthereumNetwork.MANTLE_TESTNET: "https://explorer.testnet.mantle.xyz/graphiql",
60+
EthereumNetwork.PGN_MAINNET: "https://explorer.publicgoods.network/graphiql",
61+
EthereumNetwork.PGN_TESTNET: "https://explorer.sepolia.publicgoods.network/graphiql",
62+
EthereumNetwork.ARTHERA_TESTNET: "https://explorer-test.arthera.net/graphiql",
6063
}
6164

6265
def __init__(self, network: EthereumNetwork):

gnosis/eth/ethereum_network.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -736,6 +736,9 @@ class EthereumNetwork(Enum):
736736
ZENIQ = 383414847825
737737
PDC_MAINNET = 666301171999
738738
MOLEREUM_NETWORK = 6022140761023
739+
PGN_MAINNET = 424
740+
PGN_TESTNET = 58008
741+
ARTHERA_TESTNET = 10243
739742

740743
@classmethod
741744
def _missing_(cls, value):

gnosis/safe/addresses.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,12 @@
595595
("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 2362236, "1.3.0+L2"),
596596
("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 2362238, "1.3.0"),
597597
],
598+
EthereumNetwork.PGN_MAINNET: [
599+
("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 344345, "1.3.0+L2"),
600+
],
601+
EthereumNetwork.PGN_TESTNET: [
602+
("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1774114, "1.3.0+L2"),
603+
],
598604
}
599605

600606
PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
@@ -990,4 +996,10 @@
990996
EthereumNetwork.RSK_TESTNET: [
991997
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 2362232), # v1.3.0
992998
],
999+
EthereumNetwork.PGN_MAINNET: [
1000+
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 344314), # v1.3.0
1001+
],
1002+
EthereumNetwork.PGN_TESTNET: [
1003+
("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1774097), # v1.3.0
1004+
],
9931005
}

0 commit comments

Comments
 (0)