Created
January 5, 2019 06:04
-
-
Save lontivero/5b359605d4e70eae49723fbb2f113ccb to your computer and use it in GitHub Desktop.
Count Wasabi wallet coinjoins per day
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat wasabi.json | jq '[.address.transactions[] | {"txid":.txid, time:(.time | strftime("%Y-%m-%d"))}] | group_by(.time) | map({"date": .[0].time, "count": length})' | |
cat wasabi.json | jq -r '[.address.transactions[] | {"txid":.txid, time:(.time | strftime("%Y-%m-%d")) } ] | group_by(.time) | map([.[0].time, length])[] | @csv' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment