> For the complete documentation index, see [llms.txt](https://developers.ent.unwallet.world/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.ent.unwallet.world/01_spec/02_client-side-sdk/01_basic.md).

# 基本情報

{% hint style="warning" %}
本 SDK はブラウザ上でのみ正しく動作します。
{% endhint %}

## インストール方法

```
npm install unwallet-client-sdk
```

## 初期化方法

```js
import { UnWallet } from "unwallet-client-sdk";

const unWallet = await UnWallet.init({
  clientID: "<CLIENT_ID_OF_YOUR_APPLICATION>",
});
```
