Simplified Payment Verification (SPV) Meaning
SPV is a method described in the original Bitcoin whitepaper that allows "Light Clients" (such as mobile wallets) to verify that a transaction has been included in the blockchain without downloading the entire multi-hundred gigabyte ledger. Instead of storing every transaction ever made, an SPV client only downloads the Block Headers, which are significantly smaller in size.The verification process relies on Merkle Proofs.
When a wallet needs to confirm a transaction, it requests a proof from a "Full Node." This proof shows that the transaction is part of a "Merkle Tree" that rolls up into a specific "Merkle Root" found in a block header. If the header is part of the "Longest Chain" (the one with the most cumulative Proof of Work), the client can be mathematically certain that the transaction is valid and confirmed by the network.SPV is the technical backbone of mobile crypto adoption.
It allows a smartphone to maintain the security properties of a blockchain while operating within the constraints of limited storage and bandwidth. However, SPV clients are "Probabilistically Secure"; they assume the majority of miners are honest.
They also face privacy trade-offs, as they must "Ask" full nodes about specific addresses, potentially revealing the user's transaction history to the node provider.