14

I've heard that if you don't want do download gigabytes of data just to use bitcoin you gotta use a thin client. But what is a thin client? What are the main advantages of a thin bitcoin client and what defines it as such?

saloalv
  • 251
  • 2
  • 7

2 Answers2

27

A thin client is a program which connects to the Bitcoin peer-to-peer (P2P) network but which doesn't fully validate transactions or blocks. That is, it's a client to the full nodes on the network.

Most thin clients use the Simplified Payment Validation (SPV) method to verify that confirmed transactions are part of a block. To do this, they connect to a full node on the P2P network and send it a filter (called a Bloom filter) that will match any transactions affecting the client's wallet. When a new block is created, the client requests a special lightweight version of that block called a Merkle block.

The merkle block includes a block header, a relatively small number of hashes, a list of one-bit flags, and a transaction count. Using this information---often less than 1 KB of data---the client can build a partial Merkle tree to the block header as illustrated below. If the hash of the root node of the partial Merkle tree equals the hash of merkle root in the block header, the SPV client has cryptographic proof that the transaction was included in that block. If that block then gets 6 confirmations at the current network difficulty, then the client has extremely strong proof that the transaction was valid and is accepted by the entire network.

Parsing a merkle block

(Image taken from MIT-licensed Bitcoin.org developer documentation. I'm also the author of that image.)

The only major downside of the SPV method is that full nodes can simply not tell the thin clients about transactions, making it look like the client hasn't received bitcoins or that a transaction the client broadcast earlier hasn't confirmed.

Glorfindel
  • 529
  • 3
  • 8
  • 20
David A. Harding
  • 11,906
  • 2
  • 46
  • 72
  • Good informative answer, although not all that concise. Accepted. – saloalv Nov 15 '14 at 19:14
  • 4
    I doubt any answer could be equally informative yet more concise. – Steve V. Nov 16 '14 at 00:31
  • 1
    Good answer David, this is also worth mentioning: https://en.bitcoin.it/wiki/Thin_Client_Security#Header-Only_Clients –  Nov 16 '14 at 01:10
  • 1
    @GeorgeKimionis great idea! Linkified "thin clients" in the first sentence with that link. Thanks! – David A. Harding Nov 16 '14 at 02:57
  • @DavidA.Harding, What's the difference betwen "thin client" vs "SPV client"? – Pacerier Oct 26 '17 at 02:32
  • @Pacerier No difference, but you do need to check context. An SPV client is a client that ensures received payments connect to the header of a block on the most-proof-of-work block chain. A "thin client" and a "lightweight" client are usually just other names for an SPV client, but sometimes people use those terms to refer to server-trusting wallets that don't check headers at all, such as the Coinbase app or BlockChain.info. – David A. Harding Oct 31 '17 at 19:39
3

Thin client is one that won't download whole blockchain locally on your device. They are useful for those that have small capacity hard-drive or using mobile devices.

  • 1
    So what parts of the blockchain does it download? – saloalv Nov 15 '14 at 19:11
  • @saloalv just the part it needs to: 1. determine your current balance, and 2. create new transactions from your address(es). Typically just a few blocks. And it can even throw old blocks away after certain outputs have been spent. – Madzi Konjo Nov 16 '14 at 07:41