Skip to main content

TypeScript shape

type EventDisplayType =
  | 'Burn'
  | 'Mint'
  | 'Buy'
  | 'Sell'
  | 'Sync'
  | 'Collect'
  | 'CollectProtocol';
Buy
enum
Swap that buys the quote-side token. Derived from the sign of raw_amount0 plus the requested quoteToken.
Sell
enum
Swap that sells the quote-side token.
Mint
enum
LP add.
Burn
enum
LP remove.
Sync
enum
V2 pool reserve sync.
Collect
enum
V3 fee collection.
CollectProtocol
enum
V3 protocol fee collection.