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

# Installation

> Install the Decibel TypeScript SDK and its peer dependencies

## Install packages

```bash npm theme={null}
npm install @decibeltrade/sdk @aptos-labs/ts-sdk zod
```

```bash yarn theme={null}
yarn add @decibeltrade/sdk @aptos-labs/ts-sdk zod
```

```bash pnpm theme={null}
pnpm add @decibeltrade/sdk @aptos-labs/ts-sdk zod
```

* Optional (TypeScript in Node): `@types/ws`

```bash npm theme={null}
npm install -D @types/ws
```

## Import and verify

```ts theme={null}
import {
  DecibelReadDex,
  DecibelWriteDex,
  NETNA_CONFIG,
} from "@decibeltrade/sdk";
```

The package includes ESM builds and TypeScript type definitions.
