friend.tech: Tokenizing Incentives for "friends"

Imagine a world where you could invest directly in your closest friends' futures, not through loans or empty promises, but by literally owning a piece of their success.

This is what most SocialFi startups target to sell to most crypto users.

Friend.tech comes with a new model of fractionalized ownership in individuals through shared value keys. By aligning incentives between friends, they aim to catalyze and benefit from the realized potential of people worldwide, or Twitter.

What I like about them:

  • Novel economic model creates a bidirectional market where previously launched projects failed to gain traction. Allowing people to invest in each other monetizes the immense latent value of social connections.

  • Quadratic bonding curve algorithm provides mathematically sound price discovery and incentives. Built-in network effects as early adopters benefit from lower prices.

  • Keys track ownership shares on-chain. This enables transparent, auditable ownership and transfers.

  • Subject fees incentivize user acquisition by sharing value directly with token subjects.

  • Protocol fees provide a sustainable revenue stream to fund growth. Parameterization gives flexibility.

I’ve also built an Excel model to calculate how much you would pay or receive while buying or selling keys.

Please reach out to me on X at 0xArhat for this Excel model.


  • Keys are minted for a specific "subject" (the person being invested in).

  • There are no checks on the subject address; anyone can create keys for any address.

  • Keys represent ownership of individual subjects. Based on current supply, the keys are fungible and priced using a custom pricing model (discussed in detail below).

  • The sharesBalance mapping tracks how many keys each address holds for each subject.

  • The sharesSupply mapping tracks the total supply of keys for each subject.

  • The buy and sell prices are calculated differently, with buy prices being higher than sell prices. This leads to a bid-ask spread.

  • There are protocol fees (paid to the company) and subject fees (paid to the key subject) on each trade. The fee percentages are configurable by the team.

  • The buyShares and sellShares functions handle the trading logic, updating balances, sending fees, etc.

  • No functionality to transfer keys, burn keys, etc. The keys are non-transferable once bought.

The pricing model incentivizes early investment as the price per key increases with higher supply. Fees are collected on each trade.


friend.tech uses a custom pricing model to price its keys based on supply.

The pricing formula is:

sum1 = (supply - 1) * supply * (2 * (supply - 1) + 1) / 6

sum2 = (supply - 1 + amount) * (supply + amount) * (2 * (supply - 1 + amount) + 1) / 6  

price = (sum2 - sum1) * 1 ether / 16000
  • sum2 - sum1 gives the incremental difference in summations

  • This incremental value represents the "area under the curve" for the additional keys

  • It is multiplied by 1 ether and divided by 16000 to scale it to an appropriate price.

This creates an incremental pricing model, where the price for additional shares is based on the incremental area under the quadratic bonding curve as supply increases.

---

I think the key purpose of 16000 is to scale down the raw calculation to a reasonable price range when operating in the ETH denominations.

Some reasons 16000 was likely chosen:

  • It produces prices in a convenient range for small supplies.

  • Allows representing prices precisely with minimal floating point rounding.

  • Keeps overall share prices affordable as supply grows into the thousands.

  • Provides ample headroom for supplies to grow substantially before prices get too large.

  • Hardcoding a constant allows it never to change, avoiding governance manipulation.

The exact value is somewhat arbitrary but was likely chosen through trial and error to strike a good balance for expected supply ranges.

The key is that it is hardcoded, avoiding the need for external governance of the pricing model.

---

The properties of using the custom pricing model give it the mathematical characteristics needed to produce the desired exponential bonding curve behavior.

Here's a breakdown:

  1. AMM with Bonding Curve: The contract implements an automated market maker (AMM) using a bonding curve for price discovery. The bonding curve utilizes a custom pricing formula to determine the price of shares based on the current supply. This custom formula results in exponential price growth as the supply of shares increases.

  2. Trustless Trading without Order Book: The contract enables trustless trading by tracking balances on-chain, meaning trades can be executed without a traditional order book. Participants can interact with the contract directly to buy and sell keys, and the contract calculates the prices based on the supply on the custom pricing model.

  3. Incentives and Economic Mechanisms: The contract is designed to provide the necessary incentives and economic mechanisms to align with the specific use case of Friend.tech. The bonding curve pricing model incentivizes certain behaviors, such as early buying, and discourages mass sell-offs, contributing to the desired economic dynamics within the friend.tech ecosystem.

What is a Bonding Curve?

A bonding curve is a type of automated market maker algorithm used for pricing and distributing tokens or shares in a decentralized way.

The friend.tech contract implements a bonding curve for pricing the non-fungible keys; let me explain how it works:

As supply increases, the price increases quadratically based on the formula.

When buying keys:

  • The buy price is based on the current supply.

  • As more shares are bought, supply increases, so the price for new shares increases

When selling keys:

  • The sell price is based on the remaining supply after subtracting the shares being sold.

  • As more shares are sold, the supply decreases, so the sell price decreases

This relationship between supply and price creates the bonding curve:

  • Buying more shares increases supply, which increases the price.

  • Selling shares decreases supply, which decreases the price

The curve incentivizes early buyers with lower prices and disincentivizes mass sell-offs, which would significantly reduce the price

I’ve been playing around with it. Not buying any other keys. Just static.

And, The Curve Incentivizes Certain Behaviors in the Market.

  • Early buyers pay less; later buyers pay more as the supply increases.

  • Buying tokens "bonds" them by locking up capital-- increases the price.

  • Selling tokens releases some "bonded" capital and causes the price to drop.

  • This creates a positive feedback loop where increased demand raises prices.

  • No external price discovery or intervention is required. According to the programmed curve, prices adapt organically based on buying and selling activity.

  • The curve incentivizes early adopters and behaves like an automated market maker.

The price equilibrium emerges organically from the interactions rather than being imposed.


While there have been certain reservations about how the contract can be used to maliciously revert fees & withdrawals, seeing reliable investors back friend.tech, in good faith, we can trust them.

Risks exist. Are we ignoring it? Who knows.

  • Speculative asset class is controversial and invites skepticism.

  • Limited legal precedents exist around monetizing personal social capital and future potential.

  • Subjects must provide ongoing value to token holders to sustain capital inflows. Reputation risks if subjects underdeliver.


Thank you for reading through, and subscribe below for regular post updates.

I’d also appreciate it if you shared this with your friends, who would enjoy reading this.

You can contact me here: Twitter and LinkedIn.

If you find this deep dive analysis useful, please consider donating to 0x1de17b6c736bcd00895655a177535c2a33c6feba and/or by minting an NFT for this & other blog posts by me.


  1. friend.tech contract code
Subscribe to Arhat
Receive the latest updates directly to your inbox.
Mint this entry as an NFT to add it to your collection.
Verification
This entry has been permanently stored onchain and signed by its creator.