Litecoin

Overview

Zafeguard Litecoin components for the full transaction lifecycle — address derivation, UTXO selection, signing, and broadcasting.

Overview

Zafeguard ships 7 Litecoin components covering the full lifecycle of Litecoin transactions: address derivation → UTXO selection → fee estimation → signing → broadcasting.

Litecoin shares Bitcoin's UTXO model and supports the same four payment types (P2PKH, P2SH-P2WPKH, P2WPKH, P2TR). Network access (UTXO fetch, fee estimation, broadcast) is handled by Zafeguard — no RPC endpoint configuration required.


Categories

GroupComponentsPage
TransactionsBUILD, SIGN, BROADCAST, COMPUTE_SIGNATURE_HASHTransactions →
Wallets & AddressesCOMPUTE_ADDRESS, GET_BALANCE, GET_DERIVATION_PATHWallets & Addresses →

Chain facts

PropertyValue
BIP-44 coin type2 (m/44'/2'/...)
Smallest unitlitoshi (1 LTC = 100,000,000 litoshis)
Payment typesP2PKH, P2SH-P2WPKH, P2WPKH, P2TR
Signed-message prefix\x19Litecoin Signed Message:\n
Networksmainnet, testnet

Typical Litecoin workflow

GET_LITECOIN_DERIVATION_PATH


COMPUTE_PUBLIC_KEY  ──▶  COMPUTE_LITECOIN_ADDRESS


GET_LITECOIN_ACCOUNT_BALANCE (guard check)


BUILD_LITECOIN_TRANSACTION
        │ messageHashes[]      │ unsignedTransaction
        ▼                      │
SIGN_WITH_KEY_SHARE (×N)       │
        │ signatures[]         │
        └──────────┬───────────┘

        SIGN_LITECOIN_TRANSACTION
                   │ signedTransaction

        BROADCAST_LITECOIN_TRANSACTION
                   │ txid

              [Confirmed]

On this page