Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dvdbng
Created February 17, 2020 22:53
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/d5a48888ca0aacbece3a063c6387055d to your computer and use it in GitHub Desktop.
Save dvdbng/d5a48888ca0aacbece3a063c6387055d to your computer and use it in GitHub Desktop.
#!/bin/bash
# Usage: ./eth-balance address
wei="$(curl -s https://api.blockcypher.com/v1/eth/main/addrs/"$1" | jq .balance)"
eth="$(echo "$wei / (10 ^ 18)" | bc -l)"
echo $eth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment