Fee Structure
CC has three fee types. Following CIP-0078, transfer fees and lock fees were eliminated, leaving traffic fees and holding fees as the two active mechanisms.Traffic Fees
Traffic credits are non-transferable. Once CC is converted to traffic, it can only pay for transaction submissions. If a validator’s traffic budget is exhausted, transactions will fail. Auto-top-up automation is available and recommended.Traffic credits are consumed even if a confirmation request fails due to contention on consuming contracts — for example, when two transfers attempt to consume the same coin contract.
Holding Fees
Holding fees are a fixed charge per coin contract (UTXO) per unit of time, independent of the coin’s face value. They promote merging of CC to reduce network storage use by incentivizing removal of dust coins. Holding fees are not charged on transfers, only on expired coin contracts via theAmulet_ExpireV2 choice — see Dust Expiry below for how this works.
Transfer and Lock Fees (Post CIP-0078)
CIP-0078 eliminated almost all fees for CC transfers and locks. Neither legacy Amulet transfers, CN Token Standard two-step transfers, nor one-stepTransferPreapproval transfers charge fees. The only exception is that featured one-step transfers still generate an app reward for the provider party who maintains the TransferPreapproval contract.
Activity Records and Minting Rounds
Canton Network tokenomics is based on an activity record that identifies a party that performed an action providing value to the network. An activity record has a weight, which is its relative share of CC minting for that round. Creating an activity record and minting the associated CC are distinct steps, performed in a cycle called a round. A round has five phases: fee values for the round are written to the ledger; activity records are created during the round’s activity recording phase; the network calculates a CC-issuance-per-activity-weight for each kind of activity record; owners of an activity record mint CC proportional to its weight during the minting phase; and the round closes. Several rounds are active concurrently, each in a different phase. A round starts every 10 minutes by default, a parameter the Super Validators may change via governance vote. See the Canton Coin white paper for the full accounting details. Three Daml templates drive the round lifecycle:AmuletRulesstores the fee schedulesOpenMiningRoundstores the price and fees as of the round’s openingIssuingMiningRoundstores the computed CC-issuance-per-activity-weight
Minting for External Parties
For local parties, the validator application runs background automation that mints all activity records automatically. External parties sign transactions with keys they control, so the validator automation cannot mint on their behalf directly. External parties have two options:- Minting delegation — Delegate reward collection to a validator, avoiding custom automation. See Minting Delegations.
- Custom automation — Call
AmuletRules_Transferat least once per round with all activity records as inputs.
Beneficiary Sharing
Attribution for an activity record can be split among multiple beneficiaries. Each beneficiary receives aweight (summing to 1.0), and the network creates a separate contract per beneficiary/weight pair during minting. See Reward Sharing for details.
App Rewards
Application providers earn CC by generating traffic-relevant activity on the network. Only featured applications are eligible: submit a request through the Canton Foundation featured app request form, which goes to the tokenomics committee for review. Submissions and decisions are tracked on the tokenomics mailing list. On DevNet, you can self-feature your application for testing without going through the formal process. See App Rewards for the full walkthrough. How a featured app’s reward is computed depends on which reward mechanism a given network has enabled:- Traffic-based rewards (current, CIP-0104) — rewards are computed off-ledger from the actual network traffic burned by an app provider’s confirmed transactions, using sequencer and mediator data. No application code changes are required, and
Splice.Amulet.RewardCouponV2contracts replace per-transaction marker contracts. SVs enable this per network through a governance vote; see Traffic-Based App Rewards for the full mechanism and SV Operations for the rollout procedure. - Featured app activity markers (legacy) — the mechanism traffic-based rewards is replacing. An app’s automation creates
Splice.Amulet.FeaturedAppActivityMarkercontracts referencing its activity, which SV automation converts intoAppRewardCouponcontracts included in the round’s minting calculation. This remains the active mechanism on networks that have not yet enabled CIP-0104.
appRewardCouponThreshold parameter. Unfeatured applications receive no reward under either mechanism.
Aside from FeaturedAppActivityMarker and AppRewardCoupon (or RewardCouponV2), the remaining activity record templates are unaffected by CIP-0104: ValidatorRewardCoupon is created for every call to AmuletRules_Transfer or when CC is burned, and SvRewardCoupon rewards Super Validator infrastructure operation. ValidatorLivenessActivityRecord still exists as a template but its reward was capped at $0 effective 2026-04-30 under CIP-0096.
Burn-Mint Equilibrium
The supply of CC is therefore dynamic rather than fixed. The maximum minting curve constrains how fast new coins can enter circulation, while burn events from traffic purchases remove coins. Minting rewards are distributed across three categories of contributors:- Super Validators earn minting rights by operating synchronizer nodes (sequencers, mediators, and governance infrastructure).
- Application providers earn rewards when they facilitate transactions through featured applications.
- Validators earn minting rights proportional to the fees they burn, which the network treats as a proxy for the activity generated by that node.
UTXO Model and Dust Expiry
CC holdings use a UTXO (unspent transaction output) model. Each coin is represented as an individualAmulet contract on the ledger with a specific face value. Transfers consume input UTXOs and create new output UTXOs, similar to Bitcoin’s transaction model. CC balances and transaction history are publicly visible via the network’s scan service.
When a transfer produces change (the input exceeds the amount being sent), a new UTXO is created for the remainder. Over time, this can result in a wallet holding many small-value UTXOs.
Dust Expiry
The per-UTXO holding fee creates a natural cleanup mechanism for dust. Because the fee is fixed per contract regardless of the coin’s face value, a 0.001 CC coin and a 1000 CC coin accrue the same holding fee per unit of time. Small coins therefore become uneconomical faster. Once the accrued holding fee on a UTXO exceeds its face value, Super Validators can expire the contract by exercising theAmulet_ExpireV2 choice. This removes the contract from the ledger entirely. Users are incentivized to merge small coins into larger ones to minimize the number of UTXOs and reduce holding fee exposure. The Splice wallet automation handles this merging automatically when possible.
CN Token Standard (CIP-0056)
CIP-0056 defines the Canton Network Token Standard, a set of Daml interfaces for token operations including transfers, allocations, and metadata queries. The Splice wallet implements CIP-0056 for CC, and applications that handle CC programmatically interact through these standard interfaces. CIP-0056-based two-step transfers work as follows:- The sender exercises
TransferFactory_Transfer. The registry creates aTransferInstructioncontract and holds the funds pending the receiver’s acceptance. - The receiver exercises
TransferInstruction_Accept, which completes the transfer and creates new holdings for the receiver.
Related Resources
- Canton Coin and the Global Synchronizer — conceptual overview and how to obtain CC
- App Rewards — full walkthrough of getting featured and earning app rewards
- Traffic-Based App Rewards — how CIP-0104 traffic-based rewards are computed
- Reward Sharing — sharing rewards with beneficiaries
- CIP-0104 (Traffic-Based App Rewards) — replaces featured app activity markers with traffic-based reward computation
- CIP-0078 (CC Fee Removal) — the proposal that eliminated transfer and lock fees
- CIP-0056 (CN Token Standard) — standard interfaces for token operations
- CIP-0073 (Weighted Validator Liveness Rewards) — liveness reward support for SV-chosen parties, superseded by CIP-0096
- CIP-0096 (Removing Liveness Rewards from Validator Rewards Pool) — discontinued validator liveness rewards effective 2026-04-30
- Canton Coin white paper — full formal specification