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 528B

1234567891011121314151617
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "submitParameters",
  4. "type": "object",
  5. "properties": {
  6. "signedTransaction": {
  7. "$ref": "blob",
  8. "description": "A signed transaction as returned by [sign](#sign)."
  9. },
  10. "failHard": {
  11. "type": "boolean",
  12. "description": "If `true`, and the transaction fails locally, do not retry or relay the transaction to other servers. Defaults to `false`."
  13. }
  14. },
  15. "additionalProperties": false,
  16. "required": ["signedTransaction"]
  17. }