Sandbox version
For experimental use only. Proceed with caution.
Server Methods
Get amendment status
wss://honeycluster.io
rpc method: feature

Returns information about amendments (protocol features), including whether they are enabled, supported, or vetoed.

Try it now
Response · feature WS Response
{
  "result": {
    "features": {
      "42426C4D4F1009EE67080A9B7965B44656D7714D104A72F9B4369F97ABF044EE": {
        "enabled": true,
        "name": "FeeEscalation",
        "supported": true,
        "vetoed": false
      }
    }
  },
  "status": "success",
  "type": "response",
  "id": 1
}
Request Message
feature WS Request
application/json
Get amendment status
FieldTypeDescription
command
required
string
WebSocket command name
id
object
Client-supplied identifier to correlate requests with responses.
feature
string
The 256-bit amendment hash to look up. If omitted, returns all known amendments.
api_version
object
API version for the response format. Version 2 is the default for rippled 2.0+.
Example
Json
{
  "command": "feature",
  "id": 1
}
Response Message
feature WS Response
application/json
WebSocket response for feature
FieldTypeDescription
result
object
status
enum<string>
Available
successerror
type
string
id
stringnumber
Echo of the client-provided correlation ID
Example
Json
{
  "result": {
    "features": {
      "42426C4D4F1009EE67080A9B7965B44656D7714D104A72F9B4369F97ABF044EE": {
        "enabled": true,
        "name": "FeeEscalation",
        "supported": true,
        "vetoed": false
      }
    }
  },
  "status": "success",
  "type": "response",
  "id": 1
}