# How to Use

## Installation <a href="#installation" id="installation"></a>

```
yarn add @xchainjs/xchain-kuji
```

### Peer Dependencies

You can visit the [xchain-kujira](https://github.com/xchainjs/xchainjs-lib/blob/master/packages/xchain-kujira/package.json) package repository to get the updated peer dependencies by looking at the "peerDependencies" object in the "package.json" file.

## Example <a href="#basic-usage-example" id="basic-usage-example"></a>

```
import { Client } from "@xchainjs/xchain-kuji"
```

#### Initialize Kuji Client <a href="#initialize-kuji-client" id="initialize-kuji-client"></a>

The network default is Mainnet

```
kujiClientWithDefaultParams = new KujiraClient({
  network: Network.Testnet,
  phrase: phraseOne,
})
```
