What it is
Creator royalties are a rule, encoded either in a smart contract or enforced by a marketplace, that pays the original creator of an NFT (or other tokenized asset) a percentage of every subsequent resale, not just the first sale. The idea is to give creators an ongoing stake in the value they created, similar to a musician earning royalties every time a song is played.
How it works
- A creator mints an NFT (or a fractional/creator-linked token) through a contract that stores a royalty rate — commonly 2.5% to 10% — and a payout address.
- When the asset is listed for resale, either the marketplace or the token contract itself checks the sale price against the stored royalty terms.
- On execution of the trade, the sale proceeds are split at the point of settlement: the royalty percentage is transferred to the creator's address, and the remainder goes to the seller.
- Enforcement varies by design. Some standards (like EIP-2981) only advertise a royalty rate as metadata — marketplaces can choose to honor it or ignore it. Other designs make royalties mandatory by requiring transfers to route through a contract-controlled function, or by only allowing trades on marketplaces that whitelist royalty-respecting logic.
- Some newer mechanisms tie royalties to a bonding curve or auction format (as seen with platforms like Cent/Valuables) where the royalty is baked into the price curve itself, so it can't be bypassed without bypassing the sale mechanism entirely.
Why designers use it
- Aligns creator incentives with long-term value: creators benefit from an asset appreciating, not just its first sale.
- Creates a recurring revenue stream for creators, funding ongoing work (art, game content, community building).
- Signals commitment: buyers may trust assets more if creators have skin in the game long after minting.
Failure modes
- Royalty evasion: marketplaces that don't enforce EIP-2981-style royalties let traders route around them entirely; several major NFT marketplaces made royalties "optional" in 2022-2023, collapsing creator income overnight.
- Wash trading incentives invert: if royalties are paid on-chain regardless of real buyer intent, some actors fake sales to farm airdrops or rewards rather than pay them.
- Liquidity fragmentation: enforcing royalties by whitelisting only "compliant" marketplaces can push volume to a rival venue that doesn't honor them, splitting liquidity and hurting price discovery.
- High royalties kill secondary volume: rates set too high (>10%) make flipping unattractive, causing the secondary market to dry up entirely.
What to check before using it
- Does the royalty rate get enforced on-chain, or is it just optional metadata that any marketplace can ignore?
- What happens if a large marketplace decides not to honor it — do you have a fallback (e.g., contract-level transfer restrictions)?
- Is the royalty rate competitive with comparable collections, or high enough to push traders to non-compliant venues?
- Who controls the payout address, and can it be changed later without holder consent?
- Does the mechanism distinguish real trades from wash trades if royalties feed into other reward systems?