| 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. May be 0 or NULL for deposits that are in the queue but haven’t been assigned a submission slot yet. |
| 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. |
| ESTIMATED_PROCESSING_SLOT | FLOAT | The estimated slot number when the deposit is estimated to be processed, calculated as estimatedprocessingepoch * 32 (first slot of the epoch). The calculation is based on the sum of ETH amounts ahead in the queue and uses Ethereum’s protocol rate of 256 ETH per epoch. For deposits with submitslotnumber > 0, it accounts for ETH processed since submission. For deposits with submitslotnumber = 0 or NULL, it calculates from the request time. Note that deposits can be any amount, not just 32 ETH,… |
| ESTIMATED_PROCESSING_EPOCH | FLOAT | The estimated epoch number when the deposit is estimated to be processed, calculated based on the sum of ETH amounts ahead in the queue. For deposits with submitslotnumber > 0, it accounts for ETH processed since submission (epochspassed * 256 ETH). For deposits with submitslot_number = 0 or NULL, it calculates from the request time. Uses Ethereum’s protocol rate of 256 ETH per epoch. Note that deposits can be any amount, not just 32 ETH, so the calculation uses actual ETH amounts rather than… |
| ESTIMATED_PROCESSING_SLOT_TIMESTAMP | TIMESTAMP_NTZ | The estimated slot timestamp when the deposit is estimated to be processed, calculated directly from estimatedprocessingepoch for precision: genesistimestamp (2020-12-01T12:00:23Z) + (estimatedprocessing_epoch 32 slots 12 seconds per slot). This ensures consistency with the epoch calculation. |
| QUEUE_POSITION | NUMBER | The position of this deposit in the queue at the requestslotnumber, based on the array_index from the API response (1-based). This represents how many deposits are ahead in the queue at the time the queue was queried. |
| TOTAL_QUEUE_SIZE | NUMBER | The total number of deposits in the queue at the requestslotnumber. |
| 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. |