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
| Group | Components | Page |
|---|---|---|
| Transactions | BUILD, SIGN, BROADCAST, COMPUTE_SIGNATURE_HASH | Transactions → |
| Wallets & Addresses | COMPUTE_ADDRESS, GET_BALANCE, GET_DERIVATION_PATH | Wallets & Addresses → |
Chain facts
| Property | Value |
|---|---|
| BIP-44 coin type | 2 (m/44'/2'/...) |
| Smallest unit | litoshi (1 LTC = 100,000,000 litoshis) |
| Payment types | P2PKH, P2SH-P2WPKH, P2WPKH, P2TR |
| Signed-message prefix | \x19Litecoin Signed Message:\n |
| Networks | mainnet, 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]