Create Multi Signature Address

create multiple signature address on Litecoin blockchain

​A POST request to generate a multi-signature address on the Litecoin Blockchain

Multi-signature address

GET /api/Address/create-multi-sig-address

​A POST request to generate a multi-signature address on the Litecoin Blockchain

Headers

NameTypeDescription

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

Request Body

NameTypeDescription

nrequired*

Integer

number of address required to sign a transaction

addresses*

String

addresses to be given privilege to sign a transaction. NB: separate the addresses with a comma

address_type*

String

Address type to be generated

Base URL

Kakr LiaaS users looking to utilize the Litecoin Blockchain Services API can do so from our dedicated API endpoint base URL:

Address Balance SDK

Liaas SDK package installation

/** 
 * Generated multi-signature address
 **/
 
 //pass your API key, the wallet name, and the address
const response = await liaasSdk.createMultiSignatureAddress(apiAccessKey,
wallet,
encrpytedPassphrase,
addresses,
nreqired,
address_type);

Last updated