Skip to content

Instantly share code, notes, and snippets.

@gray
Last active August 29, 2015 14:09
Show Gist options
  • Save gray/e8f4210faaecd9c1bf49 to your computer and use it in GitHub Desktop.
Save gray/e8f4210faaecd9c1bf49 to your computer and use it in GitHub Desktop.
List bitcoin addresses with their balances
bitcoin-cli listunspent 0 \
| jq -r 'group_by(.address) | map({
address: .[0].address,
amount: map(0, select(.spendable == true).amount) | add
}) | .[] | .address + ": " + (.amount | @text)' \
| awk '{printf "%s %.8f\n", $1, $2}' \
| sort -n -r -k 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment