forked from AlphaFiTech/slush-integration-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.json
More file actions
649 lines (649 loc) · 18.5 KB
/
openapi.json
File metadata and controls
649 lines (649 loc) · 18.5 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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
{
"openapi": "3.1.0",
"info": {
"title": "AlphaLend Slush Provider API",
"version": "0.1.0",
"description": "Provider API for standardized integration between Slush Wallet and AlphaLend on Sui. This spec defines the REST facade that maps to AlphaLend markets, positions, and transaction builders."
},
"paths": {
"/v1/strategies": {
"get": {
"tags": ["strategies"],
"operationId": "strategies.listStrategies",
"parameters": [],
"security": [],
"responses": {
"200": {
"description": "ListStrategiesResponse",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ListStrategiesResponse"
}
}
}
}
},
"summary": "List all strategies"
}
},
"/v1/strategies/{strategyId}": {
"get": {
"tags": ["strategies"],
"operationId": "strategies.getStrategy",
"parameters": [
{
"name": "strategyId",
"in": "path",
"schema": {
"type": "string",
"description": "Strategy identifier"
},
"required": true,
"description": "Strategy identifier"
}
],
"security": [],
"responses": {
"200": {
"description": "GetStrategyResponse",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetStrategyResponse"
}
}
}
}
},
"summary": "Get strategy details"
}
},
"/v1/positions": {
"get": {
"tags": ["positions"],
"operationId": "positions.listPositions",
"parameters": [
{
"name": "address",
"in": "query",
"schema": {
"type": "string",
"description": "User's wallet address"
},
"required": true,
"description": "User's wallet address"
}
],
"security": [],
"responses": {
"200": {
"description": "ListPositionsResponse",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ListPositionsResponse"
}
}
}
}
},
"summary": "List user positions"
}
},
"/v1/positions/{positionId}": {
"get": {
"tags": ["positions"],
"operationId": "positions.getPosition",
"parameters": [
{
"name": "positionId",
"in": "path",
"schema": {
"type": "string",
"description": "Position identifier"
},
"required": true,
"description": "Position identifier"
}
],
"security": [],
"responses": {
"200": {
"description": "GetPositionResponse",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetPositionResponse"
}
}
}
}
},
"summary": "Get position details"
}
},
"/v1/deposit": {
"post": {
"tags": ["transactions"],
"operationId": "transactions.createDeposit",
"parameters": [],
"security": [],
"responses": {
"200": {
"description": "DepositResponse",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DepositResponse"
}
}
}
},
"422": {
"description": "Error that occurred during transaction building",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TransactionBuildError"
}
}
}
}
},
"summary": "Create deposit transaction",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DepositRequest"
}
}
},
"required": true
}
}
},
"/v1/withdraw": {
"post": {
"tags": ["transactions"],
"operationId": "transactions.createWithdraw",
"parameters": [],
"security": [],
"responses": {
"200": {
"description": "WithdrawResponse",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/WithdrawResponse"
}
}
}
},
"422": {
"description": "Error that occurred during transaction building",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TransactionBuildError"
}
}
}
}
},
"summary": "Create withdrawal transaction",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/WithdrawRequest"
}
}
},
"required": true
}
}
}
},
"components": {
"schemas": {
"ListStrategiesResponse": {
"type": "object",
"required": ["strategies"],
"properties": {
"strategies": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Strategy"
}
}
},
"additionalProperties": false
},
"Strategy": {
"type": "object",
"required": [
"id",
"type",
"strategyType",
"coinType",
"minDeposit",
"apy",
"depositorsCount",
"tvlUsd",
"volume24hUsd",
"fees"
],
"properties": {
"id": {
"type": "string",
"description": "Unique immutable identifier for the strategy"
},
"type": {
"type": "string",
"enum": ["StrategyV1"],
"description": "Literal tag used to identify the Strategy schema"
},
"strategyType": {
"type": "string",
"enum": ["VAULT", "LENDING"],
"description": "High-level strategy category"
},
"coinType": {
"type": "string",
"description": "Input coin types supported by this strategy",
"pattern": "^(0x|0X)[a-fA-F0-9]{1,64}::[a-zA-Z0-9_]+::[a-zA-Z0-9_]+$"
},
"minDeposit": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoinValue"
},
"description": "Minimum deposit amounts per coin type"
},
"apy": {
"type": "object",
"required": ["current", "avg24h", "avg7d", "avg30d"],
"properties": {
"current": {
"type": "number",
"description": "Current APY as decimal (e.g., 0.05 for 5%)"
},
"avg24h": {
"type": "number",
"description": "Trailing 24h APY as decimal"
},
"avg7d": {
"type": "number",
"description": "Trailing 7d APY as decimal"
},
"avg30d": {
"type": "number",
"description": "Trailing 30d APY as decimal"
}
},
"additionalProperties": false,
"description": "Current / trailing-window total APY (including incentives)"
},
"depositorsCount": {
"$ref": "#/components/schemas/Int",
"description": "Number of depositors in the strategy",
"title": "greaterThanOrEqualTo(0)",
"minimum": 0
},
"tvlUsd": {
"type": "number",
"description": "Total Value Locked in USD"
},
"volume24hUsd": {
"type": "number",
"description": "24-hour volume in USD"
},
"fees": {
"type": "object",
"required": ["depositBps", "withdrawBps"],
"properties": {
"depositBps": {
"type": "string",
"description": "Deposit fee in basis points"
},
"withdrawBps": {
"type": "string",
"description": "Withdrawal fee in basis points"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"CoinValue": {
"type": "object",
"required": ["coinType", "amount"],
"properties": {
"coinType": {
"$ref": "#/components/schemas/CoinType"
},
"amount": {
"type": "string",
"description": "Amount in base units (e.g. MIST for SUI)"
},
"valueUsd": {
"type": "number",
"description": "Value in USD (optional)"
}
},
"additionalProperties": false
},
"CoinType": {
"type": "string",
"description": "Sui coin type (e.g. 0x2::sui::SUI)",
"pattern": "^(0x|0X)[a-fA-F0-9]{1,64}::[a-zA-Z0-9_]+::[a-zA-Z0-9_]+$"
},
"Int": {
"type": "integer",
"description": "an integer",
"title": "int"
},
"GetStrategyResponse": {
"type": "object",
"required": ["strategy"],
"properties": {
"strategy": {
"$ref": "#/components/schemas/Strategy"
}
},
"additionalProperties": false
},
"ListPositionsResponse": {
"type": "object",
"required": ["positions"],
"properties": {
"positions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Position"
}
}
},
"additionalProperties": false
},
"Position": {
"type": "object",
"required": [
"id",
"strategyId",
"type",
"principal",
"pendingRewards",
"url"
],
"properties": {
"id": {
"type": "string",
"description": "Protocol's canonical stable identifier (e.g., object id, Sui type tag) for the position."
},
"strategyId": {
"type": "string",
"description": "Identifier of the associated strategy"
},
"type": {
"type": "string",
"enum": ["PositionV1"],
"description": "Literal tag used to identify the Position schema"
},
"principal": {
"type": "object",
"required": ["coinType", "amount"],
"properties": {
"coinType": {
"$ref": "#/components/schemas/CoinType"
},
"amount": {
"type": "string",
"description": "Amount in base units (e.g. MIST for SUI)"
},
"valueUsd": {
"type": "number",
"description": "Value in USD (optional)"
}
},
"additionalProperties": false,
"description": "Principal amount for the position"
},
"pendingRewards": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoinValue"
},
"description": "Unclaimed rewards per coin type. If not applicable for a given position, e.g. auto-compounding rewards, return an empty array."
},
"totalRewards": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoinValue"
},
"description": "Total rewards (pending + compounded) per coin type"
},
"url": {
"type": "string",
"description": "Fully qualified URL that will be used to link the user to their position on the provider app"
}
},
"additionalProperties": false
},
"GetPositionResponse": {
"type": "object",
"required": ["position"],
"properties": {
"position": {
"$ref": "#/components/schemas/Position"
}
},
"additionalProperties": false
},
"DepositRequest": {
"type": "object",
"required": [
"type",
"strategyId",
"senderAddress",
"coinType",
"nativeAmount"
],
"properties": {
"type": {
"type": "string",
"enum": ["StrategyV1"],
"description": "Should match the type of the strategy being deposited to"
},
"strategyId": {
"type": "string",
"description": "Target strategy identifier"
},
"senderAddress": {
"type": "string",
"description": "Sender's wallet address"
},
"coinType": {
"type": "string",
"description": "Coin type to deposit. May be a base asset or a supported zap-in asset."
},
"nativeAmount": {
"type": "string",
"description": "Amount to deposit in native units"
}
},
"additionalProperties": false
},
"DepositResponse": {
"type": "object",
"required": ["bytes", "netDeposit"],
"properties": {
"bytes": {
"allOf": [
{
"$ref": "#/components/schemas/Bytes"
}
],
"description": "Transaction bytes for signing"
},
"fees": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoinValue"
},
"description": "Transaction fees"
},
"netDeposit": {
"$ref": "#/components/schemas/CoinValue"
}
},
"additionalProperties": false
},
"Bytes": {
"type": "string",
"description": "A base64-encoded string containing raw bytes"
},
"TransactionBuildError": {
"type": "object",
"required": ["_tag"],
"properties": {
"message": {
"type": "string",
"description": "Human-readable error message"
},
"_tag": {
"type": "string",
"enum": ["TransactionBuildError"]
}
},
"additionalProperties": false,
"description": "Error that occurred during transaction building"
},
"WithdrawRequest": {
"type": "object",
"required": [
"type",
"positionId",
"senderAddress",
"principal",
"mode"
],
"properties": {
"type": {
"type": "string",
"enum": ["PositionV1"],
"description": "Should match the type of the position being withdrawn from"
},
"positionId": {
"type": "string",
"description": "Position identifier to withdraw from"
},
"senderAddress": {
"type": "string",
"description": "Sender's wallet address"
},
"principal": {
"type": "object",
"required": ["coinType", "amount"],
"properties": {
"coinType": {
"$ref": "#/components/schemas/CoinType"
},
"amount": {
"type": "string",
"description": "Amount in base units (e.g. MIST for SUI)"
},
"valueUsd": {
"type": "number",
"description": "Value in USD (optional)"
}
},
"additionalProperties": false,
"description": "Principal amount being withdrawn"
},
"mode": {
"type": "string",
"enum": ["as-is", "usdc"],
"description": "Whether the user wants to withdraw in the same coin or in USDC"
}
},
"additionalProperties": false
},
"WithdrawResponse": {
"type": "object",
"required": ["bytes", "principal", "rewards"],
"properties": {
"bytes": {
"allOf": [
{
"$ref": "#/components/schemas/Bytes"
}
],
"description": "Transaction bytes for signing"
},
"principal": {
"type": "object",
"required": ["coinType", "amount"],
"properties": {
"coinType": {
"$ref": "#/components/schemas/CoinType"
},
"amount": {
"type": "string",
"description": "Amount in base units (e.g. MIST for SUI)"
},
"valueUsd": {
"type": "number",
"description": "Value in USD (optional)"
}
},
"additionalProperties": false,
"description": "Principal amount being withdrawn"
},
"rewards": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoinValue"
},
"description": "Reward amounts being withdrawn"
},
"fees": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoinValue"
},
"description": "Transaction fees"
}
},
"additionalProperties": false
}
},
"securitySchemes": {}
},
"security": [],
"tags": [
{
"name": "strategies",
"description": "AlphaLend markets exposed as investment strategies"
},
{
"name": "positions",
"description": "User positions derived from AlphaLend"
},
{
"name": "transactions",
"description": "Transaction builders returning serialized bytes for Sui"
}
],
"servers": [
{
"url": "https://api-staging.alphalend.xyz/slush"
},
{
"url": "https://api.alphalend.xyz/slush"
}
]
}