有没有办法检查区块链哈希中的确认数量?并检查交易何时完全确认?

Is there a way to check the number of confirmations in a Blockchain hash? And check when the transaction is fully confirmed?

我一直在寻找一种方法来获取某个区块链哈希中的确认数,但一无所获。

我基本上是想找到一种方法在上述交易变成 4/4 时进行打印。

谁能给我一个入门指南?谢谢!

编辑:

我已经尝试过使用请求 https://blockchain.info/rawtx/$tx_hash 之类的方法,但我仍然找不到获取确认数量的方法并等待它达到 4。

有一种方法可以通过使用 getrawtransaction rpc 方法并将详细标志设置为 true 来获得交易确认。 json 输出的一部分如下所示:

  "blockhash" : "hex",               (string) the block hash
  "confirmations" : n,               (numeric) The confirmations
  "blocktime" : xxx,                 (numeric) The block time expressed in UNIX epoch time
  "time" : n                         (numeric) Same as "blocktime"

如何使用它的完整文档是 here