> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Validators

> Initia blockchain validators data

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

# Table Description

This table contains data about validators in the Initia blockchain, including their performance metrics, voting power, and status.

## Column Descriptions

| Column name                       | Data Type                   | Description                                                        |
| --------------------------------- | --------------------------- | ------------------------------------------------------------------ |
| **operator\_address**             | varchar                     | The operator address of the validator.                             |
| **account\_address**              | varchar                     | The account address of the validator.                              |
| **consensus\_pubkey**             | varchar                     | The consensus public key of the validator.                         |
| **jailed**                        | boolean                     | Indicates whether the validator is jailed.                         |
| **status**                        | varchar                     | The status of the validator (e.g., active, inactive).              |
| **tokens**                        | varchar                     | The number of tokens held by the validator.                        |
| **moniker**                       | varchar                     | The moniker or name of the validator.                              |
| **identity**                      | varchar                     | The identity information of the validator.                         |
| **website**                       | varchar                     | The website of the validator.                                      |
| **security\_contact**             | varchar                     | The security contact information for the validator.                |
| **details**                       | varchar                     | Additional details about the validator.                            |
| **unbonding\_height**             | bigint                      | The block height at which the validator started unbonding.         |
| **unbonding\_time**               | varchar                     | The time when the validator will complete unbonding.               |
| **commission\_rate**              | double                      | The commission rate charged by the validator.                      |
| **commission\_max\_rate**         | double                      | The maximum commission rate allowed for the validator.             |
| **commission\_max\_change\_rate** | double                      | The maximum rate at which the validator can change its commission. |
| **commission\_update\_time**      | varchar                     | The time when the validator last updated its commission.           |
| **min\_self\_delegation**         | varchar                     | The minimum self-delegation required for the validator.            |
| **snapshot\_height**              | bigint                      | The block height at which the snapshot was taken.                  |
| **snapshot\_time**                | varchar                     | The time when the snapshot was taken.                              |
| **updated\_at**                   | timestamp(3) with time zone | Timestamp of when the record was last updated.                     |
| **ingested\_at**                  | timestamp(3) with time zone | Timestamp of when the record was ingested into Dune.               |

## Table Sample

<TableSample tableSchema="initia" tableName="validators" />
