Advertisement
actual-batman

Fetch list of active .onion bitcoin nodes

Oct 5th, 2016
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. #!/bin/bash
  2. # Command to get a list of active bitcoin .onion addresses from bitnodes.21.co (now bitnodes.earn.com)
  3.  
  4. curl -sL https://bitnodes.earn.com/api/v1/snapshots/latest/ | jq '.nodes' | jq 'keys[]' -Mr | grep 'onion' | sort -Ru
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement