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.

combine.json 607B

12345678910111213141516171819
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "combineParameters",
  4. "type": "object",
  5. "properties": {
  6. "signedTransactions": {
  7. "type": "array",
  8. "description": "An array of signed transactions (from the output of [sign](#sign)) to combine.",
  9. "items": {
  10. "type": "string",
  11. "pattern": "^[A-F0-9]+$",
  12. "description": "A single-signed transaction represented as an uppercase hexadecimal string (from the output of [sign](#sign))"
  13. },
  14. "minLength": 1
  15. }
  16. },
  17. "additionalProperties": false,
  18. "required": ["signedTransactions"]
  19. }