Skip to main content

Introduction

Fenine Network implements a halving schedule that systematically reduces block rewards over time. This mechanism ensures long-term sustainability by controlling inflation while maintaining security incentives for validators.
Key Points:
  • Initial Block Reward: 3.5 FEN per block
  • Halving Interval: Every 10,512,000 blocks (~1 year)
  • First Halving: Block 10,512,000 (Q1 2026)
  • Final Reward: 0.109375 FEN per block (after 5 halvings)

Halving Mechanism

How It Works

Every 10,512,000 blocks (~365 days), the block reward is reduced by 50%. Formula: Rn=R0timesleft(frac12right)nR_n = R_0 \\times \\left(\\frac{1}{2}\\right)^n Where:
  • RnR_n: Block reward after nn halvings
  • R0R_0: Initial block reward (3.5 FEN)
  • nn: Number of halvings

Block Time Calculation

With 3-second block times: textBlocksperyear=frac365.25times24times60times603=10,512,000textblocks\\text{Blocks per year} = \\frac{365.25 \\times 24 \\times 60 \\times 60}{3} = 10,512,000 \\text{ blocks}

Halving Timeline

HalvingBlock HeightDate (Est.)Block RewardAnnual Emission% of Initial
Genesis02025-01-013.5 FEN36,792,000 FEN100%
1st10,512,0002026-01-011.75 FEN18,396,000 FEN50%
2nd21,024,0002027-01-010.875 FEN9,198,000 FEN25%
3rd31,536,0002028-01-010.4375 FEN4,599,000 FEN12.5%
4th42,048,0002029-01-010.21875 FEN2,299,500 FEN6.25%
5th52,560,0002030-01-010.109375 FEN1,149,750 FEN3.125%
6th+63,072,000+2031+<0.11 FENDecreasing<3%
After 5 halvings, block rewards become negligible. Validators increasingly rely on transaction fees for revenue.

Economic Impact

Inflation Rate Over Time

Chart of inflation rate (% increase in circulating supply):
Year 1:  36.8% ███████████████████████████████████████
Year 2:  13.5% ███████████████
Year 3:   6.7% ████████
Year 4:   3.4% ████
Year 5:   1.7% ██
Year 6:   0.8% █
Year 7:   0.4% 
Year 8:   0.2% 
Year 10: <0.1%
Trend: Exponential decrease, approaching 0% inflation.

Validator Economics

How halvings affect validator profitability: Year 1 (2025): High Rewards Era
  • Block reward: 3.5 FEN
  • Validator with 1% stake: ~367,920 FEN/year
  • APY: Very High (early adopter advantage)
Year 2 (2026): First Halving
  • Block reward: 1.75 FEN (50% reduction)
  • Same validator: ~183,960 FEN/year
  • APY: Still High (50% of previous)
  • Mitigation: Network growth, more transaction fees
Year 3-4 (2027-2028): Transition Period
  • Block rewards continue decreasing
  • Transaction fees become significant
  • Validators optimize for fee capture
  • APY: Moderate but sustainable
Year 5+ (2029+): Fee-Dominant Era
  • Block rewards minimal
  • 80%+ revenue from transaction fees
  • High-activity validators earn more
  • APY: Competitive with traditional finance

Fee Market Evolution

As block rewards decrease, transaction fees become primary validator revenue:
YearBlock Reward RevenueFee Revenue (est.)Fee % of Total
202595%5%5%
202690%10%10%
202780%20%20%
202865%35%35%
202945%55%55%
203030%70%70%
2035<10%>90%>90%
Implication: Validators increasingly compete for transaction throughput and fee optimization.

Impact on Staking APY

APY Projections

Estimated staking APY over time (assumes stable network stake):
Low network activity, minimal fee revenue:
YearBlock RewardsFeesTotal APY
202536.8%0.5%37.3%
202618.4%1.0%19.4%
20279.2%1.5%10.7%
20284.6%2.0%6.6%
20292.3%2.5%4.8%
20301.15%3.0%4.15%
Still competitive with traditional staking platforms.

Smart Contract Implementation

Halving Logic

The halving is implemented in the FenineSystem contract:
function getBlockReward(uint256 blockNumber) public pure returns (uint256) {
    uint256 HALVING_INTERVAL = 10_512_000;
    uint256 INITIAL_REWARD = 3.5 ether;
    
    // Calculate number of halvings
    uint256 halvings = blockNumber / HALVING_INTERVAL;
    
    // Max 10 halvings (after that, reward is negligible)
    if (halvings >= 10) {
        return 0;
    }
    
    // Calculate reward: initial_reward / (2^halvings)
    return INITIAL_REWARD >> halvings;  // Bit shift = divide by 2
}

Query Current Reward

