Skip to main content
Schema: 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 address 0x00000961Ef480Eb55e80D19ad83579A64c007002. 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 NameData TypeDescription
FROM_ADDRESSTEXTThe address that initiated the manual withdrawal request.
BLOCK_NUMBERNUMBERThe block number where the withdrawal request event was emitted.
BLOCK_TIMESTAMPTIMESTAMP_NTZThe timestamp of the block where the withdrawal request event was emitted.
TX_HASHTEXTThe transaction hash of the transaction that emitted the withdrawal request event.
PUBKEYTEXTThe public key of the validator associated with the withdrawal request, extracted from the event data and prefixed with ‘0x’.
AMOUNTNUMBERThe 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_TIMESTAMPTIMESTAMP_NTZThe timestamp when the withdrawal request record was last modified.
INSERTED_TIMESTAMPTIMESTAMP_NTZThe timestamp when the withdrawal request record was inserted into the table.
FACT_MANUAL_WITHDRAWAL_REQUESTS_IDTEXTThe unique identifier for a row, generated from a combination of blocknumber, txhash, from_address, pubkey, and amount.