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.

verify-payment-channel-claim.json 679B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "verifyPaymentChannelClaimParameters",
  4. "type": "object",
  5. "properties": {
  6. "channel": {
  7. "$ref": "hash256",
  8. "description": "256-bit hexadecimal channel identifier."
  9. },
  10. "amount": {
  11. "$ref": "value",
  12. "description": "Amount of XRP authorized by the claim."
  13. },
  14. "signature": {
  15. "$ref": "signature",
  16. "description": "Signature of this claim."
  17. },
  18. "publicKey": {
  19. "$ref": "publicKey",
  20. "description": "Public key of the channel's sender"
  21. }
  22. },
  23. "additionalProperties": false,
  24. "required": ["channel", "amount", "signature", "publicKey"]
  25. }