ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
18 lines (17 loc) • 528 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "submitParameters",
"type": "object",
"properties": {
"signedTransaction": {
"$ref": "blob",
"description": "A signed transaction as returned by [sign](#sign)."
},
"failHard": {
"type": "boolean",
"description": "If `true`, and the transaction fails locally, do not retry or relay the transaction to other servers. Defaults to `false`."
}
},
"additionalProperties": false,
"required": ["signedTransaction"]
}