Transactions

你如何將交易推送到比特幣現金網路?

  • November 11, 2020

有很多 API 可以推送到比特幣網路,比如 Smartbit 的:

<https://www.smartbit.com.au/api>

然而,我為比特幣現金找到的唯一 API 是 Blocktrail 的:

<https://www.blocktrail.com/api/docs/lang/nodejs#payments_overview>

而且他們似乎沒有基本的推送端點。

我在這裡列出了很多比特幣現金區塊瀏覽器,其中大多數是 Insight 區塊瀏覽器,所以我認為他們應該有Insight API。我檢查了所有這些,帶有 API 的是:

MCCCS 的回答中列出的所有網站都不再執行。

相反,您可以使用<https://rest.bitcoin.com/#/rawtransactions/sendRawTransactionSingle>並在按下“嘗試”按鈕後粘貼您的原始交易。

或者,您可以使用此命令:curl -X GET "https://rest.bitcoin.com/v2/rawtransactions/sendRawTransaction/{your_raw_tx_here}" -H "accept: */*",替換{your_raw_tx_here}為您的原始交易。

更新:

您現在可以使用這個很棒的工具:https ://bch.info/en/tools/broadcast來廣播比特幣現金交易。

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