Skip to content

Commit

Permalink
Total, Active and Inactive Issuance
Browse files Browse the repository at this point in the history
  • Loading branch information
DrW3RK authored Sep 15, 2023
1 parent 6c3153d commit 568bd59
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions docs/learn/learn-DOT.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ keywords: [token, DOT, what are the uses of DOT, KSM, faucet]
slug: ../learn-DOT
---

import RPC from "./../../components/RPC-Connection";

## What is DOT?

DOT is the native token of the Polkadot network in a similar way that BTC is the native token of
Expand Down Expand Up @@ -115,6 +117,43 @@ the future).
approximately 14’400 blocks per day, and you can see what the latest block is shown on the
[Explorer](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frpc.polkadot.io#/explorer) page.

### Token Issuance

#### Total Issuance

It is the total number of token units in existence on the network.

:::info On-chain data for reference

The total issuance is
{{ polkadot: <RPC network="polkadot" path="query.balances.totalIssuance" defaultValue="13557639805348170350"/>. :polkadot }}
{{ kusama: <RPC network="kusama" path="query.balances.totalIssuance" defaultValue="14017001595616667835"/>. :kusama }} in the era
{{ polkadot: <RPC network="polkadot" path="query.staking.currentEra" defaultValue="1200"/>. :polkadot }}
{{ kusama: <RPC network="polkadot" path="query.staking.currentEra" defaultValue="5649"/>. :kusama }}

:::

#### Inactive Issuance

It is the total units of outstanding deactivated balance on the network that cannot be used for participation in governance.
This comprises tokens locked away in crowdloans and nomination pools.

:::info On-chain data for reference

The inactive issuance is
{{ polkadot: <RPC network="polkadot" path="query.balances.inactiveIssuance" defaultValue="1784854324418488473"/>. :polkadot }}
{{ kusama: <RPC network="kusama" path="query.balances.inactiveIssuance" defaultValue="320302796457002024"/>. :kusama }} in the era
{{ polkadot: <RPC network="polkadot" path="query.staking.currentEra" defaultValue="1200"/>. :polkadot }}
{{ kusama: <RPC network="polkadot" path="query.staking.currentEra" defaultValue="5649"/>. :kusama }}

:::

#### Active Issuance

Active issuance = Total issuance - Inactive issuance

All the tokens under active issuance are can be used to participate in the governance on-chain.

## Obtaining Testnet Tokens

DOT are required to make transactions on the Polkadot network. Tokens on Polkadot's Testnets like
Expand Down

0 comments on commit 568bd59

Please sign in to comment.