Open PaulNaylor opened 3 years ago
Hi, thank you very much for your help! I tried your script but it does not work. I'd like to suggest a quick fix :)
curl https://chia.keva.app/ | Select-String -Pattern '\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b' -AllMatches | % { $_.Matches } | % { $_.Value } | ForEach-Object { Start-Sleep -s 5; chia show -a $_":8444" }
This is great, thanks.
"chia show -a" is deprecated.
Use ".\chia.exe peer full_node -a" instead :-)
Just wanted to let you know I appreciate the work you've done and I made the auto loader for Windows Power shell:
curl https://chia.keva.app/ | Select-String -Pattern '\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b' -AllMatches | % { $_.Matches } | % { $_.Value } | ForEach-Object { Start-Sleep -s 5; chia show -a $_ + ":8444" }
you may want to add it to the Unix one you have on your chia.keva.app page. Thanks :) Paul.