Load Wallet

/api/Wallet/load-wallet

Loading or initializing a cryptographic wallet within the node's software environment. Nodes in a blockchain network can operate various functionalities.

Load wallet ( API reference )

POST /api/Wallet/load-wallet

Load Wallet to the Litecoin blockchain node

Headers

Name
Type
Description

Content-Type

application/json

application/json

Request Body

Name
Type
Description

filename*

String

Enter the name of the specific wallet you want to load.

Authorization*

Bearer <your api key>

attach your API key here

Usev2*

String

Value should be true or yes

Load wallet SDK

Liaas SDK package installation

/** 
 * Load Wallet
**/

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

FAQs: Common Error Handling and Solutions

  1. Error: "Wallet file verification failed: Error loading wallet <your wallet name>. Duplicate -wallet filename specified." Solution: This error indicates that the wallet you are trying to load is already loaded. To resolve this, check if the wallet is already loaded and avoid reloading it.

Last updated

Was this helpful?