Hardware Requirements Of Blockchain Clients

Hardware Requirements Of Blockchain Clients

You just decided to start your next project using blockchain. That is awesome congrats! But now you face the many choices: Which blockchain platform and clients are technically suited for your use case?

Makers and IoT specialists know that when designing embedded systems it’s important to understand the technical parameters within which each component can work. The same is true when selecting the blockchain technology. Required storage capacity on the device, RAM usage, and bandwidth required are the three key technical criteria to look at - when deciding which hardware to settle on, or which blockchain technology to adopt. To illustrate this, the HTC Exodus smartphone decided to adopt Bitcoin and integrate a client type that requires around 200 gigabytes of persistent storage dedicated to the Blockchain connectivity. On the other hand blockchain prototypes have been developed on devices such as the ESP32 with less than one megabyte of persistent storage

Classes of Blockchain Clients

To understand these differences in required storage we have to look at the different types of software clients for blockchains. In the case of Bitcoin and Ethereum, there are full nodes and light clients as well as the recent class of super light clients. Full nodes are typically run on servers in data-centers or used for mining the cryptocurrency itself. These full nodes require hundreds of gigabytes of storage. Light clients require less storage usually within a few gigabytes, but also offer less functionality since they don’t hold all transaction information. Light clients only need to download the block headers of the blockchain and are designed for desktop and mobile wallet applications. The amount of data they have to store is much smaller but still grows at the same pace as the blockchain itself. As a light client stores each block header when the number of blocks in the chain doubles the amount of data that the light client has to download doubles as well.

The third class of super light clients requires even less storage. These are clients that do not need to download every single block header for validation and are designed for resource-constrained devices. As a result super light clients can’t be used to monitor the blockchain in real time, but rather are able to read data punctually.

In the case of Ethereum here is a snippet of three entrants, one from each category, with their storage requirements indicated:

Class Network Client Implementation Storage Required
Full Ethereum Geth --syncmode=fastsync 140gb
Light Ethereum Geth --syncmode=light 1.2gb
Super-Light Ethereum BlockQuick 20kb

There are fundamentally different means of implementing super light clients. Today three generations are prevalent:

1st Generation: Remote Clients. These clients rely on a trusted central server or a set of central servers that they use as gateways into the blockchain. Remote clients do not validate the data themselves but trust their central servers to have done all the validation. Examples of this are the Infura Gateway service and the IOTA client for the ESP32 chipset. These clients do not bring the actual blockchain security nor any of the decentralization but are often used during prototyping as they allow to quickly demonstrate features of the blockchain in environments where no trustless client is available yet or not practical.

2nd Generation: Hybrid Clients. The hybrid clients are similar to remote clients but add a level of security and decentralization to the protocol. Typically this is achieved through a scheme in which the gateways are staking a certain amount of value. If one of the gateways is found to be dishonest or providing a wrong fork of the blockchain the clients have means to submit a fraud-proof to the blockchain and thus penalize the misbehavior and the gateways risk to lose their stake. Examples of this are the SlockIt and Chainsafe.

3rd Generation: Trustless Clients. The newest generation of super light clients with research work from earlier this year. The two known algorithms today are FlyClient and BlockQuick both can validate the data they receive using only a fraction of all block headers. They have the ability to differentiate between well-behaved and ill-intentioned servers based on the data and are thus trustless. Open-source implementations are though not yet available. Diode.io is working on an implementation of BlockQuick while the current state of FlyClient is unknown.

Table of Clients

Client Trust Storage RAM Sync Bandwidth
geth --syncmode=fastsync Trustless 200gb 1gb ~100mb per day
geth --syncmode=light Trustless 1.2gb 150mb ~3.5mb per day
BlockQuick Trustless 20kb 50kb 20kb per sync
FlyClient1 Trustless ? ? 400kb per sync
SlockIt Staking Client2 Hybrid 160kb ? ?
Infura Gateway 4kb* ~10kb 0kb
IOTA Node Trustless3 8gb 4gb 1gb per day
IOTA ESP32 Gateway 4kb 10kb 0kb
  1. For FlyClient there is no implementation yet, the bandwidth is taken from the paper
  2. Numbers from slock.it video, the nano client is not yet available for testing.
  3. IOTA itself is currently centralized on its coordinator nodes. Numbers from FAQ

If you’re interested in getting involved in light clients and blockchain clients for constrained devices, especially in the context of Ethereum have a look at the Ethereum magicians group here https://ethereum-magicians.org/c/working-groups/constrained-resource-client-ring or join the ring. We’re actively supporting and contributing research to improve IoT devices access to the blockchain and believe this is a topic the community will be able to push forward together.

Find our more about the details of how BlockQuick’s consensus reputation table works in our previous blog post. The Proof of Concept (POC) code of BlockQuick will soon to be released on GitHub; you will be able to see how the reputation is being calculated. So stay connected! Follow us on Twitter and our website. Stay up-to-date and subscribe to our newsletter.