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

# Installation

> 프로젝트에 Whiterail SDK 설정하기

## 사전 요구사항

시작하기 전에 다음이 필요합니다:

* Node.js 16 이상

## 설치

```bash theme={null}
npm install @whiterail/sdk
```

### SDK 초기화

```typescript theme={null}
import { WhiterailSDK } from "@whiterail/sdk";

const sdk = new WhiterailSDK();
```

## 네트워크 설정

SDK는 여러 Solana 네트워크를 지원합니다:

| 네트워크           | 용도       | RPC 엔드포인트                             |
| -------------- | -------- | ------------------------------------- |
| `mainnet-beta` | 프로덕션     | `https://api.mainnet-beta.solana.com` |
| `devnet`       | 개발 및 테스트 | `https://api.devnet.solana.com`       |
| `testnet`      | 추가 테스트   | `https://api.testnet.solana.com`      |

## 다음 단계

<CardGroup cols={2}>
  <Card title="빠른 시작" icon="rocket" href="/sdk/quickstart">
    첫 API 호출하기
  </Card>

  <Card title="API 레퍼런스" icon="book" href="/sdk/api-client">
    모든 메서드 살펴보기
  </Card>
</CardGroup>
