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-payment-channel-claim.json 581B

123456789101112131415161718192021
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "signPaymentChannelClaimParameters",
  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. "privateKey": {
  15. "$ref": "publicKey",
  16. "description": "The private key to sign the payment channel claim."
  17. }
  18. },
  19. "additionalProperties": false,
  20. "required": ["channel", "amount", "privateKey"]
  21. }