Anchoring

One of the main ideas behind private blockchain is that transactions are processed by a certain number of participants known in advance. In a private blockchain there is a threat of information spoofing, because the number of participants is quite small if we compare it to the public blockchain where there are no restrictions to join the network. When using PoS consensus algorithm, the threat of overwriting a blockchain becomes real.

To increase the confidence of the private blockchain participants in data placed there, the anchoring mechanism was developed. Anchoring allows checking the data for invariability. The guarantee of invariability is achieved by publishing data from a private blockchain to a larger network, where data spoofing is unlikely due to a larger number of participants and blocks. Published data represent a signature and a height of blocks in a private network. Mutual connectivity of two or more networks increases their resistance, because as a result of a long-range attack as forgery or alteration of data resulting from a long-range attack would require attacking all connected networks.

How does anchoring work in the Waves Enterprise blockchain

Схема анкоринга в Targetnet

Targetnet anchoring scheme

Anchoring process is shown below:

  1. Anchoring configurations are set in the configuration file of the private blockchain node. You should use recommended values for the configurations to avoid anchoring malfunctioning.

  2. Each height-range an anchoring transaction, that contains data of the block at current-height - threshold, is broadcasted to the Targetnet by the anchoring node. The Data Transaction with a key-value list is used as an anchoring transaction. The node then requests height of the broadcasted transaction.

  3. The node then checks the Targetnet height each 30 seconds until its height reaches the height of the created transaction + height-above.

  4. When required Targetnet height is reached and the presence of previously created data transaction is confirmed, another anchoring data transaction is created in the private blockchain.

Transaction structure for anchoring

Targetnet transaction consists of the following fields:

  • height - the height of the chosen block from the private blockchain.

  • signature - the signature of the chosen block from the private blockchain.

The private blockchain transaction consists of the following fields:

  • height - the height of the chosen block from the private blockchain.

  • signature - the signature of the chosen block from the private blockchain.

  • targetnet-tx-id - the Targetnet anchoring transaction ID.

  • targetnet-tx-timestamp - the timestamp of the Targetnet anchoring transaction.

Errors during the anchoring

Errors during the anchoring can occur at any step. In case of any error in the private blockchain the Data Transaction containing the error code and the description is always published. The error transaction includes the following data:

  • height - the height of the chosen block from the private blockchain.

  • signature - the signature of the chosen block from the private blockchain.

  • error-code - the error code.

  • error-message - the error message.

Error types

Code

Message

Possible cause

0

Unknown error

An unknown error occurred during the send of the transaction to the Targetnet

1

Fail to create data transaction for Targetnet

Creating of the transaction to be sent to the Targetnet failed

2

Fail send transaction to Targetnet

The transaction publication to the Targetnet failed (it could be
a JSON request error)

3

Invalid http status of response from Targetnet
transaction broadcast

The Targetnet has returned an HTTP code other than 200 after the
transaction publication

4

Fail to parse http body of response from Targetnet
transaction broadcast

The Targetnet has returned an unknown JSON after
the transaction publication

5

Targetnet return transaction with id='$TargetnetTxId'
but it differ from transaction that we sent
id='$sentTxId

The Targetnet has returned mismatched ID after
the transaction publication

6

Targetnet didn't respond on transaction info request

The Targetnet has not responded to the request about the transaction info

7

Fail to get current height in Targetnet

Failed to get current Targetnet height

8

Anchoring transaction in Targetnet disappeared after
height rise enough

The anchoring transaction has disappeared from the Targetnet after
its height evened height-above value

9

Fail to create sidechain anchoring transaction

Fail to public the anchoring transaction in the private blockchain

10

Anchored transaction in sidechain was changed during
Targetnet height arise await, looks like
a rollback has happened

Anchored transaction in sidechain was changed during Targetnet height
arise await, looks like a rollback has happened