ethereum.beacon_chain Table: fact_manual_withdrawal_requests Type: View
This model details the manual withdrawal requests made on the Ethereum beacon chain. These are
explicit withdrawal requests initiated by validators through on-chain transactions.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| FROM_ADDRESS | TEXT | The address that initiated the manual withdrawal request. |
| BLOCK_NUMBER | NUMBER | The block number where the withdrawal request event was emitted. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The timestamp of the block where the withdrawal request event was emitted. |
| TX_HASH | TEXT | The transaction hash of the transaction that emitted the withdrawal request event. |
| PUBKEY | TEXT | The validator’s public key extracted from event data and prefixed with ‘0x’. |
| AMOUNT | FLOAT | The ETH withdrawal amount adjusted for 9 decimal places, converted from hexadecimal format. |
| FACT_MANUAL_WITHDRAWAL_REQUESTS_ID | TEXT | Unique row identifier generated from block_number, tx_hash, from_address, pubkey, and amount. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when the withdrawal request record was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when the withdrawal request record was last modified. |