Add signatures to the transaction and return the txHex with the signatures.
POST/wallet/tx-proposal/add-signatures
Add signatures to the transaction and return the txHex with the signatures.
Request
Header Parameters
x-wallet-id stringrequired
Defines the key of the wallet on which the request will be executed.
- application/json
Body
required
Transaction hex and signatures
Array [
]
txHex stringrequired
Transaction hex representation.
signatures
object[]
required
Signatures collected for the transaction.
index numberrequired
Input index this signature refers to.
data stringrequired
Hex representation of the input data to be added on the transaction.
Responses
- 200
Get transaction hex with input data.
- application/json
- Schema
- success
- no-wallet-id
- invalid-wallet-id
Schema
any
Success
{
"success": true,
"txHex": "0123abc..."
}
No wallet id parameter
{
"success": false,
"message": "Parameter 'wallet-id' is required."
}
Wallet id parameter is invalid
{
"success": false,
"message": "Invalid wallet-id parameter."
}
Loading...