google bigquery如何查询以太坊ethereum数据 sql怎么写

Posted 软件工程小施同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了google bigquery如何查询以太坊ethereum数据 sql怎么写相关的知识,希望对你有一定的参考价值。

文档介绍

https://console.cloud.google.com/marketplace/details/ethereum/crypto-ethereum-blockchain?project=aqueous-tesla-294801

如查询

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

以上是关于google bigquery如何查询以太坊ethereum数据 sql怎么写的主要内容,如果未能解决你的问题,请参考以下文章

以太坊 Gray Glacier 硬分叉升级

以太坊 Gray Glacier 硬分叉升级

如何ETH以太坊智能合约做一个简单的DAPP

以太坊终将超越比特币?ETH未来走向如何?

似乎以太坊数据集不适用于某些令牌 [重复]

以太坊:如何将 ETH 交易自动拆分为 2 个其他交易