Difference between revisions of "Blockchain network"

From wiki
Jump to navigation Jump to search
Line 6: Line 6:
  
 
Types of nodes:
 
Types of nodes:
* Miner; Create new blocks by collecting transactions posted on the blockchain network, checking them, construct a new block and post that on the network. In many blockchains miner receive a reward for being the first one to construct a new block.
+
* Miner/Validator; Create new blocks by collecting transactions posted on the blockchain network, checking them, construct a new block and post that on the network. In many blockchains miner receive a reward for being the first one to construct a new block.
 
* Full node; Checking block validity using all transactions and blocks.
 
* Full node; Checking block validity using all transactions and blocks.
 
* Lightweight node; Checking chain integrity using only the block headers.
 
* Lightweight node; Checking chain integrity using only the block headers.
  
In a private network you don't need mining, you can just appoint one or more nodes that can create new blocks.
+
==Private Networks==
 +
* You don't need mining crypto-currencies, validators have an interest in the blockchain integrity.
 +
* Nodes are known the owners of the blockchain decide on the validator nodes.
 +
* Development is directed by the owners of the blockchain.
 +
[https://www.hyperledger.org/ Hyperledger] is an initiative of the [https://www.linuxfoundation.org Linux Foundation] to standardize blockchain development. [[Hyperledger Fabric]] is a framework for private blockchains.

Revision as of 11:00, 7 June 2021


A peer to peer network that consists of a bunch of computers working on a blockchain.

A network can be public (anyone can participate like in the Ethereum blockchain), private (permissioned) or hybrid.

Types of nodes:

  • Miner/Validator; Create new blocks by collecting transactions posted on the blockchain network, checking them, construct a new block and post that on the network. In many blockchains miner receive a reward for being the first one to construct a new block.
  • Full node; Checking block validity using all transactions and blocks.
  • Lightweight node; Checking chain integrity using only the block headers.

Private Networks

  • You don't need mining crypto-currencies, validators have an interest in the blockchain integrity.
  • Nodes are known the owners of the blockchain decide on the validator nodes.
  • Development is directed by the owners of the blockchain.

Hyperledger is an initiative of the Linux Foundation to standardize blockchain development. Hyperledger Fabric is a framework for private blockchains.