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
| Param | Type | Description |
|---|---|---|
| action | string | wrap, unwrap, lock, or unlock |
| page | number | Page number (default: 1) |
| limit | number | Items 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 }
}