Locus Library
서비스에 로커스 체인을 적용할때 필요한 함수가 포함된 라이브러리를 제공합니다 다음과 같은 기능이 포함되어 있습니다.
- 키를 생성하거나 불러옵니다.
- 데이터를 형식을 변환합니다.
- 트랜잭션을 검증합니다.
- 프라이빗 키로 서명합니다.
설치 방법
- Javascript
npm i locuschain-lib
사용 방법
LocusLib.function
(param1
, param2
, ... )
- function: 함수명
- param: 매개 변수
- Javascript
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
Key | Type | Description |
---|---|---|
LibraryVersion | int | Library Version |
KeyStoreVersion | int | Key Store Version |
KeyStoreVersionMin | int | 호환되는 최소 Key Store Version |
GoBuildVersion | string | Library를 빌드한 Golang 버전 |
CreateAccountAndKeystore
creates two separate keystore files for master key and normal key.
Input
CreateAccountAndKeystore( PwdMaster, PwdNormal, MasterKeyAlgo, NormalKeyAlgo )
Key | Type | Description |
---|---|---|
PwdMaster | string | Master Key Password |
PwdNormal | string | Normal Key Password |
MasterKeyAlgo | string | Master Key Algorithm |
NormalKeyAlgo | string | Normal Key Algorithm |
Output
Key | Type | Description |
---|---|---|
- | string | Master와 Normal Keystore string |
CreateNormalKey
creates a new normal key for the given address.
Input
CreateNormalKey( Addr, KeyAlgorithm )
Key | Type | Description |
---|---|---|
addr | string | Address |
KeyAlgorithm | string | Normal Key Algorithm |
Output
Key | Type | Description |
---|---|---|
- | string | Normal Key string |
CreateMasterKeystore
creates a keystore of normal key for the given address.
Input
CreateMasterKeystore( Addr, Password, MskStr, MpkStr )
Key | Type | Description |
---|---|---|
Addr | string | Address |
Password | string | Master Key Password |
MskStr | string | Master Secret Key |
MpkStr | string | Master Public Key |
Output
Key | Type | Description |
---|---|---|
- | string | Master Keystore string |
CreateNormalKeystore
creates a keystore of normal key for the given address.
Input
CreateNormalKeystore( Addr, Password, NskStr, NpkStr, MpkStr, KeySign )
Key | Type | Description |
---|---|---|
Addr | string | Address |
Password | string | Normal Key Password |
NskStr | string | Normal Secret Key |
NpkStr | string | Normal Public Key |
MpkStr | string | Master Public Key |
KeySign | string | Key Sign |
Output
Key | Type | Description |
---|---|---|
- | string | Normal Keystore string |
LoadMasterKeystore
returns the master key from master keystore.
Input
LoadMasterKeystore( Password, KsJson )
Key | Type | Description |
---|---|---|
Password | string | Master Key Password |
KsJson | string | Master Keystore string |
Output
Key | Type | Description |
---|---|---|
- | string | Master Key string |
LoadNormalKeystore
returns the normal key from normal keystore.
Input
LoadNormalKeystore ( Password, KsJson )
Key | Type | Description |
---|---|---|
Password | string | Normal Key Password |
KsJson | string | Normal Keystore string |
Output
Key | Type | Description |
---|---|---|
- | string | Normal Key string |
ConvertToData
decodes various values to default encoding (base64)
Input
ConvertToData( Value, ValueType )
Key | Type | Description |
---|---|---|
Value | string | |
ValueType | int | valueType : 0(raw string), 1(hex), 2(crc16-base32), 3(base64) |
Output
Key | Type | Description |
---|---|---|
- | string |
ConvertDataTo
converts default encoded(base64) value to various types
Input
ConvertDataTo( Value, ValueType )
Key | Type | Description |
---|---|---|
Value | string | |
ValueType | int | valueType : 0(raw string), 1(hex), 2(crc16-base32), 3(base64) |
Output
Key | Type | Description |
---|---|---|
- | string | Result |
ConvertStringToData
decodes string values to default encoding (base64)
Input
ConvertStringToData( Value )
Key | Type | Description |
---|---|---|
Value | string |
Output
Key | Type | Description |
---|---|---|
- | string | Result |
ConvertDataToString
decodes default encoded (base64) value to string values.
Input
ConvertDataToString ( Value )
Key | Type | Description |
---|---|---|
value | string |
Output
Key | Type | Description |
---|---|---|
- | string | Result |
ConvertAddressToHex
decodes the base32-encoded address to hex value.
Input
ConvertAddressToHex( Value )
Key | Type | Description |
---|---|---|
Value | string |
Output
Key | Type | Description |
---|---|---|
- | string | Result |
ConvertHexToAddress
encodes hex value to the base32-encoded address.
Input
ConvertHexToAddress( Value )
Key | Type | Description |
---|---|---|
value | string |
Output
Key | Type | Description |
---|---|---|
- | string | Result |
ConvertAddressToData
decodes the base32-encoded address to default encoding.
Input
ConvertAddressToData( Value )
Key | Type | Description |
---|---|---|
Value | string |
Output
Key | Type | Description |
---|---|---|
- | string | Result |
ConvertDataToAddress
encodes default encoded value to the base32-encoded address.
Input
ConvertDataToAddress( Value )
Key | Type | Description |
---|---|---|
Value | string |
Output
Key | Type | Description |
---|---|---|
- | string | Result |
ConvertBase32ToHex
decodes the base32-encoded values to hex value.
Input
ConvertBase32ToHex( Value )
Key | Type | Description |
---|---|---|
Value | string |
Output
Key | Type | Description |
---|---|---|
- | string | Result |
ConvertHexToBase32
encodes hex value to the base32-encoded values.