1.1.7 • Published 1 year ago

sui-helper v1.1.7

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year 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

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago