Last active
February 11, 2021 13:22
-
-
Save rifkiamil/8756f79deb43c906fe919f0ff22c91eb to your computer and use it in GitHub Desktop.
SQL Bitcoin Part 1 - Find bitcoin transaction
This file contains 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
SELECT bi.transaction_hash, | |
bi.block_number, | |
bi.block_timestamp, | |
bi.addresses, | |
bi.value | |
FROM `bigquery-public-data.crypto_bitcoin.inputs` as bi | |
WHERE bi.transaction_hash = 'f4184fc596403b9d638783cf57adfe4c75c605f6356fbc91338530e9831e9e16' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment