Created
February 11, 2021 13:24
-
-
Save rifkiamil/a766c93750170b5f22431e014038d4e8 to your computer and use it in GitHub Desktop.
SQL Bitcoin Part 1 - Find dogecoin 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 di.transaction_hash, | |
di.block_number, | |
di.block_timestamp, | |
di.addresses, | |
di.value | |
FROM `bigquery-public-data.crypto_dogecoin.inputs` as di | |
WHERE di.transaction_hash = 'c2941b764e5436aa4bb39eaa1360cf7156f80d831141c0d352e950d7f2427325' | |
LIMIT 1000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment