Here are 20 random nodes to get you started:
80.92.231.4 |
71.47.234.109 |
85.207.37.6 |
68.114.230.76 |
85.217.206.125 |
173.88.209.103 |
77.51.188.201 |
174.49.77.26 |
51.222.207.136 |
24.138.154.75 |
38.253.45.94 |
24.156.43.113 |
114.230.221.6 |
114.230.221.32 |
83.87.73.91 |
185.150.237.6 |
114.230.221.91 |
84.112.232.209 |
114.230.221.60 |
109.173.26.145 |
To add 20 random nodes to your Chia client, run the following commands:
Linux Terminal:
curl https://ChiaNodes.com | grep -Eo '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | while read line; do timeout 2s chia peer full_node -a $line:8444 ;done
Windows Powershell:
Invoke-WebRequest -Uri 'https://ChiaNodes.com' | Select-String -Pattern '\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b' -AllMatches | %{ $_.Matches } | %{ $_.Value } | %{ Start-Sleep -Seconds 2; chia peer full_node -a $_":8444" }