ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
25 lines (24 loc) • 672 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "getSettingsParameters",
"description": "Parameters for getSettings",
"type": "object",
"properties": {
"address": {
"$ref": "address",
"description": "The address of the account to get the settings of."
},
"options": {
"description": "Options that affect what to return.",
"properties": {
"ledgerVersion": {
"$ref": "ledgerVersion",
"description": "Get the settings as of this historical ledger version."
}
},
"additionalProperties": false
}
},
"required": ["address"],
"additionalProperties": false
}