Developer Docs: Build with Kakr Labs
HomeAPI PolicyPrivacy & TermsPlayground
  • Core Concepts
    • Core Concepts
      • Introduction
        • What is a Blockchain?
        • Litecoin as a Service (LiaaS)
        • Web2 Vs Web3
        • Category Codes
      • Transactions
        • Stages of a Litecoin Transaction
        • What are UTXOs?
        • How to spend UTXOs?
      • Assets
        • Collections
        • Tokens
        • Uploading and Pinning Files on IPFS
      • Wallet
        • Non custody wallet vs custody wallet
        • Hierarchical Deterministic wallets(HD Wallets)
        • Passphrase and Private key
      • Address
        • Default Address of Wallet
        • Official Address of Wallet
        • Key Differences
      • MimbleWimble (MWEB)
      • Multi-sig Concept
    • 💰Pricing
  • Solutions
    • Solutions
      • Payments
        • Peer-to-Peer Payments
        • Micropayments
        • Confidential Payments
      • Tokenization
        • Stablecoins
          • Proof of Loyalty
        • NFT Marketplace overview
          • NFT Marketplace
        • Industrial Tokenization
          • Energy Sector
      • Multi-signature
        • Assets Security
      • IPFS Gateway
        • Decentralized Storage (IPFS + Litecoin)
      • Decentralized Identity & Authentication
        • Decentralized Identity: Password Recovery via Litecoin Address Ownership
        • Decentralized Identity: Passwordless Agent Authentication
        • Decentralized Authentication
  • Using Pteri
    • 🤝Introduction
    • 😇Create an Account
    • 💰Get started
      • ⚕️Stats
      • 📖Debug
      • ➡️Work Flow
      • 🤑Subscription
      • 💆‍♂️Usage
      • 💆‍♂️Settings
    • ✨PTERI Intelligence
  • LiaaS
    • LiaaS
      • What Kakr LiaaS
      • Getting set up
        • Authentication
      • Kakr (LiaaS) Features
        • Address Features
        • Token Features
        • Wallet Features
      • Wallet System
        • Create Wallet
        • Create Importable Wallet
        • Encrypt Wallet
        • Create Encrypted Wallet
        • Create Importable Encrypted Wallet
        • Change wallet passphrase
        • Generate Address
        • Generate Default Address
        • Wallet official address
        • Wallet default address
        • Wallet default address v2
        • Wallet addresses
        • Wallet Balance
        • Address Details
        • Load Wallet
        • Import Wallet
        • Address Balance (Using Wallet)
        • Wallet Tokens
        • Create Multi Signature Address (preview)
      • Token Issuance
        • Create Collection
        • Create Tokens
          • Create Secure Digital Asset SDA (Alias NFT)
          • Create Token
          • Create Token v2
          • Create Managed Supply Tokens
          • Mint Supply Tokens
          • Burn Supply Tokens
      • Token Transfer
        • Send Token
        • Send SDA/NFT
      • Transactions
        • Send Litecoin
        • Create Raw Transaction
        • Create Raw Transaction (Advanced)
        • Sign Transaction
        • Broadcast Transaction
      • Blocks
        • Blocks Information
        • Blocks Stat
        • Blocks Header Information
        • Block Transactions
      • Others
        • 🔁Get SDA Transaction Details
        • 🔁Address Details
        • 🔁External Address Details
        • ⏺️Address Transactions
        • ⏺️Address Balance
        • 🔐Address Private Key
        • 🔐Address Private Key V2
        • 🚀NFT Details
        • 🚀NFT Balance
        • 🚀Token and Collection Balance
        • 📙Property Details
        • 💹Wallet Details
        • 🔼Generate passphrase
        • 💱Wallet Transactions
        • ✒️Sign Wallet message
        • 🖊️Sign Address Message
        • 💱Verify Message
        • 🗄️Upload to IPFS
        • 📌Pin on IPFS
  • API Reference
  • FAQs and Troubleshooting
  • Developers FAQs and Error Handling
Powered by GitBook
LogoLogo

© 2025 Kakr Platform Inc. All rights reserved

On this page
  • Litecoin as a Service (Generate Address)
  • Create Address (API reference)
  • Create or generate a Wallet Address

Was this helpful?

  1. LiaaS
  2. LiaaS
  3. Wallet System

Generate Address

Generate address from a wallet

PreviousChange wallet passphraseNextGenerate Default Address

Last updated 7 days ago

Was this helpful?

Litecoin as a Service (Generate Address)

To derive an address from the created wallet, utilize this endpoint. This process involves providing the address type and label while additionally including the Encrypted passphrase and wallet name in the request header.

Create Address ()

POST /api/Address/createAddress

A post request to create an address 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

encryptedPassphrase*

String

Encrypted Passphrase

Usev2*

String

Value should be true or yes

Request Body

Name
Type
Description

label*

string

Label of the Address

type*

Number

the type of address to be generated from the wallet for example type of 1 will generate a Legacy address (LgtX3V4qf55zZFsaD8dYLxPv3ZcMn5PCLa)

type of 2 or any other number will generate SegWit Address (M9PU6rzebMofSVjbi2LALPqWJAQ3hMhkGs)

type of 3 will generate native-SegWit Address (ltc1qytr4etxl3sqvmfa0ag7aj8md7spmh7puz0amu7)

type of 4 will generate MWEB address (ltcmweb1qqfcys5c3xdgfdqvp5ena0j32aznlfnl9798hyzg3smmexzxgtg7m5q6qy0lnfpd2kdug0fp27k7wk838e5t8jsye7fcm7frhvqzwz5362yylw3mg,

API base URL

https://pteri.xyz

Create or generate a Wallet Address

/** 
 * Create or generate an address from a wallet
**/

//pass your API key or Node URL and the wallet name
//the type parameter is the type of address to be generated from the wallet for example type of 1 will generate a Legacy address (LgtX3V4qf55zZFsaD8dYLxPv3ZcMn5PCLa) while type of 2 or any other number will generate SegWit Address (M9PU6rzebMofSVjbi2LALPqWJAQ3hMhkGs) then type of 3 will generate native-SegWit Address (ltc1qytr4etxl3sqvmfa0ag7aj8md7spmh7puz0amu7)
const response = await liaasSdk.createAddress(nodeUrl_or_apiAccessKey,
wallet, 
label,
type,
encrpytedPassphrase)

exclusive to enterprise plan see )

Liaas SDK package

API reference
MWEB
installation