ethereum.beacon_chain Table: fact_manual_withdrawal_requests Type: Base Table
What
This table displays all manual withdrawal requests made to the Ethereum withdrawal request contract. Manual withdrawal requests are extracted from event logs emitted by the contract address0x00000961Ef480Eb55e80D19ad83579A64c007002. The data field in these event logs contains encoded information about the withdrawal request, including the requesting address, validator public key, and withdrawal amount.
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 public key of the validator associated with the withdrawal request, extracted from the event data and prefixed with ‘0x’. |
| AMOUNT | NUMBER | The amount of ETH requested for withdrawal, adjusted for 9 decimal places (in ETH). This value is extracted from the event data and converted from hexadecimal format. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when the withdrawal request record was last modified. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when the withdrawal request record was inserted into the table. |
| FACT_MANUAL_WITHDRAWAL_REQUESTS_ID | TEXT | The unique identifier for a row, generated from a combination of blocknumber, txhash, from_address, pubkey, and amount. |