Here are 20 random nodes to get you started:
185.8.27.244 |
85.206.78.126 |
73.238.157.55 |
103.150.114.202 |
108.210.48.199 |
86.156.101.4 |
94.180.117.247 |
109.199.163.33 |
104.167.243.14 |
222.173.213.178 |
61.220.216.43 |
221.158.218.175 |
37.110.134.157 |
37.54.208.242 |
47.146.21.81 |
24.152.157.124 |
114.230.221.96 |
24.18.90.95 |
98.103.207.162 |
188.210.221.230 |
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" }