You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This method requires the following URL parameters:
2661
2663
2662
2664
| Field | Value | Description |
@@ -2678,12 +2680,12 @@ A successful response uses the HTTP code **200 OK** and has a JSON body with the
2678
2680
|`result`| String | The value `success` indicates that the body represents a successful response. |
2679
2681
|`validation_public_key`| String - Base-58 [Public Key][]| This validator's validator public key. |
2680
2682
|`domain`| String | (May be omitted) The DNS domain associated with this validator. |
2681
-
|`chain`| String | Ledger hash chain which this validator is currently following. |
2683
+
|`chain`| String | Ledger hash chain which this validator is currently following. The value `main` indicates the main network and `altnet` indicates the XRP Test Network. Other forks are named `chain.{NUMBER}`, where `{NUMBER}` is a unique number for each fork. |
2682
2684
|`unl`| Bool | True if the validator is part of the ledger chain's recommended UNL. |
2683
2685
|`current_index`| Number | Ledger index of most recently validated ledger. |
2684
2686
|`partial`| Bool | True if the most recent validation was a partial one. |
2685
2687
|`agreement_1h`| Agreement Object | Object containing agreement stats for the most recent hour. |
2686
-
|`aggreement_24h`| Agreement Object | Object containing agreement stats for the most recent 24 hour period. |
2688
+
|`agreement_24h`| Agreement Object | Object containing agreement stats for the most recent 24 hour period. |
2687
2689
2688
2690
#### Agreement Objects
2689
2691
@@ -2699,7 +2701,7 @@ A successful response uses the HTTP code **200 OK** and has a JSON body with the
2699
2701
Request:
2700
2702
2701
2703
```
2702
-
GET /v2/network/validators/n949f75evCHwgyP4fPVgaHqNHxUVN15PsJEZ3B3HnXPcPjcZAoy7
2704
+
GET /v2/network/validators/nHBidG3pZK11zQD6kpNDoAhDxH6WLGui6ZxSbUx7LSqLHsgzMPec
|`validation_public_key`| String - Base-58 [Public Key][]| This validator's validator public key. |
2775
2778
|`domain`| String | (May be omitted) The DNS domain associated with this validator. |
2776
-
|`chain`| String | Ledger hash chain which this validator is currently following. |
2777
-
|`unl`| Bool | True if the validator is part of the ledger chain's UNL. |
2779
+
|`chain`| String | Ledger hash chain which this validator is currently following. The value `main` indicates the main network and `altnet` indicates the XRP Test Network. Other forks are named `chain.{NUMBER}`, where `{NUMBER}` is a unique number for each fork. |
2780
+
|`unl`| Bool | True if the validator is part of the ledger chain's recommended UNL. |
2778
2781
|`current_index`| Number | Ledger index of most recently validated ledger. |
2779
2782
|`partial`| Bool | True if the most recent validation was a partial one. |
2780
2783
|`agreement_1h`| Agreement Object | Object containing agreement stats for the most recent hour. |
2781
-
|`aggreement_24h`| Agreement Object | Object containing agreement stats for the most recent 24 hour period. |
2784
+
|`agreement_24h`| Agreement Object | Object containing agreement stats for the most recent 24 hour period. |
Retrieve manifests signed by a specified validator, used to designate ephemeral key to sign proposals and validations. _(New in [v2.3.7][])_
2862
+
Retrieve manifests signed by a specified validator. (Manifests, also called _subkey authorizations_, designate the ephemeral key a validator uses to sign proposals and validations.)_(New in [v2.3.7][])_
2838
2863
2839
2864
**Note:** The Data API does not have a comprehensive record of all manifests. The response only includes data that the Data API has recorded.
2840
2865
@@ -2850,6 +2875,8 @@ GET /v2/network/validators/{pubkey}/manifests
Each member in the `reports` array is a Single Validator Report Object with data on that validator's performance on that day. Each has the following fields:
3013
+
Each Single Validator Report Object describes a validator's performance on a given day and has the following fields:
|`validation_public`| String - Base-58 [Public Key][]| Validator public key. |
3017
+
|`validation_public_key`| String - Base-58 [Public Key][]| Validator public key. |
2973
3018
|`date`| String - [Timestamp][]| The start time of the date this object describes. |
2974
-
|`chain`| String | Ledger hash chain which this validator is currently following. |
3019
+
|`chain`| String | Ledger hash chain which this validator is currently following. The value `main` indicates the main network and `altnet` indicates the XRP Test Network. Other forks are named `chain.{NUMBER}`, where `{NUMBER}` is a unique number for each fork. |
2975
3020
|`score`| String | Score of agreement with the ledger chain being followed. |
2976
3021
|`missed`| Integer | Number of ledgers not validated during the time period. |
2977
3022
|`total`| Integer | Number of ledgers that could have been validated during the time period. |
Each member in the `reports` array is a Single Validator Report Object with data on that validator's performance on that day. Each has the following fields:
3105
+
Each member in the `reports` array describes one validator's performance on that day and has the following fields:
|`validation_public`| String - Base-58 [Public Key][]| Validator public key. |
3109
+
|`validation_public_key`| String - Base-58 [Public Key][]| Validator public key. |
3064
3110
|`date`| String - [Timestamp][]| The start time of the date this object describes. |
3065
-
|`chain`| String | Ledger hash chain which this validator is currently following. |
3111
+
|`chain`| String | Ledger hash chain which this validator is currently following. The value `main` indicates the main network and `altnet` indicates the XRP Test Network. Other forks are named `chain.{NUMBER}`, where `{NUMBER}` is a unique number for each fork. |
3066
3112
|`score`| String | Score of agreement with the ledger chain being followed. |
3067
3113
|`missed`| Integer | Number of ledgers not validated during the time period. |
3068
3114
|`total`| Integer | Number of ledgers that could have been validated during the time period. |
@@ -3091,7 +3137,7 @@ Response:
3091
3137
"score": "0.6909",
3092
3138
"total": "16127",
3093
3139
"missed": "7216"
3094
-
},
3140
+
}
3095
3141
]
3096
3142
}
3097
3143
```
@@ -3306,7 +3352,7 @@ A successful response uses the HTTP code **200 OK** and has a JSON body with the
3306
3352
|`start_date`| String - [Timestamp][]| The approximate date of the first time exchanges for this gateway's currencies appeared in the ledger. |
3307
3353
|`accounts`| Array | A list of [issuing addresses](https://developers.ripple.com/issuing-and-operational-addresses.html) used by this gateway. (Gateways may use different issuing accounts for different currencies.) |
3308
3354
|`hotwallets`| Array of [Address][]es | This gateway's [operational addresses](https://developers.ripple.com/issuing-and-operational-addresses.html). |
3309
-
|`domain`| String | The domain name where this gateway does business. Typically the gateway hosts a [`ripple.txt`](https://wiki.ripple.com/Ripple.txt) there. |
3355
+
|`domain`| String | The domain name where this gateway does business. |
3310
3356
|`normalized`| String | A normalized version of the `name` field suitable for including in URLs. |
3311
3357
|`assets`| Array of Strings | Graphics filenames available for this gateway, if any. (Mostly, these are logos used by XRP Charts.) |
3312
3358
@@ -5403,4 +5449,4 @@ Example usage:
5403
5449
```
5404
5450
// get ledgers #1,000,000 to #2,000,000 (inclusive) and store in HBase
0 commit comments