Events

Vault Staking Events

GET
/api/v1/vault/events
List your vault staking events (wrap, unwrap, lock, unlock).
Auth: Session or API Key

Query Parameters

ParamTypeDescription
actionstringwrap, unwrap, lock, or unlock
pagenumberPage number (default: 1)
limitnumberItems per page (default: 20, max: 100)
Response
{
  "data": [{
    "wallet": "0x...",
    "action": "wrap",
    "amount": "1000000000000000000",
    "amountOut": "950000000000000000",
    "txHash": "0x...",
    "blockNumber": 12345678,
    "timestamp": "2026-03-20T00:00:00.000Z"
  }],
  "pagination": { "total": 8, "page": 1, "limit": 20, "hasMore": false }
}