Created
May 3, 2025 22:28
-
-
Save ottosch/b9448a57daf0e07f1d934ab8f395e0a6 to your computer and use it in GitHub Desktop.
Draws ASCII art from tx 5c4f060e6166a530d891cafd0e9df42441d29b1ed9cff71a1652201b8d50bd72
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
bitcoin-cli getrawtransaction 5c4f060e6166a530d891cafd0e9df42441d29b1ed9cff71a1652201b8d50bd72 2 | jq -r '.vout[].scriptPubKey.hex | sub("^.{6}"; "")' | while read -r output; do echo "$output" | xxd -p -r; echo; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment