Here are 20 random nodes to get you started:
107.184.248.96 |
178.205.102.24 |
188.235.1.138 |
78.43.40.178 |
186.138.192.206 |
154.47.25.135 |
189.70.236.9 |
114.216.230.123 |
114.230.221.35 |
114.230.221.42 |
5.173.159.5 |
193.33.171.161 |
109.160.111.78 |
76.255.13.92 |
84.64.106.133 |
154.42.3.201 |
85.122.226.145 |
89.115.222.109 |
5.15.38.2 |
118.248.74.35 |
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" }