Last

GEThttps://inj.nownodes.io/peggy/v1/valset/last
Query parameters
Response

A successful response.

Body
valsetsarray of Valset is the Ethereum Bridge Multsig Set, each peggy validator also maintains an ETH key to sign messages, these are used to check signatures on ETH because of the significant gas savings
Request
const response = await fetch('https://inj.nownodes.io/peggy/v1/valset/last', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "valsets": [
    {
      "nonce": "text",
      "members": [
        {
          "power": "text",
          "ethereum_address": "text"
        }
      ],
      "height": "text",
      "reward_amount": "text",
      "reward_token": "text"
    }
  ]
}