Skip to content

Installation

We provide SDKs for Web / node.js and Go. Or if you'd like to integrate the Relayer with another language target, simply follow the API reference below to implement the HTTP requests. Additionally, read the Typescript client source code as reference implementation of the Transactions API client as well.

Web / node.js Installation

npm install 0xsequence ethers

or

pnpm install 0xsequence ethers

or

yarn add 0xsequence ethers

Go Installation

Terminal
go get -u github.com/0xsequence/go-sequence@latest

then in your app,

Go
import (
	"github.com/0xsequence/go-sequence/relayer"
)