Skip to content

Commit

Permalink
fix: block rpc-sepolia.rockx.com as it appears to be down (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeshultz committed Sep 5, 2024
1 parent caef825 commit a078471
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 3 additions & 5 deletions evmchains/chains.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file is auto-generated by scripts/update.py
# 2024-07-03 20:26:21.491217
# 2024-09-05 18:21:01.387852
# Do not edit this file directly.
from typing import Any, Dict

Expand Down Expand Up @@ -528,13 +528,11 @@
"rpc": [
"https://rpc.sepolia.org",
"https://rpc2.sepolia.org",
"https://rpc-sepolia.rockx.com",
"https://rpc.sepolia.ethpandaops.io",
"https://sepolia.infura.io/v3/${INFURA_API_KEY}",
"https://sepolia.gateway.tenderly.co",
"https://ethereum-sepolia-rpc.publicnode.com",
"https://sepolia.drpc.org",
"https://rpc-sepolia.rockx.com",
],
"shortName": "sep",
"slip44": 1,
Expand Down Expand Up @@ -892,7 +890,7 @@
"icon": "polygon",
"infoURL": "https://polygon.technology/",
"name": "Polygon Mainnet",
"nativeCurrency": {"decimals": 18, "name": "MATIC", "symbol": "MATIC"},
"nativeCurrency": {"decimals": 18, "name": "POL", "symbol": "POL"},
"networkId": 137,
"rpc": [
"https://polygon-rpc.com/",
Expand All @@ -905,7 +903,7 @@
"https://polygon.gateway.tenderly.co",
"https://polygon.drpc.org",
],
"shortName": "matic",
"shortName": "pol",
"slip44": 966,
},
"mumbai": {
Expand Down
4 changes: 3 additions & 1 deletion scripts/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
CHAIN_CONST_FILE = Path(__file__).parent.parent / "evmchains" / "chains.py"
BLACKLIST_STRINGS = [
# 2024-01-19: Node appears to be broken. Returning errors on simple requests.
"rpc.blocknative.com"
"rpc.blocknative.com",
# 2024-09-05: Node returning 504s for days.
"rpc-sepolia.rockx.com",
]

# Mapping of Ape ecosystem:network to chain IDs. These are the chains that we will be fetching.
Expand Down

0 comments on commit a078471

Please sign in to comment.