Create Raw Transaction
Creating a raw transaction on the Litecoin blockchain involves constructing a transaction manually.
Create a raw transaction (API reference)
Headers
Name
Type
Description
Request Body
Name
Type
Description
Create Raw Transaction with Javascript SDK
/**
* Create Raw Transaction on Litecoin Blockchain
**/
//all the parameters specified here are the same as all the parameters in the API implementation
//pass your API key or Node URL, wallet name, and the encrypted key
const response = await liaasSdk.createRawTransaction(
nodeUrl_or_apiAccessKey,
walletName,
encryptedpassphrase,
recipientAddress,
amount,
data,
senderAddress)Last updated
Was this helpful?