cosmos-sdk/x/supply/spec/02_state.md

14 lines
218 B
Markdown

# State
## Supply
The `Supply` is a passive tracker of the supply of the chain:
- Supply: `0x0 -> amino(Supply)`
```go
type Supply struct {
Total sdk.Coins // total supply of tokens registered on the chain
}
```