Skip to content

Commit 8d87b3e

Browse files
chore: remove holesky (#1662)
Holesky network has been deprecated. Remove all references to Holesky in repo. --------- Co-authored-by: clandestine.eth <[email protected]>
1 parent ec8eac2 commit 8d87b3e

File tree

16 files changed

+21
-464
lines changed

16 files changed

+21
-464
lines changed

.devcontainer/devcontainer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"PRIVATE_KEY": "${localEnv:PRIVATE_KEY}",
2929
"PUBLIC_KEY": "${localEnv:PUBLIC_KEY}",
3030
"RPC_MAINNET": "${localEnv:RPC_MAINNET}",
31-
"RPC_HOLESKY": "${localEnv:RPC_HOLESKY}"
3231
},
3332
// Use 'forwardPorts' to make a list of ports inside the container available locally.
3433
// "forwardPorts": [],

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
RPC_MAINNET="https://eth.llamarpc.com"
2-
RPC_HOLESKY=""
2+
RPC_HOODI="https://ethereum-hoodi.gateway.tatum.io"
33
ETHERSCAN_API_KEY="API-KEY"

.github/workflows/foundry-post-merge.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
github.com:443
3939
release-assets.githubusercontent.com:443
4040
eth-mainnet.g.alchemy.com:443
41-
powerful-dimensional-season.ethereum-holesky.quiknode.pro:443
4241
4342
# Check out repository with all submodules for complete codebase access.
4443
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

.github/workflows/foundry.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
github.com:443
3636
release-assets.githubusercontent.com:443
3737
eth-mainnet.g.alchemy.com:443
38-
powerful-dimensional-season.ethereum-holesky.quiknode.pro:443
38+
fabled-wispy-ensemble.ethereum-hoodi.quiknode.pro:443
3939
objects.githubusercontent.com:443
4040
4141
# Check out repository with all submodules for complete codebase access.
@@ -84,7 +84,7 @@ jobs:
8484
env:
8585
FOUNDRY_PROFILE: ${{ matrix.suite == 'Fork' && 'forktest' || 'medium' }}
8686
RPC_MAINNET: ${{ secrets.RPC_MAINNET }}
87-
RPC_HOLESKY: ${{ secrets.RPC_HOLESKY }}
87+
RPC_HOODI: ${{ secrets.RPC_HOODI }}
8888

8989
# -----------------------------------------------------------------------
9090
# Forge Storage Diff

.github/workflows/validate-deployment-scripts.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: true
2020
matrix:
21-
env: [preprod, testnet, mainnet, testnet-sepolia, testnet-hoodi, testnet-base-sepolia, base]
21+
env: [mainnet, testnet-sepolia, testnet-hoodi, testnet-base-sepolia, base]
2222

2323
steps:
2424
- uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911
@@ -81,12 +81,10 @@ jobs:
8181
fi
8282
8383
# Set RPC URL based on environment
84-
if [ "${{ matrix.env }}" = "testnet" ] || [ "${{ matrix.env }}" = "preprod" ]; then
85-
RPC_URL="${{ secrets.RPC_HOLESKY }}"
84+
if [ "${{ matrix.env }}" = "testnet-hoodi" ]; then
85+
RPC_URL="${{ secrets.RPC_HOODI }}"
8686
elif [ "${{ matrix.env }}" = "testnet-sepolia" ]; then
8787
RPC_URL="${{ secrets.RPC_SEPOLIA }}"
88-
elif [ "${{ matrix.env }}" = "testnet-hoodi" ]; then
89-
RPC_URL="${{ secrets.RPC_HOODI }}"
9088
elif [ "${{ matrix.env }}" = "testnet-base-sepolia" ]; then
9189
RPC_URL="${{ secrets.RPC_BASE_SEPOLIA }}"
9290
elif [ "${{ matrix.env }}" = "mainnet" ]; then

MAINTENANCE.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -100,20 +100,6 @@ Regex rules can be changed by modifying `exempt-branches-regex` config in the [y
100100

101101
## Release Management
102102

103-
104-
### Environment Networks
105-
106-
Before diving into maintenance details, it's important to understand our environment network structure.
107-
108-
| Environment | Environment Network | Definition and Practices |
109-
|-------------|---------------------|--------------------------|
110-
| **mainnet** | mainnet-ethereum | - Production environment on Ethereum mainnet<br>- Single canonical mainnet instance in foreseeable future<br>- External facing with highest security requirements |
111-
| **testnet** | testnet-holesky<br>testnet-sepolia<br>testnet-hoodi | - Test environments on Ethereum testnets (holesky, sepolia, etc.)<br>- Multiple testnet environments may exist simultaneously<br>- External facing, long-lived environments for both internal and external developers<br>- Used for integration testing, AVS onboarding, and community engagement |
112-
| **preprod** | preprod-holesky<br>preprod-sepolia<br>preprod-hoodi | - Pre-production environments on Ethereum testnets<br>- Multiple preprod environments may exist simultaneously<br>- Internal facing for development team use<br>- Used for feature verification before promoting to testnet<br>- Provides safe environment for testing breaking changes |
113-
114-
For more details on our testing infrastructure strategy, see our blog post: [The Future of EigenLayer Testing: New & Improved Testnets & Tooling Coming Soon](https://www.blog.eigenlayer.xyz/the-future-of-eigenlayer-testing-new-and-improved-testnets-tooling-coming-soon/)
115-
116-
117103
### Release Tags and Semver
118104

119105
This section defines release tag semver where `<semver>` = `<major>.<minor>.<patch>`

README.md

Lines changed: 6 additions & 89 deletions
Large diffs are not rendered by default.

foundry.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,4 +175,3 @@
175175

176176
[rpc_endpoints]
177177
mainnet = "${RPC_MAINNET}"
178-
holesky = "${RPC_HOLESKY}"

script/configs/holesky.json

Lines changed: 0 additions & 124 deletions
This file was deleted.

script/configs/preprod.json

Lines changed: 0 additions & 126 deletions
This file was deleted.

0 commit comments

Comments
 (0)