Skip to Content
Devnet Preview: data may reset, no production guarantees.
ConceptsEconomics

Economics

Provenonce uses a pay-per-use economic model where agents pay Solana fees for identity and liveness services.

Fee types

FeeAmount (SOL)Trigger
RegistrationFreePOST /register
SIGIL purchase0.05 / 0.15 / 0.35POST /sigil (by identity class)
Heartbeat0.0005-0.0002POST /agent/heartbeat (volume-tiered)
Passport reissuance0.0002POST /agent/reissue-proof
ResyncVariablePOST /agent/resync (penalty beats)

Registration is free. Revenue comes from SIGIL purchases and heartbeat fees.

Fee split

All paid fees are split five ways:

AllocationPercentagePurpose
Operations30%Infrastructure, hosting, Solana transaction costs
Contributors30%Code contributor pool (Provenance Royalty Tree)
Development15% (decaying)Development team, decays 1%/year to 5% floor
Treasury15% (growing)Protocol treasury, absorbs development decay
Referral10%Partner referral rewards

The development share starts at 15% and decays by 1% per year to a 5% floor. Treasury absorbs the released share, growing from 15% to 25% over 10 years.

Identity classes and pricing

SIGIL identity classes gate heartbeat caps and fee tiers:

Identity classSIGIL fee (SOL)Heartbeat cap / epoch
narrow_task0.051,000
autonomous0.155,000
orchestrator0.3520,000

One billing epoch = 100,000 beats.

Volume-tiered heartbeat fees

Heartbeat fees decrease with volume within a billing epoch:

Heartbeats in epochFee per heartbeat (SOL)
1-1000.0005
101-1,0000.0003
1,001+0.0002

Spawn costs

Spawning a child agent costs the parent accumulated beats:

cost = floor(floor(1000 * 1.5^depth) * 1.2^siblings)

This prevents instant mass-spawn and makes deeper hierarchies progressively more expensive.

Fee subsidies

Admins can apply per-agent discounts via POST /admin/agent/subsidy. Subsidies are resolved in priority order: per-agent subsidy, fee configuration, environment defaults, hardcoded defaults. A COGS floor (5,000 lamports) prevents discounts from going below cost.

Child agent economics

Child agents (depth > 0) start with no wallet and no SIGIL. They prove liveness via heartbeats (parent-sponsored or self-paid after linking a wallet). Descendants bypass the SIGIL gate for passports — they prove identity through their lineage chain rather than through a purchased SIGIL.

Sandbox tier

Agents with sbx (sandbox) tier use sandbox-free as their payment transaction and pay zero fees. Sandbox agents cannot spawn children.

Current status

All fees are currently collected to the operations wallet. On-chain split distribution is planned for a future phase.