Skip to main content

Locus Library

We provide a library that includes the functions required to integrate Locus Chain into your service. The library includes the following features:

  • Generate or load keys.
  • Convert data formats.
  • Verify transactions.
  • Sign with private key.

Installation Guide

npm i locuschain-lib

Usage Guide

LocusLib.function(param1, param2, ... )

  • function: Function Name
  • param: Parameters
import { LocusLib } from 'locuschain-lib';
const result = await LocusLib.GetLibraryVersions()
console.log(result)
tip

All functions are asynchronous. Use await before the function or .then to receive the result.

Functions


GetLibraryVersions

GetLibraryVersion returns the versions of this wasm library.

Input

GetLibraryVersions( )
[None]

Output

KeyTypeDescription
LibraryVersionintLibrary Version
KeyStoreVersionintKey Store Version
KeyStoreVersionMinintMinimum compatible Key Store version
GoBuildVersionstringThe Golang version used to build the library

CreateAccountAndKeystore

creates two separate keystore files for master key and normal key.

Input

CreateAccountAndKeystore( PwdMaster, PwdNormal, MasterKeyAlgo, NormalKeyAlgo )

KeyTypeDescription
PwdMasterstringMaster Key Password
PwdNormalstringNormal Key Password
MasterKeyAlgostringMaster Key Algorithm
NormalKeyAlgostringNormal Key Algorithm

Output

KeyTypeDescription
-stringMaster and Normal Keystore string

CreateNormalKey

creates a new normal key for the given address.

Input

CreateNormalKey( Addr, KeyAlgorithm )

KeyTypeDescription
addrstringAddress
KeyAlgorithmstringNormal Key Algorithm

Output

KeyTypeDescription
-stringNormal Key string

CreateMasterKeystore

creates a keystore of normal key for the given address.

Input

CreateMasterKeystore( Addr, Password, MskStr, MpkStr )

KeyTypeDescription
AddrstringAddress
PasswordstringMaster Key Password
MskStrstringMaster Secret Key
MpkStrstringMaster Public Key

Output

KeyTypeDescription
-stringMaster Keystore string

CreateNormalKeystore

creates a keystore of normal key for the given address.

Input

CreateNormalKeystore( Addr, Password, NskStr, NpkStr, MpkStr, KeySign )

KeyTypeDescription
AddrstringAddress
PasswordstringNormal Key Password
NskStrstringNormal Secret Key
NpkStrstringNormal Public Key
MpkStrstringMaster Public Key
KeySignstringKey Sign

Output

KeyTypeDescription
-stringNormal Keystore string

LoadMasterKeystore

returns the master key from master keystore.

Input

LoadMasterKeystore( Password, KsJson )

KeyTypeDescription
PasswordstringMaster Key Password
KsJsonstringMaster Keystore string

Output

KeyTypeDescription
-stringMaster Key string

LoadNormalKeystore

returns the normal key from normal keystore.

Input

LoadNormalKeystore ( Password, KsJson )

KeyTypeDescription
PasswordstringNormal Key Password
KsJsonstringNormal Keystore string

Output

KeyTypeDescription
-stringNormal Key string

ConvertToData

decodes various values to default encoding (base64)

Input

ConvertToData( Value, ValueType )

KeyTypeDescription
Valuestring
ValueTypeintvalueType : 0(raw string), 1(hex), 2(crc16-base32), 3(base64)

Output

KeyTypeDescription
-string

ConvertDataTo

converts default encoded(base64) value to various types

Input

ConvertDataTo( Value, ValueType )

KeyTypeDescription
Valuestring
ValueTypeintvalueType : 0(raw string), 1(hex), 2(crc16-base32), 3(base64)

Output

KeyTypeDescription
-stringResult

ConvertStringToData

decodes string values to default encoding (base64)

Input

ConvertStringToData( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertDataToString

decodes default encoded (base64) value to string values.

Input

ConvertDataToString ( Value )

KeyTypeDescription
valuestring

Output

KeyTypeDescription
-stringResult

ConvertAddressToHex

decodes the base32-encoded address to hex value.

Input

ConvertAddressToHex( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertHexToAddress

encodes hex value to the base32-encoded address.

Input

ConvertHexToAddress( Value )

KeyTypeDescription
valuestring

Output

KeyTypeDescription
-stringResult

ConvertAddressToData

decodes the base32-encoded address to default encoding.

Input

ConvertAddressToData( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertDataToAddress

encodes default encoded value to the base32-encoded address.

Input

ConvertDataToAddress( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertBase32ToHex

decodes the base32-encoded values to hex value.

Input

ConvertBase32ToHex( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertHexToBase32

encodes hex value to the base32-encoded values.

Input

ConvertHexToBase32( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertHexToData

decodes the hex-encoded values to default encoding (base64)

Input

ConvertHexToData( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertDataToHex

encodes default encoded (base64) value to the hex-encoded values.

Input

ConvertDataToHex( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertBase32ToData

decodes the base32-encoded values to default encoding (base64) ConvertBase32ToData( Value )

Input

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

ConvertDataToBase32

encodes default encoded (base64) value to the base32-encoded values.

Input

ConvertDataToBase32( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult

SignByMasterKey

produce a signature with the private master key and the message.

Input

SignByMasterKey ( Msk, Message )

KeyTypeDescription
MskstringMaster Secret Key
MessagestringMessage to Sign

Output

KeyTypeDescription
-stringResult

Sign

produces a signature with the normal secret key and the message.

Input

Sign( Sk, Message )

KeyTypeDescription
SkstringNormal Secret Key
MessagestringMessage to Sign

Output

KeyTypeDescription
-stringResult

Verify

returns the result of verifying the signature with message and normal public key.

Input

Verify( Pk, Message, Sig )

KeyTypeDescription
PkstringNormal Public Key
MessagestringMessage to Verify
SigstringSignature to Verify

Output

KeyTypeDescription
-booleanResult

VerifyTx

verifies all types of transactions that made by RPC.

Input

VerifyTx( JsonTx )

KeyTypeDescription
JsonTxstring

Output

KeyTypeDescription
-hashResult

CompileCoreScript

CompileCoreScript compiles core script source code to byte code.

Input

CompileCoreScript( Code )

KeyTypeDescription
Codestring

Output

KeyTypeDescription
-stringResult

DisCompileCoreScript

DisCompileCoreScript discompiles byte code of core script. DisCompileCoreScript does not detect synstax errors.

Input

DisCompileCoreScript( Code )

KeyTypeDescription
Codestring

Output

KeyTypeDescription
-stringResult

TestCoreScript

TestCoreScript tests ScriptProvide & ScriptAccept with TxDataProvide & TxDataAccept.

Input

TestCoreScript( ScriptProvide, ScriptAccept, TxDataProvide, TxDataAccept )

KeyTypeDescription
ScriptProvidestringProvide Script Code
ScriptAcceptstringAccept Script Code
TxDataProvidetypes.ParamTxDataParameter of the Provide Script
TxDataAccepttypes.ParamTxDataParameter of the Accept Script

types.ParamTxData

KeyTypeDescription
Rounduint32
Heightint32
Args[]string

Output

KeyTypeDescription
-booleanResult

GetDefFromCoreScript

GetDefFromCoreScript get definitions from byte code.

Input

GetDefFromCoreScript ( Code )

KeyTypeDescription
Codestring

Output

KeyTypeDescription
-json stringResult

EncodeTxNumber

EncodeTxNumber encodes number type data to []byte.

Input

EncodeTxNumber ( Number, Type )

KeyTypeDescription
Numberstring
Typeint

Output

KeyTypeDescription
-stringResult

EncodeTxCurrency

EncodeTxCurrency encodes currency to []byte.

Input

EncodeTxCurrency( Currency )

KeyTypeDescription
Currencystring

Output

KeyTypeDescription
-stringResult

Hash

Hash hashes data by hash-type.

Input

Hash ( Value, Type )

KeyTypeDescription
Valuestring
Typeint

Output

KeyTypeDescription
-stringResult

VerifyMerkleProof

VerifyMerkleProof verifies Proof with Hash & GoalHash.

Input

VerifyMerkleProof ( Proof, Hash, GoalHash )

KeyTypeDescription
Prooftypes.MerkleProof
Hashstring
GoalHashstring

types.MerkleProof

KeyTypeDescription
Positions[]uint16
Siblings[]32byte

Output

KeyTypeDescription
boolResult

CalculateTxLinkHash

Calculating the TxLink hash.

Input

CalculateTxLinkHash( Tx )

KeyTypeDescription
TxstringTx string

Output

KeyTypeDescription
-hashResult

DecodeTxs

DecodeTxs decods base64-encoded transactions that was downloaded from node.

Input

DecodeTxs ( Txs )

KeyTypeDescription
Txs[]stringTx string array

Output

KeyTypeDescription
-stringResult

GzipAndEncode

Compress the string and then encode it in base64.

Input

GzipAndEncode ( Value )

KeyTypeDescription
Valuestring

Output

KeyTypeDescription
-stringResult