QBFT
KalyChain QBFT proof of authority (PoA) consensus protocol implementation
KalyChain implements the QBFT proof of authority (PoA) consensus protocol. QBFT is the recommended enterprise-grade consensus protocol for private networks.
In QBFT networks, approved accounts, known as validators, validate transactions and blocks. Validators take turns to create the next block. Before inserting the block onto the chain, a super-majority (greater than or equal to 2/3) of validators must first sign the block.
Existing validators propose and vote to add or remove validators.
The QBFT properties are:
blockperiodseconds
- The minimum block time, in seconds.epochlength
- The number of blocks after which to reset all votes.requesttimeoutseconds
- The timeout for each consensus round before a round change, in seconds.blockreward
- Optional reward amount in Wei to reward the beneficiary. Defaults to zero (0). Can be specified as a hexadecimal (with 0x prefix) or decimal string value. If set, then all nodes on the network must use the identical value.validatorcontractaddress
- Address of the validator smart contract. Required only if using a contract validator selection. The address must be identical to the address in thealloc
section. This option can also be used in the transitions configuration item if swapping validator management methods in an existing network.miningbeneficiary
- Optional beneficiary of theblockreward
. Defaults to the validator that proposes the block. If set, then all nodes on the network must use the same beneficiary.extraData
- RLP encoded extra data.
Extra data
The extraData
property is an RLP encoding of:
32 bytes of vanity data.
If using:
Block header validator selection, a list of validator addresses.
Contract validator selection, no validators.
Any validator votes. No vote is included in the genesis block.
The round the block was created on. The round in the genesis block is 0.
A list of seals of the validators (signed block hashes). No seals are included in the genesis block.
When using block header validator selection, the important information in the genesis block extra data is the list of validators. All other details have empty values in the genesis block.
Formally, extraData
in the genesis block contains:
If using block header validator selection:
RLP([32 bytes Vanity, List<Validators>, No Vote, Round=Int(0), 0 Seals])
.If using contract validator selection:
RLP([32 bytes Vanity, 0 Validators, No Vote, Round=Int(0), 0 Seals])
.
!!! info
Block time
When the protocol receives a new chain head, the block time (blockperiodseconds
) timer starts. When blockperiodseconds
expires, the round timeout (requesttimeoutseconds
) timer starts and the protocol proposes a new block.
If requesttimeoutseconds
expires before adding the proposed block, a round change occurs, with the block time and timeout timers reset. The timeout period for the new round is two times requesttimeoutseconds
. The timeout period continues to double each time a round fails to add a block.
Usually, the protocol adds the proposed block before reaching requesttimeoutseconds
. A new round then starts, resetting the block time and round timeout timers. When blockperiodseconds
expires, the protocol proposes the next new block.
Once blockperiodseconds
is over, the time from proposing a block to adding the block is small (usually around one second) even in networks with geographically dispersed validators.
Add and remove validators
QBFT provides two methods to manage validators:
Block header validator selection - Existing validators propose and vote to add or remove validators using the QBFT JSON-RPC API methods.
Contract validator selection - Use a smart contract to specify the validators used to propose and validate blocks.
You can use transitions to swap between block header validator selection and contract validator selection in an existing network.
For block header validator selection, initial validators are configured in the genesis file's extraData
property, whereas the initial validators when using the contract validator selection method are configured in the genesis file's storage
section.
Add and remove validators using block headers
Enable the HTTP interface with --rpc-http-enabled
or the WebSockets interface with --rpc-ws-enabled
.
The QBFT API methods are disabled by default. To enable them, specify the --rpc-http-api
or --rpc-ws-api
option and include QBFT
.
The methods to add or remove validators are:
To view validator metrics for a specified block range, use qbft_getSignerMetrics
.
!!! note
Add a validator
To propose adding a validator, call qbft_proposeValidatorVote
, specifying the address of the proposed validator and true
. A majority of validators must execute the call.
!!! example "JSON-RPC qbft_proposeValidatorVote
request example"
When the validator proposes the next block, the protocol inserts one proposal received from qbft_proposeValidatorVote
into the block. If blocks include all proposals, subsequent blocks proposed by the validator will not contain a vote.
When more than 50% of the existing validators have published a matching proposal, the protocol adds the proposed validator to the validator pool and the validator can begin validating blocks.
To return a list of validators and confirm the addition of a proposed validator, use qbft_getValidatorsByBlockNumber
.
!!! example "JSON-RPC qbft_getValidatorsByBlockNumber
request example"
To discard your proposal after confirming the addition of a validator, call qbft_discardValidatorVote
, specifying the address of the proposed validator.
!!! example "JSON-RPC qbft_discardValidatorVote
request example"
Remove a validator
The process for removing a validator is the same as adding a validator except you specify false
as the second parameter of qbft_proposeValidatorVote
.
Epoch transition
At each epoch transition, QBFT discards all pending votes collected from received blocks. Existing proposals remain in effect and validators re-add their vote the next time they create a block.
An epoch transition occurs every epochLength
blocks. Define epochlength
in the QBFT genesis file.
Add and remove validators using a smart contract
In a new QBFT network by specifying the contract details in the genesis file.
You can't use the JSON-RPC methods to add or remove validators when using a smart contract to manage nodes. You must interact with the contract functions using transactions.
If network conditions render it impossible to add and remove validators using a smart contract, you can override smart contract validators.
Minimum number of validators
QBFT requires four validators to be Byzantine fault tolerant. Byzantine fault tolerance is the ability for a blockchain network to function correctly and reach consensus despite nodes failing or propagating incorrect information to peers.
Transitions
The transitions
genesis configuration item allows you to specify a future block number at which to change QBFT network configuration in an existing network. For example, you can update the block time, block reward, validator management method, or mining beneficiary.
Do not specify a transition block in the past. Specifying a transition block in the past could result in unexpected behavior, such as causing the network to fork.
Configure block time on an existing network
To update an existing network with a new blockperiodseconds
:
Stop all nodes in the network.
In the genesis file, add the
transitions
configuration item where:<FutureBlockNumber>
is the upcoming block at which to changeblockperiodseconds
.<NewValue>
is the updated value forblockperiodseconds
.
!!! example "Transitions configuration"
Restart all nodes in the network using the updated genesis file.
To verify the changes after the transition block, call
qbft_getValidatorsByBlockNumber
, specifyinglatest
.
Configure block rewards on an existing network deployment
To update an existing network with a new blockreward
:
Stop all nodes in the network.
In the genesis file, add the
transitions
configuration item where:<FutureBlockNumber>
is the upcoming block at which to changeblockreward
.<NewValue>
is the updated value forblockreward
.
!!! example "Transitions configuration"
!!! note
Restart all nodes in the network using the updated genesis file.
Swap validator management methods
To swap between block header validator selection and contract validator selection methods in an existing network:
Stop all nodes in the network.
In the genesis file, add the
transitions
configuration item where:<FutureBlockNumber>
is the upcoming block at which to change the validator selection method.<SelectionMode>
is the validator selection mode to switch to. Valid options arecontract
andblockheader
.<ContractAddress>
is the smart contract address, if switching to the contract validator selection method.
!!! example "Transitions configuration"
Restart all nodes in the network using the updated genesis file.
Configure the mining beneficiary on an existing network deployment
To update an existing network with a new mining beneficiary:
Stop all nodes in the network.
In the genesis file, add the
transitions
configuration item where:<FutureBlockNumber>
is the upcoming block at which to changeminingbeneficiary
.<NewAddress>
is the updated 20-byte address forminingbeneficiary
. Starting at<FutureBlockNumber>
, block rewards go to this address.
!!! example "Transitions configuration"
!!! note
Restart all nodes in the network using the updated genesis file.
*[vanity data]: Validators can include anything they like as vanity data. *[RLP]: Recursive Length Prefix
Last updated