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.

settings-plus-memos.json 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "settingsPlusMemos",
  4. "type": "object",
  5. "properties": {
  6. "defaultRipple": {
  7. "type": "boolean",
  8. "description": "Enable [rippling](https://xrpl.org/rippling.html) on this account’s trust lines by default. Currency issuers should enable this setting; most others should not."
  9. },
  10. "depositAuth": {
  11. "type": "boolean",
  12. "description": "Enable [Deposit Authorization](https://xrpl.org/depositauth.html) on this account. If set, transactions cannot send value of any kind to this account unless the sender of those transactions is the account itself. (Requires the [DepositAuth amendment](https://xrpl.org/known-amendments.html#depositauth))"
  13. },
  14. "disableMasterKey": {
  15. "type": "boolean",
  16. "description": "Disallows use of the master key to sign transactions for this account. To disable the master key, you must authorize the transaction by signing it with the master key pair. You cannot use a regular key pair or a multi-signature. You can re-enable the master key pair using a regular key pair or multi-signature. See [AccountSet](https://xrpl.org/accountset.html)."
  17. },
  18. "disallowIncomingXRP": {
  19. "type": "boolean",
  20. "description": "Indicates that client applications should not send XRP to this account. Not enforced by rippled."
  21. },
  22. "domain": {
  23. "type": "string",
  24. "description": "The domain that owns this account, as a hexadecimal string representing the ASCII for the domain in lowercase."
  25. },
  26. "emailHash": {
  27. "description": "Hash of an email address to be used for generating an avatar image. Conventionally, clients use Gravatar to display this image. Use `null` to clear.",
  28. "oneOf": [
  29. {"type": "null"},
  30. {"$ref": "hash128"}
  31. ]
  32. },
  33. "walletLocator": {
  34. "description": "Transaction hash or any other 64 character hexadecimal string, that may or may not represent the result of a hash operation. Use `null` to clear.",
  35. "oneOf": [
  36. {"type": "null"},
  37. {"$ref": "hash256"}
  38. ]
  39. },
  40. "enableTransactionIDTracking": {
  41. "type": "boolean",
  42. "description": "Track the ID of this account’s most recent transaction."
  43. },
  44. "globalFreeze": {
  45. "type": "boolean",
  46. "description": "Freeze all assets issued by this account."
  47. },
  48. "memos": {"$ref": "memos"},
  49. "messageKey": {
  50. "type": "string",
  51. "description": "Public key for sending encrypted messages to this account. Conventionally, it should be a secp256k1 key, the same encryption that is used by the rest of Ripple."
  52. },
  53. "noFreeze": {
  54. "type": "boolean",
  55. "description": "Permanently give up the ability to freeze individual trust lines. This flag can never be disabled after being enabled."
  56. },
  57. "passwordSpent": {
  58. "type": "boolean",
  59. "description": "Indicates that the account has used its free SetRegularKey transaction."
  60. },
  61. "regularKey": {
  62. "oneOf": [
  63. {"$ref": "address"},
  64. {"type": "null"}
  65. ],
  66. "description": "The public key of a new keypair, to use as the regular key to this account, as a base-58-encoded string in the same format as an account address. Use `null` to remove the regular key."
  67. },
  68. "requireAuthorization": {
  69. "type": "boolean",
  70. "description": "If set, this account must individually give other users permission to hold this account’s issued tokens."
  71. },
  72. "requireDestinationTag": {
  73. "type": "boolean",
  74. "description": "Requires incoming payments to specify a destination tag."
  75. },
  76. "signers": {
  77. "type": "object",
  78. "description": "Settings that determine what sets of accounts can be used to sign a transaction on behalf of this account using multisigning.",
  79. "properties": {
  80. "threshold": {
  81. "$ref": "uint32",
  82. "description": "A target number for the signer weights. A multi-signature from this list is valid only if the sum weights of the signatures provided is equal or greater than this value. To delete the signers setting, use the value `0`."
  83. },
  84. "weights": {
  85. "type": "array",
  86. "description": "Weights of signatures for each signer.",
  87. "items": {
  88. "type": "object",
  89. "description": "An association of an address and a weight.",
  90. "properties": {
  91. "address": {"$ref": "address"},
  92. "weight": {
  93. "$ref": "uint32",
  94. "description": "The weight that the signature of this account counts as towards the threshold."
  95. }
  96. },
  97. "required": ["address", "weight"],
  98. "additionalProperties": false
  99. },
  100. "minItems": 1,
  101. "maxItems": 8
  102. }
  103. },
  104. "required": ["threshold"],
  105. "additionalProperties": false
  106. },
  107. "transferRate": {
  108. "description": "The fee to charge when users transfer this account’s issuances, as the decimal amount that must be sent to deliver 1 unit. Has precision up to 9 digits beyond the decimal point. Use `null` to set no fee.",
  109. "oneOf": [
  110. {"type": "null"},
  111. {"type": "number", "minimum": 1, "maximum": 4.294967295}
  112. ]
  113. },
  114. "tickSize": {
  115. "description": "Tick size to use for offers involving a currency issued by this address. The exchange rates of those offers is rounded to this many significant digits. Valid values are 3 to 15 inclusive, or 0 to disable.",
  116. "enum": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
  117. }
  118. },
  119. "additionalProperties": false
  120. }