Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added code block #20

Merged
merged 1 commit into from
Aug 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion docs/encyclopedia/lumen-supply-metrics.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
title: Lumen Supply Metrics
---

import { CodeExample } from "@site/src/components/CodeExample"

This section explains how lumen supply metrics are calculated and made available via API. This information can be useful for products and services that track the distribution of XLM, including market cap aggregators and some exchanges, or to anyone who wants to investigate the distribution of XLM defined by the SDF mandate.

Unlike many other blockchains, the native network currency is not created through mining- all XLM that has ever existed and will ever exist was created when the Stellar network went live.
Expand All @@ -11,7 +13,24 @@ Unlike many other blockchains, the native network currency is not created throug
## Dashboard API
As of December 12, 2019, the Dashboard API shows:

[insert code]
<CodeExample>

```json
{
"updatedAt": "2019-12-12T21:07:23.480Z",
"originalSupply": "100000000000",
"inflationLumens": "5443902087.3472865",
"burnedLumens": "55442098181.3755700",
"totalSupply": "50001803905.9717165",
"upgradeReserve": "414310437.8111675",
"feePool": "1807341.5766261",
"sdfMandate": "29635032570.5297368",
"circulatingSupply": "19950653556.0541861",
"_details": "https://www.stellar.org/developers/guides/lumen-supply-metrics.html"
}
```

</CodeExample>

## Definitions
**originalSupply**
Expand Down