For AI agents: a documentation index is available at /llms.txt. Markdown versions of pages are available by appending .md to any documentation URL.
Skip to main content

Consensus protocols

Besu supports the following consensus protocols:

  • QBFT (proof of authority) - The recommended enterprise-grade consensus protocol for private networks.
  • IBFT 2.0 (proof of authority) - Supported for existing private networks.
  • Proof of stake - Used on Ethereum Mainnet and public testnets.
Important

Besu no longer supports the Clique and Ethash consensus protocols.

Learn more about the proof of authority consensus protocols.

The config property in the genesis file specifies the consensus protocol for a chain.

{
"config": {
...
"qbft": {
...
}
},
...
}