You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where pool_yield is the value returned from the liquidity pool function of same name specifying the time since the start of the term period in seconds.
For instance, considering that the pool was deployed 20 days ago, which amounts to 1728000 seconds, the pool yield results in 1.262599536 (equivalent to 26.2599536%):
Then, the APY would be:
APY = [1.262599536 ^(365 / 20) - 1] * 100
APY = 6949 %
The text was updated successfully, but these errors were encountered:
Obs: Since APY can vary a lot in the first weeks of operation of the pool, maybe we could display both the "Yield Since Start" and in the next line the "APY" in the Liquidity Pool page of the frontend app so users can get a better grasp of the pool's performance.
The Annual percentage yield of the liquidity pool can be calculated by the following formula:
APY = [pool_yield ^(365 / term_in_days) - 1] * 100
Where
pool_yield
is the value returned from the liquidity pool function of same name specifying the time since the start of theterm
period in seconds.For instance, considering that the pool was deployed
20
days ago, which amounts to1728000
seconds, the pool yield results in1.262599536
(equivalent to26.2599536%
):Then, the APY would be:
APY = [1.262599536 ^(365 / 20) - 1] * 100
APY = 6949 %
The text was updated successfully, but these errors were encountered: