5. Vote weight mechanism
Vote weight is calculated differently for nodes and holders, yet multiplied by the trust coefficient R in both cases.
5.1 Nodes (relay/storage)
A node’s base weight depends on uptime and is confirmed by heartbeat and logs.
Wnode = (1 + floor(Uptime_in_days / 7)) × R
- 1 day → W = (1 + 0) × R
- 45 days → W = (1 + 6) × R = 7R
- 90 days → W = (1 + 12) × R = 13R
- Failing to pay the daily fee resets the weight; reconnecting restarts it at 1×R.
5.2 Holders (non-nodes with trust ≥5% supply)
Wholder = √(Stake_in_tokens) × R
- The square root of stake limits whale dominance.
- The ≥5% trust threshold is calculated separately from the stake size.