Comment on page
Understand Silo vAPY
The Beanstalk UI displays vAPY (variable APY) statistics for each asset on the Deposit Whitelist. APYs are called variable because they are not enforced by Beanstalk in any way. Rather, the APY uses historical data about Beans earned by Stalkholders to estimate future returns for Depositing in the Silo.
The APY calculation has two parts:
- 1.Estimating the number of Beans that will be minted per Season using recent historical data.
- 2.Estimating the number of Beans and Stalk that a Farmer will receive over time for Depositing their whitelisted assets in the Silo. This takes into account the Stalk supply and Seed supply and makes some assumptions about Stalkholder behavior.
Stalkholders earn Bean seignorage when deltaB is greater than 0 over the previous Season. Estimated annual Beans earned by a Stalkholder is called the Bean vAPY.
Seeds grow Stalk each Season, regardless of deltaB. Estimated annual Stalk growth for a Stalkholder is called the Stalk vAPY.
The Beanstalk UI and Subgraph use a 30-day exponential moving average (EMA) of Beans earned by Stalkholders to estimate future Beans earned by Stalkholders. The formula uses a weighted average in which recent Seasons are weighted more heavily.
The current EMA value can be located on the Silo page by hovering over the Bean vAPY values for any whitelisted asset.
The vAPY for Depositing a whitelisted asset in the Silo is determined by the value of 1 newly Deposited BDV in 8760 Seasons (1 year).
The vAPY calculations make the following assumptions:
- No new assets are Deposited into or Withdrawn from the Silo;
- No liquidity is added or removed from liquidity pools that Beans trade in;
- There areBeans earned by Stalkholders each Season; and
- Every Stalkholder Mows their Grown Stalk each Season.
The window of the EMA (
), i.e., the number of Seasons in 30 days:
The weighting multiplier (
); a constant between 0 and 1 that determines how much weight is given to the most recent data point:
The 30-day exponential moving average at Season
(
):
The formulas for the Silo vAPYs (
and
) take the following variables as inputs:
- , the 30-day EMA of Beans earned by Stalkholders at Season;
- , the total number of Seeds at Season;
- , the total number of Stalk at Season; and
- , the number of Seeds per BDV granted for Depositing this asset:
- for Deposited BEAN;
- for Deposited BEAN3CRV; and
- for Deposited BEANETH.
The formulas for the Silo vAPYs make estimations of the following variables:
- , the estimated total number of Seeds at Season;
- , the estimated total number of Stalk at Season;
- , the estimated number of a Farmer's Deposited Beans at Season; and
- , the estimated number of a Farmer's Stalk at Season.
is calculated using the estimated number of Beans owned by the Farmer a year from now (
) by using a sequence from the current Season (
) to Season
.
First, initialize the sequence with:
Then iterate through the following sequence for
:
We define
for a given
as:
We define
for a given
as:
Last modified 5d ago