Returns a transaction hex with input data calculated from the arguments
POST/wallet/p2sh/tx-proposal/sign
Returns a transaction hex with input data calculated from the arguments
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
txHex stringrequired
Transaction hex representation.
signatures array
Signatures collected for 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...