/collateral/v1/settlement/tx/broadcast
Broadcast a signed transaction
application/json
Request Body required
transactionId string required
The unique identifier of the transaction defined by Sinohope
signatures object
The final signature(s), it should be a map of sinature(s), for non-UTXO transaction, the key should be sig
, for UTXO transaction, the key(s) should be a vinId
, which should be correlated to the one in the response of /collateral/v1/settlement/tx/build
. Each signature is concatenated directly by the r, s, v value, as "r||s||v", and formatted in hexadecimal.
property name* string
Responses
- 200
Successful response
application/json
Schema
Example (from schema)
Schema
status boolean required
Status of the broadcast, False/True (failed/success)
failedReason string nullable
The failed reason if the status is False
{
"status": true,
"failedReason": "string"
}
Loading...