본문으로 건너뛰기

Locus Library

서비스에 로커스 체인을 적용할때 필요한 함수가 포함된 라이브러리를 제공합니다 다음과 같은 기능이 포함되어 있습니다.

  • 키를 생성하거나 불러옵니다.
  • 데이터를 형식을 변환합니다.
  • 트랜잭션을 검증합니다.
  • 프라이빗 키로 서명합니다.

설치 방법

npm i locuschain-lib

사용 방법

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

  • function: 함수명
  • param: 매개 변수
import { LocusLib } from 'locuschain-lib';
const result = await LocusLib.GetLibraryVersions()
console.log(result)

모든 함수는 비동기 함수입니다. 앞에 await를 붙이거나 then을 사용하여 결과값을 받습니다.

Functions


GetLibraryVersions

GetLibraryVersion returns the versions of this wasm library.

Input

GetLibraryVersions( )
[None]

Output

KeyTypeDescription
LibraryVersionintLibrary Version
KeyStoreVersionintKey Store Version
KeyStoreVersionMinint호환되는 최소 Key Store Version
GoBuildVersionstringLibrary를 빌드한 Golang 버전

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와 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
Messagestring사인할 메시지

Output

KeyTypeDescription
-stringResult

Sign

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

Input

Sign( Sk, Message )

KeyTypeDescription
SkstringNormal Secret Key
Messagestring사인할 메시지

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
Messagestring검증할 메시지
Sigstring검증할 서명

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