github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/cosmos-sdk/x/supply/spec/02_state.md (about)

     1  <!--
     2  order: 2
     3  -->
     4  
     5  # State
     6  
     7  ## Supply
     8  
     9  The `Supply` is a passive tracker of the supply of the chain:
    10  
    11  - Supply: `0x0 -> amino(Supply)`
    12  
    13  ```go
    14  type Supply struct {
    15    Total sdk.Coins // total supply of tokens registered on the chain
    16  }
    17  ```