# Compounded Dynamic Staking

## Compound Dynamic Staking

Finceptor employs an auto-compounded vault mechanism for $FINC staking, compounding investor stakes to generate exponential returns and calculate the token sale allocations based on the compounded capital. An auto-compound mechanism is used to reinvest rewards generated from the staking pool into the same staking pool, creating a compound effect.&#x20;

### Reward, APR, & APY Calculations

A time-based mathematical formula is used to track the rewards and staking balances of every staker in the vault and the formula is updated according to the last update time and current time after every staking amount changing transaction.&#x20;

The parameters are as follows:&#x20;

* **`LastUpdateTime`** (can be any user)&#x20;
* **`TotalSupply`** (total staked amount)&#x20;
* **`UserBalance`**
* **`Rewards[.]`** (total reward added to the user so far)
* **`PaidReward[.]`** (Total rewards paid to all users so far)&#x20;
* **`RewardRate`** (reward to pay in return for a single token per second)&#x20;

Let’s imagine ***user A staking 100 $FINC*** tokens. The **`updateRewards`**&#x66;unction is called before the staking action and the initial parameters are updated as follows.

$$
rewardsPerTokenStored = 0 \text{ (Since totalSupply is zero initially)} \lastUpdateTime=t\_0
$$

​Then, the reward parameters of user A, **`rewards[A] and userRewardPerTokenPaid[A]`**, are updated as follows.

$$
rewards\[A] = 0 \text{ (Since balance of A is 0 initially) } \ userRewardPerTokenPaid\[A] = rewardsPerTokenStored \text{ (0 in this case) }
$$

​After updating these parameters, the algorithm continues with the accumulation of **`totalSupply and balances[A].`**

$$
totalSupply=0+100=100 \\
balances\[A]=0+100=100
$$

Now that we have initialized the first staking parameters and we have a non-zero **`totalSupply`**; let’s imagine a new **user B staking 200 tokens** assuming `t1` is the current time.

$$
rewardsPerTokenStored = 0 + (t\_1-t\_0) \* \dfrac{rewardRate}{100 \* totalSupply} \\
lastUpdateTime=t\_1 \\
$$

​​Then, the reward parameters of user B, **`rewards[B] and userRewardPerTokenPaid[B],`** are updated as follows.&#x20;

$$
rewards\[B]= 0 \text{ (Since balance of B is 0 initially)} \\
userRewardPerTokenPaid\[B] = rewardsPerTokenStored = \dfrac{(t\_1-t\_0) \* rewardRate}{100 \* totalSupply}
$$

After updating these parameters, the algorithm continues with the accumulation of **`totalSupply and balances[B].`**

$$
totalSupply=100+200=300 \\
balances\[B]=0+200=200
$$

Now, let's imagine that another user joins the staking pool, say user C, staking 300 $FINC tokens.​ **`rewardsPerTokenStored and lastUpdateTime`** is updated as follows.

$$
rewardsPerTokenStored= (t\_1-t\_0) \* \dfrac{rewardRate}{100}+ (t\_2-t\_1) \* \dfrac{rewardRate}{300} \\
lastUpdateTime=t\_2
$$

​Then, the reward parameters of user C, **`rewards[C] and userRewardPerTokenPaid[C],`** are updated as follows.

$$
\\
rewards\[C]=0 \text{ (Since balance of B is 0 initially)}  \ userRewardPerTokenPaid\[C]=rewardsPerTokenStored =\dfrac{(t\_1-t\_0) \* rewardRate}{100}  \* \dfrac{(t\_2-t\_1) \* rewardRate}{300}
$$

After updating these parameters, the algorithm continues with the accumulation of **`totalSupply and balances[C].`**

$$
totalSupply=300+300=600 \\
balances\[C]=0+300=300
$$

Now the essential part of the algorithm comes to play. What if user **B wants to claim their rewards**? How does the algorithm calculate how much B has earned since they staked after A but before C? **`getReward`** function also triggers the **`updateRewards`** function so the parameters are updated.

$$
rewardsPerTokenStored= (t\_1-t\_0) \* \dfrac{rewardRate}{100} + (t\_2-t\_1) \* \dfrac{rewardRate}{300} + (t\_3-t\_2) \* \dfrac{rewardRate}{600} \ lastUpdateTime=t3
$$

​Then, the reward parameters of user B, **`rewards[B]`**, are updated as follows.

