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

# onEventsCreatedByMaker

> Live-streamed events for a wallet (maker) across every pool it trades on.

<Note>
  Subscriptions use `wss://graphql.mobula.io/graphql` with the `graphql-transport-ws` protocol. `wss://graphql.mobula.io/graphql/subscriptions` is also supported for backwards compatibility.
</Note>

### Returns

<ResponseField name="onEventsCreatedByMaker" type="AddEventsByMakerOutput!">
  Batched events for the subscribed maker. See [AddEventsByMakerOutput](/api-reference/graphql/types/AddEventsByMakerOutput).
</ResponseField>

### Arguments

<ResponseField name="input" type="OnEventsCreatedByMakerInput!" required>
  See [OnEventsCreatedByMakerInput](/api-reference/graphql/types/OnEventsCreatedByMakerInput).
</ResponseField>

### Example

```graphql theme={null}
subscription {
  onEventsCreatedByMaker(input: { makerAddress: "0x9924cb8290b0e81d74bbf715583bb77aff87d704" }) {
    makerAddress
    events {
      id
      address
      networkId
      eventType
      eventDisplayType
      timestamp
      transactionHash
      logIndex
      walletAge
      walletLabels
      data {
        __typename
        ... on SwapEventData {
          amount0 amount1 amount0In amount0Out amount1In amount1Out
          priceUsd priceUsdTotal amountNonLiquidityToken
        }
      }
    }
  }
}
```
