ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
31 lines (30 loc) • 931 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "getBalanceSheetParameters",
"description": "Parameters for getBalanceSheet",
"type": "object",
"properties": {
"address": {
"$ref": "address",
"description": "The XRP Ledger address of the account to get the balance sheet of."
},
"options": {
"properties": {
"excludeAddresses": {
"type": "array",
"items": {"$ref": "address"},
"uniqueItems": true,
"description": "Addresses to exclude from the balance totals."
},
"ledgerVersion": {
"$ref": "ledgerVersion",
"description": "Get the balance sheet as of this historical ledger version."
}
},
"description": "Options to determine how the balances are calculated.",
"additionalProperties": false
}
},
"additionalProperties": false,
"required": ["address"]
}