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.

generate-x-address.json 475B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "generateXAddress",
  4. "type": "object",
  5. "properties": {
  6. "xAddress": {
  7. "$ref": "xAddress",
  8. "description": "A randomly generated XRP Ledger address in X-address format."
  9. },
  10. "secret": {
  11. "type": "string",
  12. "format": "secret",
  13. "description": "The secret corresponding to the address."
  14. }
  15. },
  16. "required": ["xAddress", "secret"],
  17. "additionalProperties": false
  18. }