Transactions

如何使用 bitcoind 獲取未使用的地址?

  • March 8, 2018

我正在使用比特幣。我已經通過了 json-rpc api。

listunspent [minconf=1] [maxconf=999999]    version 0.7 Returns array of unspent transaction inputs in the wallet.

listunspent 方法給出錢包中地址的未使用交易輸入。

我想獲得一個特定比特幣地址的未使用交易輸入,該地址目前不屬於我們的錢包。誰能告訴我如何得到它?

您應該按以下方式發送您的地址:

bitcoin-cli listunspent 0 9999999 '["1PGFqEzfmQch1gKD3ra4k18PNj3tTUUSqg","1LtvqCaApEdUGFkpKMM4MstjcaL4dKg8SP"]'

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