0.8.7 • Published 2 years ago

@thorswap-lib/xchain-litecoin v0.8.7

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@thorswap-lib/xchain-client

Modules

Installation

yarn add @thorswap-lib/xchain-client

Following peer dependencies have to be installed into your project. These are not included in @thorswap-lib/xchain-litecoin.

yarn add @thorswap-lib/xchain-client @thorswap-lib/xchain-crypto @thorswap-lib/xchain-util axios bitcoinjs-lib coininfo coinselect tiny-secp256k1 wif

Service Providers

This package uses the following service providers:

FunctionServiceNotes
BalancesSochainhttps://sochain.com/api#get-balance
Transaction historySochainhttps://sochain.com/api#get-display-data-address, https://sochain.com/api#get-tx
Transaction details by hashSochainhttps://sochain.com/api#get-tx
Transaction feesBitgohttps://app.bitgo.com/docs/#operation/v2.tx.getfeeestimate
Transaction broadcastBitapshttps://ltc.bitaps.com/broadcast
ExplorerBlockstreamhttps://blockstream.info

Sochain API rate limits: https://sochain.com/api#rate-limits (300 requests/minute)

Bitgo API rate limits: https://app.bitgo.com/docs/#section/Rate-Limiting (10 requests/second)

Bitaps API rate limits: Standard limit 15 requests within 5 seconds for a single IP address.

Usage

Initialize client and use class methods:

import { Client, Network } from '../src/client'

// Create a new client interface
const ltcClient = new Client({ network: Network.Testnet })

// Set phrase
ltcClient.setPhrase('phrase here')

// Get address
const address = ltcClient.getAddress()

// Get balance
const balance = await ltcClient.getBalance()

// Transfer with feeRate
const txid = await ltcClient.transfer({ asset: AssetLTC, recipient: 'recipient address here', amount: baseAmount(100, LTC_DECIMAL), feeRate: 1 })

// Transfer with default feeRate (default is `fast`)
const txid = await ltcClient.transfer({ asset: AssetLTC, recipient: 'recipient address here', amount: baseAmount(100, LTC_DECIMAL) })

// Get fee estimations
const { fast, fastest, average } = await ltcClient.getFees()

// Get feeRate estimations
const { fast, fastest, average } = await ltcClient.getFeeRates()

// Search transactions
const transactions = await ltcClient.getTransactions({ address: 'address here', limit: 4 })

// Get a transaction with a given txId/hash
const txData = await ltcClient.getTransactionData('b660ee07167cfa32681e2623f3a29dc64a089cabd9a3a07dd17f9028ac956eb8')
0.8.7

2 years ago

0.8.6

2 years ago

0.8.5

2 years ago

0.8.4

2 years ago

0.7.5

2 years ago

0.8.1

2 years ago

0.8.0

2 years ago

0.8.3

2 years ago

0.8.2

2 years ago

0.7.4

2 years ago

0.7.2

2 years ago

0.7.1

2 years ago

0.7.3

2 years ago

0.6.11

2 years ago

0.6.10

2 years ago