v1

latestSwagger 2.02026-07-17127100479.5 KB
validator

Get list of votes for validator

Returns a paginated list of governance votes cast by this validator on on-chain proposals.

get/validators/{id}/votes

Path parameters

idinteger required

Internal validator id

Query parameters

limitinteger

Count of requested entities

offsetinteger

Offset

Response

OK

deposit_timestring date-time
heightinteger
idinteger
proposal_idinteger
statusstring string
voter_idinteger
weightinteger

Example response

[
  {
    "deposit_time": "2023-07-04T03:10:57+00:00",
    "height": 100,
    "id": 321,
    "proposal": {
      "description": "Some proposal description",
      "id": 321,
      "status": "active",
      "title": "Proposal title"
    },
    "proposal_id": 2,
    "status": "yes",
    "validator": {
      "cons_address": "E641C7A2C964833E556AEF934FBF166B712874B6",
      "id": 321,
      "moniker": "Easy 2 Stake"
    },
    "voter": {
      "celestials": {
        "image_url": "https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC",
        "name": "name",
        "primary": true,
        "status": "VERIFIED"
      },
      "hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60"
    },
    "voter_id": 1,
    "weight": 12345678
  }
]