diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index ca84adad9..89e4d290a 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,7 +6,7 @@ - [ ] Github issue OR spec proposal link - [ ] Wrote tests -- [ ] Updated relevant documentation (docs/) +- [ ] Updated API documentation (client/lcd/swagger-ui/swagger.yaml) - [ ] Added a relevant changelog entry: clog add [section] [stanza] [message] ---- diff --git a/client/lcd/swagger-ui/swagger.yaml b/client/lcd/swagger-ui/swagger.yaml index 273f15727..1dfd3591b 100644 --- a/client/lcd/swagger-ui/swagger.yaml +++ b/client/lcd/swagger-ui/swagger.yaml @@ -21,6 +21,8 @@ tags: description: Slashing module APIs - name: Distribution description: Fee distribution module APIs + - name: Mint + description: Minting module APIs - name: Supply description: Supply module APIs - name: Market @@ -1966,6 +1968,60 @@ paths: type: string 500: description: Internal Server Error + /minting/parameters: + get: + summary: Minting module parameters + tags: + - Mint + produces: + - application/json + responses: + 200: + description: OK + schema: + properties: + mint_denom: + type: string + inflation_rate_change: + type: string + inflation_max: + type: string + inflation_min: + type: string + goal_bonded: + type: string + blocks_per_year: + type: string + 500: + description: Internal Server Error + /minting/inflation: + get: + summary: Current minting inflation value + tags: + - Mint + produces: + - application/json + responses: + 200: + description: OK + schema: + type: string + 500: + description: Internal Server Error + /minting/annual-provisions: + get: + summary: Current minting annual provisions value + tags: + - Mint + produces: + - application/json + responses: + 200: + description: OK + schema: + type: string + 500: + description: Internal Server Error /supply/total: get: summary: Total supply of coins in the chain