> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codex.io/llms.txt
> Use this file to discover all available pages before exploring further.

# AddUnconfirmedEventsByMakerOutput

> Response returned by deprecated `onUnconfirmedEventsCreatedByMaker`. Prefer `onEventsCreatedByMaker`.

<div data-generated>
  ## GraphQL

  ```
  type AddUnconfirmedEventsByMakerOutput {
    makerAddress: String!
    events: [UnconfirmedEvent!]!
  }

  enum EventType {
    Burn
    Mint
    Swap
    Sync
    Collect
    CollectProtocol
    PoolBalanceChanged
    LiquidityLock
  }

  enum QuoteToken {
    token0
    token1
  }

  enum EventDisplayType {
    Burn
    Mint
    Buy
    Sell
    Sync
    Collect
    CollectProtocol
  }

  type UnconfirmedSwapEventData {
    amountNonLiquidityToken: String
    priceBaseToken: String
    priceBaseTokenTotal: String
    priceUsd: String
    priceUsdTotal: String
    type: EventType!
    amountBaseToken: String
  }

  type UnconfirmedLiquidityChangeEventData {
    amount0: String
    amount1: String
    amount0Shifted: String
    amount1Shifted: String
    type: EventType!
  }

  union UnconfirmedEventData = UnconfirmedSwapEventData | UnconfirmedLiquidityChangeEventData

  type UnconfirmedEvent {
    address: String!
    blockHash: String!
    blockNumber: Int!
    eventType: EventType!
    id: String!
    logIndex: Int!
    maker: String
    networkId: Int!
    quoteToken: QuoteToken
    timestamp: Int!
    transactionHash: String!
    transactionIndex: Int!
    supplementalIndex: Int
    eventDisplayType: EventDisplayType
    data: UnconfirmedEventData
  }
  ```

  ### Used By

  **Returned by**

  * [onUnconfirmedEventsCreatedByMaker](/api-reference/subscriptions/onunconfirmedeventscreatedbymaker.md) *(deprecated)*: Deprecated unconfirmed live-streamed transactions for a maker. Use `onEventsCreatedByMaker` instead. (Solana only)
</div>
