Skip to content

Commit

Permalink
Add addresses 1.3.0 for chain SNAXCHAIN (#1336)
Browse files Browse the repository at this point in the history
* Add new chain 2192

* Add new explorer client URL: https://explorer.snaxchain.io/api/v1/graphql

* Add new proxy address 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC

* Add master copies addresses with genesis block

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Felipe Alvarado <[email protected]>
  • Loading branch information
github-actions[bot] and falvaradorodriguez authored Sep 17, 2024
1 parent 13319c2 commit bea5211
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions safe_eth/eth/clients/blockscout_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ class BlockscoutClient:
EthereumNetwork.SKOPJE_TESTNET: "https://skopje-explorer.gptprotocol.io/api/v1/graphql",
EthereumNetwork.GPT_MAINNET: "https://explorer.gptprotocol.io/api/v1/graphql",
EthereumNetwork.BOB_SEPOLIA: "https://bob-sepolia.explorer.gobob.xyz/api/v1/graphql",
EthereumNetwork.SNAXCHAIN: "https://explorer.snaxchain.io/api/v1/graphql",
}

def __init__(self, network: EthereumNetwork):
Expand Down
1 change: 1 addition & 0 deletions safe_eth/eth/ethereum_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,7 @@ class EthereumNetwork(Enum):
FINDORA_TESTNET = 2153
FINDORA_FORGE = 2154
ANIMECHAIN_TESTNET = 2162
SNAXCHAIN = 2192
MOONSAMA_NETWORK = 2199
ANTOFY_MAINNET = 2202
BITCOIN_EVM = 2203
Expand Down
7 changes: 7 additions & 0 deletions safe_eth/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1745,6 +1745,10 @@
("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 0, "1.3.0"), # v1.3.0
("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 0, "1.3.0+L2"), # v1.3.0+L2
],
EthereumNetwork.SNAXCHAIN: [
("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 0, "1.3.0"), # v1.3.0
("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 0, "1.3.0+L2"), # v1.3.0+L2
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -2620,4 +2624,7 @@
EthereumNetwork.BOB_SEPOLIA: [
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 1298122), # v1.3.0
],
EthereumNetwork.SNAXCHAIN: [
("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 378233), # v1.3.0
],
}

0 comments on commit bea5211

Please sign in to comment.