-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathswagger.yml
More file actions
35 lines (35 loc) · 795 Bytes
/
swagger.yml
File metadata and controls
35 lines (35 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
openapi: '3.0.2'
info:
title: Namada Supply API
version: '1.0.0'
servers:
- url: https://localhost:5002
- url: https://supply.testnet.siuuu.click
paths:
/api/v1/total-supply:
get:
responses:
'200':
description: The total NAM supply
content:
text/plain:
schema:
type: number
/api/v1/effective-supply:
get:
responses:
'200':
description: The effective NAM supply
content:
text/plain:
schema:
type: number
/api/v1/circulating-supply:
get:
responses:
'200':
description: The circulating NAM supply
content:
text/plain:
schema:
type: number