Skip to Content
Symmio Trading-SDK — the SDK surface for builders on HyperEVM
CoreNotificationsOverview

Notifications

The SDK consumes a shared realtime notification service where the solver publishes quote and position state transitions (instant open accepted, price filled, close requested, failures, and so on). It exposes that service two ways: a WebSocket live stream for real-time updates, and a REST search over stored history for backfill, replay, or audit.

Both surfaces deliver the same normalized Notification shape, so a UI can consume live and historical frames through one code path. The stream reuses the SDK’s shared, reconnecting socket pool; the search hits the service’s POST /api/v1/search endpoint.

Each method and type has its own page with the full signature, parameters, return shape, and examples.

Live stream

Helpers

Types

  • WebSocket concept — the pooled, reconnecting socket primitive and the SocketStatus lifecycle behind watchNotifications.
  • Unified QuotesclassifyQuoteNotificationAction and applyNotificationToQuotes consume these frames, but live in the quotes domain, not here.
  • TP/SL — conditional-order state transitions arrive on a separate channel with their own frame shape.
  • React useNotifications — the hook wrapper over this stream and search for React apps.
Last updated on