Transaction Builder API
Sign transaction
Attach a witness to a transaction without submitting it
POST
Attaches the provided witness to a transaction without submitting it. Use this endpoint when you want signed transaction CBOR back and plan to submit it separately.
Submit the signed transaction later via
Possible errors:
/submit, or use /sign-and-submit to do both in one call.
Auth: Public
Request body
Hex-encoded unsigned transaction CBOR.
Hex-encoded transaction witness-set CBOR.
Bech32 change address.
Response
Signed transaction CBOR, ready to submit.
Error response
Machine-readable error code.
Human-readable error message.
400 INVALID_PARAMS— one or more required fields are missing or have the wrong type.500 SERVER_ERROR— the transaction CBOR or witness CBOR could not be processed.