A light wallet (also called a lightweight wallet or SPV wallet Simplified Payment Verification) is a cryptocurrency wallet that does not download or store the complete blockchain. Instead, it connects to remote full nodes to request only the specific transaction data relevant to the user's addresses dramatically reducing storage requirements, sync time, and bandwidth while still enabling secure transaction sending and receiving.
HOW LIGHT WALLETS WORK: SPV EXPLAINED
Satoshi Nakamoto described Simplified Payment Verification in the original Bitcoin whitepaper. Rather than downloading every transaction in every block (600GB+ for Bitcoin), an SPV wallet: downloads only block headers (80 bytes each approximately 50MB for Bitcoin's entire header chain), uses Bloom filters or compact block filters to request only transactions relevant to its wallet addresses from full nodes, verifies transaction inclusion using Merkle proofs (proving a transaction is in a specific block using only a logarithmic number of hashes rather than the full block), and verifies proof-of-work on block headers to confirm they represent real computational work.
THE TRUST TRADE-OFF
Full nodes independently verify every rule of the protocol no trust required. Light wallets trust that the full nodes they connect to are honest about transaction data. A malicious full node could theoretically withhold information about received transactions (making a user think a payment was not received) but cannot fabricate valid transactions or steal funds the cryptographic signatures ensure only the private key holder can spend funds. Connecting to your own trusted full node eliminates this concern.
POPULAR LIGHT WALLETS
Electrum (Bitcoin): One of the oldest and most trusted light wallets. Connects to Electrum server network, supports hardware wallets, Lightning Network, and advanced features. Highly recommended for Bitcoin users who want more control than mobile wallets without running a full node.
MetaMask (Ethereum/EVM): A light wallet that connects to Ethereum nodes via RPC endpoints. Queries Infura or Alchemy by default trust in these infrastructure providers is required. Trust Wallet: Mobile light wallet supporting 100+ blockchains.
WHEN TO PREFER A LIGHT WALLET OVER A FULL NODE
Light wallets are appropriate for most users: mobile devices cannot store hundreds of GB, ordinary users do not need to validate every protocol rule, and the security trade-off is minimal for standard usage patterns.