You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

submit.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "submit",
  4. "type": "object",
  5. "properties": {
  6. "resultCode": {
  7. "type": "string",
  8. "description": "Deprecated: Use `engine_result` instead."
  9. },
  10. "resultMessage": {
  11. "type": "string",
  12. "description": "Deprecated: Use `engine_result_message` instead."
  13. },
  14. "engine_result": {
  15. "type": "string",
  16. "description": "Code indicating the preliminary result of the transaction, for example `tesSUCCESS`. [List of transaction responses](https://xrpl.org/transaction-results.html)"
  17. },
  18. "engine_result_code": {
  19. "type": "integer",
  20. "description": "Numeric code indicating the preliminary result of the transaction, directly correlated to `engine_result`"
  21. },
  22. "engine_result_message": {
  23. "type": "string",
  24. "description": "Human-readable explanation of the transaction's preliminary result."
  25. },
  26. "tx_blob": {
  27. "type": "string",
  28. "description": "The complete transaction in hex string format."
  29. },
  30. "tx_json": {
  31. "$ref": "tx-json",
  32. "description": "The complete transaction in JSON format."
  33. }
  34. },
  35. "required": ["resultCode", "resultMessage", "engine_result", "engine_result_code", "engine_result_message", "tx_blob", "tx_json"],
  36. "additionalProperties": false
  37. }