From 5819c9ba2439f2f52b27f93e208b25172c081171 Mon Sep 17 00:00:00 2001 From: Mike Shultz Date: Thu, 30 May 2024 14:30:28 -0600 Subject: [PATCH] feat: adds Ethereum Holesky testnet --- evmchains/chains.py | 45 ++++++++++++++++++++++++++++++++++++++++++++- scripts/update.py | 1 + 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/evmchains/chains.py b/evmchains/chains.py index b7fa8ed..f9d01ae 100644 --- a/evmchains/chains.py +++ b/evmchains/chains.py @@ -1,5 +1,5 @@ # This file is auto-generated by scripts/update.py -# 2024-05-17 16:06:29.822636 +# 2024-05-30 20:30:00.884580 # Do not edit this file directly. from typing import Any, Dict @@ -452,6 +452,49 @@ "shortName": "gor", "slip44": 1, }, + "holesky": { + "chain": "ETH", + "chainId": 17000, + "ens": None, + "explorers": [ + { + "icon": "ethereum", + "name": "Holesky Explorer", + "standard": "EIP3091", + "url": "https://holesky.beaconcha.in", + }, + { + "icon": "ethereum", + "name": "otterscan-holesky", + "standard": "EIP3091", + "url": "https://holesky.otterscan.io", + }, + { + "icon": "ethereum", + "name": "Holesky Etherscan", + "standard": "EIP3091", + "url": "https://holesky.etherscan.io", + }, + ], + "faucets": [ + "https://faucet.holesky.ethpandaops.io", + "https://holesky-faucet.pk910.de", + ], + "features": None, + "icon": "ethereum", + "infoURL": "https://holesky.ethpandaops.io", + "name": "Holesky", + "nativeCurrency": {"decimals": 18, "name": "Testnet ETH", "symbol": "ETH"}, + "networkId": 17000, + "rpc": [ + "https://rpc.holesky.ethpandaops.io", + "https://ethereum-holesky-rpc.publicnode.com", + "https://holesky.drpc.org", + "https://rpc-holesky.rockx.com", + ], + "shortName": "holesky", + "slip44": 1, + }, "sepolia": { "chain": "ETH", "chainId": 11155111, diff --git a/scripts/update.py b/scripts/update.py index dc2bc77..4b7bdeb 100644 --- a/scripts/update.py +++ b/scripts/update.py @@ -46,6 +46,7 @@ "ethereum": { "mainnet": 1, "goerli": 5, + "holesky": 17000, "sepolia": 11155111, }, "fantom": {