Created
February 23, 2021 06:54
-
-
Save rifkiamil/5a1121c2635450ca513724c995bfe811 to your computer and use it in GitHub Desktop.
Find Ethereum - Internal transactions with values - Matchs default view on Etherscan.io
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
## Find Ethereum - Internal transactions with values - Matchs default view on Etherscan.io | |
SELECT * | |
FROM `bigquery-public-data.crypto_ethereum.traces` | |
WHERE DATE(block_timestamp) = "2021-02-12" | |
and trace_address IS NOT NULL | |
and block_number = 11838934 | |
and value > 0 | |
ORDER BY transaction_index |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment