What is a thin client?

11

6

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

Posted 2014-11-15T17:06:27.013

Reputation: 221

@NickODell Instant related to comment. Bot?saloalv 2014-11-15T17:09:41.280

12No, just no life.Nick ODell 2014-11-15T17:11:38.253

Answers

24

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.

David A. Harding

Posted 2014-11-15T17:06:27.013

Reputation: 10 154

Good informative answer, although not all that concise. Accepted.saloalv 2014-11-15T19:14:37.263

4I doubt any answer could be equally informative yet more concise.Steve V. 2014-11-16T00:31:00.957

1

Good answer David, this is also worth mentioning: https://en.bitcoin.it/wiki/Thin_Client_Security#Header-Only_Clients

George Kimionis 2014-11-16T01:10:14.290

1@GeorgeKimionis great idea! Linkified "thin clients" in the first sentence with that link. Thanks!David A. Harding 2014-11-16T02:57:08.947

@DavidA.Harding, What's the difference betwen "thin client" vs "SPV client"?Pacerier 2017-10-26T02:32:33.273

@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 2017-10-31T19:39:40.873

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.

Xawery Wiśniowiecki

Posted 2014-11-15T17:06:27.013

Reputation: 709

1So what parts of the blockchain does it download?saloalv 2014-11-15T19:11:47.117

@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 2014-11-16T07:41:46.340