Get Tokenomics

Tokenized Loyalty for Investment Funds: Turning Retention Cashback into a Real-Yield Dividend Token

How to design a tokenized loyalty program for an investment fund: route retention cashback through a bonding curve to mint a dividend token, pay real yield in USDC from the profit split, and value it by dividend discount—not speculation.

A traditional loyalty program is a cost center. You hand out points or cashback, the user spends them, and the money leaves the building. For an investment fund the problem is sharper still: the thing you most want to reward—a client keeping capital with you for years—is exactly the behavior a points coupon does almost nothing to encourage.

So flip the design. Instead of cashback that the client spends and forgets, route that cashback into a token. Make the token mint on a bonding curve, so early and loyal participants get more of it. Then connect the token to something real: a slice of the fund’s actual profit, paid out in USDC. Now the “loyalty reward” is not a discount coupon—it is a claim on a stream of dollars, and the earlier a client joined and the longer they stay, the larger their share of that stream.

This article is a working design guide for that token—a tokenized loyalty program built on real fund yield rather than marketing spend. It covers the mechanism end to end, the math you need to size it, an interactive calculator to feel the dynamics, and—most importantly—the one structural mistake that quietly kills this design if you let it.

What this is (and what it is not)

First, a distinction that trips up almost everyone. “Tokenizing a fund” usually means putting the fund’s shares on-chain: a money-market fund issues a token, one token equals one share, and the token’s value tracks NAV. That is fund-share tokenization, and it is a different product entirely.

The design here is a loyalty layer that sits on top of the fund, not a share class. Clients still subscribe to the fund the normal way. The token is a retention reward—earned by staying invested—that happens to carry a dividend funded by fund performance. The fund’s economics are untouched; the token is an additional incentive instrument wrapped around them.

The whole machine has five moving parts:

Tokenized loyalty program for an investment fund: cashback to bonding curve to dividend tokenInvestors deposit capital into a multi-strategy fund whose active AUM churns by lifetime cohorts. Two flows leave the fund. On the minting path, retention cashback accrues on a declining monthly ladder and is routed through a power-law bonding curve that mints a loyalty token, which is then staked with a duration multiplier. On the yield path, fund profit is split 80/15/5 and the 5 percent share funds a USDC dividend pool. The dividend pool pays real yield in USDC back to the staked loyalty-token holders. Token value equals the dividend-discount of the USDC stream, not speculation.Investors deposit capitalMulti-strategy fundactive AUM · churns by cohortloyaltyreal yieldRetention cashbackdeclining monthly ladderBonding-curve mintP = P0·((β+L)/β)^αStaked loyalty tokenve-multiplier 1.0×→2.5×Fund profitsplit 80 / 15 / 55% to dividend poolpaid in USDCreal yield (USDC)Token value = dividend-discount of the USDC stream, not speculation
  1. The fund. Capital flows in monthly and churns out when each cohort’s lifetime expires. Active AUM is always attracted minus churned.
  2. Retention cashback. While capital stays in the fund, cashback accrues monthly on a declining ladder. It is never paid as cash—it is routed straight into the token.
  3. The bonding curve. Each cashback dollar is priced through a power-law curve. Earlier dollars mint cheaply; the mint price rises as the program grows. No reserve sits behind the curve—it is a pricing formula, not an exchange.
  4. The profit split. Each period the fund’s profit is split three ways—investors, manager, and a small slice to the token’s dividend pool.
  5. Staking with a duration multiplier. Token holders stake to claim the dividend pool in USDC, weighted by how long they have been staked.

The rest of this article makes each part precise.

The math

The cashback ladder

The loyalty lever is a declining cashback schedule: high in month one to reward the decision to commit, tapering as the relationship matures. A typical shape, as a monthly percentage of the deposited principal:

Months in fundMonthly cashback
Month 11.00%
Months 2–60.50%
Months 7–120.25%
Month 13+0.10%

The point is not these exact numbers—they are illustrative—but the direction. Cashback accrues only while the capital stays in. Pull out early and you forfeit the rest of the schedule. That is what makes it a retention instrument rather than a sign-up bonus. (The off-chain ancestor of this lever is the classic points program—same psychology, no token.)

Routing cashback through the bonding curve

Each cashback dollar is converted into tokens at the curve’s current mint price. We price in cumulative cashback routed so far, written L. The mint price is a power law:

P_mint(L) = P0 × ((β + L) / β)^α
  • L — cumulative cashback dollars routed through the curve so far ($)
  • P0 — base mint price at L = 0 ($/token)
  • β — scaling constant that flattens the early part of the curve
  • α — steepness exponent (0 < α < 1 keeps growth sub-linear)
  • P_mint(L) — the marginal mint price at cumulative routed cashback L (computed, $/token)

To mint tokens you do not divide a lump of cashback by a single price—the price moves as you mint. You integrate. Routing C dollars starting from cumulative L mints, in closed form:

tokens(C) = (β^α / (P0·(1−α))) × ((β + L + C)^(1−α) − (β + L)^(1−α))
  • C — cashback dollars routed this period ($)
  • L — cumulative cashback already routed before this period ($)
  • P0, α, β — curve parameters as above
  • tokens(C) — tokens minted by routing C dollars (computed). At α = 1 the closed form becomes the logarithmic branch tokens = (β/P0)·ln((β+L+C)/(β+L))

The average price actually paid over that mint is just C / tokens(C), and it always lands between the spot price before (P_mint(L)) and after (P_mint(L+C))—a useful sanity check when you implement it. This is the same closed-form-integral discipline used in any bonding-curve mint; here the “buyer” is simply the cashback stream rather than a public market.

A reference implementation, so there is no ambiguity when it reaches a contract:

Mint math—reference implementation (JavaScript)
// Power-law bonding curve priced in cumulative cashback routed (L).
function mintPrice(L, P0, alpha, beta) {
  return P0 * Math.pow((beta + L) / beta, alpha);
}

// Tokens minted by routing C dollars starting from cumulative L.
// Closed form of the curve integral; log branch handles alpha === 1.
function tokensMinted(C, L, P0, alpha, beta) {
  if (C <= 0) return 0;
  if (Math.abs(alpha - 1) < 1e-9) {
    return (beta / P0) * Math.log((beta + L + C) / (beta + L));
  }
  const k = Math.pow(beta, alpha) / (P0 * (1 - alpha));
  return k * (Math.pow(beta + L + C, 1 - alpha) - Math.pow(beta + L, 1 - alpha));
}

// Average price paid over the mint — must sit between spot-before and spot-after.
function avgMintPrice(C, L, P0, alpha, beta) {
  const t = tokensMinted(C, L, P0, alpha, beta);
  return t > 0 ? C / t : NaN;
}

With P0 = 1, α = 0.45, β = 10,000, here is how the mint price and the cumulative token supply evolve as cashback accumulates:

Cumulative cashback routed (L)Mint price P_mint(L)Cumulative tokens mintedAverage price so far
$0$1.000
$250,000$4.33~91,000~$2.75
$500,000$5.87~140,000~$3.57
$1,000,000$7.98~212,000~$4.72
$2,300,000$11.58~345,000~$6.67
$5,000,000$16.40~537,000~$9.31

Early cashback mints cheaply and abundantly; later cashback mints a thinner stream at a higher price. That asymmetry is the reward for loyalty: the clients who were in early, and stayed, hold a disproportionate share of the supply.

Calculator: loyalty-token mint and dividend

The two halves of the design—minting on the curve, and the dividend each staked token earns—are best felt by moving the sliders. The top group drives the curve; the bottom group drives the real-yield side. Watch how the fair value of a token (its dividend discounted at your required return) responds to fund performance and to how many tokens are staked against the same pool.

