Skip to content

Instantly share code, notes, and snippets.

@dvdbng
Created February 17, 2020 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvdbng/9a5dd993e14fbe42ca95e90f4807faca to your computer and use it in GitHub Desktop.
Save dvdbng/9a5dd993e14fbe42ca95e90f4807faca to your computer and use it in GitHub Desktop.
#!/bin/bash
# Usage: ./btc-balance address
satoshis="$(curl https://insight.bitpay.com/api/addr/"$1"/balance)"
btc="$(echo "$satoshis/100000000" | bc -l)"
echo $btc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment