> For the complete documentation index, see [llms.txt](https://docs.hyperion.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hyperion.xyz/developer/via-sdk/features-available/types.md).

# Types

## Pools Item

```typescript
interface PoolItem {
  id: string;
  aprUSD: string;
  dailyVolumeUSD: string;
  feesUSD: string;
  tvlUSD: string;
  pool: Pool;
}
```

## Pool

```typescript

interface Pool {
  currentTick: number;
  feeRate: string;
  feeTier: number;
  poolId: string;
  senderAddress: string;
  sqrtPrice: string;
  token1: string;
  token2: string;
  token1Info: TokenInfo;
  token2Info: TokenInfo;
}
```

## TokenInfo

```typescript
interface TokenInfo {
  assetType: string;
  bridge: string | null;
  coinMarketcapId: string;
  coinType: string;
  coingeckoId: string;
  decimals: number;
  faType: string;
  hyperfluidSymbol: string;
  logoUrl: string;
  name: string;
  symbol: string;
  isBanned: boolean;
  websiteUrl: string | null;
}
```

## Fee & Subsidy

```typescript
interface Subsidy {
    claimed: Array<{
        amount: string;
        amountUSD: string;
        token: string;
    }>;
    unclaimed: Array<{
        amount: string;
        amountUSD: string;
        token: string;
    }>;
}

interface Fee {
    claimed: Array<{
        amount: string;
        amountUSD: string;
        token: string;
    }>;
    unclaimed: Array<{
        amount: string;
        amountUSD: string;
        token: string;
    }>;
}
```

<sub>The White Paper is for informational purposes only. Nothing in the White Paper constitutes legal, financial or tax advice. Its content may be updated from time to time without express notice. You should seek your own professional advice before engaging in any activity in connection with Hyperion. See</sub> [<sub>Legal Disclaimer</sub>](https://docs.hyperion.xyz/legal-and-compliance/legal-disclaimer)<sub>.</sub>
