module_mint
mint
module
mint
moduleIntroduction
The mint
module is responsible for creating tokens in a flexible way to reward the validators who participate in the proof of stake consensus process (see also the distribution module). It is also designed in a way to bring a balance between market liquidity and staked supply.
Overview
Network parameters
Below are all the network parameters for the mint
module:
"blocks_per_year"
- The expected number of blocks being produced per year;"goal_bonded"
- Goal of bonded token in percentage;"inflation_max"
- Maximum annual inflation rate;"inflation_min"
- Minimum annual inflation rate;"inflation_rate_change"
- Maximum annual change in inflation rate;"mint_denom"
- Token type being minted.
The target annual inflation rate is recalculated for each previous cycle. The inflation is also subject to a rate change (positive or negative) depending on the distance from the desired ratio ("goal_bonded"
). The maximum rate change possible is defined to be "inflation_rate_change"
per year, where the annual inflation is capped as between "inflation_min"
and "inflation_max"
.
Parameters explained
"goal_bonded"
Goal of bonded token in percentage (also called staking ratio), the changes of the reward and the inflation rate related to this parameter can be summarized as follows cases:
If the staking ratio is below the
"goal_bonded"
, the inflation rate will increase until reaching a maximum upper bound ("inflation_max"
);If the staking ratio is equal to
"goal_bonded"
, the inflation rate will stay constant;If the staking ratio is above the
"goal_bonded"
, it will decrease until reaching a minimum lower bound"inflation_min"
).
"inflation_rate_change"
Maximum annual change in inflation rate, represents the maximum percentage by which the inflation rate can change in a year.
Emissions and supply of $CRO
The current emissions and supply of $CRO and its emission projections can be easily queried directly from URLs, as described in this section.
How inflation rate is calculated
The magnitude of the rate of change of the inflation rate is controlled by an additional factor, which is the ratio between the current bonded ratio with the "goal_bonded"
, the inflation rate is updated at the end of every block accordingly to the following formula:
Or simply, when the inflation rate within the maximum and the minimum bounds
as
This function then updates the current inflation rate by adding the inflationRateChange to it. Finally, the function checks that the updated inflation rate is within the range defined by the InflationMin and InflationMax parameters, and returns the resulting inflation rate.
How emissions are calculated
Annual provisions
The emission of the Cronos POS Chain is controlled by the inflation rate and the total supply of $CRO. New $CRO tokens are minted at each block and distributed as block rewards to delegators. The inflation rate determines the amount of $CRO emitted to delegators at each block, with emissions being distributed as staking rewards according to the Proof-of-Stake consensus mechanism.
The annualized quantity of $CRO emitted is called Annual Provisions. It can be calculated based on the inflation rate with:
At any point, the inflation, in annualized percentage increase of CRO supply, can be queried from https://rest.mainnet.cronos-pos.org/cosmos/mint/v1beta1/inflation.
This can be seen in the following code in the Cosmos SDK:
Easy to use endpoints to query $CRO emissions
The current value of annual provisions of CRO can be queried at any time at this endpoint.
The total supply of CRO can be queried at any time at this endpoint
Note: These numbers are provided in basecro, where 1 CRO = 10^8 basecro
on the Cronos POS chain.
Annualized emissions can also be seen on the Blockchain Explorer at https://cronos-pos.org/explorer under "Events" of each block.
This annualized emission value can be derived into a per-block value (see Block provisions), using the block per year value provided by the following endpoint: https://rest.mainnet.cronos-pos.org/cosmos/mint/v1beta1/params
Block provisions
To calculate the number of $CRO emitted to delegators at each block, we need to divide the Annual Provisions by the expected number of blocks per year (blocks_per_year
, an be queried at any time at this endpoint)
The resulting number is called the "Block Provision":
This can be seen in the following code in the CosmosSDK:
Total and Circulating Supply of $CRO
The Total Supply refers to the total amount of $CRO that has been created on Cronos POS chain;
The Circulating Supply refers to the total supply minus the amount stored in the "burn address", which has effectively been taken out of circulation by community burn governance proposals, i.e.
Easy to use endpoints to query $CRO supplies:
The current total supply of $CRO can be obtained here.
The current circulating supply of $CRO can be obtained here.
The current burned amount of $CRO can be obtained here.
Note - This number is provided in basecro
, where 1 CRO = 10^8 basecro
on the Cronos POS chain.
Total burned amount and progress can be found in the Cronos Burninfo page.
mint
module: Queries
Queries
Query the current minting annual provisions value
We can query the current minting annual provisions value, for example:
implies that the current minting annual provisions will be 100346483960386394 basecro ( i.e. 1,003,464,839
CRO)
Query the current minting inflation value
We can query the current minting inflation value, for example:
implies that the inflaction rate is 3.7%
Query the current minting parameters
We can query the current query parameters by
Appendix
gov
module: Network Parameters and configuration
The following tables show overall effects on different configurations of the mint related network parameters:
Last updated