Skip to content

Commit e4d65da

Browse files
authored
Remove Staked bootstrap nodes from embedded peer lists (#3877)
## Summary - Remove 3 Staked bootstrap nodes from mainnet peer list (5 → 2 peers) - Remove 1 Staked bootstrap node from testnet peer list (2 → 1 peer) - Update `peers_test.go` to match new testnet peer list Part of the staged bootstrap provider removal (P2P → Staked → Boar). Only Boar nodes remain as active bootstrap providers. ## Verification - Both Boar mainnet nodes verified healthy (DNS resolves, TCP port open) - Boar testnet node DNS resolves but port 6001 timed out — accepted risk, testnet is lower stakes - `TestResolvePeers` passes with updated expectations
2 parents 7825c53 + 8c2bcc4 commit e4d65da

File tree

4 files changed

+1
-6
lines changed

4 files changed

+1
-6
lines changed

.github/workflows/client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ jobs:
245245
- uses: securego/gosec@master
246246
with:
247247
args: |
248-
-exclude=G115
248+
-exclude=G115,G118
249249
-exclude-dir=pkg/chain/ethereum/beacon/gen
250250
-exclude-dir=pkg/chain/ethereum/ecdsa/gen
251251
-exclude-dir=pkg/chain/ethereum/threshold/gen

config/_peers/mainnet

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
/dns4/bst-a01.tbtc.boar.network/tcp/5001/ipfs/16Uiu2HAmAmCrLuUmnBgpavU8y8JBUN6jWAQ93JwydZy3ABRyY6wU
22
/dns4/bst-b01.tbtc.boar.network/tcp/5001/ipfs/16Uiu2HAm4w5HdJQxBnadGRepaiGfWVvtMzhdAGZVcrf9i71mv69V
3-
/dns4/keep-validator-0.prod-eks-eu-west-1.staked.cloud/tcp/3919/ipfs/16Uiu2HAm6Fs6Fn71n7PqRmpHMbfMkZUCGYhW5RL81MSMg57AANkZ
4-
/dns4/keep-validator-1.prod-eks-ap-northeast-2.staked.cloud/tcp/3919/ipfs/16Uiu2HAm5UzZb1TTYBjb2959h4z4VHzjt585SQqZnJPBrDnJuob7
5-
/dns4/keep-validator-2.prod-eks-eu-north-1.staked.cloud/tcp/3919/ipfs/16Uiu2HAmJvbYNhzY6a8kiG2zzrqXGnYWax7CQTbiMHoAvY4qLvg7

config/_peers/testnet

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
/dns4/bst-a01.test.keep.boar.network/tcp/6001/ipfs/16Uiu2HAmSLDSahiKyTbCNNu8wJmZAsiKF7wuYJ8mogY8ZuAG1jhu
2-
/dns4/keep-validator-0.eks-ap-northeast-2-secure.staging.staked.cloud/tcp/3919/ipfs/16Uiu2HAm77eSvRq5ioD4J8VFPkq3bJHBEHkssCuiFkgAoABwjo2S

config/peers_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ func TestResolvePeers(t *testing.T) {
2525
network: network.Testnet,
2626
expectedPeers: []string{
2727
"/dns4/bst-a01.test.keep.boar.network/tcp/6001/ipfs/16Uiu2HAmSLDSahiKyTbCNNu8wJmZAsiKF7wuYJ8mogY8ZuAG1jhu",
28-
"/dns4/keep-validator-0.eks-ap-northeast-2-secure.staging.staked.cloud/tcp/3919/ipfs/16Uiu2HAm77eSvRq5ioD4J8VFPkq3bJHBEHkssCuiFkgAoABwjo2S",
2928
},
3029
},
3130
"developer network": {

0 commit comments

Comments
 (0)