Skip to main content
feeClaim records the two ways trading fees leave a bonding curve: CreatorFeesClaimed, when a creator withdraws their 30% share, and ProtocolFeesSwept, when anyone forwards the protocol’s 70% to the fee collector. Fees accrue inside the curve until then and are not rows here.

Fields

Indexes: curve, launch.

Examples

Claims for a curve, newest first:
Creator claims for a launch, through the relation:
Everything paid to one address (a creator’s wallet across their launches, or the fee collector):
Protocol sweeps in a window:
With curl:

Notes

  • amount is per launch currency, so sum claims per launchInfo.currency rather than across currencies. Convert to USD with the currency’s rate if you need one total.
  • Unclaimed fees are not in this table. Read creatorFeesAccrued() and protocolFeesAccrued() on the curve for the amounts still sitting in it; the app’s creator panel does exactly that.
  • Fees from trading on the Uniswap v4 pool after graduation go to the LiquidityLocker, not the curve, and are not indexed here.
  • The creator is the only address that can claim creator fees, but sweepProtocolFees() is permissionless, so protocol rows can be sent by anyone.