Definition:
A bonding curve in social token applications is a programmatic pricing function embedded in a smart contract that automatically sets the price of a creator’s tokens (or “keys”) based solely on the current supply — rising as more tokens are minted and falling as tokens are burned — with all buy and sell liquidity provided by the contract itself rather than by external liquidity providers. The bonding curve mechanism gained mass cultural attention through Friend.tech (2023), where buying someone’s “keys” gave access to a private chat and returned ETH to the creator, creating a speculative social capital market.
Basic Bonding Curve Mechanics
A bonding curve defines price as a function of supply. The simplest common form is:
$$P = k cdot S^n$$
where:
- $P$ = token price
- $S$ = current supply (number of tokens outstanding)
- $k$ = scaling constant
- $n$ = exponent determining curve steepness
Linear curve ($n=1$): Price rises linearly with supply. Simple, easy to predict.
Quadratic curve ($n=2$): Price rises faster — early buyers get much cheaper prices, creating strong early-adopter incentives but also higher volatility.
Square root curve: Price rises more slowly — flatter and more accessible at higher supply levels.
Buy mechanics:
- Buyer sends ETH to the bonding curve contract
- Contract mints new tokens and delivers them to the buyer
- Price updates to reflect new higher supply
Sell mechanics:
- Seller sends tokens to the contract
- Contract burns the tokens and returns ETH to the seller
- Price updates to reflect new lower supply
The ETH in the contract is always theoretically sufficient to buy back all outstanding tokens (this is the invariant the curve maintains).
Friend.tech’s Implementation (2023)
Friend.tech used a modified quadratic bonding curve for “keys” (renamed from “shares”):
Price formula (pseudocode):
“`
price = (supply^2) / 16000
“`
Revenue split per transaction:
- 5% of trade value → Creator (subject of the keys)
- 5% of trade value → Friend.tech protocol fee
Access gating:
Holding at least 1 key of a creator gave access to their private chatroom on Friend.tech. This social utility drove demand beyond pure speculation.
Key dynamics:
- The first key costs near 0 (creators can buy their own key cheaply)
- Price rises steeply as keys sell out
- Large follow counts → highly speculative keys with large expected price swings
Friend.tech onboarded over 100,000 users within its first month and generated $50M+ in protocol fees in its first 3 months.
Why Bonding Curves for Social Tokens?
| Problem with traditional markets | Bonding curve solution |
|---|---|
| Need external liquidity providers | Liquidity is the contract itself |
| Exchange listing requirements | Anyone can deploy a curve |
| Manual price discovery | Price is algorithmic |
| Wide bid-ask spreads | Instantaneous buys and sells |
| Token distribution requires sale event | Continuous distribution via purchases |
Predecessor Projects
| Project | Use Case |
|---|---|
| Bancor (2017) | First major bonding curve AMM |
| Continuous Organizations | RFC standard for legal bonding curves |
| Roll | Creator social tokens (swap-based, not bonding) |
| Rally | Creator token platform |
| Fyooz | Celebrity token launches |
| Friend.tech (2023) | Social keys with chat access and creator fees |
Incentive Dynamics and Risks
Early-mover advantage:
Early buyers get tokens at very low prices. This creates strong speculative pressure and FOMO around new creators — but also means early buyers profit primarily from later buyers, resembling a zero-sum game.
Rug and dump risk:
If a creator or early buyer holds a large position and sells, the steep curve can collapse dramatically in price, harming later buyers. There is no vesting or lockup mechanism in most implementations.
Utility vs. speculation:
Sustainable bonding curve social tokens require genuine social utility — chat access, exclusive content, services — to maintain buy pressure beyond speculation.
Variations
- Social keys with fee splits — Friend.tech model
- NFT bonding curves — NFTX and Sudoswap use bonding curves for NFT liquidity
- DAO token launches — Many DAOs use bonding curves for initial token distribution
- Continuous token model — Simon de la Rouvière’s legal framework for company bonding curves
Related Terms
Sources
- Friend.tech — The primary application that brought bonding curve social tokens to mass attention.
- Bancor — Understanding Bonding Curves — Original Bancor bonding curve explainer.
- Paradigm — Bonding Curves — Technical deep dive on bonding curve math.
- Simon de la Rouvière — Continuous Organizations — Foundational thinking on bonding curves for communities.
Last updated: 2026-04