Here are 20 random nodes to get you started:
80.218.18.18 |
85.194.204.62 |
76.103.140.186 |
31.40.53.200 |
92.44.61.31 |
104.244.195.62 |
121.135.161.15 |
78.130.248.5 |
73.108.122.19 |
100.6.78.69 |
193.35.1.30 |
98.110.150.246 |
66.147.239.190 |
121.129.109.65 |
52.119.120.131 |
96.74.100.1 |
75.52.82.170 |
71.182.167.26 |
92.59.251.85 |
203.51.9.158 |
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" }