$$
rewards\[B]=balances\[B]\* (rewardsPerTokenStored-userRewardPerTokenPaid\[B])+rewards\[B] \ rewards\[B]=200\* ((t\_1-t\_0)\* \dfrac{rewardRate}{100}+ (t\_2-t\_1)\* \dfrac{rewardRate}{300}+ (t\_3-t\_2) \* \dfrac{rewardRate}{600}- (\dfrac{(t\_1 - t\_0) *rewardRate}{100 \* totalSupply})) \ rewards\[B]=200* ((t\_2-t\_1) \* \dfrac{rewardRate}{300} + (t\_3-t\_2) \* \dfrac{rewardRate}{600}\\
$$

​Finally, **`userRewardPerTokenPaid[B]`** is calculated as follows.

$$
userRewardPerTokenPaid\[B]= \dfrac{(t\_1-t\_0) \* rewardRate}{100} + \dfrac{(t\_2-t\_1) \* rewardRate}{300} + \dfrac{(t\_3-t\_2) \* rewardRate}{600}
$$

Now the necessary updates have been completed and user B is ready to claim their rewards which are stored in the **`rewards[B]`** mapping that we just updated. The reward is sent to the user and is reset to 0 until they claim again at a later time. As seen from the calculations, the reward is calculated so that it does not account for the time period where B has not staked (There was only user A) but accounts for the time periods where there i&#x73;**`<A, B>`** and **`<A, B, C`**> separately. This algorithm handles every user’s rewards in the same way.

### Auto-Compound Strategy

To understand auto-compound strategy in $FINC staking, the concept of **`APR (Annual Percentage Rate)`** and **`APY (Annual Percentage Yield)`**&#x73;hould be understood. Simply, **`APR`** is simple and **`APY`** is compound interest, reflecting the interest you make in your interest.

$$
APR = (\dfrac{(\dfrac{InterestReturn}{Principal})}{n} \* 365) \*100
$$

where **`InterestReturn`** is the total interest paid over the life of the staking, **`principal`** is the total deposit, and **`n`** is the number of days in the total reward period. Hence, there is no rebasing or reinvesting included whereas, in the APY calculation, interest on the earned interest (reinvesting effect) is also considered.

$$
APY = (1 + \dfrac{APR}{n})^N - 1
$$

where **`N`** is the compounding frequency (e.g., daily, weekly, monthly, quarterly, etc.) With every rebase, the returned interest reward is added to the stakers' balance automatically resulting in a higher compound rate in the next period.&#x20;

To compare **`APR`** and **`APY`**, let's imagine that $FINC staking offers 100% **`APR`** at a certain timeframe, and imagine this **`APR`** continues to remain the same for over one year. Then, let **`N = 365,`** i.e., if compounding frequency is daily, and let **`Principal = $10,000`** then **`APY, TotalInterest`** an&#x64;**`FutureValue`** will be

$$
APY = (1 + \dfrac{100}{365})^{365} - 1 = 171.4567 %
$$

Hence, there is a **`71.4567%`**&#x69;nterest rate difference between **`APR`** and **`APY.`**

$$
\ Future  Value = $27,145.67 \ Total Interest=FutureValue -Principal = 17.145,67
$$

​Daily compound interest accumulated **`FutureValue`**&#x6F;f the user to **`27,145.67`**&#x77;hich will be **`20,000`** if compound interest wouldn't be considered, creating a **`7,145.67`** extra interest. To compare the compound effect of the $FINC auto-compound staking pool with the simple staking pools,  here is the graph representing the accumulated $FINC amount over time; the difference between auto-compounded capital and simple capital is increasing over time, reaching `7,145.67` at the end of the first year and **`43688.76`** at the end of the second year.

![The dark filled area represents the difference between $FINC capitals over time](https://3680287441-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FPdF74ba8CqM3TyyrQA52%2Fuploads%2F9b5lssN4OuNFgzZfU7ob%2Fdownload.png?alt=media\&token=c60c3337-9010-400d-a677-bc42d10b6465)

#### Protocol Fees

Note that staking/vault fees are not considered here; however, the calculation of the APR can be computed considering network fees as follows.

$$
Realized APR= APR \* (1 - F\_P) \ RealizedAPY = (1 + \dfrac{APR \* (1 - F\_P)}{n})^N - 1
$$

​where **`RealizedAPR`** is the actual **`APR`** rate after subtracting protocol fees **`FP.`**
