比特幣(Bitcoin) RPC Rawtransactions API中sendrawtransaction的用法及代碼示例。
用法:
sendrawtransaction "hexstring" ( allowhighfees )
將原始事務(序列化的hex-encoded)提交到本地節點和網絡。
另請參見createrawtransaction和signrawtransactionwithkey調用。
參數1 - hexstring
類型:字符串,必填
原始交易的十六進製字符串
參數2 - allowhighfees
類型:布爾值,可選,默認= false
允許高額費用
返回結果
名稱 |
類型 |
描述 |
---|---|---|
hex |
string |
十六進製的交易哈希 |
示例
創建交易:
bitcoin-cli createrawtransaction "[{\"txid\" : \"mytxid\",\"vout\":0}]" "{\"myaddress\":0.01}"
簽署交易,然後返回十六進製:
bitcoin-cli signrawtransactionwithwallet "myhex"
發送交易(簽名的十六進製):
bitcoin-cli sendrawtransaction "signedhex"
作為JSON-RPC調用:
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "sendrawtransaction", "params": ["signedhex"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
相關用法
- Bitcoin analyzepsbt用法及代碼示例
- Bitcoin combinepsbt用法及代碼示例
- Bitcoin combinerawtransaction用法及代碼示例
- Bitcoin converttopsbt用法及代碼示例
- Bitcoin createpsbt用法及代碼示例
- Bitcoin createrawtransaction用法及代碼示例
- Bitcoin decodepsbt用法及代碼示例
- Bitcoin decoderawtransaction用法及代碼示例
- Bitcoin decodescript用法及代碼示例
- Bitcoin finalizepsbt用法及代碼示例
- Bitcoin fundrawtransaction用法及代碼示例
- Bitcoin getrawtransaction用法及代碼示例
- Bitcoin joinpsbts用法及代碼示例
- Bitcoin signrawtransactionwithkey用法及代碼示例
- Bitcoin testmempoolaccept用法及代碼示例
- Bitcoin utxoupdatepsbt用法及代碼示例
注:本文由純淨天空篩選整理自bitcoin.org大神的英文原創作品 Bitcoin sendrawtransaction。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。