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
toactive
- Unstaking or withdrawal of assets where the status changes from
active
towithdawal
orexited
- 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:
Field | Type | Description |
---|---|---|
address | string | (Required) The validator address with the staking status update. |
status | string | (Required) The current status of the staking session (e.g., "active," "pending," "exited"). |
timestamp | integer | (Required) The UNIX timestamp when the status update occurred. |
metadata | object | Optional metadata that provides additional information about the staking status. |
metadata.type | string | Additional 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.