Skip to main content

$TRI Token Economics

$TRI is the native token of the Trinity DePIN network. It rewards node operators, governs protocol parameters, and serves as the unit of account for all on-chain operations.

Total Supply

Total Supply = 3^21 = 10,460,353,203 $TRI

The supply is derived from the Trinity Identity: the number of unique states representable by 21 balanced ternary trits. This is a fixed, non-inflationary cap -- no additional tokens will ever be minted.

PropertyValue
Token Symbol$TRI
Token NameTrinity Token
Decimals18
Total Supply10,460,353,203 (3^21)
NetworkEthereum (Sepolia testnet)

Allocation

CategoryPercentageAmount ($TRI)Purpose
Node Rewards40%4,184,141,281Emitted to node operators for useful work
Founder20%2,092,070,640Core team allocation with vesting
Community20%2,092,070,640Grants, bounties, ecosystem growth
Treasury10%1,046,035,320Protocol development and operations
Liquidity10%1,046,035,320DEX liquidity and market making

Vesting Schedules

Smart Contract Only

Vesting is implemented in TrinityToken.sol on-chain. The node software (depin.zig) does not enforce vesting -- it is handled at the contract level.

CategoryCliffVesting PeriodSchedule
Founder12 months48 monthsLinear monthly after cliff
CommunityNone36 monthsLinear monthly, governed by DAO
Treasury6 months24 monthsLinear monthly after cliff
LiquidityNoneImmediateAvailable at TGE for DEX pools
Node RewardsNoneOngoingEmitted per-operation, no cap per period

Node Reward Emissions

The Node Rewards pool (40% of supply) is emitted dynamically based on actual work performed. There is no fixed emission schedule -- rewards flow proportionally to useful computation.

Estimated emission curve:

YearEstimated EmissionCumulativePool Remaining
1~400M TRI400M3,784M
2~600M TRI1,000M3,184M
3~800M TRI1,800M2,384M
4~900M TRI2,700M1,484M
5~700M TRI3,400M784M

Emission rates are governed by network activity. As the pool diminishes, per-operation rates may be adjusted via governance to extend the emission timeline.

Staking

Staking $TRI provides two benefits:

  1. Earnings multiplier -- stake 100+ TRI for a 1.5x multiplier on all node earnings
  2. Governance power -- staked tokens grant voting rights on protocol parameters (planned)

Staking Parameters

Values from src/trinity_node/token_staking.zig:

ParameterValueSource
Minimum Stake100 TRItoken_staking.zig:17
Earnings Multiplier1.5x (when staked)depin.zig
PoS Failure Slash Rate1% per failuretoken_staking.zig:19
Corruption Slash Rate5% per corruption eventtoken_staking.zig:21
Min Reputation for Staking0.2 (20%)token_staking.zig:23

Staking Tiers (API Access)

Staked $TRI determines your API tier. Higher stakes unlock higher rate limits, reward multipliers, and full endpoint access. Defined in src/trinity_node/http_api.zig.

TierStaked $TRIRate LimitReward MultiplierAPI Access
Free010 req/min1.0x/health, /node/status, /metrics, /rewards/rates, /node/tier
Staker100+ TRI60 req/min1.5xAll endpoints
Power1,000+ TRI300 req/min2.0xAll endpoints + priority jobs
Whale10,000+ TRIUnlimited3.0xAll endpoints + dedicated worker pool

Identity is wallet-based: include your wallet address via the X-Wallet HTTP header. No API keys required -- your staked amount is your subscription.

Staking Mechanics

  • Minimum stake: 100 TRI to activate the Staker tier (1.5x earnings multiplier)
  • Reputation requirement: Nodes must maintain a reputation score above 0.2 to remain staked
  • Slashing: PoS failures lose 1% of stake; data corruption loses 5% of stake
  • Compounding: Rewards can be re-staked to increase the staking balance
Planned Features

The following features are designed but not yet implemented in the node software:

  • Lock period: 7 days minimum (planned)
  • Unstaking cooldown: 7-day cooldown period (planned)
  • Governance tiers: Tiered voting power based on stake amount (planned)

Contract Address

Testnet Only

$TRI is currently deployed on Ethereum Sepolia testnet. Mainnet deployment is planned for a future milestone.

NetworkAddress
Sepolia Testnet0xef368e29FA3aB2eaf02BccD05438ED3bafE9f469
Ethereum MainnetNot yet deployed

Governance

$TRI holders with staked tokens can vote on:

ParameterCurrent ValueGovernance Range
VSA Evolution reward rate0.001 TRI0.0001 -- 0.01 TRI
Navigation reward rate0.0001 TRI0.00001 -- 0.001 TRI
WASM Conversion reward rate0.01 TRI0.001 -- 0.1 TRI
Benchmark reward rate0.005 TRI0.0005 -- 0.05 TRI
Storage Hosting rate0.00005 TRI0.000005 -- 0.0005 TRI
Storage Retrieval rate0.0005 TRI0.00005 -- 0.005 TRI
Staking minimum100 TRI10 -- 10,000 TRI
PoS failure slash rate1%0.1% -- 10%
Corruption slash rate5%1% -- 25%

Governance proposals require a quorum of 5% of staked supply and a simple majority to pass.

Next Steps

  • Rewards -- detailed reward rates and bonus multipliers
  • Quick Start -- start earning $TRI now
  • Architecture -- how the network secures the token economy