Creator Royalties

Creator royalties are percentage-based payments — typically ranging from 2.5% to 10% of the sale price — automatically directed to the original NFT project creator’s wallet on every secondary market transaction involving their collection’s tokens, designed to give digital creators an ongoing revenue stream from the secondary trading of their work (similar to how musicians receive royalties on every play or physical artists receive resale rights under certain laws), enforced either through marketplace-level smart contract hooks or through ERC-2981 on-chain royalty standards, and representing one of the defining economic innovations of NFT creator economics before marketplace competition from 2022–2023 drove widespread royalty bypass, creating a major controversy about whether royalties are enforceable or merely voluntary. The royalty debate — whether marketplaces should enforce creator royalties or allow buyers and sellers to opt out — became one of the most contentious issues in the NFT industry from 2022 onward.


How Creator Royalties Work

Technical Implementation

Marketplace-Enforced Royalties (Traditional)

“`

  1. Creator deploys collection and registers royalty on OpenSea:

“5% of every sale goes to wallet 0x…”

  1. Buyer purchases on OpenSea for 1 ETH:
    0.95 ETH → seller
    0.05 ETH → creator royalty wallet (enforced by OpenSea)
    0.025 ETH → OpenSea marketplace fee
  1. Limitation: Only enforced by cooperating marketplaces

Non-cooperating marketplaces can bypass

“`

ERC-2981 (On-Chain Standard)

“`solidity

// Contract implements ERC-2981:

function royaltyInfo(uint256 tokenId, uint256 salePrice)

external view returns (address receiver, uint256 royaltyAmount)

{

return (creatorWallet, salePrice * royaltyBps / 10000);

}

// royaltyBps = 500 → 5% royalty

// Any marketplace can query this to know how much to send

“`

Limitation: ERC-2981 is a standard for signaling royalties, not enforcing them. Marketplaces that don’t check royaltyInfo() bypass it.

Operator Filter / On-Chain Enforcement Attempt

“`solidity

// Block transfers to non-royalty-paying marketplaces

modifier onlyAllowedOperator(address from) {

if (!operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender))

revert OperatorNotAllowed(msg.sender);

_;

}

“`

Result: Blur launched without royalty enforcement → massive volume migration → OpenSea eventually dropped mandatory royalties too to remain competitive.


The Royalty Wars (2022–2023)

Timeline

  • Late 2022: LooksRare, X2Y2 offer optional royalties → attract volume from royalty-averse sellers
  • Oct 2022: Blur launches with optional royalties + aggressive token incentives → rapid volume growth
  • Nov 2022: OpenSea announces “optional royalties” to compete with Blur → creator backlash
  • 2023 Q1: OpenSea reinstates “required royalties only for operator-filtered collections”
  • 2023: Blur dominates Ethereum NFT volume; most large sales occur with 0% or minimal royalties
  • 2024: Royalty enforcement remains inconsistent; many collections receive <50% of stated royalties

Economic Impact

“`

BAYC royalty: 2.5%

Monthly secondary volume (peak 2022): $500M

Monthly royalty income: $12.5M/month

→ Post-royalty-war (0.5% effective): $2.5M/month

Net loss to creators: $10M/month at peak

“`


Common Royalty Rates

Rate Use Case Notes
0% Free mints, no-royalty collections All revenue from primary sale or burning
2.5% BAYC, large established collections Lowered to avoid bypass incentive
5% Most PFP collections Historical standard
7.5–10% Art platforms (SuperRare, Foundation) Higher rates for 1/1 art where secondary resale is primary revenue
10%+ Music NFTs, licensing-heavy works Revenue sharing on ongoing use

Royalties on Solana

Solana’s Metaplex NFT standard includes seller fee basis points in the metadata:

“`json

“seller_fee_basis_points”: 500 // = 5%

“`

Magic Eden (dominant Solana marketplace) historically enforced royalties as platform policy. In 2022–2023, Solana also experienced a royalty debate as alternative marketplaces emerged with optional policies.


Creator Revenue: Royalties vs. Primary Sale

Revenue Source Timing Reliability Amount
Primary mint One-time at launch Guaranteed (if sellout) Mint Price × Supply
Royalties Ongoing, per sale Variable (marketplace policy) Royalty% × Volume
Operator filter enforcement Ongoing Limited (easily bypassed) Varies

Projects with large, actively-traded communities can earn more in lifetime royalties than in primary sales. BAYC reportedly earned $100M+ in royalties from 2021–2022.


History

  • 2017–2018: No royalty standard; creators received only primary sale revenue
  • 2020: Rarible introduces creator royalty system; first major NFT marketplace royalty enforcement
  • 2021: OpenSea establishes 5–10% creator royalties as de facto standard; enforced by platform
  • 2022 Jun: ERC-2981 finalized as Ethereum Improvement Proposal — on-chain royalty standard
  • 2022 Oct: Blur launches; optional royalties drive creator controversy
  • 2022 Nov: OpenSea “optional royalties” announcement → massive creator backlash; opensea reverses
  • 2023: Royalty enforcement fragmented; on-chain operator filters partially effective
  • 2024–2025: Creator royalties partially restored on some platforms; debate ongoing; many collections accept 0–2.5% as realistic expectation

See Also