Skip to main content

Appendix C: Economic Parameters

This appendix consolidates the fixed economic and network parameters of the Specter Protocol.

Token Specification

ParameterValue
Token nameGHOST
Genesis supply1,000,000,000 GHOST
Hard cap1,500,000,000 GHOST
Emission cap500,000,000 GHOST
Tail emission floor0.5% annual
Decimals18
Smallest unitaghost (1 GHOST = 10^18 aghost)

Genesis Allocation

CategoryAmount (GHOST)Percentage
Validator & Network Rewards300,000,00030.0%
Ecosystem & Grants Fund180,000,00018.0%
Core Team & Contributors150,000,00015.0%
Community & Airdrops100,000,00010.0%
Foundation Treasury90,000,0009.0%
Seed Investors90,000,0009.0%
Strategic Round50,000,0005.0%
Relayer Incentives40,000,0004.0%
Total1,000,000,000100.0%
  • Validator & Network Rewards — Block rewards, staking incentives, and validator bootstrapping over the network's lifetime.
  • Ecosystem & Grants Fund — Developer grants, ecosystem growth, hackathons, integration bounties, and partnership incentives.
  • Core Team & Contributors — Founding team and early contributors, subject to daily linear vesting with zero TGE unlock.
  • Community & Airdrops — Direct community distribution, airdrops, and engagement reward programs.
  • Foundation Treasury — DAO-controlled reserve for long-term protocol needs, governance-approved spending only.
  • Seed Investors — Early backers who funded initial development, subject to daily linear vesting with zero TGE unlock.
  • Strategic Round — Strategic partners and infrastructure providers, subject to daily linear vesting with zero TGE unlock.
  • Relayer Incentives — Dedicated pool for IBC relayer compensation, distributed on a per-packet basis.

Emission Schedule

YearRateEmitted (M)Cumulative (M)
112.0%120.01,120.0
28.0%89.61,209.6
36.0%72.61,282.2
44.5%57.71,339.9
53.5%46.91,386.8
62.5%34.71,421.5
72.0%28.41,449.9
81.5%21.71,471.7
91.0%14.71,486.4
101.0%14.91,501.2

After Year 10, emission settles at the 0.5% tail emission floor.

Network Parameters

ParameterValue
Chain ID5446
Block time~5 seconds
ConsensusCometBFT (Cosmos SDK v0.53+)

Validator Parameters

ParameterValue
Minimum validators50
Target validators (Year 1)150
Minimum self-delegation100,000 GHOST
Maximum commission rate20%
Commission change delay72 hours
Unbonding period21 days
Downtime slashing0.01% of stake
Double-sign slashing5% of stake

Relayer Parameters

ParameterValue
Relayer incentive pool40,000,000 GHOST
Distribution modelPer-packet rewards
Minimum relayer bond10,000 GHOST
Fee recapture rate50%
Minimum success rate95%

Governance Parameters

ParameterValue
Proposal deposit10,000 GHOST
Voting period7 days
Quorum33.4%
Pass threshold50% + 1
Veto threshold33.4%
Execution timelock48 hours
Foundation multisig5-of-9 (security-critical only)
Multisig dissolutionMonth 24

Ghost Protocol Parameters

ParameterValue
ZK verification gas~220,000
Merkle tree depth20
Merkle tree capacity~1,048,576 commitments (2^20)
Root history sizeLast 100 roots
Commitment cooldown5 seconds per address
Policy gas cap100,000 gas (staticcall)

Parameter Notes

  • ZK verification gas (~220k) — The cost of verifying a single Groth16 proof on-chain via the EIP-197 pairing precompile. This is the dominant gas cost of a redemption transaction.
  • Merkle tree depth (20) — A depth of 20 supports approximately one million commitments per vault instance. Additional vault instances can be deployed if capacity is exhausted.
  • Root history (100 roots) — The contract stores the last 100 Merkle roots. A proof generated against any of these roots remains valid, giving users a window of approximately 500 seconds (100 blocks at ~5 seconds each) to submit their proof after generating it.
  • Commitment cooldown (5 seconds) — Limits each address to one commitment per block, preventing spam and reducing the effectiveness of timing-based deanonymization attacks.
  • Policy gas cap (100,000) — Reveal policy contracts are invoked via staticcall with a hard gas limit of 100,000. This prevents policies from performing unbounded computation or causing out-of-gas reverts in the main redemption transaction.