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

# Sui SDK Reference

> Integrate with Skate AMM on Sui network using the official SDK.

This SDK supports both staging and production environments, which can be selected upon initialization.

***

## Installation

```bash theme={null}
npm install @skate-org/skate_amm_sui_sdk
```

***

## SDK Initialization

```typescript theme={null}
import SkateAmmSdk, {
  Environment,
  PoolType,
} from "@skate-org/skate_amm_sui_sdk";

// Initialize the SDK for the production environment
const sdk = new SkateAmmSdk(Environment.Production);
```

> ⚙️ Note: This instance will be pre-configured with the correct contract addresses and pool configurations for the selected environment.

***

## Reference

* [SDK README ↗](https://www.npmjs.com/package/@skate-org/skate_amm_sui_sdk#installation)
* Check the README for:
  * Setup and configuration
  * Usage example
  * *and more..*
