Understanding Different Kinds of Ethereum Networks
Looking to understand more about the different kinds of blockchains and Ethereum networks? Check out this post to learn more about types of blockchains.
Join the DZone community and get the full member experience.
Join For FreeAfter gulping a lot about the “disrupting” things related to blockchain technology, I was very intrigued to quickly set up a development environment with whatever is free and useful on the Internet for developing a kick-ass DApp. I came to learn that “Ethereum” is the most matured protocol around blockchain. Before I proceed further with tools available to set up your dev environment locally for Ethereum, I just wanted to have some background knowledge on the kind of blockchain infrastructure I am going to build.
In this blog, I will first introduce the type of blockchain networks and will conclude with what we are going to build for our development environment.
As we know, the block network can be divided into two broad categories, i.e. public and private networks. Both networks are decentralized and peer-to-peer, but they have separate use cases. Let us now understand the kinds of networks in the blockchain.
Kind of Blockchain Networks
Public Blockchains
The public blockchain is accessible to anyone in the world. One can read or push transactions on a public blockchain and validate the transactions being executed on the blockchain. The kind of blocks that can be added to the blockchain is decided by a consensus or peers.
Private Blockchains
The write permission is in command of a central authority in the network. However, the transaction is fully transparent to every peer in the network. Read privileges can also be customized.
Consortium Blockchains
The consensus process is controlled by a pre-defined set of nodes that are trusted. For example, a network consists of academics institutions in the world each govern a single node, and the blocks are validated by n number of signatories within the network.
“MainNet:" the Main Ethereum Network
The above screenshot is taken from ethernodes.org. This site provides stats for the public Ethereum network. The ETHER or ETH carry the real value of ether on the MainNet. As the size of MainNet grows, you need to compute storage power to validate the blocks on the MainNet. Anyone can connect to the “MainNet." You can get the instructions on “How to Connect with “MainNet” at ethdocs.
“TestNet:" the Test Ethereum Network
The Ether on the TestNet does not carry any real value and is only for a collaborative testing on the network. You can explore “TestNet” tab as shown in the image above on ethernodes.org. But still, it takes hours to get into the sync of the network and push your blocks. So, it might be the choice of a rapid development. Here is a snap of connecting to one of the TestNet “ropsten” using the Parity Ethereum client, which I tried on my local machine. You can notice the logs and time of the node sync in the snap. Also, in addition to that, each transaction on the Network costs some gas, which the test ETH is required. It can be mined locally by some tool like ethminer. Still, we need some complex set up to work on TestNets.
The Private Blockchain Network
The private node can be pre-configured to have some test ETH while starting up. The private nodes can be quickly launched with minimal storage and memory requirements and without much effort. And, it will be an ideal choice having a basic development environment. Here is a screenshot of private blockchain using go-ethereum client on the local machine. You can see there is not any time consuming syncing required for this.
Now, we are familiar with the kind of networks that are there. We can say we want the private network first for the purpose of a basic development environment set up. The choice of other networks depends on our use cases. Now, I hope you have a clear picture of the different kind of blockchain networks available in the Ethereum blockchain space. In the next part of the blog, we will explain how we can set up a private network of Ethereum. Thanks for reading! Stay Tuned!
Published at DZone with permission of Manish Mishra, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments