Unified Staking Status

This event occurs when there’s a change in the status of a staking session or the staked assets. This might be triggered by:

  • Initial staking where the status changes from pending to active
  • Unstaking or withdrawal of assets where the status changes from active to withdawal or exited
  • Status updates to any additional states, such as unknown .

Supported Protocols

  • ethereum/mainnet
  • ethereum/holesky

Schema

"data": {
    "address": "string",
    "status": "string",
    "timestamp": "integer",
    "metadata": {
      "type": "string"
    }
}

The table below shows the schema breakdown:

FieldTypeDescription
addressstring(Required) The validator address with the staking status update.
statusstring(Required) The current status of the staking session (e.g., "active," "pending," "exited").
timestampinteger(Required) The UNIX timestamp when the status update occurred.
metadataobjectOptional metadata that provides additional information about the staking status.
metadata.typestringAdditional details about the status event.

Example

{
  "protocol": "ethereum",
  "network": "mainnet",
  "chain_id": "eip155:1",
  "event_type": "unified_staking_status",
  "data": {
    "address": "0x8b7b59Ee336c076cd85bC43cD402B5b0526a69e4",
    "status": "active",
    "timestamp": 1720713431,
    "metadata": {
      "additional_info": "Staking session successfully initiated."
    }
  }
}

👋 Need Help?

Contact us through email or our support page for any issues, bugs, or assistance you may need.