// Using ethers.js
const fenineSystem = new ethers.Contract(
  "0x0000000000000000000000000000000000001000",
  FENINE_SYSTEM_ABI,
  provider
);

// Get current block number
const blockNumber = await provider.getBlockNumber();

// Get current block reward
const reward = await fenineSystem.getBlockReward(blockNumber);

console.log("Current block:", blockNumber);
console.log("Block reward:", ethers.formatEther(reward), "FEN");

// Calculate halvings occurred
const halvings = Math.floor(blockNumber / 10512000);
console.log("Halvings:", halvings);

Check Next Halving

const HALVING_INTERVAL = 10_512_000;

const currentBlock = await provider.getBlockNumber();
const currentHalving = Math.floor(currentBlock / HALVING_INTERVAL);
const nextHalvingBlock = (currentHalving + 1) * HALVING_INTERVAL;
const blocksUntilHalving = nextHalvingBlock - currentBlock;

// Convert to time (3 second blocks)
const secondsUntilHalving = blocksUntilHalving * 3;
const daysUntilHalving = secondsUntilHalving / 86400;

console.log("Next halving at block:", nextHalvingBlock);
console.log("Blocks remaining:", blocksUntilHalving);
console.log("Days until halving:", daysUntilHalving.toFixed(2));

Comparison with Other Networks

NetworkHalving IntervalInitial RewardCurrent RewardTotal Supply Cap
Fenine1 year3.5 FEN3.5 FEN100M
Bitcoin4 years50 BTC6.25 BTC21M
Litecoin4 years50 LTC12.5 LTC84M
Bitcoin Cash4 years50 BCH6.25 BCH21M
Dash~383 days50 DASH~2.7 DASH18.9M
Fenine’s Approach:
  • Faster halvings (1 year vs 4 years) = quicker scarcity
  • Higher initial inflation = network bootstrap and growth
  • Earlier deflation = sustainable long-term tokenomics

Strategic Implications

For Validators

Early Entry Advantage

2025-2027: Highest block rewards
  • Maximize earnings in first 2-3 years
  • Build large stake early
  • Establish validator reputation

Fee Optimization

2028+: Fee-dominant revenue
  • Optimize MEV extraction
  • Run high-performance infrastructure
  • Attract DeFi projects

Commission Strategy

Adjust over time
  • Year 1-2: Low commission (growth phase)
  • Year 3-4: Moderate commission
  • Year 5+: Higher commission (fee sharing)

Diversification

Multiple revenue streams
  • Block rewards (decreasing)
  • Transaction fees (increasing)
  • MEV opportunities
  • Proximity rewards

For Delegators

Early Staking Benefits:
  • Lock in high APY (Year 1-2)
  • Compound at maximum rates
  • Build large stake before halvings
Long-term Strategy:
  • Choose validators with fee optimization
  • Redelegate to high-performance validators
  • Monitor APY trends

For Ecosystem

DApp Developers:
  • Predictable supply schedule
  • Increasing scarcity drives token value
  • Fee market creates sustainable validator economics
Investors:
  • Clear tokenomics roadmap
  • Deflationary trajectory
  • Bitcoin-like scarcity model

Frequently Asked Questions

No. Transaction fees replace block rewards as primary validator revenue.With moderate network activity, APY remains at 8-15% even after 5 halvings (2030+).High-activity networks can sustain even higher APY from fees alone.
Stake now. Early stakers benefit from:
  • Highest block rewards (3.5 FEN/block)
  • Compounding at maximum APY
  • Lower network competition
  • Earlier entry into proximity network
Every year, rewards halve. Waiting means missing out.
After 10 halvings, block rewards become negligible (<0.01 FEN).Validators survive on:
  • Transaction fees (primary revenue)
  • MEV (if applicable)
  • Commission from delegators
Similar to Bitcoin miners post-2140.
Theoretically yes, but highly unlikely.Changing would require:
  • Network consensus (governance vote)
  • Hard fork upgrade
  • Community agreement
Fenine’s halving schedule is designed for long-term sustainability and unlikely to change.
Historical pattern (from Bitcoin, Litecoin):
  1. Pre-halving rally (3-6 months before)
  2. Halving event (price may spike or dip)
  3. Post-halving accumulation (6-12 months after)
  4. Bull run (12-18 months after)
Reduced supply + constant/increasing demand = upward price pressure.Note: Past performance doesn’t guarantee future results.

Halving Countdown

Track the next halving: Live Dashboard: fene.app/halving Features:
  • Real-time countdown
  • Current block reward
  • Historical halving data
  • Supply curve visualization
  • APY projections

Staking Overview

Learn about staking mechanics

Economic Model

FPoS tokenomics deep dive

Run a Validator

Start earning block rewards

Block Explorer

View current block height
Halving Support:Stay updated on halving events and economic analysis!