> For the complete documentation index, see [llms.txt](https://follows.gitbook.io/follows/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://follows.gitbook.io/follows/follows-formula.md).

# Follows Formula

Follows employs a distinctive formula for executing trades, ensuring a fair and efficient marketplace for users. This formula incorporates various factors, including user demand, market dynamics, and creator popularity, to determine the price and availability of follows. By analyzing these variables in real-time, Follows app optimizes the trading experience for both creators and followers, facilitating transparent and equitable transactions.

***Formula Used***

**currrentSupply = current supply of the token, amount = no of tokens to buy \_priceFactor = price factor to control the price hike when supply is high**

**s1 = currrentSupply == 0 && amount == 1 ? 0 : ((currrentSupply + amount - 1) \* (currrentSupply + amount) \* (2 \* (currrentSupply + amount - 1) + 1)) / 6;**

**s2 = currrentSupply == 0 ? 0 : ((currrentSupply - 1) \* currrentSupply \* (2 \* (currrentSupply - 1) + 1)) / 6;**

**summationDiff = s1 - s2; price = (summationDiff \* 1 ether) / 16000; FinalPrice = (price \* \_priceFactor) / 1 ether;**

***Ethereum is roughly 20 times the price of solana, so we have equated similarly.***

**Solana Price = $100 , Ethereum Price = $2000**

**In Ethereum, Alpha = 1 means 100 share costs 0.625 which is apporx $1200**

**In Solana, Alpha = 1 means 100 share costs approx $1200 ( 12 Solana )**


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://follows.gitbook.io/follows/follows-formula.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
