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.

sign.json 520B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "sign",
  4. "type": "object",
  5. "properties": {
  6. "signedTransaction": {
  7. "type": "string",
  8. "pattern": "^[A-F0-9]+$",
  9. "description": "The signed transaction represented as an uppercase hexadecimal string."
  10. },
  11. "id": {
  12. "$ref": "transactionHash",
  13. "description": "The [Transaction ID](#transaction-id) of the signed transaction."
  14. }
  15. },
  16. "required": ["signedTransaction", "id"],
  17. "additionalProperties": false
  18. }