wss://honeycluster.ionoripple_checkChecks an account for recommended NoRipple flag settings and returns suggested fixes if problems are found.
{
"result": {
"ledger_index": 89012345,
"problems": [
"You should immediately set your default ripple flag"
],
"transactions": [
{
"Account": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
"TransactionType": "AccountSet"
}
]
},
"status": "success",
"type": "response",
"id": 1
}| Field | Type | Description |
|---|---|---|
commandrequired | string | WebSocket command name |
id | object | Client-supplied identifier to correlate requests with responses. |
account | string | The account to check NoRipple settings for. |
role | enum<string> | Whether to check from a "gateway" or "user" perspective. Determines recommended settings. Available gatewayuser |
transactions | boolean | If true, include an array of suggested transactions to fix any problems. |
ledger_index | object | A ledger index (sequence number) or shortcut string identifying which ledger to use. |
ledger_hash | string | 256-bit hex hash identifying a specific ledger version. |
limit | integer | Maximum number of results to return. Clio servers may return more than this. |
api_version | object | API version for the response format. Version 2 is the default for rippled 2.0+. |
{
"command": "noripple_check",
"id": 1,
"account": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
"role": "gateway",
"ledger_index": "validated",
"transactions": true
}| Field | Type | Description |
|---|---|---|
result | object | |
status | enum<string> | Available successerror |
type | string | |
id | stringnumber | Echo of the client-provided correlation ID |
{
"result": {
"ledger_index": 89012345,
"problems": [
"You should immediately set your default ripple flag"
],
"transactions": [
{
"Account": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
"TransactionType": "AccountSet"
}
]
},
"status": "success",
"type": "response",
"id": 1
}