Here are 20 random nodes to get you started:
198.54.106.236 |
89.19.178.231 |
184.185.184.32 |
66.96.210.106 |
66.147.239.139 |
46.32.44.245 |
100.12.72.178 |
115.69.7.160 |
188.242.150.185 |
94.212.130.104 |
94.155.134.31 |
114.230.221.70 |
184.144.161.129 |
60.246.217.33 |
209.147.111.33 |
93.190.63.132 |
23.106.235.136 |
164.92.87.209 |
74.62.81.99 |
82.67.33.36 |
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" }