Entry/Exit Queues
Our ETH Network Estimates endpoint returns estimates (in hours) for
- entry queue: how long between depositing ETH to a validator and that validator being active & earning rewards. This is the
activation_estimatefield - exit queue: broken down between
- exit: how long between exiting a validator and the validator being out of the actve set & earning rewards. This is the
exit_estimatefield - withdrawal: how long between the validator exiting the active set and its balance being swept back to the withdrawal address. This is the
withdrawal_estimatefield. Min and Max are due to the fact that this is a round robin mechanism
- exit: how long between exiting a validator and the validator being out of the actve set & earning rewards. This is the
{
"activation_estimate": {
"hours": 650
},
"exit_estimate": {
"hours": 0
},
"withdrawal_estimate": {
"hours_min": 27,
"hours_max": 171
}
}This endpoint allows you to display to your users the estimates queue times they should expect when staking and unstaking ETH. This is what we display in the Figment App
