-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-config.yaml
More file actions
434 lines (433 loc) · 11.7 KB
/
api-config.yaml
File metadata and controls
434 lines (433 loc) · 11.7 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
swagger: "2.0"
info:
title: "Typus Perp TLP API"
description: "Provider contract for standardized DeFi protocol integration with Slush Wallet."
version: "0.0.4"
host: "slush-api-gateway-9lhjz3rv.uc.gateway.dev"
x-google-endpoints:
- name: "slush-api-gateway-9lhjz3rv.uc.gateway.dev"
allowCors: true
schemes:
- "https"
x-google-backend:
address: https://us-central1-aqueous-freedom-378103.cloudfunctions.net/api
paths:
/v1/positions:
get:
tags:
- "positions"
summary: "List user positions"
operationId: "positions.listPositions"
parameters:
- name: "address"
in: "query"
required: true
type: "string"
description: "User's wallet address"
responses:
"200":
description: "ListPositionsResponse"
schema:
$ref: "#/definitions/ListPositionsResponse"
/v1/positions/{positionId}:
get:
tags:
- "positions"
summary: "Get position details"
operationId: "positions.getPosition"
parameters:
- name: "positionId"
in: "path"
required: true
type: "string"
description: "Position identifier"
responses:
"200":
description: "GetPositionResponse"
schema:
$ref: "#/definitions/GetPositionResponse"
/v1/strategies:
get:
tags:
- "strategies"
summary: "List all strategies"
operationId: "strategies.listStrategies"
responses:
"200":
description: "ListStrategiesResponse"
schema:
$ref: "#/definitions/ListStrategiesResponse"
/v1/strategies/{strategyId}:
get:
tags:
- "strategies"
summary: "Get strategy details"
operationId: "strategies.getStrategy"
parameters:
- name: "strategyId"
in: "path"
required: true
type: "string"
description: "Strategy identifier"
responses:
"200":
description: "GetStrategyResponse"
schema:
$ref: "#/definitions/GetStrategyResponse"
/v1/deposit:
post:
tags:
- "transactions"
summary: "Create deposit transaction"
operationId: "transactions.createDeposit"
parameters:
- in: "body"
name: "body"
required: true
schema:
$ref: "#/definitions/DepositRequest"
responses:
"200":
description: "DepositResponse"
schema:
$ref: "#/definitions/DepositResponse"
"422":
description: "Error that occurred during transaction building"
schema:
$ref: "#/definitions/TransactionBuildError"
/v1/withdraw:
post:
tags:
- "transactions"
summary: "Create withdrawal transaction"
operationId: "transactions.createWithdraw"
parameters:
- in: "body"
name: "body"
required: true
schema:
$ref: "#/definitions/WithdrawRequest"
responses:
"200":
description: "WithdrawResponse"
schema:
$ref: "#/definitions/WithdrawResponse"
"422":
description: "Error that occurred during transaction building"
schema:
$ref: "#/definitions/TransactionBuildError"
definitions:
ListStrategiesResponse:
type: "object"
required:
- "strategies"
properties:
strategies:
type: "array"
items:
$ref: "#/definitions/Strategy"
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: "#/definitions/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"
description: "Current / trailing-window total APY (including incentives)"
depositorsCount:
$ref: "#/definitions/Int"
description: "Number of depositors in the strategy"
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"
CoinValue:
type: "object"
required:
- "coinType"
- "amount"
properties:
coinType:
$ref: "#/definitions/CoinType"
amount:
type: "string"
description: "Amount in base units (e.g. MIST for SUI)"
valueUsd:
type: "number"
description: "Value in USD (optional)"
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: "#/definitions/Strategy"
ListPositionsResponse:
type: "object"
required:
- "positions"
properties:
positions:
type: "array"
items:
$ref: "#/definitions/Position"
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: "#/definitions/CoinType"
amount:
type: "string"
description: "Amount in base units (e.g. MIST for SUI)"
valueUsd:
type: "number"
description: "Value in USD (optional)"
description: "Principal amount for the position"
pendingRewards:
type: "array"
items:
$ref: "#/definitions/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: "#/definitions/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"
GetPositionResponse:
type: "object"
required:
- "position"
properties:
position:
$ref: "#/definitions/Position"
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"
DepositResponse:
type: "object"
required:
- "bytes"
- "netDeposit"
properties:
bytes:
$ref: "#/definitions/Bytes"
fees:
type: "array"
items:
$ref: "#/definitions/CoinValue"
description: "Transaction fees"
netDeposit:
$ref: "#/definitions/CoinValue"
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"
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: "#/definitions/CoinType"
amount:
type: "string"
description: "Amount in base units (e.g. MIST for SUI)"
valueUsd:
type: "number"
description: "Value in USD (optional)"
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"
WithdrawResponse:
type: "object"
required:
- "bytes"
- "principal"
- "rewards"
properties:
bytes:
$ref: "#/definitions/Bytes"
principal:
type: "object"
required:
- "coinType"
- "amount"
properties:
coinType:
$ref: "#/definitions/CoinType"
amount:
type: "string"
description: "Amount in base units (e.g. MIST for SUI)"
valueUsd:
type: "number"
description: "Value in USD (optional)"
description: "Principal amount being withdrawn"
rewards:
type: "array"
items:
$ref: "#/definitions/CoinValue"
description: "Reward amounts being withdrawn"
fees:
type: "array"
items:
$ref: "#/definitions/CoinValue"
description: "Transaction fees"