โš ๏ธ Testnet only โ€” TRITO tokens have no real monetary value. Not financial advice.
Novel Consensus Protocols

The Tri-Pillar Consensus

Three independently novel blockchain consensus protocols โ€” invented by Jordan Pobienski, first disclosed June 12 2026, permanently published with a citable DOI on Zenodo.

01

PoHH

Proof of Hidden History

Entropy Source

"What randomness seals this block?"

02

PoCS

Proof of Commitment & Streak

Eligibility Gate

"Who is allowed to participate?"

03

CeR

Community Engagement Rank

Selection Weight

"Who gets chosen from eligible participants?"

01

Pillar 1 โ€” Entropy Source

PoHH โ€” Proof of Hidden History

PoHH is a compound entropy protocol โ€” the first consensus mechanism to use real-time token burn events as cryptographic randomness for block sealing. It combines two sub-protocols:

PoH โ€” Proof of History

SHA-256 recursive hash chain. Creates a deterministic cryptographic clock. Every slot references the previous block hash โ€” tamper-evident and verifiable.

PoH = keccak256(blockhash, slotId)

BHH โ€” Burning Hidden History

VRF randomly selects one burn event from the previous block's trading activity as additional entropy. The selected event is hidden until VRF fires โ€” yet permanently recorded.

BHH = keccak256(burner, amount, timestamp, slotId)

// Final PoHH seal

PoHH_seal = keccak256(PoH_hash, BHH_entropy, slotId)

๐ŸŽฒ The Hidden Property

The burn event selected as entropy is unknown until VRF fires โ€” yet permanently recorded in two places: block history AND contract event log. Dual verification.

๐Ÿ“ˆ Scales with Volume

More trading = more burn events = larger entropy pool = harder to manipulate. Security scales directly with network economic activity โ€” a first in blockchain.

๐Ÿ”„ Involuntary Security

Traders unknowingly contribute to consensus security through normal trading. No extra action required โ€” every swap automatically strengthens block sealing entropy.

Minimum 3 burn events required

A slot must have at least 3 burn events to be valid for BHH selection. This prevents single-transaction entropy manipulation. Empty or low-activity slots fall back to the last valid slot.

02

Pillar 2 โ€” Eligibility Gate

PoCS โ€” Proof of Commitment & Streak

PoCS fundamentally separates two questions that classical Proof of Stake conflates:

Eligibility question

"Should this node be allowed to participate?"

Answer: Yes, if they have staked any amount. Stake SIZE is irrelevant โ€” only presence matters.

Influence question

"How much consensus weight do they have?"

Answer: Proportional to lock duration tier and streak consistency. Stake size is completely irrelevant here.

21-Tier Commitment Ladder

5%

10d

T1

10%

30d

T3

17%

50d

T5

26%

70d

T7

50%

110d

T11

100%

180d

T18

130%

210d

T21

Full 21 tiers from 10 days/5% APR to 210 days/130% APR. APR is fixed โ€” not proportional to stake size.

โฑ Streak Mechanics

Staking streak increments by 1 for each consecutive daily epoch with an active stake. Missing a day resets to 1.

Key: unstaking does NOT reset the streak. Only missing a consecutive epoch resets it.

๐Ÿ’ก Wealth Attack Resistance

An attacker staking 10,000,000 TRITO today has 1 CeR staking ticket. A regular participant with 1,000 TRITO staking for 121 days has 250 tickets.

Time cannot be purchased.

03

Pillar 3 โ€” Selection Weight

CeR โ€” Community Engagement Rank

CeR is the first consensus weight system to use dual-activity merit scoring โ€” measuring both staking consistency AND trading activity simultaneously as co-equal determinants of validator influence.

250

max staking tickets

12 tiers โ€” F-New to SS-Immortal

250

max trading tickets

12 tiers โ€” F-Fresh to SS-MarketMaker

ยฑ50

behavior adjustment

bounded per call โ€” manipulation resistant

Staking RankMin StreakTicketsTrading Rank
SS-Immortal121+ days250SS-MarketMaker
S-Legend90+ days150S-Titan
A+-Elite75+ days110A+-Whale
A-Champion60+ days80A-Trader
B+-Veteran45+ days55B+-Dealer
B-Contributor30+ days35B-Exchanger
F-New0+ days1F-Fresh

๐Ÿ”— Cross-Pillar Integration

Trading activity simultaneously feeds CeR trading rank (more tickets) AND PoHH BHH entropy (burn events). The same economic action contributes to both consensus weight and consensus security.

How the Three Pillars Interact

Trading activity feeds:

BHH burn events โ†’ PoHH entropy (Pillar 1)
Trading streak โ†’ CeR trading rank โ†’ VRF tickets (Pillar 3)

Staking activity feeds:

Stake presence โ†’ PoCS eligibility (Pillar 2)
Staking streak โ†’ CeR staking rank โ†’ VRF tickets (Pillar 3)

Block sealing flow

1

5-second slot timeout โ†’ all burn events collected for BHH entropy pool

2

requestSlot() called โ†’ PoH hash computed โ†’ VRF request fired to Chainlink

3

Chainlink VRF returns (~30 seconds) โ†’ fulfillRandomWords() triggered

4

BHH: VRF selects one burn event from valid slot โ†’ combined with PoH = PoHH seal

5

CeR: PoHH seal used as additional entropy โ†’ weighted selection from ticket pool

6

Leader + 2 co-signers selected โ†’ rewards distributed (70% / 25% / 5%)

๐Ÿ›ก๏ธ

Intellectual Property Notice

The protocols described on this page โ€” PoHH (Proof of Hidden History), BHH (Burning Hidden History), PoCS (Proof of Commitment & Streak), and CeR (Community Engagement Rank) โ€” were conceived and designed entirely by Jordan Pobienski, TRITO Foundation, Sofia, Bulgaria.

First disclosure

June 12, 2026

GitHub commit 8f6870c

Published record

Zenodo DOI

10.5281/zenodo.20767816

Implementation

Live on Sepolia

100/100 tests passing