Decrypt and get an HD wallet information

api/v3

Get the details of an HD wallet address from the index parameter passed in the request.

Request Body - Content-Type: application/json;charset=utf-8

Parameter

Type

Description

name

string

The wallet name what you want to find.

password

string

Password to decrypt your wallet.

index

number

The index of the HD wallet to lookup. If present, a specific wallet address will be returned from this HD wallet.

POST/api/v3/wallet

Example request

curl -X POST http://localhost:2442/api/v3/wallet \
-H 'Content-Type: application/json;charset=utf-8' \
--data '{"name": "HD_wallet", "password": "is used to encrypt wallet file", "index": 1}'

Last updated