1.1.7 • Published 10 months ago

sui-helper v1.1.7

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Sui Helper

Sui Helper is a library that provides a set of tools for working with the Sui blockchain.

Installation

npm i sui-helper

Usage

import { SuiHelper, SuiNewWork } from'sui-helper';

const suiHelper = new SuiHelper(SuiNewWork.DEVNET); // for devnet
const suiHelper = new SuiHelper(SuiNewWork.TESTNET); // for testnet
const suiHelper = new SuiHelper(SuiNewWork.MAINNET); // for mainnet

build Split tx

const bytes = await suiHelper.buildSplitTx(
    address: string,
    coinType: string,
    coinObjectId: string,
    splitNum: number,
    everyoneValue: number,
    gas: number
);

RPC

getAllBalances

const rs = await suiHelper.getAllBalances(address);

getReferenceGasPrice

const rs = await suiHelper.getReferenceGasPrice();

sendTransaction

const rs = await suiHelper.sendTransaction(bytes, serializedSignature);

getCoins

const rs = await suiHelper.getCoins(address:string, coinType:string, cursor?:string, limit?:number)
1.1.7

10 months ago

1.1.6

10 months ago

1.1.5

10 months ago

1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

10 months ago

1.1.1

10 months ago

1.1.0

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago