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

# header.NetworkHead

> Provides the Syncer's view of the current network head.

### Parameters

<ParamField query="chainId" type="string" default="celestiabridge-mocha" required>
  Unique identifier for a blockchain network.
</ParamField>

<ParamField body="id" type="number" default={1} required>
  Request identifier used to match responses.
</ParamField>

<ParamField body="jsonrpc" type="string" default="2.0" required>
  JSON-RPC version.
</ParamField>

<ParamField body="method" type="string" default="header.NetworkHead" required>
  JSON-RPC method name.
</ParamField>

<ParamField body="params" type="object" default={[null]} placeholder="[null]" />

### Returns

<ResponseField name="result" type="object">
  The JSON-RPC result.

  <Expandable title="properties">
    <ResponseField name="header" type="object">
      <Expandable title="properties">
        <ResponseField name="version" type="object">
          <Expandable title="properties">
            <ResponseField name="block" type="string" />

            <ResponseField name="app" type="string" />
          </Expandable>
        </ResponseField>

        <ResponseField name="chain_id" type="string" />

        <ResponseField name="height" type="string" />

        <ResponseField name="time" type="string" />

        <ResponseField name="last_block_id" type="object">
          <Expandable title="properties">
            <ResponseField name="hash" type="string" />

            <ResponseField name="parts" type="object">
              <Expandable title="properties">
                <ResponseField name="total" type="integer" />

                <ResponseField name="hash" type="string" />
              </Expandable>
            </ResponseField>
          </Expandable>
        </ResponseField>

        <ResponseField name="last_commit_hash" type="string" />

        <ResponseField name="data_hash" type="string" />

        <ResponseField name="validators_hash" type="string" />

        <ResponseField name="next_validators_hash" type="string" />

        <ResponseField name="consensus_hash" type="string" />

        <ResponseField name="app_hash" type="string" />

        <ResponseField name="last_results_hash" type="string" />

        <ResponseField name="evidence_hash" type="string" />

        <ResponseField name="proposer_address" type="string" />
      </Expandable>
    </ResponseField>

    <ResponseField name="validator_set" type="object">
      <Expandable title="properties">
        <ResponseField name="validators" type="array">
          <Expandable title="items">
            <ResponseField name="items[]" type="object">
              <Expandable title="properties">
                <ResponseField name="address" type="string" />

                <ResponseField name="pub_key" type="object">
                  <Expandable title="properties">
                    <ResponseField name="type" type="string" />

                    <ResponseField name="value" type="string" />
                  </Expandable>
                </ResponseField>

                <ResponseField name="voting_power" type="string" />

                <ResponseField name="proposer_priority" type="string" />
              </Expandable>
            </ResponseField>
          </Expandable>
        </ResponseField>

        <ResponseField name="proposer" type="object">
          <Expandable title="properties">
            <ResponseField name="address" type="string" />

            <ResponseField name="pub_key" type="object">
              <Expandable title="properties">
                <ResponseField name="type" type="string" />

                <ResponseField name="value" type="string" />
              </Expandable>
            </ResponseField>

            <ResponseField name="voting_power" type="string" />

            <ResponseField name="proposer_priority" type="string" />
          </Expandable>
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="commit" type="object">
      <Expandable title="properties">
        <ResponseField name="height" type="integer" />

        <ResponseField name="round" type="integer" />

        <ResponseField name="block_id" type="object">
          <Expandable title="properties">
            <ResponseField name="hash" type="string" />

            <ResponseField name="parts" type="object">
              <Expandable title="properties">
                <ResponseField name="total" type="integer" />

                <ResponseField name="hash" type="string" />
              </Expandable>
            </ResponseField>
          </Expandable>
        </ResponseField>

        <ResponseField name="signatures" type="array">
          <Expandable title="items">
            <ResponseField name="items[]" type="object">
              <Expandable title="properties">
                <ResponseField name="block_id_flag" type="integer" />

                <ResponseField name="validator_address" type="string" />

                <ResponseField name="timestamp" type="string" />

                <ResponseField name="signature" type="string" />
              </Expandable>
            </ResponseField>
          </Expandable>
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="dah" type="object">
      <Expandable title="properties">
        <ResponseField name="row_roots" type="array">
          <Expandable title="items">
            <ResponseField name="items[]" type="string" />
          </Expandable>
        </ResponseField>

        <ResponseField name="column_roots" type="array">
          <Expandable title="items">
            <ResponseField name="items[]" type="string" />
          </Expandable>
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash Curl theme={null}
  curl --request POST \
    --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=celestiabridge-mocha \
    --header 'content-type: application/json' \
    --data '{
      "id": 1,
      "jsonrpc": "2.0",
      "method": "header.NetworkHead",
      "params": [
        null
      ]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "result": {}
  }
  ```
</ResponseExample>
