ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
19 lines (18 loc) • 520 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "sign",
"type": "object",
"properties": {
"signedTransaction": {
"type": "string",
"pattern": "^[A-F0-9]+$",
"description": "The signed transaction represented as an uppercase hexadecimal string."
},
"id": {
"$ref": "transactionHash",
"description": "The [Transaction ID](#transaction-id) of the signed transaction."
}
},
"required": ["signedTransaction", "id"],
"additionalProperties": false
}