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

# Pending Deposits 🌱

### Table Details

| Property          | Value                               |
| ----------------- | ----------------------------------- |
| Table Name        | `beacon_hoodi.raw.pending_deposits` |
| Table Status      | Beta 🌱                             |
| Clustering Key(s) | `to_date("slot_timestamp")`         |

### Table Columns

| Column Name             | Data Type         | Description                                                                                                                                                                              |
| ----------------------- | ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| slot\_number            | NUMBER(38,0)      | Beacon Chain slot number of when the pending deposit state was indexed                                                                                                                   |
| slot\_timestamp         | TIMESTAMP\_NTZ(9) | Beacon Chain slot timestamp of slot when the pending deposit state was indexed                                                                                                           |
| epoch\_number           | NUMBER(38,0)      | Epoch number of when the pending deposit state was indexed                                                                                                                               |
| pubkey                  | VARCHAR(16777216) | The validator's BLS public key, uniquely identifying them. 48-bytes, hex encoded with 0x prefix, case insensitive.                                                                       |
| amount                  | VARCHAR(16777216) | The amount of ETH deposited in gwei (1e9 gwei = 1 ETH on Beacon Chain).                                                                                                                  |
| withdrawal\_credentials | VARCHAR(16777216) | Withdrawal credentials is a 32-byte field associated with every validator, initially set during deposit, for verifying the destination of valid withdrawals.                             |
| signature               | VARCHAR(16777216) | The BLS signature that aggregates the signatures of individual validators.                                                                                                               |
| execution\_optimistic   | BOOLEAN           | It's true if the response references an unverified execution payload. The optimistic information may be invalidated at a later time. If the field is not present, assume the false value |
| finalized               | BOOLEAN           | Indicates whether the response data is finalized                                                                                                                                         |
| pending\_deposit\_index | NUMBER(38,0)      | Array index of the pending deposit for the given epoch.                                                                                                                                  |
| slot                    | NUMBER(38,0)      | The slot number where the deposit is made into beacon chain.                                                                                                                             |
| \_created\_at           | TIMESTAMP\_NTZ(9) | Timestamp of the pending deposit data creation.                                                                                                                                          |
| \_updated\_at           | TIMESTAMP\_NTZ(9) | Timestamp of the pending deposit data update.                                                                                                                                            |

### Related Docs

* [Beacon Chain Raw Pending Deposits](/historical-data/supported-blockchains/evm/beacon-chain/raw/pending-deposits)
