Transactions

使用insight-api比特幣現金在特定(tx、塊、時間或其他)之後獲取交易

  • May 31, 2018

現在我可以使用這個對 api 的請求按地址(比特幣現金)獲取所有交易:

<https://test-bch-insight.bitpay.com/api/txs/?address=qptaxxrqcz7qunclcvlcza9an6qlqqhzlya2d4e4fn>

但我只想在某個時刻(tx,block,time ..)之後獲得交易。你能幫我解決這個問題嗎?

我們可以作弊並使用多個地址的查詢,其中可以在特定範圍的交易中進行搜尋,並指定參數 from 和 to。

<https://github.com/bitpay/insight-api#transactions-for-multiple-addresses>

<https://test-bch-insight.bitpay.com/api/addrs/qptaxxrqcz7qunclcvlcza9an6qlqqhzlya2d4e4fn/txs?from=2>

如果我想要最後一筆交易:

<https://test-bch-insight.bitpay.com/api/addrs/qptaxxrqcz7qunclcvlcza9an6qlqqhzlya2d4e4fn/txs?to=1>

引用自:https://bitcoin.stackexchange.com/questions/75739