Metrics

Returns keygen and keysign metrics for current vaults.

GEThttps://thor.nownodes.io/thorchain/metrics
Query parameters
Response

OK

Body
keygenarray of object
keysignKeysignMetrics
Request
const response = await fetch('https://thor.nownodes.io/thorchain/metrics', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "keygen": [
    {
      "pub_key": "text",
      "node_tss_times": [
        {
          "address": "text",
          "tss_time": "text"
        }
      ]
    }
  ],
  "keysign": {
    "tx_id": "text",
    "node_tss_times": [
      {
        "address": "text",
        "tss_time": 0
      }
    ]
  }
}