Addresses

乙太坊經典的唯一地址總數

  • January 24, 2020

我需要找到一個 API,給出乙太坊經典區塊鏈上使用的唯一地址的總數。

例如,以下 API 為乙太坊提供了它:https://etherscan.io/chart/address

ETC有類似的API嗎?

很難說出Etherscan.io在該圖表上的確切數量。我試圖通過Google BigQuery重現它,但沒有得到相同的結果。這是我嘗試過的:

  1. Google 記錄的所有地址餘額:
SELECT COUNT(*)
FROM `bigquery-public-data.crypto_ethereum.balances`;

給我104,951,247乙太坊和73,653,935乙太坊經典。

  1. 所有地址的交易,或某種內部交易曾經發送到或從:
SELECT count(*)
FROM (
 SELECT `from_address`
 FROM `bigquery-public-data.crypto_ethereum.transactions`
 UNION DISTINCT 
 SELECT  `to_address`
 FROM `bigquery-public-data.crypto_ethereum.transactions`
 UNION DISTINCT 
 SELECT  `from_address`
 FROM `bigquery-public-data.crypto_ethereum.traces`
 UNION DISTINCT 
 SELECT  `to_address`
 FROM `bigquery-public-data.crypto_ethereum.traces`
)

給我105,040,917乙太坊和73,693,901乙太坊經典。

您可能會使用上面的查詢,並且可能會發現 Etherscan.io 如何計算地址。

引用自:https://ethereum.stackexchange.com/questions/79120