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

# インストール方法

[Web / node.js](https://github.com/0xsequence/sequence.js) および [Go](https://github.com/0xsequence/go-sequence) 用のSDKをご用意しています。
他の言語でRelayerと連携したい場合は、下記のAPIリファレンスに従ってHTTPリクエストを実装してください。
また、Typescriptクライアントのソースコードも[Transactions APIクライアントの参考実装](https://github.com/0xsequence/sequence.js/blob/master/packages/services/relayer/src/rpc-relayer/relayer.gen.ts)としてご覧いただけます。

### Web / node.js Installation

```sh theme={null}
npm install 0xsequence ethers
```

または

```sh theme={null}
pnpm install 0xsequence ethers
```

または

```sh theme={null}
yarn add 0xsequence ethers
```

### Go Installation

```bash Terminal theme={null}
go get -u github.com/0xsequence/go-sequence@latest
```

then in your app,

```go Go theme={null}
import (
	"github.com/0xsequence/go-sequence/relayer"
)
```
