## Specification ### Parameters | Constant | Value | | - | - | | `MAX_ISSUANCE_POINT` | `Gwei(2**25 * 10**9)` | ### Base Reward Calculation The calculation of the base rewards is adjusted as follows: ```python def get_base_reward_per_increment(state: BeaconState) -> Gwei: balance = get_total_active_balance(state) balance_root = integer_squareroot(balance) denominator = balance_root + balance_root * balance // MAX_ISSUANCE_POINT return Gwei(EFFECTIVE_BALANCE_INCREMENT * BASE_REWARD_FACTOR // denominator) ```