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

# cardano.gov_action_proposal

> Description of the gov_action_proposal table on Dune

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

Contains on-chain governance action proposals submitted under Cardano's CIP-1694 governance framework (Voltaire era). Each row represents a governance proposal, including the proposal type (e.g., parameter change, treasury withdrawal, hard fork initiation, no confidence), the deposit amount, return address, and an anchor linking to off-chain rationale.

## Column Descriptions

| **Column**            | **Description**                                                                                                                            | **Type**  |
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | --------- |
| **tx\_hash**          | The hash of the transaction that submitted the proposal.                                                                                   | varchar   |
| **proposal\_index**   | The index of the proposal within the transaction.                                                                                          | integer   |
| **tx\_index**         | The index of the transaction within the block.                                                                                             | integer   |
| **slot**              | The absolute slot number when the proposal was submitted.                                                                                  | bigint    |
| **deposit\_lovelace** | The deposit amount required to submit the proposal, in lovelace.                                                                           | bigint    |
| **return\_address**   | The address to which the deposit will be returned.                                                                                         | varchar   |
| **proposal\_type**    | The type of governance action (e.g., ParameterChange, TreasuryWithdrawals, HardForkInitiation, NoConfidence, NewConstitution, InfoAction). | varchar   |
| **proposal\_details** | JSON-encoded details specific to the proposal type.                                                                                        | varchar   |
| **anchor\_url**       | The URL pointing to off-chain rationale and metadata for the proposal.                                                                     | varchar   |
| **anchor\_hash**      | The hash of the content at the anchor URL, for integrity verification.                                                                     | varchar   |
| **epoch**             | The epoch in which the proposal was submitted.                                                                                             | integer   |
| **block\_number**     | The sequential number of the block containing the proposal.                                                                                | bigint    |
| **block\_time**       | The timestamp of the block containing the proposal.                                                                                        | timestamp |
| **\_updated\_at**     | The time when this record was last updated.                                                                                                | timestamp |
| **\_ingested\_at**    | The time when this record was ingested into Dune.                                                                                          | timestamp |

## Table Sample

<TableSample tableSchema="cardano" tableName="gov_action_proposal" />
