mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 11:45:50 +00:00
Finish drafting Data API v2.4.0 updates
This commit is contained in:
@@ -470,16 +470,17 @@ Request('Get Validators', {
|
||||
}
|
||||
});
|
||||
|
||||
Request('Get Validator Validations', {
|
||||
method: GET,
|
||||
path: "/v2/network/validators/{:validation_public_key}/validations?{:query_params}",
|
||||
description: "Get validation votes from a single validator.",
|
||||
link: "#get-validator-validations",
|
||||
params: {
|
||||
"{:validation_public_key}": VALIDATOR_PUBKEY,
|
||||
"{:query_params}": "limit=3"
|
||||
}
|
||||
});
|
||||
// Removed in v2.4.0
|
||||
// Request('Get Validator Validations', {
|
||||
// method: GET,
|
||||
// path: "/v2/network/validators/{:validation_public_key}/validations?{:query_params}",
|
||||
// description: "Get validation votes from a single validator.",
|
||||
// link: "#get-validator-validations",
|
||||
// params: {
|
||||
// "{:validation_public_key}": VALIDATOR_PUBKEY,
|
||||
// "{:query_params}": "limit=3"
|
||||
// }
|
||||
// });
|
||||
|
||||
Request('Get Single Validator Reports', {
|
||||
method: GET,
|
||||
@@ -502,6 +503,17 @@ Request('Get Daily Validator Reports', {
|
||||
}
|
||||
});
|
||||
|
||||
Request('Get Validator Manifests', {
|
||||
method: GET,
|
||||
path: "/v2/network/validators/{:validation_public_key}/manifests",
|
||||
description: "Get validation vote stats for all validators for a single day.",
|
||||
link: "#get-validator-manifests",
|
||||
params: {
|
||||
"{:validation_public_key}": VALIDATOR_PUBKEY,
|
||||
"{:query_params}": "format=json"
|
||||
}
|
||||
});
|
||||
|
||||
//-------------- Gateway Information -----------------//
|
||||
|
||||
Request("GATEWAY INFORMATION");
|
||||
|
||||
@@ -26,6 +26,7 @@ The Ripple Data API v2 replaces the Historical Database v1 and the [Charts API](
|
||||
[v2.3.0]: https://github.com/ripple/rippled-historical-database/releases/tag/v2.3.0
|
||||
[v2.3.2]: https://github.com/ripple/rippled-historical-database/releases/tag/v2.3.2
|
||||
[v2.3.5]: https://github.com/ripple/rippled-historical-database/releases/tag/v2.3.5
|
||||
[v2.4.0]: https://github.com/ripple/rippled-historical-database/releases/tag/v2.4.0
|
||||
|
||||
|
||||
# API Method Reference
|
||||
|
||||
Reference in New Issue
Block a user