1.1.7 • Published 9 months ago

sui-helper v1.1.7

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

9 months ago

1.1.6

9 months ago

1.1.5

9 months ago

1.1.4

9 months ago

1.1.3

9 months ago

1.1.2

9 months ago

1.1.1

9 months ago

1.1.0

9 months ago

1.0.8

9 months ago

1.0.7

9 months ago

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago