Skip to main content

Overview

Dynamic Fee Sharing is Meteora’s on-chain fee distribution program. It lets a team create a fee vault for one token mint, configure a fixed list of recipients and shares, fund the vault, and let each recipient claim their share directly on-chain. It is a distribution layer for splitting funded token balances across 2 to 5 configured recipient entries.
Dynamic Fee Sharing runs on the mainnet program dfsdo2UqvwfN8DuUVrMRNfQe11VaiNoKcMqLHVvDPzh.

Why Dynamic Fee Sharing Exists

Many on-chain fee streams need to be split between a small group: creators, launchpads, protocol treasuries, strategy operators, partners, or contributors. Without a dedicated vault, teams often collect fees into one wallet and reconcile payouts manually. Dynamic Fee Sharing moves that split into program state:
  • The recipient addresses and share weights are stored in the fee vault.
  • Fees are added to a program-controlled token vault.
  • Each funding event increases cumulative fee_per_share accounting.
  • Each recipient claims by index, and the program tracks that recipient’s checkpoint.

Core Features

Fixed Share Splits

A vault stores 2 to 5 recipient entries, each with a wallet address, share amount, and claim checkpoint.

Self-Serve Claims

Recipients claim independently by signing with the wallet configured at their recipient index.

Two Funding Paths

Vaults can be funded manually. PDA vaults can also fund through whitelisted DAMM v2 and Dynamic Bonding Curve claim actions.

Token Support

Vaults support standard SPL Token mints and Token 2022 mints that only use supported extensions.

How Dynamic Fee Sharing Works

The program has three main concepts. A vault lifecycle is short:

Fee Vault Types

Dynamic Fee Sharing supports two fee vault types. Both use the same share and claim accounting after initialization.

Important Constraints

Treat the initialized recipient list and shares as permanent for that fee vault. If a split changes, create a new vault for the new arrangement.

Dynamic Fee Sharing Design Guide

Choose the recipient set, shares, token mint, vault type, and funding path before initialization.

Dynamic Fee Sharing Compatibilities

Review token support, vault types, source programs, and whitelisted claim actions.

Dynamic Fee Sharing Formulas

Understand fee-per-share accounting, fixed-point precision, rounding, and Token 2022 transfer-fee behavior.

Who Dynamic Fee Sharing Is For

Protocol teams can route revenue into a fee vault and distribute it to contributors, treasuries, integrations, or strategic partners without manual payout operations.
Launchpads and creators can use Dynamic Fee Sharing to split eligible launch revenue between creator, partner, protocol, or campaign wallets.
Partners can receive their share directly from a vault instead of waiting for a centralized operator to reconcile and send payouts.
Integrators can track funded fees, claim events, recipient allocations, and vault balances as a clear on-chain revenue stream.

What Dynamic Fee Sharing Is Best For

Dynamic Fee Sharing is best when a single supported token needs to be split between a small, known, stable recipient set. Good use cases include:
  • Creator and launchpad fee sharing.
  • Treasury-funded partner splits.
  • DAMM v2 fee or reward sharing through supported claim actions.
  • Dynamic Bonding Curve creator, partner, trading-fee, or migration-fee sharing through supported claim actions.
  • Campaign or contributor revenue splits where the recipient set is fixed.