Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: block rpc-sepolia.rockx.com as it appears to be down #19

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading