Socket
Socket
Sign inDemoInstall

@mysten/sui.js

Package Overview
Dependencies
Maintainers
1
Versions
895
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mysten/sui.js

Sui TypeScript API(Work in Progress)


Version published
Weekly downloads
58K
decreased by-3.76%
Maintainers
1
Weekly downloads
 
Created
Source

Sui TypeScript SDK

This is the Sui TypeScript SDK built on the Sui JSON RPC API. It provides utility classes and functions for applications to sign transactions and interact with the Sui network.

Note that the SDK is still in development mode and some API functions are subject to change.

Installation

We haven't published the npm package yet, so right now you may use npm link to install it locally.

cd sui/sdk/typescript
yarn && yarn build && npm link

Then:

cd your/project
npm link sui.js

Local Development Environment Setup

Follow the JSON RPC doc to start a local network and local RPC server

Usage

The JsonRpcProvider class provides a connection to the JSON-RPC Server and should be used for all read-only operations. For example:

Fetch objects owned by the address C5206DD02C86A510C4848516229B02ADDFACBE55

import { JsonRpcProvider } from 'sui.js';
const provider = new JsonRpcProvider('http://127.0.0.1:5001/');
const objects = await provider.getOwnedObjectRefs(
  'C5206DD02C86A510C4848516229B02ADDFACBE55'
);

Fetch transaction details from a transaction digest:

import { JsonRpcProvider } from 'sui.js';
const provider = new JsonRpcProvider('http://127.0.0.1:5001/');
const txn = await provider.getTransaction(
  '6mn5W1CczLwitHCO9OIUbqirNrQ0cuKdyxaNe16SAME='
);

For any operations that involves signing or submitting transactions, you should use the Signer API. For example:

To sign a raw message: TODO

To transfer a Coin: TODO

FAQs

Package last updated on 09 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc