BigQuery 上比特币交易的最大时间戳?

max timestamp of bitcoin transaction on BigQuery?

当我在 Google BigQuery table 比特币交易中查询最大时间戳时,我得到以下信息:

select timestamp_millis(max(timestamp)) from `bigquery-public-data.bitcoin_blockchain.transactions` 

+-------+-------------------------+
| Line  | f0_                     | 
+-------+-------------------------+
|     1 | 2018-09-10 13:23:25 UTC |
+-------+-------------------------+

但是,table 详细信息描述了 table 的最后一次更新是 2018 年 12 月 8 日 19:51:43(我写这篇文章时 2 分钟前)。

我知道 table 应该每 10 分钟更新一次,那么为什么我找不到时间戳接近上次更新的交易?

this GCP 文章所述,比特币 public 数据集已移至新位置,同时增加了对其他几种加密货币的支持。

运行 新数据集上的等效查询:

SELECT max(block_timestamp) 
FROM 
`bigquery-public-data.crypto_bitcoin.transactions` 

Returns: 2019-04-29 23:59:19 UTC

现在支持的加密货币是:

  • 比特币
  • 比特币现金
  • 破折号
  • 狗狗币
  • 以太坊
  • 以太坊经典
  • 莱特币
  • Zcash