💱Wallet Transactions

All wallet transactions

Get Wallet Transactions details

GET /api/Wallet/wallet-transactions

To retrieve the transaction information in full

Query Parameters

NameTypeDescription

count

Int

The number of transactions you want to retrieve

skip

Int

Skip some transactions and others (this means you can skip some certain transactions and retrieve others)

label

String

By default this is *

Headers

NameTypeDescription

wallet*

String

The wallet name

Content-Type*

application/json

application in JSON format

Authorization*

Bearer <your Key>

attach your API key here

Usev2*

String

Value should be true or yes

Wallet transactions with Javascript SDK

Liaas SDK package installation

/** 
 * wallet transactions on Litecoin Blockchain
 **/
 
 
 //pass your API key, wallet name, and the encrypted key
const response = await liaasSdk.walletTransactions(apiAccessKey, walletName);

Last updated