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_estimate field
  • 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_estimate field
    • withdrawal: how long between the validator exiting the active set and its balance being swept back to the withdrawal address. This is the withdrawal_estimate field. Min and Max are due to the fact that this is a round robin mechanism
{
  "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



Did this page help you?