Here are 20 random nodes to get you started:
| 93.89.104.240 |
| 203.123.113.77 |
| 209.53.41.210 |
| 114.230.221.84 |
| 92.176.72.149 |
| 114.230.221.60 |
| 80.80.154.82 |
| 220.118.2.84 |
| 77.103.192.177 |
| 154.51.122.135 |
| 88.152.250.119 |
| 78.130.248.5 |
| 185.190.166.84 |
| 70.181.63.51 |
| 37.194.86.2 |
| 108.26.228.59 |
| 89.20.251.21 |
| 82.16.7.148 |
| 95.79.32.52 |
| 89.133.2.173 |
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" }