Loyalty-token mint & dividend
Minting — bonding curve
Dividend — real yield
Tokens minted this month
8,343
New mint price (at L+C)
$6.1191
Avg mint price
$5.9932
Dividend / staked token / yr
$1.000
Fair token value
$6.6667
Cumulative cashback (L)Mint price P_mint(L)Cumulative tokensAvg price so far
Fair value = (dividend per staked token per year) ÷ (required return). Because the profit share is taken above a high-water mark, the dividend floors at zero: a flat or down year pays nothing (never a negative dividend), and fair value is then N/A because a zero stream has zero present value. The dividend card simplifies the per-token math to a single pooled rate; the duration multiplier and per-strategy pools (below) redistribute this within the staker base.

Implementation: wiring the real yield

Minting is only half the design. A token that mints forever and pays nothing is just inflation. The other half is the dividend, and it comes from the fund’s own profit.

The 80 / 15 / 5 split

Each period, the fund’s profit above its high-water mark is split three ways:

Profit split
  • 80% to investors — their share of the fund's gains, exactly as a normal fund pays
  • 15% to the manager — the performance fee. The flat management fee is separate and untouched
  • 5% to the staker dividend pool — paid in USDC to whoever has staked the loyalty token
  • That last 5% is the only new claim on fund economics. It is small enough that investors and the manager barely feel it, and it is the entire fuel supply for the token’s value. The dividend each staked token earns, in the simplest pooled form:

    dividend_per_token_yr = (AUM × annual_return × staker_share) / staked_tokens
    • AUM — active assets under management generating profit ($)
    • annual_return — the fund’s annual return (fraction; because profit is taken above a high-water mark, the dividend floors at zero in a flat or down year, never going negative)
    • staker_share — the slice routed to the pool (here 0.05)
    • staked_tokens — total tokens staked against the pool
    • dividend_per_token_yr — USDC paid per staked token per year (computed)

    Because this is a real cash flow, the token has a defensible valuation that has nothing to do with hype. Discount the dividend at a required return and you get a fair value—the same dividend-discount logic used for equities, and a close cousin of DCF token valuation:

    fair_value = dividend_per_token_yr / required_return
    • dividend_per_token_yr — annual USDC per staked token (from above)
    • required_return — the discount rate a holder demands (fraction)
    • fair_value — present value of the perpetual dividend stream ($/token)

    The duration multiplier

    To reward loyalty on the staking side too, weight each staker’s claim by how long they have been staked—a vote-escrow multiplier, the same primitive behind veTokenomics:

    m = 1 + 1.5 × (months_staked / 48), capped at 2.5×
    • months_staked — how long the position has been staked (months)
    • m — multiplier applied to that position’s share of the dividend pool (computed, 1.0× to 2.5×)

    A neat property falls out of the minting design: tokens minted earlier have, by construction, been around longer, so the loyal early cohort carries the higher multipliers and captures a disproportionate share of the pool. Loyalty compounds on both axes at once—though both are bounded: the cashback ladder declines, so later tokens are fewer and pricier, and the multiplier caps at 2.5× after 48 months. The reward for staying is real but plateaus; it is not unbounded.

    Multi-strategy staking

    If the fund runs several strategies, compute the 5% pool per strategy and let stakers choose which strategy pool to back—independently of where their own capital sits. Now the distribution of staked tokens across strategies can diverge from the distribution of AUM. When a higher-returning strategy is under-staked relative to its share of profit, each token staked there earns far more than the blended average. Picking the right pool becomes a genuine, separate source of return for an attentive staker—and a partially self-balancing mechanism, since stake chases the richest pools. The balancing is sticky, not instant: moving a position to a new pool resets its duration multiplier, so a staker forfeits accrued ve-weight to chase yield, and per-pool yields converge slowly rather than snapping to parity.

    Where it breaks: the secondary-market trap

    Here is the failure mode that destroys this design more often than any other, and it is worth a hard warning.

    Do not bolt a public market onto a dividend-only loyalty token

    The token above has exactly one source of value: the USDC dividend, gated to KYC-verified, eligible holders. The moment you also list it on a public exchange or seed a one-sided liquidity pool “so it has a price,” you create an instrument that outside buyers have no rational reason to hold:

    • They are gated out of the dividend by design—so they get no yield.
    • The utility (fee discounts, access tiers) is usually not live at launch—so they get no use.
    • If a treasury “anchors” the price, there is no upside—so they get no appreciation.

    What they can do is sell. With sell-side-only liquidity, a single modest sell order craters the quoted price, the headline market cap turns out to be backed by a thread of real liquidity, and the chart becomes a liability that scares off the very clients the program was meant to retain. You have manufactured a slow-motion price collapse for a token that, left as a closed dividend instrument, never needed a market at all.

    The discipline is simple: choose one design. Either the token is a closed, no-secondary-market dividend instrument (recommended)—where a holder’s only way to realize value is the dividend stream itself, since the curve offers no redemption—or it is a freely traded token with a genuine reason for the public to buy: real utility, an open dividend, or a buyback that actually catches sellers. A dividend token’s value does not depend on a secondary market; this is the same insight that makes a no-buyback model coherent, the mirror image of the choices in buyback engineering. Trying to have both at once gives you the worst of each.

    Two smaller traps worth pre-empting:

    • Withdraw-and-redeposit farming. If cashback resets favorably on every new deposit, clients will churn their own capital to re-farm the high first-month rate. Defend with either KYC-linked accrual that follows the client, not the deposit, or a tenure-weighted ladder that rewards continuous time in the fund rather than each fresh entry.
    • The down year. Because the profit share is taken above a high-water mark, a flat or down year pays a zero dividend—never a negative one, since stakers are never charged. Fair value is simply undefined that year, as a zero stream has no present value. Communicate the token as a variable real-yield instrument from day one, not a fixed coupon, so a zero-dividend year is a known feature rather than a broken promise.

    Advanced: regulation and honest valuation

    A dividend token is a security—wrap it, don’t deny it

    Apply the economic-substance test to “stake the token, receive USDC from fund profits” and you get an investment contract. The defensible posture is not to argue otherwise but to split the instrument:

    The hybrid line
    • The open token circulates freely (AML-screened): it carries utility—fee discounts, access tiers, governance over platform parameters—and confers no automatic right to yield. Designed well, this leg reads as a consumptive utility instrument.
    • The dividend entitlement (the 5% USDC stream) is a separate, KYC/eligibility-gated claim, delivered through a regulated wrapper. Only verified, eligible holders can enter a yield-earning stake.

    Keep the yield leg small, gated, and wrapped; keep the open token genuinely useful. Size any fee discount so it reads as loyalty, not a disguised return. Bifurcation reduces securities risk but does not eliminate it: regulators can collapse the two legs back into one instrument if the open token’s value visibly derives from the same program. None of this is legal advice—get qualified counsel in every jurisdiction you touch before launch.

    This separation is what lets the same underlying token be both a loyalty reward anyone can earn and a regulated yield instrument only eligible investors can monetize. It rhymes with the broader menu of tokenized equity instruments, where the payoff shape decides the regulatory treatment.

    Value it as what it is

    The honest conclusion is unglamorous and exactly the point: this token is a dividend-plus-utility instrument, not a speculative large-cap. Its worth is the present value of the USDC stream plus its fee-utility demand—nothing more, nothing less. Run the calculator above with a realistic fund return and staked supply and you will get a fair value in single-digit-to-low-double-digit dollars, not a moonshot. That is a feature. A loyalty program that pays a credible, modeled, real dividend will retain clients far longer than one promising a number that the math never supported.

    Designing a loyalty or dividend token for a fund?

    We model the curve, size the dividend split, stress-test the retention incentives, and keep the regulatory line clean—before anything ships on-chain.

    Talk to us