> ## 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.

# UniswapV4Data

> Protocol-specific data for Uniswap V4 pairs.

### TypeScript shape

```ts theme={null}
interface UniswapV4Data {
  uniswapV4HookAddress: string | null;
  isToken0NetworkToken: boolean | null;
  isDynamicFee: boolean | null;
  type: string;
}
```

<ResponseField name="uniswapV4HookAddress" type="String">
  Hook address.
</ResponseField>

<ResponseField name="isToken0NetworkToken" type="Boolean">
  Whether token0 is the network native token.
</ResponseField>

<ResponseField name="isDynamicFee" type="Boolean">
  Whether the pool uses dynamic fees.
</ResponseField>

<ResponseField name="type" type="String!">
  Type label.
</ResponseField>
