Wallets & Signers
LWK separates key custody from wallet logic. Signers hold private keys and produce signatures; wollets (watch-only wallets) track balances, derive addre
Wallets & Signers
LWK separates key custody from wallet logic. Signers hold private keys and produce signatures; wollets (watch-only wallets) track balances, derive addresses, and build unsigned transactions.
In this section
| Guide | What you'll learn |
|---|---|
| Signers | Create software signers, export xpubs, and sign PSETs |
| Watch-Only Wallets | Build a wollet from a CT descriptor, addresses, and balance |
| Multisig | Quorum wallets with multiple signers |
Typical flow
- Create or load a signer and export its xpub.
- Build a CT descriptor (single-sig or multisig) and open a wollet.
- When spending, the wollet creates an unsigned PSET; the signer signs it.
Next: Signers