Wallet official address

Generate official address in a wallet

​A GET request to generate the wallet's official address on the Litecoin Blockchain. It creates the first funded address as an official address. The address you get in response will not remain same until you fund it.

Generate wallet official address (API reference)

GET /api/Wallet/get-official-address

A GET request to get an address from the specified wallet on the Litecoin Blockchain

Headers

Name
Type
Description

Content-Type

application/json

Authorization*

Bearer <your api key>

attach your API key here

wallet*

String

The wallet name you created

Usev2*

String

Value should be true or yes

Wallet official Address SDK

Liaas SDK package installation

/** 
 * generate the wallet's official address
**/

//pass your API key or Node URL and the wallet name
const response = await liaasSdk.getOfficialAddress(
nodeUrl_or_apiAccessKey,
walletName);

Last updated