Function reth::consensus_common::calc::base_block_reward

pub fn base_block_reward(
    chain_spec: &ChainSpec,
    block_number: u64,
    block_difficulty: Uint<256, 4>,
    total_difficulty: Uint<256, 4>,
) -> Option<u128>
Expand description

Calculates the base block reward.

The base block reward is defined as:

  • For Paris and later: None
  • For Petersburg and later: Some(2 ETH)
  • For Byzantium and later: Some(3 ETH)
  • Otherwise: Some(5 ETH)

§Note

This does not include the reward for including ommers. To calculate the full block reward, see block_reward.

§References