Connection of a new node to blockchain network

The Waves Enterprise blockchain platform gives an opportunity to connect new nodes to a blockchain network at any moment.

Practical steps of node connection are stated in the article Connection and removing of nodes.

The general chart for connection of a new node is provided below:

Connection of a new node to blockchain network
  1. A user of a new node passes the public key of the new node to the network administrator (node with the connection-manager permission).

  2. The node with the connection-manager permission uses the received public key for creation of the 111 RegisterNode transaction with the “opType”: “add” parameter.

  3. The 111 transaction gets to the block.

  4. Further, information from the 111 transaction (sender address, new node name and public key) is transferred to states of participant nodes.

  5. In case a new node key is absent in the list of nodes that have been registered in the network genesis block (Network Participants), a new node is initially synchronized. A new node sends the PeerIdentityRequest with its signature to all addresses from the peer list in its configuration file. Peers make sure that a node that has sent the PeerIdentityRequest has been registered in the network.

  6. If the check is successful, peers send their public keys to the new node in response to the PeerIdentityRequest. The new node saves these public keys in its temporary address storage for primary connection with peers. After saving the addresses, the new node has an opportunity to validate network handshakes from its peers.

  7. The new node sends handshake messages with its public key to network participants from the peer lists in its configuration file.

  8. Peers compare the public key in the handshake message and the new node public key from the 111 transaction which has been sent by the node with the connection-manager permission. If the check is successful, peers send handshake responses with their signatures to the new node and send the Peers Messages to the network.

  9. After successful connection, the new node performs synchronization with the network and receives the table with network participant addresses.

See also