Pinax Logo/Datasets
Beacon ChainVoluntary Exits

Column Descriptions

for eth_cl.voluntary_exits

8 rows
NameTypeDescription
validator_indexNUMBERIndex of the validator requesting the voluntary exit
signatureTEXTSignature of the voluntary exit request, used for verification
block_hashTEXTUnique identifier (hash) of the block containing this voluntary exit
indexNUMBERIndex of the voluntary exit within the block
block_dateDATECalendar date associated with the block containing this voluntary exit
epochNUMBEREpoch during which the validator initiated the voluntary exit
block_numberNUMBERSequential number of the block in the blockchain containing this voluntary exit
block_timeTIMESTAMP_NTZTimestamp indicating when the block containing this voluntary exit was created

Sample Queries

Daily Voluntary Exit Count
Calculates the total number of voluntary exits for each day.
SELECT
  block_date,
  COUNT(*) AS daily_exits
FROM
  eth_cl.voluntary_exits
GROUP BY
  block_date
ORDER BY
  block_date;
Validators with Multiple Exits
Identifies validators that have initiated voluntary exits more than once.
SELECT
  validator_index,
  COUNT(*) AS exit_count
FROM
  eth_cl.voluntary_exits
GROUP BY
  validator_index
HAVING
  exit_count > 1
ORDER BY
  exit_count DESC;
Voluntary Exits in a Specific Epoch
Retrieves all voluntary exits that occurred during a particular epoch.
SELECT
  *
FROM
  eth_cl.voluntary_exits
WHERE
  epoch = 197354;