{% extends "base" %}
{% block content %}
{% if cg_api == "enabled" %}
Inflation Rate
%
Price
Supply
/span>
Market Cap
Grin was started with as fair of a launch as possible for what's under our control. We did this for good reason: we believe in Grin's mission to enable private money for everyone and open access to it.
Emission 1 GRIN/SEC
1 Minute ツ 60
$ {{ usd_minute }}
{{ btc_minute }}
1 Hour ツ 3,600
$ {{ usd_hour }}
₿ {{ btc_hour }}
1 Day ツ 86,400
$ {{ usd_day }}
₿ {{ btc_day }}
1 Week ツ 604,800
$ {{ usd_week }}
₿ {{ btc_week }}
1 Month ツ 2,592,000
$ {{ usd_month }}
₿ {{ btc_month }}
1 Year ツ 31,557,600
$ {{ usd_year }}
₿ {{ btc_year }}
I don't measure grin's success by its marketcap, but by its elegance, simplicity, scalability and long term survival.
Inflation Rate by Year
2019 ツ 0
{% for i in range(end=100) %}
{{ 2019 + i + 1 }} ツ {{ ((i + 1) * 31557600) | separate_with_commas }}
{{ (31557600 / ((i + 1) * 31557600)) * 100 | round(method="ceil", precision=2)}} %
{% endfor %}
{% endblock %}