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

QuoteNotificationActionKind

The kind of quote action a notification reports, derived from its lastSeenAction. Consumers use this to scope cache invalidation to the reads a notification can actually affect — an open-anchor event never changes the pending-instant-close feed, and vice versa. A string union.

type QuoteNotificationActionKind = "open" | "close" | "other";

Members

open"open"

An open-side action: anchoring an open (SendQuoteTransaction / SendQuote / FillLimitOrderOpen) or the InstantRFQ price fill.

close"close"

A close-side action: the close request (InstantRequestToClosePosition / RequestToClosePosition) or the close fill (FillMarketOrderInstantClose / FillLimitOrderClose).

other"other"

Anything else, including failures and unknown or absent actions.

Last updated on