NOME
Docs/Onchain

Events

Indexed, decoded, and queryable across the full history of an environment.

All emitted logs are indexed as they occur and decoded when a matching ABI is registered. Events are queryable by environment, run, block range, contract, signature, and indexed argument.

httphttp
GET /v1/environments/env_7f3a2c/events?contract=Vault&signature=Deposited&from_block=14
responsejson
{
  "events": [
    {
      "block": 15,
      "tx": "0x43…f1",
      "contract": "Vault",
      "name": "Deposited",
      "args": { "account": "user_1", "assets": "250", "shares": "250" },
      "logIndex": 2
    }
  ]
}

Streaming

Subscribe to events over a WebSocket connection or configure a webhook to receive them as they are emitted. Streams are per-environment and respect the same access controls as the REST API.