> ## 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.

# beacon.attester_slashings

> Beacon chain attester slashings — contradictory attestation violations.

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

The `beacon.attester_slashings` table stores attester slashing data that is exchanged between validators and users on the Beacon network. This table is partitioned by `block_date`.

## Column Descriptions

| **Column**                              | **Type**  | **Description**                                                                               |
| --------------------------------------- | --------- | --------------------------------------------------------------------------------------------- |
| **block\_epoch**                        | long      | Epoch number when the block containing the attester slashing was proposed.                    |
| **block\_slot**                         | long      | Slot number within the epoch when the block containing the attester slashing was proposed.    |
| **block\_time**                         | timestamp | Timestamp when the block containing the attester slashing was included in the chain.          |
| **block\_date**                         | date      | Date corresponding to the block\_time.                                                        |
| **attestation\_1\_attesting\_indices**  | array     | List of validator indices involved in the first conflicting attestation.                      |
| **attestation\_1\_beacon\_block\_root** | binary    | Root hash of the Beacon Chain block that the first attestation votes for.                     |
| **attestation\_1\_index**               | long      | Committee index for the first attestation.                                                    |
| **attestation\_1\_slot**                | long      | Slot number to which the first attestation pertains.                                          |
| **attestation\_1\_source\_epoch**       | long      | Epoch of the last justified checkpoint referred to as the source in the first attestation.    |
| **attestation\_1\_source\_root**        | binary    | Root hash of the Beacon Chain block at the source checkpoint epoch in the first attestation.  |
| **attestation\_1\_target\_epoch**       | long      | Epoch that the first attestation targets in its FFG vote.                                     |
| **attestation\_1\_target\_root**        | binary    | Root hash of the Beacon Chain block at the target checkpoint epoch in the first attestation.  |
| **attestation\_1\_signature**           | binary    | BLS signature associated with the first attestation.                                          |
| **attestation\_2\_attesting\_indices**  | array     | List of validator indices involved in the second conflicting attestation.                     |
| **attestation\_2\_beacon\_block\_root** | binary    | Root hash of the Beacon Chain block that the second attestation votes for.                    |
| **attestation\_2\_index**               | long      | Committee index for the second attestation.                                                   |
| **attestation\_2\_slot**                | long      | Slot number to which the second attestation pertains.                                         |
| **attestation\_2\_source\_epoch**       | long      | Epoch of the last justified checkpoint referred to as the source in the second attestation.   |
| **attestation\_2\_source\_root**        | binary    | Root hash of the Beacon Chain block at the source checkpoint epoch in the second attestation. |
| **attestation\_2\_target\_epoch**       | long      | Epoch that the second attestation targets in its FFG vote.                                    |
| **attestation\_2\_target\_root**        | binary    | Root hash of the Beacon Chain block at the target checkpoint epoch in the second attestation. |
| **attestation\_2\_signature**           | binary    | BLS signature associated with the second attestation.                                         |

## Table Sample

<TableSample tableSchema="beacon" tableName="attester_slashings" />
