文档介绍
如查询
What are the 10 most popular Ethereum collectibles (ERC721 contracts), by number of transactions?
SELECT contracts.address, COUNT(1) AS tx_count
FROM `bigquery-public-data.crypto_ethereum.contracts` AS contracts
JOIN `bigquery-public-data.crypto_ethereum.transactions` AS transactions ON (transactions.to_address = contracts.address)
WHERE contracts.is_erc721 = TRUE
GROUP BY contracts.address
ORDER BY tx_count DESC
LIMIT 10
其它查询方式
https://ethereum-etl.readthedocs.io/en/latest/commands/
kaggle数据格式
Ethereum Blockchain | KaggleComplete live historical Ethereum blockchain data (BigQuery)https://www.kaggle.com/datasets/bigquery/ethereum-blockchain?utm_medium=partner&utm_source=cloud&utm_campaign=big+data+blog+ethereum&select=contracts
版权归原作者 软件工程小施同学 所有, 如有侵权,请联系我们删除。