Skip to content
On this page

Getting Started

You can use two different options to implement Sui operations with the Everstake wallet SDK.

Option 1: REST API

You can use REST API to call methods which are described in Swagger with detailed examples

https://wallet-sdk-api.everstake.one

To use transactions from REST API you can use the following approach:

ts
import { Transaction } from '@mysten/sui/transactions';
import { SuiClient } from '@mysten/sui/client';

const client = new SuiClient({url: suiRpcUrl});

// REST API json response object
const apiResponse = {...}

const apiResponseString = JSON.stringify(apiResponse)

const tx = Transaction.from(apiResponseString)

// Sign and execute the transaction
const txDetails = await client.signAndExecuteTransaction({
  transaction: tx,
  signer: yourKeypair
});

// transaction hash
console.log(tx.digest); 

Option 2: TypeScript library

You can install and import Wallet SDK for Javascript/TypeScript.

Step. 1: Installing the Library

Install the npm library by copying the code below.

sh
$ npm install @everstake/wallet-sdk-sui

or you can also use yarn

sh
$ yarn add @everstake/wallet-sdk-sui

Step. 2: Import Wallet SDK

After installing the package, you can import the Sui module and use the SDK:

Import ES6

ts
// import module
import { Sui } from '@everstake/wallet-sdk-sui';
// or you can also use
import * as Sui from '@everstake/wallet-sdk-sui';

Import ES5

ts
// import module
const { Sui } = require("@everstake/wallet-sdk-sui");