-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathswagger.yaml
More file actions
572 lines (568 loc) · 15.3 KB
/
swagger.yaml
File metadata and controls
572 lines (568 loc) · 15.3 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
openapi: 3.0.0
info:
title: Sichain API
version: 0.0.4
servers:
# Added by API Auto Mocking Plugin
- url: https://data.sifchain.finance/beta
description: AWS API Gateway
tags:
- name: Pools
description: Contains all endpoints for pool details
- name: Validators
description: Contains all endpoints for Validators
- name: Peggy
description: Cointains all endpoints for Peggy
- name: Assets
description: Contains all endpoints for Assets
- name: Network
description: Contains all endpoints for Network Info
paths:
/pool:
get:
tags:
- Pools
operationId: getPools
responses:
"200":
description: This endpoint gets all available Pools information
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/getPoolsResponse'
x-swagger-router-controller: Pools
/pool/{symbol}:
get:
tags:
- Pools
operationId: getPool
parameters:
- name: symbol
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: Display individual Pool info
content:
application/json:
schema:
$ref: '#/components/schemas/getPoolResponse'
x-swagger-router-controller: Pools
/pool/{symbol}/liquidityProvider:
get:
tags:
- Pools
operationId: getLiquidityProviders
parameters:
- name: symbol
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: Displays all current Liquidity Providers for the specified
Pool
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/getLiquidityProvidersResponse'
x-swagger-router-controller: Pools
/pool/{symbol}/liquidityProvider/{lpAddress}:
get:
tags:
- Pools
operationId: getLiquidityProvider
parameters:
- name: symbol
in: path
required: true
style: simple
explode: false
schema:
type: string
- name: lpAddress
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: Displays single Liquidity Provider information for the specified
Pool
content:
application/json:
schema:
$ref: '#/components/schemas/getLiquidityProviderResponse'
x-swagger-router-controller: Pools
/pool/{symbol}/liquidityProvider/{lpAddress}/share:
get:
tags:
- Pools
operationId: getPoolShare
parameters:
- name: symbol
in: path
required: true
style: simple
explode: false
schema:
type: string
- name: lpAddress
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: This endpoint gets pool share for given Liquidity Provider
content:
application/json:
schema:
$ref: '#/components/schemas/PoolShareResponse'
x-swagger-router-controller: Pools
/validator:
get:
tags:
- Validators
operationId: getValidators
responses:
"200":
description: This endpoint gets information for all Validators.
content:
application/json:
schema:
$ref: '#/components/schemas/GetValidatorsResponse'
x-swagger-router-controller: Validators
/validator/{validatorAddress}:
get:
tags:
- Validators
operationId: getValidator
parameters:
- name: validatorAddress
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: This endpoint gets Validator information.
content:
application/json:
schema:
$ref: '#/components/schemas/GetValidatorResponse'
x-swagger-router-controller: Validators
/validator/{validatorAddress}/delegator:
get:
tags:
- Validators
operationId: getDelegators
parameters:
- name: validatorAddress
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: This endpoint gets Validator Delegator information.
content:
application/json:
schema:
$ref: '#/components/schemas/GetDelegatorsResponse'
x-swagger-router-controller: Validators
/validator/delegator/{delegatorAddress}:
get:
tags:
- Validators
operationId: getDelegator
parameters:
- name: delegatorAddress
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: This endpoint gets specific Delegator information.
content:
application/json:
schema:
$ref: '#/components/schemas/GetDelegatorResponse'
x-swagger-router-controller: Validators
/validator/inactiveValidators:
get:
tags:
- Validators
operationId: getInactiveValidators
responses:
"200":
description: This end point gets all inactive validators
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/getInactiveValidatorsResponse'
x-swagger-router-controller: Validators
/validator/delegator/totalStaked:
get:
tags:
- Validators
operationId: getTotalStakedByDelegators
responses:
"200":
description: This end point gets total token amount delegated
content:
application/json:
schema:
$ref: '#/components/schemas/getTotalStakedByDelegatorsResponse'
x-swagger-router-controller: Validators
/peggy/peggedAssets:
get:
tags:
- Peggy
operationId: getPeggedAssets
parameters:
- name: key
in: query
required: true
style: form
explode: false
schema:
type: string
responses:
"200":
description: This endpoint gets pegged assets.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/getPeggedAssetsResponse'
x-swagger-router-controller: Peggy
/asset/{symbol}:
get:
tags:
- Assets
operationId: getTokenValue
parameters:
- name: symbol
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: This endpoint gets USD value of token.
content:
application/json:
schema:
$ref: '#/components/schemas/GetTokenValueResponse'
x-swagger-router-controller: Assets
/asset/totalSupply:
get:
tags:
- Assets
operationId: getTotalSupply
responses:
"200":
description: This end point gets total supply of Rowan.
content:
application/json:
schema:
$ref: '#/components/schemas/getCirculatingSupplyResponse'
x-swagger-router-controller: Assets
/network:
get:
tags:
- Network
operationId: getNetworkInfo
responses:
"200":
description: This end point gets network information.
content:
application/json:
schema:
$ref: '#/components/schemas/networkResponse'
x-swagger-router-controller: Network
/dailyPrice:
get:
tags:
- Network
operationId: getDailyPrice
responses:
"200":
description: This end point gets daily OHLC ticker data.
content:
application/json:
schema:
$ref: '#/components/schemas/networkResponse'
x-swagger-router-controller: Network
/historicalPrice/{symbol}:
get:
tags:
- Network
operationId: getHistoricalPrice
parameters:
- name: symbol
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: This end point gets daily OHLC ticker data.
content:
application/json:
schema:
$ref: '#/components/schemas/networkResponse'
x-swagger-router-controller: Network
components:
schemas:
getPoolsResponse:
type: object
properties:
externalAsset:
$ref: '#/components/schemas/externalAsset'
nativeAsset:
$ref: '#/components/schemas/nativeAsset'
poolUnits:
type: string
example: '123456'
getPoolResponse:
type: object
properties:
Pool:
$ref: '#/components/schemas/getPoolsResponse'
clpModuleAddress:
type: string
height:
type: string
getLiquidityProvidersResponse:
type: object
properties:
units:
type: string
address:
type: string
example:
units: '123456'
address: 'jk32l4j3l4j3l2j4l324jlhggfv3'
getLiquidityProviderResponse:
type: object
properties:
LiquidityProvider:
$ref: '#/components/schemas/getLiquidityProvidersResponse'
externalAsset:
$ref: '#/components/schemas/externalAsset'
nativeAsset:
$ref: '#/components/schemas/nativeAsset'
height:
type: string
PoolShareResponse:
type: object
properties:
poolShare:
type: string
example:
poolShare: '0.800828190461011502065957'
GetValidatorsResponse:
type: array
items:
type: object
properties:
validatorAddress:
type: string
commissionRate:
type: string
example:
commissionRate: '0.80082819046101150206595775671303272247314453125'
validatorAddress: sifj890868767868969837739example
GetValidatorResponse:
type: object
properties:
validatorAddress:
type: string
name:
type: string
stakedAmount:
type: string
selfDelegation:
type: string
externalDelegation:
type: string
unclaimedRewards:
type: string
isSlashed:
type: boolean
balance:
type: string
performance:
type: string
description: Validator uptime percentage over last 30 days
example:
stakedAmount: '0.80082819046101150206595775671303272247314453125'
performance: '2.3021358869347654518833223846741020679473876953125'
isSlashed: true
balance: '5.63737665663332876420099637471139430999755859375'
validatorAddress: validatorAddress
name: name
externalDelegation: '1.46581298050294517310021547018550336360931396484375'
unclaimedRewards: '5.962133916683182377482808078639209270477294921875'
selfDelegation: '6.02745618307040320615897144307382404804229736328125'
GetDelegatorsResponse:
type: array
items:
type: object
properties:
delegatorAddress:
type: string
delegationTotal:
type: string
example:
delegatorAddress: sifj890868767868969837739example
delegationTotal: '0.80082819046101150206595775671303272247314453125'
GetDelegatorResponse:
type: object
properties:
validatorAddress:
type: string
validatorName:
type: string
delegationTotal:
type: string
unclaimedRewards:
type: string
isSlashed:
type: boolean
performance:
type: string
description: Validator uptime percentage over last 30 days
example:
performance: '1.46581298050294517310021547018550336360931396484375'
isSlashed: true
validatorAddress: sifj890868767868969837739example
validatorName: validatorName
delegationTotal: '0.80082819046101150206595775671303272247314453125'
unclaimedRewards: '6.02745618307040320615897144307382404804229736328125'
GetTokenValueResponse:
type: object
properties:
symbol:
type: string
priceInUSDC:
type: string
priceInRowan:
type: string
example:
symbol: symbol
priceInUSDC: '0.80082819046101150206595775671303272247314453125'
priceInRowan: '6.02745618307040320615897144307382404804229736328125'
getInactiveValidatorsResponse:
type: object
properties:
inactiveValidator:
type: string
example: "abcuiyi88y, yuy7112zy"
example:
inactiveValidator: inactiveValidator
getTotalStakedByDelegatorsResponse:
type: object
properties:
amountDelegated:
type: string
example:
amountDelegated: '0.80082819046101150206595775671303272247314453125'
getPeggedAssetsResponse:
type: object
properties:
tokenName:
type: string
example: cUSD
value:
type: string
example: '120.5'
getCirculatingSupplyResponse:
type: object
properties:
circulatingSupply:
type: string
example: '120'
networkResponse:
type: object
properties:
totalRowanStaked:
type: string
example: '120'
totalUSDStaked:
type: string
example: '120'
blockReward:
type: string
example: '120'
averageBlockTime:
type: string
example: '120'
averageFee:
type: string
example: '120'
totalUsers:
type: string
example: "abcuiyi88y, yuy7112zy"
networkBondingTime:
type: string
example: '245'
validatorMinimumBondAmount:
type: string
example: '10'
delegatorMinimumBondAmount:
type: string
example: '10'
externalAsset:
type: object
properties:
symbol:
type: string
balance:
type: string
example:
symbol: USDC
balance: '12345556'
nativeAsset:
type: object
properties:
symbol:
type: string
default: ROWAN
balance:
type: string
example:
symbol: ROWAN
balance: '12345556'
x-aws-api-id: 'i7q5doxsoi'