ethereum.beacon_chain Table: fact_pending_deposits Type: View
This model details the pending deposits that have been made to the beacon chain of Ethereum.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| REQUEST_SLOT_NUMBER | NUMBER | The slot number that the queue was read at. |
| SUBMIT_SLOT_NUMBER | NUMBER | The slot number that the deposit was submitted to the beacon chain at. |
| PUBKEY | TEXT | The public key of the validator that made the deposit. |
| SIGNATURE | TEXT | The signature of the deposit. |
| WITHDRAWAL_CREDENTIALS | TEXT | The withdrawal credentials of the deposit. |
| AMOUNT | FLOAT | The amount of the deposit, adjusted for the 9 decimal places. |
| DEPOSIT_ID | TEXT | The unique identifier for the deposit. This can be used to find when the deposit processed on the beacon chain. Hash of the submitted slot number and validator public key. |
| FACT_PENDING_DEPOSITS_ID | TEXT | The unique identifier for a row. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when the pending deposit was inserted. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when the pending deposit was modified. |