Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

payment-channel-fund.json 787B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "paymentChannelFund",
  4. "link": "payment-channel-fund",
  5. "type": "object",
  6. "properties": {
  7. "amount": {
  8. "$ref": "value",
  9. "description": "Amount of XRP to fund the channel with."
  10. },
  11. "channel": {
  12. "$ref": "hash256",
  13. "description": "256-bit hexadecimal channel identifier."
  14. },
  15. "expiration": {
  16. "type": "string",
  17. "format": "date-time",
  18. "description": "New expiration for this channel. (This does not change the cancelAfter expiration, if the channel has one.) Cannot move the expiration sooner than settleDelay seconds from time of the request."
  19. },
  20. "memos": {"$ref": "memos"}
  21. },
  22. "required": ["amount", "channel"],
  23. "additionalProperties": false
  24. }