google bigquery如何查询以太坊ethereum数据 sql怎么写
Posted 软件工程小施同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了google bigquery如何查询以太坊ethereum数据 sql怎么写相关的知识,希望对你有一定的参考价值。
文档介绍
如查询
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数据格式
以上是关于google bigquery如何查询以太坊ethereum数据 sql怎么写的主要内容,如果未能解决你的问题,请参考以下文章