1.1.4 • Published 5 months ago

@coolwallet/ltc v1.1.4

Weekly downloads
12
License
ISC
Repository
github
Last release
5 months ago

CoolWallet Litecoin (LTC) SDK

Version

Typescript library with support for the integration of Litecoin for third party application, include the functionalities of generation of addresses and signed transactions.

Install

npm i @coolwallet/ltc

Usage

import LTC from '@coolwallet/ltc'
const ltc = new LTC()

const address = await ltc.getAddress(transport, appPrivateKey, appId, scriptType, 0);

const inputs = {
    preTxHash: "735153f57da91462a01c17937a397aa67f7b5faf9ab74ebcdd4c8f485aba26f5",
    preIndex: 1,
    preValue: "87302",
    sequence: 0xFFFFFFFF,
    addressIndex: 0,
    pubkeyBuf: Uint8Array(33)
}

const output = {
    value: "10000",
    address: "MSea9ZqgrZqsB5bvg8iTrcUQ2xpF1ckAsv",
}

const change = {
    value: "77301.99983500001",
    addressIndex: 0,
    pubkeyBuf: Uint8Array(33)
}

const signTxData = {
    transport,
    appPrivateKey,
    appId,
    scriptType,
    inputs,
    output,
    change
}

const normalTx = await ltc.signTransaction(signTxData)

Methods

getAddress

Description

Get address by address index.

The LTC address generated is compatible to BIP141 (SegWit Proposal) and BIP44 with account and change set to 0, which means calling getAddress with addressIndex = i will get the address of folllowing path:

m/44'/2'/0'/0/{i}

In the design of current hardware, we only support path m/44'/2'/0'/0/{i} for speed optimization. This might change in the future and we will then open a more general interface to deal with custom path.

async getAddress(
    transport: Transport, 
    appPrivateKey: string, 
    appId: string, 
    scriptType: ScriptType, 
    addressIndex: number
    ): Promise<string> 

Arguments

ArgDescriptionTypeRequired
transportObject to communicate with CoolWallet deviceTransportTRUE
appPrivateKeyPrivate key for the connected applicationstringTRUE
appIdID for the connected applicationstringTRUE
scriptTypeDefine the type of script of the addressScriptTypeTRUE
addressIndexThe from address index in BIP44 derivationnumberTRUE

signTransaction

Description

Sign Litecoin Transaction.

async signTransaction(signTxData: signTxType):Promise<string>

signTxType Arguments

ArgDescriptionTypeRequired
transportObject to communicate with CoolWallet deviceTransportTRUE
appPrivateKeyPrivate key for the connected applicationstringTRUE
appIdID for the connected applicationstringTRUE
scriptTypeDefine the type of script of the addressScriptTypeTRUE
inputsArray of inputs of previous transactions (UTXO)InputsTRUE
outputOutput of the transactionOutputTRUE
changeAddress to receive changesChangeTRUE
confirmCBCallback of confirmation data to the connected applicationFunctionFALSE
authorizedCBCallback of authorized transaction data to the connected applicationFunctionFALSE