@defisaver/positions-sdk 0.0.201-fluid-dev-1 → 0.0.201-fluid-dev-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/config/contracts.d.ts +6 -0
- package/cjs/config/contracts.js +4 -2
- package/cjs/markets/fluid/index.d.ts +6 -10
- package/cjs/markets/fluid/index.js +188 -143
- package/cjs/types/contracts/generated/FluidView.d.ts +127 -1
- package/cjs/types/fluid.d.ts +5 -1
- package/cjs/types/fluid.js +3 -0
- package/esm/config/contracts.d.ts +6 -0
- package/esm/config/contracts.js +4 -2
- package/esm/markets/fluid/index.d.ts +6 -10
- package/esm/markets/fluid/index.js +183 -136
- package/esm/types/contracts/generated/FluidView.d.ts +127 -1
- package/esm/types/fluid.d.ts +5 -1
- package/esm/types/fluid.js +3 -0
- package/package.json +1 -1
- package/src/config/contracts.js +4 -2
- package/src/markets/fluid/index.ts +186 -138
- package/src/types/contracts/generated/FluidView.ts +167 -5
- package/src/types/fluid.ts +4 -0
|
@@ -3,6 +3,8 @@ import { FluidArbitrumVersion, FluidBaseVersions, FluidMainnetVersion, FluidVaul
|
|
|
3
3
|
export const ETH_USDC_1 = (networkId = NetworkNumber.Eth) => ({
|
|
4
4
|
btcBased: false,
|
|
5
5
|
wstETHBased: false,
|
|
6
|
+
stableBased: true,
|
|
7
|
+
ethBased: true,
|
|
6
8
|
chainIds: [NetworkNumber.Eth],
|
|
7
9
|
label: 'ETH / USDC Market 1',
|
|
8
10
|
shortLabel: 'ETH/USDC',
|
|
@@ -15,11 +17,12 @@ export const ETH_USDC_1 = (networkId = NetworkNumber.Eth) => ({
|
|
|
15
17
|
collateralAsset: 'ETH',
|
|
16
18
|
debtAsset: 'USDC',
|
|
17
19
|
type: FluidVaultType.T1,
|
|
18
|
-
ethBased: true,
|
|
19
20
|
});
|
|
20
21
|
export const ETH_USDT_2 = (networkId = NetworkNumber.Eth) => ({
|
|
21
22
|
btcBased: false,
|
|
22
23
|
wstETHBased: false,
|
|
24
|
+
stableBased: true,
|
|
25
|
+
ethBased: true,
|
|
23
26
|
chainIds: [NetworkNumber.Eth],
|
|
24
27
|
label: 'ETH / USDT Market 2',
|
|
25
28
|
shortLabel: 'ETH/USDT',
|
|
@@ -32,10 +35,12 @@ export const ETH_USDT_2 = (networkId = NetworkNumber.Eth) => ({
|
|
|
32
35
|
collateralAsset: 'ETH',
|
|
33
36
|
debtAsset: 'USDT',
|
|
34
37
|
type: FluidVaultType.T1,
|
|
35
|
-
ethBased: true,
|
|
36
38
|
});
|
|
37
39
|
export const WSTETH_ETH_3 = (networkId = NetworkNumber.Eth) => ({
|
|
40
|
+
stableBased: false,
|
|
38
41
|
btcBased: false,
|
|
42
|
+
ethBased: true,
|
|
43
|
+
wstETHBased: true,
|
|
39
44
|
chainIds: [NetworkNumber.Eth],
|
|
40
45
|
label: 'wstETH / ETH Market 3',
|
|
41
46
|
shortLabel: 'wstETH/ETH',
|
|
@@ -48,12 +53,12 @@ export const WSTETH_ETH_3 = (networkId = NetworkNumber.Eth) => ({
|
|
|
48
53
|
collateralAsset: 'wstETH',
|
|
49
54
|
debtAsset: 'ETH',
|
|
50
55
|
type: FluidVaultType.T1,
|
|
51
|
-
ethBased: false,
|
|
52
|
-
wstETHBased: true,
|
|
53
56
|
});
|
|
54
57
|
export const WSTETH_USDC_4 = (networkId = NetworkNumber.Eth) => ({
|
|
55
58
|
btcBased: false,
|
|
56
|
-
ethBased:
|
|
59
|
+
ethBased: true,
|
|
60
|
+
stableBased: true,
|
|
61
|
+
wstETHBased: true,
|
|
57
62
|
chainIds: [NetworkNumber.Eth],
|
|
58
63
|
label: 'wstETH / USDC Market 4',
|
|
59
64
|
shortLabel: 'wstETH/USDC',
|
|
@@ -66,11 +71,12 @@ export const WSTETH_USDC_4 = (networkId = NetworkNumber.Eth) => ({
|
|
|
66
71
|
collateralAsset: 'wstETH',
|
|
67
72
|
debtAsset: 'USDC',
|
|
68
73
|
type: FluidVaultType.T1,
|
|
69
|
-
wstETHBased: true,
|
|
70
74
|
});
|
|
71
75
|
export const WSTETH_USDT_5 = (networkId = NetworkNumber.Eth) => ({
|
|
72
76
|
btcBased: false,
|
|
73
|
-
ethBased:
|
|
77
|
+
ethBased: true,
|
|
78
|
+
stableBased: true,
|
|
79
|
+
wstETHBased: true,
|
|
74
80
|
chainIds: [NetworkNumber.Eth],
|
|
75
81
|
label: 'wstETH / USDT Market 5',
|
|
76
82
|
shortLabel: 'wstETH/USDT',
|
|
@@ -83,11 +89,12 @@ export const WSTETH_USDT_5 = (networkId = NetworkNumber.Eth) => ({
|
|
|
83
89
|
collateralAsset: 'wstETH',
|
|
84
90
|
debtAsset: 'USDT',
|
|
85
91
|
type: FluidVaultType.T1,
|
|
86
|
-
wstETHBased: true,
|
|
87
92
|
});
|
|
88
93
|
export const WEETH_WSTETH_6 = (networkId = NetworkNumber.Eth) => ({
|
|
89
94
|
btcBased: false,
|
|
90
95
|
ethBased: true,
|
|
96
|
+
wstETHBased: true,
|
|
97
|
+
stableBased: false,
|
|
91
98
|
chainIds: [NetworkNumber.Eth],
|
|
92
99
|
label: 'weETH / wstETH Market 6',
|
|
93
100
|
shortLabel: 'weETH/wstETH',
|
|
@@ -100,45 +107,11 @@ export const WEETH_WSTETH_6 = (networkId = NetworkNumber.Eth) => ({
|
|
|
100
107
|
collateralAsset: 'weETH',
|
|
101
108
|
debtAsset: 'wstETH',
|
|
102
109
|
type: FluidVaultType.T1,
|
|
103
|
-
wstETHBased: false,
|
|
104
|
-
});
|
|
105
|
-
export const SUSDE_USDC_7 = (networkId = NetworkNumber.Eth) => ({
|
|
106
|
-
btcBased: false,
|
|
107
|
-
ethBased: false,
|
|
108
|
-
chainIds: [NetworkNumber.Eth],
|
|
109
|
-
label: 'sUSDe / USDC Market 7',
|
|
110
|
-
shortLabel: 'sUSDe/USDC',
|
|
111
|
-
value: FluidMainnetVersion.SUSDE_USDC_7,
|
|
112
|
-
url: 'susde-usdc-7',
|
|
113
|
-
marketAddress: '0x4045720a33193b4Fe66c94DFbc8D37B0b4D9B469',
|
|
114
|
-
id: 7,
|
|
115
|
-
hasSmartCollateral: false,
|
|
116
|
-
hasSmartDebt: false,
|
|
117
|
-
collateralAsset: 'sUSDe',
|
|
118
|
-
debtAsset: 'USDC',
|
|
119
|
-
type: FluidVaultType.T1,
|
|
120
|
-
wstETHBased: false,
|
|
121
|
-
});
|
|
122
|
-
export const SUSDE_USDT_8 = (networkId = NetworkNumber.Eth) => ({
|
|
123
|
-
btcBased: false,
|
|
124
|
-
ethBased: false,
|
|
125
|
-
chainIds: [NetworkNumber.Eth],
|
|
126
|
-
label: 'sUSDe / USDT Market 8',
|
|
127
|
-
shortLabel: 'sUSDe/USDT',
|
|
128
|
-
value: FluidMainnetVersion.SUSDE_USDT_8,
|
|
129
|
-
url: 'susde-usdt-8',
|
|
130
|
-
marketAddress: '0xBFADEA65591235f38809076e14803Ac84AcF3F97',
|
|
131
|
-
id: 8,
|
|
132
|
-
hasSmartCollateral: false,
|
|
133
|
-
hasSmartDebt: false,
|
|
134
|
-
collateralAsset: 'sUSDe',
|
|
135
|
-
debtAsset: 'USDT',
|
|
136
|
-
type: FluidVaultType.T1,
|
|
137
|
-
wstETHBased: false,
|
|
138
110
|
});
|
|
139
111
|
export const WEETH_USDC_9 = (networkId = NetworkNumber.Eth) => ({
|
|
140
112
|
btcBased: false,
|
|
141
113
|
ethBased: true,
|
|
114
|
+
stableBased: true,
|
|
142
115
|
chainIds: [NetworkNumber.Eth],
|
|
143
116
|
label: 'weETH / USDC Market 9',
|
|
144
117
|
shortLabel: 'weETH/USDC',
|
|
@@ -157,6 +130,7 @@ export const WEETH_USDT_10 = (networkId = NetworkNumber.Eth) => ({
|
|
|
157
130
|
btcBased: false,
|
|
158
131
|
wstETHBased: false,
|
|
159
132
|
ethBased: true,
|
|
133
|
+
stableBased: true,
|
|
160
134
|
type: FluidVaultType.T1,
|
|
161
135
|
chainIds: [NetworkNumber.Eth],
|
|
162
136
|
label: 'weETH / USDT Market 10',
|
|
@@ -174,6 +148,7 @@ export const ETH_USDC_11 = (networkId = NetworkNumber.Eth) => ({
|
|
|
174
148
|
btcBased: false,
|
|
175
149
|
wstETHBased: false,
|
|
176
150
|
ethBased: true,
|
|
151
|
+
stableBased: true,
|
|
177
152
|
type: FluidVaultType.T1,
|
|
178
153
|
chainIds: [NetworkNumber.Eth],
|
|
179
154
|
label: 'ETH / USDC Market 11',
|
|
@@ -191,6 +166,7 @@ export const ETH_USDT_12 = (networkId = NetworkNumber.Eth) => ({
|
|
|
191
166
|
btcBased: false,
|
|
192
167
|
wstETHBased: false,
|
|
193
168
|
ethBased: true,
|
|
169
|
+
stableBased: true,
|
|
194
170
|
type: FluidVaultType.T1,
|
|
195
171
|
chainIds: [NetworkNumber.Eth],
|
|
196
172
|
label: 'ETH / USDT Market 12',
|
|
@@ -205,9 +181,10 @@ export const ETH_USDT_12 = (networkId = NetworkNumber.Eth) => ({
|
|
|
205
181
|
debtAsset: 'USDT',
|
|
206
182
|
});
|
|
207
183
|
export const WSTETH_ETH_13 = (networkId = NetworkNumber.Eth) => ({
|
|
184
|
+
stableBased: false,
|
|
208
185
|
btcBased: false,
|
|
209
186
|
wstETHBased: true,
|
|
210
|
-
ethBased:
|
|
187
|
+
ethBased: true,
|
|
211
188
|
type: FluidVaultType.T1,
|
|
212
189
|
chainIds: [NetworkNumber.Eth],
|
|
213
190
|
label: 'wstETH / ETH Market 13',
|
|
@@ -222,9 +199,10 @@ export const WSTETH_ETH_13 = (networkId = NetworkNumber.Eth) => ({
|
|
|
222
199
|
debtAsset: 'ETH',
|
|
223
200
|
});
|
|
224
201
|
export const WSTETH_USDC_14 = (networkId = NetworkNumber.Eth) => ({
|
|
202
|
+
stableBased: true,
|
|
225
203
|
btcBased: false,
|
|
226
204
|
wstETHBased: true,
|
|
227
|
-
ethBased:
|
|
205
|
+
ethBased: true,
|
|
228
206
|
type: FluidVaultType.T1,
|
|
229
207
|
chainIds: [NetworkNumber.Eth],
|
|
230
208
|
label: 'wstETH / USDC Market 14',
|
|
@@ -239,9 +217,10 @@ export const WSTETH_USDC_14 = (networkId = NetworkNumber.Eth) => ({
|
|
|
239
217
|
debtAsset: 'USDC',
|
|
240
218
|
});
|
|
241
219
|
export const WSTETH_USDT_15 = (networkId = NetworkNumber.Eth) => ({
|
|
220
|
+
stableBased: true,
|
|
242
221
|
btcBased: false,
|
|
243
222
|
wstETHBased: true,
|
|
244
|
-
ethBased:
|
|
223
|
+
ethBased: true,
|
|
245
224
|
type: FluidVaultType.T1,
|
|
246
225
|
chainIds: [NetworkNumber.Eth],
|
|
247
226
|
label: 'wstETH / USDT Market 15',
|
|
@@ -256,8 +235,9 @@ export const WSTETH_USDT_15 = (networkId = NetworkNumber.Eth) => ({
|
|
|
256
235
|
debtAsset: 'USDT',
|
|
257
236
|
});
|
|
258
237
|
export const WEETH_WSTETH_16 = (networkId = NetworkNumber.Eth) => ({
|
|
238
|
+
stableBased: false,
|
|
259
239
|
btcBased: false,
|
|
260
|
-
wstETHBased:
|
|
240
|
+
wstETHBased: true,
|
|
261
241
|
ethBased: true,
|
|
262
242
|
type: FluidVaultType.T1,
|
|
263
243
|
chainIds: [NetworkNumber.Eth],
|
|
@@ -273,6 +253,7 @@ export const WEETH_WSTETH_16 = (networkId = NetworkNumber.Eth) => ({
|
|
|
273
253
|
debtAsset: 'wstETH',
|
|
274
254
|
});
|
|
275
255
|
export const SUSDE_USDC_17 = (networkId = NetworkNumber.Eth) => ({
|
|
256
|
+
stableBased: true,
|
|
276
257
|
btcBased: false,
|
|
277
258
|
wstETHBased: false,
|
|
278
259
|
ethBased: false,
|
|
@@ -290,6 +271,7 @@ export const SUSDE_USDC_17 = (networkId = NetworkNumber.Eth) => ({
|
|
|
290
271
|
debtAsset: 'USDC',
|
|
291
272
|
});
|
|
292
273
|
export const SUSDE_USDT_18 = (networkId = NetworkNumber.Eth) => ({
|
|
274
|
+
stableBased: true,
|
|
293
275
|
btcBased: false,
|
|
294
276
|
wstETHBased: false,
|
|
295
277
|
ethBased: false,
|
|
@@ -307,6 +289,7 @@ export const SUSDE_USDT_18 = (networkId = NetworkNumber.Eth) => ({
|
|
|
307
289
|
debtAsset: 'USDT',
|
|
308
290
|
});
|
|
309
291
|
export const WEETH_USDC_19 = (networkId = NetworkNumber.Eth) => ({
|
|
292
|
+
stableBased: true,
|
|
310
293
|
btcBased: false,
|
|
311
294
|
wstETHBased: false,
|
|
312
295
|
ethBased: true,
|
|
@@ -324,6 +307,7 @@ export const WEETH_USDC_19 = (networkId = NetworkNumber.Eth) => ({
|
|
|
324
307
|
debtAsset: 'USDC',
|
|
325
308
|
});
|
|
326
309
|
export const WEETH_USDT_20 = (networkId = NetworkNumber.Eth) => ({
|
|
310
|
+
stableBased: true,
|
|
327
311
|
btcBased: false,
|
|
328
312
|
wstETHBased: false,
|
|
329
313
|
ethBased: true,
|
|
@@ -341,6 +325,7 @@ export const WEETH_USDT_20 = (networkId = NetworkNumber.Eth) => ({
|
|
|
341
325
|
debtAsset: 'USDT',
|
|
342
326
|
});
|
|
343
327
|
export const WBTC_USDC_21 = (networkId = NetworkNumber.Eth) => ({
|
|
328
|
+
stableBased: true,
|
|
344
329
|
btcBased: true,
|
|
345
330
|
wstETHBased: false,
|
|
346
331
|
ethBased: false,
|
|
@@ -358,6 +343,7 @@ export const WBTC_USDC_21 = (networkId = NetworkNumber.Eth) => ({
|
|
|
358
343
|
debtAsset: 'USDC',
|
|
359
344
|
});
|
|
360
345
|
export const WBTC_USDT_22 = (networkId = NetworkNumber.Eth) => ({
|
|
346
|
+
stableBased: true,
|
|
361
347
|
btcBased: true,
|
|
362
348
|
wstETHBased: false,
|
|
363
349
|
ethBased: false,
|
|
@@ -375,9 +361,10 @@ export const WBTC_USDT_22 = (networkId = NetworkNumber.Eth) => ({
|
|
|
375
361
|
debtAsset: 'USDT',
|
|
376
362
|
});
|
|
377
363
|
export const WBTC_ETH_23 = (networkId = NetworkNumber.Eth) => ({
|
|
364
|
+
stableBased: false,
|
|
378
365
|
btcBased: true,
|
|
379
366
|
wstETHBased: false,
|
|
380
|
-
ethBased:
|
|
367
|
+
ethBased: true,
|
|
381
368
|
type: FluidVaultType.T1,
|
|
382
369
|
chainIds: [NetworkNumber.Eth],
|
|
383
370
|
label: 'WBTC / ETH Market 23',
|
|
@@ -392,7 +379,8 @@ export const WBTC_ETH_23 = (networkId = NetworkNumber.Eth) => ({
|
|
|
392
379
|
debtAsset: 'ETH',
|
|
393
380
|
});
|
|
394
381
|
export const ETH_WBTC_24 = (networkId = NetworkNumber.Eth) => ({
|
|
395
|
-
|
|
382
|
+
stableBased: false,
|
|
383
|
+
btcBased: true,
|
|
396
384
|
wstETHBased: false,
|
|
397
385
|
ethBased: true,
|
|
398
386
|
type: FluidVaultType.T1,
|
|
@@ -409,9 +397,10 @@ export const ETH_WBTC_24 = (networkId = NetworkNumber.Eth) => ({
|
|
|
409
397
|
debtAsset: 'WBTC',
|
|
410
398
|
});
|
|
411
399
|
export const WSTETH_WBTC_25 = (networkId = NetworkNumber.Eth) => ({
|
|
412
|
-
|
|
400
|
+
stableBased: false,
|
|
401
|
+
btcBased: true,
|
|
413
402
|
wstETHBased: true,
|
|
414
|
-
ethBased:
|
|
403
|
+
ethBased: true,
|
|
415
404
|
type: FluidVaultType.T1,
|
|
416
405
|
chainIds: [NetworkNumber.Eth],
|
|
417
406
|
label: 'wstETH / WBTC Market 25',
|
|
@@ -426,7 +415,8 @@ export const WSTETH_WBTC_25 = (networkId = NetworkNumber.Eth) => ({
|
|
|
426
415
|
debtAsset: 'WBTC',
|
|
427
416
|
});
|
|
428
417
|
export const WEETH_WBTC_26 = (networkId = NetworkNumber.Eth) => ({
|
|
429
|
-
|
|
418
|
+
stableBased: false,
|
|
419
|
+
btcBased: true,
|
|
430
420
|
wstETHBased: false,
|
|
431
421
|
ethBased: true,
|
|
432
422
|
type: FluidVaultType.T1,
|
|
@@ -443,8 +433,9 @@ export const WEETH_WBTC_26 = (networkId = NetworkNumber.Eth) => ({
|
|
|
443
433
|
debtAsset: 'WBTC',
|
|
444
434
|
});
|
|
445
435
|
export const WEETHS_WSTETH_27 = (networkId = NetworkNumber.Eth) => ({
|
|
436
|
+
stableBased: false,
|
|
446
437
|
btcBased: false,
|
|
447
|
-
wstETHBased:
|
|
438
|
+
wstETHBased: true,
|
|
448
439
|
ethBased: true,
|
|
449
440
|
type: FluidVaultType.T1,
|
|
450
441
|
chainIds: [NetworkNumber.Eth],
|
|
@@ -460,9 +451,10 @@ export const WEETHS_WSTETH_27 = (networkId = NetworkNumber.Eth) => ({
|
|
|
460
451
|
debtAsset: 'wstETH',
|
|
461
452
|
});
|
|
462
453
|
export const CBBTC_ETH_28 = (networkId = NetworkNumber.Eth) => ({
|
|
454
|
+
stableBased: false,
|
|
463
455
|
btcBased: true,
|
|
464
456
|
wstETHBased: false,
|
|
465
|
-
ethBased:
|
|
457
|
+
ethBased: true,
|
|
466
458
|
type: FluidVaultType.T1,
|
|
467
459
|
chainIds: [NetworkNumber.Eth],
|
|
468
460
|
label: 'cbBTC / ETH Market 28',
|
|
@@ -477,6 +469,7 @@ export const CBBTC_ETH_28 = (networkId = NetworkNumber.Eth) => ({
|
|
|
477
469
|
debtAsset: 'ETH',
|
|
478
470
|
});
|
|
479
471
|
export const CBBTC_USDC_29 = (networkId = NetworkNumber.Eth) => ({
|
|
472
|
+
stableBased: true,
|
|
480
473
|
btcBased: true,
|
|
481
474
|
wstETHBased: false,
|
|
482
475
|
ethBased: false,
|
|
@@ -494,6 +487,7 @@ export const CBBTC_USDC_29 = (networkId = NetworkNumber.Eth) => ({
|
|
|
494
487
|
debtAsset: 'USDC',
|
|
495
488
|
});
|
|
496
489
|
export const CBBTC_USDT_30 = (networkId = NetworkNumber.Eth) => ({
|
|
490
|
+
stableBased: true,
|
|
497
491
|
btcBased: true,
|
|
498
492
|
wstETHBased: false,
|
|
499
493
|
ethBased: false,
|
|
@@ -511,7 +505,8 @@ export const CBBTC_USDT_30 = (networkId = NetworkNumber.Eth) => ({
|
|
|
511
505
|
debtAsset: 'USDT',
|
|
512
506
|
});
|
|
513
507
|
export const ETH_CBBTC_31 = (networkId = NetworkNumber.Eth) => ({
|
|
514
|
-
|
|
508
|
+
stableBased: false,
|
|
509
|
+
btcBased: true,
|
|
515
510
|
wstETHBased: false,
|
|
516
511
|
ethBased: true,
|
|
517
512
|
type: FluidVaultType.T1,
|
|
@@ -528,7 +523,8 @@ export const ETH_CBBTC_31 = (networkId = NetworkNumber.Eth) => ({
|
|
|
528
523
|
debtAsset: 'cbBTC',
|
|
529
524
|
});
|
|
530
525
|
export const WEETH_CBBTC_32 = (networkId = NetworkNumber.Eth) => ({
|
|
531
|
-
|
|
526
|
+
stableBased: false,
|
|
527
|
+
btcBased: true,
|
|
532
528
|
wstETHBased: false,
|
|
533
529
|
ethBased: true,
|
|
534
530
|
type: FluidVaultType.T1,
|
|
@@ -544,27 +540,11 @@ export const WEETH_CBBTC_32 = (networkId = NetworkNumber.Eth) => ({
|
|
|
544
540
|
collateralAsset: 'weETH',
|
|
545
541
|
debtAsset: 'cbBTC',
|
|
546
542
|
});
|
|
547
|
-
export const WSTETH_CBBTC_33 = (networkId = NetworkNumber.Eth) => ({
|
|
548
|
-
btcBased: false,
|
|
549
|
-
wstETHBased: true,
|
|
550
|
-
ethBased: false,
|
|
551
|
-
type: FluidVaultType.T1,
|
|
552
|
-
chainIds: [NetworkNumber.Eth],
|
|
553
|
-
label: 'wstETH / cbBTC Market 33',
|
|
554
|
-
shortLabel: 'wstETH/cbBTC',
|
|
555
|
-
value: FluidMainnetVersion.WSTETH_CBBTC_33,
|
|
556
|
-
url: 'wsteth-cbbtc-33',
|
|
557
|
-
id: 33,
|
|
558
|
-
marketAddress: '0x6E0cDB09eb33cD3894C905E0DFF9289b95a86FFF',
|
|
559
|
-
hasSmartCollateral: false,
|
|
560
|
-
hasSmartDebt: false,
|
|
561
|
-
collateralAsset: 'wstETH',
|
|
562
|
-
debtAsset: 'cbBTC',
|
|
563
|
-
});
|
|
564
543
|
export const WSTETH_ETH_WSTETH_ETH_44 = (networkId = NetworkNumber.Eth) => ({
|
|
544
|
+
stableBased: false,
|
|
565
545
|
btcBased: false,
|
|
566
546
|
wstETHBased: true,
|
|
567
|
-
ethBased:
|
|
547
|
+
ethBased: true,
|
|
568
548
|
type: FluidVaultType.T4,
|
|
569
549
|
chainIds: [NetworkNumber.Eth],
|
|
570
550
|
label: 'wstETH / ETH Market 44',
|
|
@@ -579,6 +559,7 @@ export const WSTETH_ETH_WSTETH_ETH_44 = (networkId = NetworkNumber.Eth) => ({
|
|
|
579
559
|
debtAsset: 'ETH',
|
|
580
560
|
});
|
|
581
561
|
export const ETH_USDC_USDT_45 = (networkId = NetworkNumber.Eth) => ({
|
|
562
|
+
stableBased: true,
|
|
582
563
|
btcBased: false,
|
|
583
564
|
wstETHBased: false,
|
|
584
565
|
ethBased: true,
|
|
@@ -596,9 +577,10 @@ export const ETH_USDC_USDT_45 = (networkId = NetworkNumber.Eth) => ({
|
|
|
596
577
|
debtAsset: 'USDC',
|
|
597
578
|
});
|
|
598
579
|
export const WSTETH_USDC_USDT_46 = (networkId = NetworkNumber.Eth) => ({
|
|
580
|
+
stableBased: true,
|
|
599
581
|
btcBased: false,
|
|
600
582
|
wstETHBased: true,
|
|
601
|
-
ethBased:
|
|
583
|
+
ethBased: true,
|
|
602
584
|
type: FluidVaultType.T3,
|
|
603
585
|
chainIds: [NetworkNumber.Eth],
|
|
604
586
|
label: 'wstETH / USDC Market 46',
|
|
@@ -613,6 +595,7 @@ export const WSTETH_USDC_USDT_46 = (networkId = NetworkNumber.Eth) => ({
|
|
|
613
595
|
debtAsset: 'USDC',
|
|
614
596
|
});
|
|
615
597
|
export const WEETH_USDC_USDT_47 = (networkId = NetworkNumber.Eth) => ({
|
|
598
|
+
stableBased: true,
|
|
616
599
|
btcBased: false,
|
|
617
600
|
wstETHBased: false,
|
|
618
601
|
ethBased: true,
|
|
@@ -630,6 +613,7 @@ export const WEETH_USDC_USDT_47 = (networkId = NetworkNumber.Eth) => ({
|
|
|
630
613
|
debtAsset: 'USDC',
|
|
631
614
|
});
|
|
632
615
|
export const WBTC_USDC_USDT_48 = (networkId = NetworkNumber.Eth) => ({
|
|
616
|
+
stableBased: true,
|
|
633
617
|
btcBased: true,
|
|
634
618
|
wstETHBased: false,
|
|
635
619
|
ethBased: false,
|
|
@@ -647,6 +631,7 @@ export const WBTC_USDC_USDT_48 = (networkId = NetworkNumber.Eth) => ({
|
|
|
647
631
|
debtAsset: 'USDC',
|
|
648
632
|
});
|
|
649
633
|
export const CBBTC_USDC_USDT_49 = (networkId = NetworkNumber.Eth) => ({
|
|
634
|
+
stableBased: true,
|
|
650
635
|
btcBased: true,
|
|
651
636
|
wstETHBased: false,
|
|
652
637
|
ethBased: false,
|
|
@@ -664,6 +649,7 @@ export const CBBTC_USDC_USDT_49 = (networkId = NetworkNumber.Eth) => ({
|
|
|
664
649
|
debtAsset: 'USDC',
|
|
665
650
|
});
|
|
666
651
|
export const SUSDE_USDC_USDT_50 = (networkId = NetworkNumber.Eth) => ({
|
|
652
|
+
stableBased: true,
|
|
667
653
|
btcBased: false,
|
|
668
654
|
wstETHBased: false,
|
|
669
655
|
ethBased: false,
|
|
@@ -681,6 +667,7 @@ export const SUSDE_USDC_USDT_50 = (networkId = NetworkNumber.Eth) => ({
|
|
|
681
667
|
debtAsset: 'USDC',
|
|
682
668
|
});
|
|
683
669
|
export const WBTC_CBBTC_WBTC_CBBTC_51 = (networkId = NetworkNumber.Eth) => ({
|
|
670
|
+
stableBased: false,
|
|
684
671
|
btcBased: true,
|
|
685
672
|
wstETHBased: false,
|
|
686
673
|
ethBased: false,
|
|
@@ -698,6 +685,7 @@ export const WBTC_CBBTC_WBTC_CBBTC_51 = (networkId = NetworkNumber.Eth) => ({
|
|
|
698
685
|
debtAsset: 'cbBTC',
|
|
699
686
|
});
|
|
700
687
|
export const WBTC_CBBTC_USDC_52 = (networkId = NetworkNumber.Eth) => ({
|
|
688
|
+
stableBased: true,
|
|
701
689
|
btcBased: true,
|
|
702
690
|
wstETHBased: false,
|
|
703
691
|
ethBased: false,
|
|
@@ -715,6 +703,7 @@ export const WBTC_CBBTC_USDC_52 = (networkId = NetworkNumber.Eth) => ({
|
|
|
715
703
|
debtAsset: 'cbBTC',
|
|
716
704
|
});
|
|
717
705
|
export const WBTC_CBBTC_USDT_53 = (networkId = NetworkNumber.Eth) => ({
|
|
706
|
+
stableBased: true,
|
|
718
707
|
btcBased: true,
|
|
719
708
|
wstETHBased: false,
|
|
720
709
|
ethBased: false,
|
|
@@ -732,6 +721,7 @@ export const WBTC_CBBTC_USDT_53 = (networkId = NetworkNumber.Eth) => ({
|
|
|
732
721
|
debtAsset: 'cbBTC',
|
|
733
722
|
});
|
|
734
723
|
export const ETH_GHO_54 = (networkId = NetworkNumber.Eth) => ({
|
|
724
|
+
stableBased: true,
|
|
735
725
|
btcBased: false,
|
|
736
726
|
wstETHBased: false,
|
|
737
727
|
ethBased: true,
|
|
@@ -749,9 +739,10 @@ export const ETH_GHO_54 = (networkId = NetworkNumber.Eth) => ({
|
|
|
749
739
|
debtAsset: 'GHO',
|
|
750
740
|
});
|
|
751
741
|
export const WSTETH_GHO_55 = (networkId = NetworkNumber.Eth) => ({
|
|
742
|
+
stableBased: true,
|
|
752
743
|
btcBased: false,
|
|
753
744
|
wstETHBased: true,
|
|
754
|
-
ethBased:
|
|
745
|
+
ethBased: true,
|
|
755
746
|
type: FluidVaultType.T1,
|
|
756
747
|
id: 55,
|
|
757
748
|
chainIds: [NetworkNumber.Eth],
|
|
@@ -766,6 +757,7 @@ export const WSTETH_GHO_55 = (networkId = NetworkNumber.Eth) => ({
|
|
|
766
757
|
debtAsset: 'GHO',
|
|
767
758
|
});
|
|
768
759
|
export const SUSDE_GHO_56 = (networkId = NetworkNumber.Eth) => ({
|
|
760
|
+
stableBased: true,
|
|
769
761
|
btcBased: false,
|
|
770
762
|
wstETHBased: false,
|
|
771
763
|
ethBased: false,
|
|
@@ -783,6 +775,7 @@ export const SUSDE_GHO_56 = (networkId = NetworkNumber.Eth) => ({
|
|
|
783
775
|
debtAsset: 'GHO',
|
|
784
776
|
});
|
|
785
777
|
export const WEETH_GHO_57 = (networkId = NetworkNumber.Eth) => ({
|
|
778
|
+
stableBased: true,
|
|
786
779
|
btcBased: false,
|
|
787
780
|
wstETHBased: false,
|
|
788
781
|
ethBased: true,
|
|
@@ -800,6 +793,7 @@ export const WEETH_GHO_57 = (networkId = NetworkNumber.Eth) => ({
|
|
|
800
793
|
debtAsset: 'GHO',
|
|
801
794
|
});
|
|
802
795
|
export const SUSDS_GHO_58 = (networkId = NetworkNumber.Eth) => ({
|
|
796
|
+
stableBased: true,
|
|
803
797
|
btcBased: false,
|
|
804
798
|
wstETHBased: false,
|
|
805
799
|
ethBased: false,
|
|
@@ -816,41 +810,8 @@ export const SUSDS_GHO_58 = (networkId = NetworkNumber.Eth) => ({
|
|
|
816
810
|
collateralAsset: 'SUSDS',
|
|
817
811
|
debtAsset: 'GHO',
|
|
818
812
|
});
|
|
819
|
-
export const WBTC_GHO_59 = (networkId = NetworkNumber.Eth) => ({
|
|
820
|
-
btcBased: true,
|
|
821
|
-
wstETHBased: false,
|
|
822
|
-
ethBased: false,
|
|
823
|
-
type: FluidVaultType.T1,
|
|
824
|
-
id: 59,
|
|
825
|
-
chainIds: [NetworkNumber.Eth],
|
|
826
|
-
label: 'WBTC / GHO Market 59',
|
|
827
|
-
shortLabel: 'WBTC/GHO',
|
|
828
|
-
value: FluidMainnetVersion.WBTC_GHO_59,
|
|
829
|
-
url: 'wbtc-gho-59',
|
|
830
|
-
marketAddress: '',
|
|
831
|
-
hasSmartCollateral: false,
|
|
832
|
-
hasSmartDebt: false,
|
|
833
|
-
collateralAsset: 'WBTC',
|
|
834
|
-
debtAsset: 'GHO',
|
|
835
|
-
});
|
|
836
|
-
export const CBBTC_GHO_60 = (networkId = NetworkNumber.Eth) => ({
|
|
837
|
-
btcBased: true,
|
|
838
|
-
wstETHBased: false,
|
|
839
|
-
ethBased: false,
|
|
840
|
-
type: FluidVaultType.T1,
|
|
841
|
-
id: 60,
|
|
842
|
-
chainIds: [NetworkNumber.Eth],
|
|
843
|
-
label: 'cbBTC / GHO Market 60',
|
|
844
|
-
shortLabel: 'cbBTC/GHO',
|
|
845
|
-
value: FluidMainnetVersion.CBBTC_GHO_60,
|
|
846
|
-
url: 'cbbtc-gho-60',
|
|
847
|
-
marketAddress: '',
|
|
848
|
-
hasSmartCollateral: false,
|
|
849
|
-
hasSmartDebt: false,
|
|
850
|
-
collateralAsset: 'cbBTC',
|
|
851
|
-
debtAsset: 'GHO',
|
|
852
|
-
});
|
|
853
813
|
export const GHO_USDC_GHO_USDC_61 = (networkId = NetworkNumber.Eth) => ({
|
|
814
|
+
stableBased: true,
|
|
854
815
|
btcBased: false,
|
|
855
816
|
wstETHBased: false,
|
|
856
817
|
ethBased: false,
|
|
@@ -868,8 +829,9 @@ export const GHO_USDC_GHO_USDC_61 = (networkId = NetworkNumber.Eth) => ({
|
|
|
868
829
|
debtAsset: 'USDC',
|
|
869
830
|
});
|
|
870
831
|
export const WEETH_ETH_WSTETH_74 = (networkId = NetworkNumber.Eth) => ({
|
|
832
|
+
stableBased: false,
|
|
871
833
|
btcBased: false,
|
|
872
|
-
wstETHBased:
|
|
834
|
+
wstETHBased: true,
|
|
873
835
|
ethBased: true,
|
|
874
836
|
type: FluidVaultType.T2,
|
|
875
837
|
id: 74,
|
|
@@ -885,9 +847,10 @@ export const WEETH_ETH_WSTETH_74 = (networkId = NetworkNumber.Eth) => ({
|
|
|
885
847
|
debtAsset: 'ETH',
|
|
886
848
|
});
|
|
887
849
|
export const USDC_ETH_USDC_ETH_77 = (networkId = NetworkNumber.Eth) => ({
|
|
850
|
+
stableBased: true,
|
|
888
851
|
btcBased: false,
|
|
889
852
|
wstETHBased: false,
|
|
890
|
-
ethBased:
|
|
853
|
+
ethBased: true,
|
|
891
854
|
type: FluidVaultType.T4,
|
|
892
855
|
id: 77,
|
|
893
856
|
chainIds: [NetworkNumber.Eth],
|
|
@@ -902,8 +865,9 @@ export const USDC_ETH_USDC_ETH_77 = (networkId = NetworkNumber.Eth) => ({
|
|
|
902
865
|
debtAsset: 'ETH',
|
|
903
866
|
});
|
|
904
867
|
export const RSETH_ETH_WSTETH_78 = (networkId = NetworkNumber.Eth) => ({
|
|
868
|
+
stableBased: false,
|
|
905
869
|
btcBased: false,
|
|
906
|
-
wstETHBased:
|
|
870
|
+
wstETHBased: true,
|
|
907
871
|
ethBased: true,
|
|
908
872
|
type: FluidVaultType.T2,
|
|
909
873
|
id: 78,
|
|
@@ -919,8 +883,9 @@ export const RSETH_ETH_WSTETH_78 = (networkId = NetworkNumber.Eth) => ({
|
|
|
919
883
|
debtAsset: 'ETH',
|
|
920
884
|
});
|
|
921
885
|
export const RSETH_WSTETH_79 = (networkId = NetworkNumber.Eth) => ({
|
|
886
|
+
stableBased: false,
|
|
922
887
|
btcBased: false,
|
|
923
|
-
wstETHBased:
|
|
888
|
+
wstETHBased: true,
|
|
924
889
|
ethBased: true,
|
|
925
890
|
type: FluidVaultType.T1,
|
|
926
891
|
id: 79,
|
|
@@ -936,8 +901,9 @@ export const RSETH_WSTETH_79 = (networkId = NetworkNumber.Eth) => ({
|
|
|
936
901
|
debtAsset: 'wstETH',
|
|
937
902
|
});
|
|
938
903
|
export const WEETHS_ETH_WSTETH_80 = (networkId = NetworkNumber.Eth) => ({
|
|
904
|
+
stableBased: false,
|
|
939
905
|
btcBased: false,
|
|
940
|
-
wstETHBased:
|
|
906
|
+
wstETHBased: true,
|
|
941
907
|
ethBased: true,
|
|
942
908
|
type: FluidVaultType.T2,
|
|
943
909
|
id: 80,
|
|
@@ -952,7 +918,62 @@ export const WEETHS_ETH_WSTETH_80 = (networkId = NetworkNumber.Eth) => ({
|
|
|
952
918
|
collateralAsset: 'weETHs',
|
|
953
919
|
debtAsset: 'ETH',
|
|
954
920
|
});
|
|
921
|
+
export const SUSDE_USDT_USDT_92 = (networkId = NetworkNumber.Eth) => ({
|
|
922
|
+
stableBased: true,
|
|
923
|
+
btcBased: false,
|
|
924
|
+
wstETHBased: false,
|
|
925
|
+
ethBased: false,
|
|
926
|
+
type: FluidVaultType.T2,
|
|
927
|
+
id: 92,
|
|
928
|
+
chainIds: [NetworkNumber.Eth],
|
|
929
|
+
label: 'sUSDe-USDT / USDT Market 92',
|
|
930
|
+
shortLabel: 'sUSDe-USDT/USDT',
|
|
931
|
+
value: FluidMainnetVersion.SUSDE_USDT_USDT_92,
|
|
932
|
+
url: 'susde-usdt-usdt-92',
|
|
933
|
+
marketAddress: '',
|
|
934
|
+
hasSmartCollateral: false,
|
|
935
|
+
hasSmartDebt: false,
|
|
936
|
+
collateralAsset: 'sUSDe',
|
|
937
|
+
debtAsset: 'USDT',
|
|
938
|
+
});
|
|
939
|
+
export const USDE_USDT_USDT_93 = (networkId = NetworkNumber.Eth) => ({
|
|
940
|
+
stableBased: true,
|
|
941
|
+
btcBased: false,
|
|
942
|
+
wstETHBased: false,
|
|
943
|
+
ethBased: false,
|
|
944
|
+
type: FluidVaultType.T2,
|
|
945
|
+
id: 93,
|
|
946
|
+
chainIds: [NetworkNumber.Eth],
|
|
947
|
+
label: 'sUSDe-USDT / USDT Market 93',
|
|
948
|
+
shortLabel: 'weETHs/ETH',
|
|
949
|
+
value: FluidMainnetVersion.USDE_USDT_USDT_93,
|
|
950
|
+
url: 'susde-usdt-usdt-93',
|
|
951
|
+
marketAddress: '',
|
|
952
|
+
hasSmartCollateral: false,
|
|
953
|
+
hasSmartDebt: false,
|
|
954
|
+
collateralAsset: 'sUSDe',
|
|
955
|
+
debtAsset: 'USDT',
|
|
956
|
+
});
|
|
957
|
+
export const LBTC_CBBTC_WBTC_97 = (networkId = NetworkNumber.Eth) => ({
|
|
958
|
+
stableBased: false,
|
|
959
|
+
btcBased: true,
|
|
960
|
+
wstETHBased: false,
|
|
961
|
+
ethBased: false,
|
|
962
|
+
type: FluidVaultType.T2,
|
|
963
|
+
id: 97,
|
|
964
|
+
chainIds: [NetworkNumber.Eth],
|
|
965
|
+
label: 'LBTC-cbBTC / WBTC Market 97',
|
|
966
|
+
shortLabel: 'weETHs/ETH',
|
|
967
|
+
value: FluidMainnetVersion.LBTC_CBBTC_WBTC_97,
|
|
968
|
+
url: 'lbtc-cbbtc-wbtc-97',
|
|
969
|
+
marketAddress: '',
|
|
970
|
+
hasSmartCollateral: false,
|
|
971
|
+
hasSmartDebt: false,
|
|
972
|
+
collateralAsset: 'LBTC',
|
|
973
|
+
debtAsset: 'WBTC',
|
|
974
|
+
});
|
|
955
975
|
export const ETH_USDC_1_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
976
|
+
stableBased: true,
|
|
956
977
|
btcBased: false,
|
|
957
978
|
wstETHBased: false,
|
|
958
979
|
ethBased: true,
|
|
@@ -970,6 +991,7 @@ export const ETH_USDC_1_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
970
991
|
debtAsset: 'USDC',
|
|
971
992
|
});
|
|
972
993
|
export const ETH_USDT_2_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
994
|
+
stableBased: true,
|
|
973
995
|
btcBased: false,
|
|
974
996
|
wstETHBased: false,
|
|
975
997
|
ethBased: true,
|
|
@@ -987,9 +1009,10 @@ export const ETH_USDT_2_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
987
1009
|
debtAsset: 'USDT',
|
|
988
1010
|
});
|
|
989
1011
|
export const WSTETH_USDC_3_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1012
|
+
stableBased: true,
|
|
990
1013
|
btcBased: false,
|
|
991
1014
|
wstETHBased: true,
|
|
992
|
-
ethBased:
|
|
1015
|
+
ethBased: true,
|
|
993
1016
|
type: FluidVaultType.T1,
|
|
994
1017
|
id: 3,
|
|
995
1018
|
chainIds: [NetworkNumber.Arb],
|
|
@@ -1004,9 +1027,10 @@ export const WSTETH_USDC_3_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1004
1027
|
debtAsset: 'USDC',
|
|
1005
1028
|
});
|
|
1006
1029
|
export const WSTETH_USDT_4_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1030
|
+
stableBased: true,
|
|
1007
1031
|
btcBased: false,
|
|
1008
1032
|
wstETHBased: true,
|
|
1009
|
-
ethBased:
|
|
1033
|
+
ethBased: true,
|
|
1010
1034
|
type: FluidVaultType.T1,
|
|
1011
1035
|
id: 4,
|
|
1012
1036
|
chainIds: [NetworkNumber.Arb],
|
|
@@ -1021,9 +1045,10 @@ export const WSTETH_USDT_4_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1021
1045
|
debtAsset: 'USDT',
|
|
1022
1046
|
});
|
|
1023
1047
|
export const WSTETH_ETH_5_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1048
|
+
stableBased: false,
|
|
1024
1049
|
btcBased: false,
|
|
1025
1050
|
wstETHBased: true,
|
|
1026
|
-
ethBased:
|
|
1051
|
+
ethBased: true,
|
|
1027
1052
|
type: FluidVaultType.T1,
|
|
1028
1053
|
id: 5,
|
|
1029
1054
|
chainIds: [NetworkNumber.Arb],
|
|
@@ -1038,8 +1063,9 @@ export const WSTETH_ETH_5_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1038
1063
|
debtAsset: 'ETH',
|
|
1039
1064
|
});
|
|
1040
1065
|
export const WEETH_WSTETH_6_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1066
|
+
stableBased: false,
|
|
1041
1067
|
btcBased: false,
|
|
1042
|
-
wstETHBased:
|
|
1068
|
+
wstETHBased: true,
|
|
1043
1069
|
ethBased: true,
|
|
1044
1070
|
type: FluidVaultType.T1,
|
|
1045
1071
|
id: 6,
|
|
@@ -1055,6 +1081,7 @@ export const WEETH_WSTETH_6_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1055
1081
|
debtAsset: 'wstETH',
|
|
1056
1082
|
});
|
|
1057
1083
|
export const WEETH_USDC_7_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1084
|
+
stableBased: true,
|
|
1058
1085
|
btcBased: false,
|
|
1059
1086
|
wstETHBased: false,
|
|
1060
1087
|
ethBased: true,
|
|
@@ -1072,6 +1099,7 @@ export const WEETH_USDC_7_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1072
1099
|
debtAsset: 'USDC',
|
|
1073
1100
|
});
|
|
1074
1101
|
export const WEETH_USDT_8_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1102
|
+
stableBased: true,
|
|
1075
1103
|
btcBased: false,
|
|
1076
1104
|
wstETHBased: false,
|
|
1077
1105
|
ethBased: true,
|
|
@@ -1089,6 +1117,7 @@ export const WEETH_USDT_8_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1089
1117
|
debtAsset: 'USDT',
|
|
1090
1118
|
});
|
|
1091
1119
|
export const ETH_ARB_9_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1120
|
+
stableBased: false,
|
|
1092
1121
|
btcBased: false,
|
|
1093
1122
|
wstETHBased: false,
|
|
1094
1123
|
ethBased: true,
|
|
@@ -1106,6 +1135,7 @@ export const ETH_ARB_9_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1106
1135
|
debtAsset: 'ARB',
|
|
1107
1136
|
});
|
|
1108
1137
|
export const ARB_USDC_10_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1138
|
+
stableBased: true,
|
|
1109
1139
|
btcBased: false,
|
|
1110
1140
|
wstETHBased: false,
|
|
1111
1141
|
ethBased: false,
|
|
@@ -1123,6 +1153,7 @@ export const ARB_USDC_10_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1123
1153
|
debtAsset: 'USDC',
|
|
1124
1154
|
});
|
|
1125
1155
|
export const ARB_USDT_11_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1156
|
+
stableBased: true,
|
|
1126
1157
|
btcBased: false,
|
|
1127
1158
|
wstETHBased: false,
|
|
1128
1159
|
ethBased: false,
|
|
@@ -1140,10 +1171,11 @@ export const ARB_USDT_11_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1140
1171
|
debtAsset: 'USDT',
|
|
1141
1172
|
});
|
|
1142
1173
|
export const WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1174
|
+
stableBased: false,
|
|
1143
1175
|
btcBased: false,
|
|
1144
1176
|
wstETHBased: true,
|
|
1145
|
-
ethBased:
|
|
1146
|
-
type: FluidVaultType.
|
|
1177
|
+
ethBased: true,
|
|
1178
|
+
type: FluidVaultType.T4,
|
|
1147
1179
|
id: 16,
|
|
1148
1180
|
chainIds: [NetworkNumber.Arb],
|
|
1149
1181
|
label: 'wstETH / ETH Market 16',
|
|
@@ -1157,8 +1189,9 @@ export const WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId = NetworkNumber.Eth) => (
|
|
|
1157
1189
|
debtAsset: 'ETH',
|
|
1158
1190
|
});
|
|
1159
1191
|
export const WEETH_ETH_WSTETH_17_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1192
|
+
stableBased: false,
|
|
1160
1193
|
btcBased: false,
|
|
1161
|
-
wstETHBased:
|
|
1194
|
+
wstETHBased: true,
|
|
1162
1195
|
ethBased: true,
|
|
1163
1196
|
type: FluidVaultType.T1,
|
|
1164
1197
|
id: 17,
|
|
@@ -1174,6 +1207,7 @@ export const WEETH_ETH_WSTETH_17_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1174
1207
|
debtAsset: 'ETH',
|
|
1175
1208
|
});
|
|
1176
1209
|
export const ETH_USDC_1_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1210
|
+
stableBased: true,
|
|
1177
1211
|
btcBased: false,
|
|
1178
1212
|
wstETHBased: false,
|
|
1179
1213
|
ethBased: true,
|
|
@@ -1191,9 +1225,10 @@ export const ETH_USDC_1_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1191
1225
|
debtAsset: 'USDC',
|
|
1192
1226
|
});
|
|
1193
1227
|
export const WSTETH_USDC_2_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1228
|
+
stableBased: true,
|
|
1194
1229
|
btcBased: false,
|
|
1195
1230
|
wstETHBased: true,
|
|
1196
|
-
ethBased:
|
|
1231
|
+
ethBased: true,
|
|
1197
1232
|
type: FluidVaultType.T1,
|
|
1198
1233
|
id: 2,
|
|
1199
1234
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1208,9 +1243,10 @@ export const WSTETH_USDC_2_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1208
1243
|
debtAsset: 'USDC',
|
|
1209
1244
|
});
|
|
1210
1245
|
export const WSTETH_ETH_3_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1246
|
+
stableBased: false,
|
|
1211
1247
|
btcBased: false,
|
|
1212
1248
|
wstETHBased: true,
|
|
1213
|
-
ethBased:
|
|
1249
|
+
ethBased: true,
|
|
1214
1250
|
type: FluidVaultType.T1,
|
|
1215
1251
|
id: 3,
|
|
1216
1252
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1225,8 +1261,9 @@ export const WSTETH_ETH_3_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1225
1261
|
debtAsset: 'ETH',
|
|
1226
1262
|
});
|
|
1227
1263
|
export const WEETH_WSTETH_4_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1264
|
+
stableBased: false,
|
|
1228
1265
|
btcBased: false,
|
|
1229
|
-
wstETHBased:
|
|
1266
|
+
wstETHBased: true,
|
|
1230
1267
|
ethBased: true,
|
|
1231
1268
|
type: FluidVaultType.T1,
|
|
1232
1269
|
id: 4,
|
|
@@ -1242,6 +1279,7 @@ export const WEETH_WSTETH_4_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1242
1279
|
debtAsset: 'wstETH',
|
|
1243
1280
|
});
|
|
1244
1281
|
export const WEETH_USDC_5_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1282
|
+
stableBased: true,
|
|
1245
1283
|
btcBased: false,
|
|
1246
1284
|
wstETHBased: false,
|
|
1247
1285
|
ethBased: true,
|
|
@@ -1259,6 +1297,7 @@ export const WEETH_USDC_5_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1259
1297
|
debtAsset: 'USDC',
|
|
1260
1298
|
});
|
|
1261
1299
|
export const CBETH_USDC_6_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1300
|
+
stableBased: true,
|
|
1262
1301
|
btcBased: false,
|
|
1263
1302
|
wstETHBased: false,
|
|
1264
1303
|
ethBased: true,
|
|
@@ -1276,6 +1315,7 @@ export const CBETH_USDC_6_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1276
1315
|
debtAsset: 'USDC',
|
|
1277
1316
|
});
|
|
1278
1317
|
export const CBBTC_USDC_7_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1318
|
+
stableBased: true,
|
|
1279
1319
|
btcBased: true,
|
|
1280
1320
|
wstETHBased: false,
|
|
1281
1321
|
ethBased: false,
|
|
@@ -1293,6 +1333,7 @@ export const CBBTC_USDC_7_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1293
1333
|
debtAsset: 'USDC',
|
|
1294
1334
|
});
|
|
1295
1335
|
export const CBBTC_EURC_8_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1336
|
+
stableBased: true,
|
|
1296
1337
|
btcBased: true,
|
|
1297
1338
|
wstETHBased: false,
|
|
1298
1339
|
ethBased: false,
|
|
@@ -1310,6 +1351,7 @@ export const CBBTC_EURC_8_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1310
1351
|
debtAsset: 'EURC',
|
|
1311
1352
|
});
|
|
1312
1353
|
export const CBETH_EURC_9_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1354
|
+
stableBased: true,
|
|
1313
1355
|
btcBased: false,
|
|
1314
1356
|
wstETHBased: false,
|
|
1315
1357
|
ethBased: true,
|
|
@@ -1327,6 +1369,7 @@ export const CBETH_EURC_9_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1327
1369
|
debtAsset: 'EURC',
|
|
1328
1370
|
});
|
|
1329
1371
|
export const ETH_EURC_10_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1372
|
+
stableBased: true,
|
|
1330
1373
|
btcBased: false,
|
|
1331
1374
|
wstETHBased: false,
|
|
1332
1375
|
ethBased: true,
|
|
@@ -1344,6 +1387,7 @@ export const ETH_EURC_10_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1344
1387
|
debtAsset: 'EURC',
|
|
1345
1388
|
});
|
|
1346
1389
|
export const WEETH_EURC_11_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1390
|
+
stableBased: true,
|
|
1347
1391
|
btcBased: false,
|
|
1348
1392
|
wstETHBased: false,
|
|
1349
1393
|
ethBased: true,
|
|
@@ -1361,9 +1405,10 @@ export const WEETH_EURC_11_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1361
1405
|
debtAsset: 'EURC',
|
|
1362
1406
|
});
|
|
1363
1407
|
export const WSTETH_EURC_12_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1408
|
+
stableBased: true,
|
|
1364
1409
|
btcBased: false,
|
|
1365
1410
|
wstETHBased: true,
|
|
1366
|
-
ethBased:
|
|
1411
|
+
ethBased: true,
|
|
1367
1412
|
type: FluidVaultType.T1,
|
|
1368
1413
|
id: 12,
|
|
1369
1414
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1378,9 +1423,10 @@ export const WSTETH_EURC_12_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1378
1423
|
debtAsset: 'EURC',
|
|
1379
1424
|
});
|
|
1380
1425
|
export const CBBTC_ETH_13_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1426
|
+
stableBased: false,
|
|
1381
1427
|
btcBased: true,
|
|
1382
1428
|
wstETHBased: false,
|
|
1383
|
-
ethBased:
|
|
1429
|
+
ethBased: true,
|
|
1384
1430
|
type: FluidVaultType.T1,
|
|
1385
1431
|
id: 13,
|
|
1386
1432
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1395,7 +1441,8 @@ export const CBBTC_ETH_13_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1395
1441
|
debtAsset: 'ETH',
|
|
1396
1442
|
});
|
|
1397
1443
|
export const ETH_CBBTC_14_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1398
|
-
|
|
1444
|
+
stableBased: false,
|
|
1445
|
+
btcBased: true,
|
|
1399
1446
|
wstETHBased: false,
|
|
1400
1447
|
ethBased: true,
|
|
1401
1448
|
type: FluidVaultType.T1,
|
|
@@ -1412,7 +1459,8 @@ export const ETH_CBBTC_14_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1412
1459
|
debtAsset: 'cbBTC',
|
|
1413
1460
|
});
|
|
1414
1461
|
export const WEETH_CBBTC_15_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1415
|
-
|
|
1462
|
+
stableBased: false,
|
|
1463
|
+
btcBased: true,
|
|
1416
1464
|
wstETHBased: false,
|
|
1417
1465
|
ethBased: true,
|
|
1418
1466
|
type: FluidVaultType.T1,
|
|
@@ -1429,9 +1477,10 @@ export const WEETH_CBBTC_15_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1429
1477
|
debtAsset: 'cbBTC',
|
|
1430
1478
|
});
|
|
1431
1479
|
export const WSTETH_CBBTC_16_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1432
|
-
|
|
1480
|
+
stableBased: false,
|
|
1481
|
+
btcBased: true,
|
|
1433
1482
|
wstETHBased: true,
|
|
1434
|
-
ethBased:
|
|
1483
|
+
ethBased: true,
|
|
1435
1484
|
type: FluidVaultType.T1,
|
|
1436
1485
|
id: 16,
|
|
1437
1486
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1452,8 +1501,6 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1452
1501
|
[FluidMainnetVersion.WSTETH_USDC_4]: WSTETH_USDC_4(networkId),
|
|
1453
1502
|
[FluidMainnetVersion.WSTETH_USDT_5]: WSTETH_USDT_5(networkId),
|
|
1454
1503
|
[FluidMainnetVersion.WEETH_WSTETH_6]: WEETH_WSTETH_6(networkId),
|
|
1455
|
-
[FluidMainnetVersion.SUSDE_USDC_7]: SUSDE_USDC_7(networkId),
|
|
1456
|
-
[FluidMainnetVersion.SUSDE_USDT_8]: SUSDE_USDT_8(networkId),
|
|
1457
1504
|
[FluidMainnetVersion.WEETH_USDC_9]: WEETH_USDC_9(networkId),
|
|
1458
1505
|
[FluidMainnetVersion.WEETH_USDT_10]: WEETH_USDT_10(networkId),
|
|
1459
1506
|
[FluidMainnetVersion.ETH_USDC_11]: ETH_USDC_11(networkId),
|
|
@@ -1478,7 +1525,6 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1478
1525
|
[FluidMainnetVersion.CBBTC_USDT_30]: CBBTC_USDT_30(networkId),
|
|
1479
1526
|
[FluidMainnetVersion.ETH_CBBTC_31]: ETH_CBBTC_31(networkId),
|
|
1480
1527
|
[FluidMainnetVersion.WEETH_CBBTC_32]: WEETH_CBBTC_32(networkId),
|
|
1481
|
-
[FluidMainnetVersion.WSTETH_CBBTC_33]: WSTETH_CBBTC_33(networkId),
|
|
1482
1528
|
[FluidMainnetVersion.WSTETH_ETH_WSTETH_ETH_44]: WSTETH_ETH_WSTETH_ETH_44(networkId),
|
|
1483
1529
|
[FluidMainnetVersion.ETH_USDC_USDT_45]: ETH_USDC_USDT_45(networkId),
|
|
1484
1530
|
[FluidMainnetVersion.WSTETH_USDC_USDT_46]: WSTETH_USDC_USDT_46(networkId),
|
|
@@ -1494,14 +1540,15 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1494
1540
|
[FluidMainnetVersion.SUSDE_GHO_56]: SUSDE_GHO_56(networkId),
|
|
1495
1541
|
[FluidMainnetVersion.WEETH_GHO_57]: WEETH_GHO_57(networkId),
|
|
1496
1542
|
[FluidMainnetVersion.SUSDS_GHO_58]: SUSDS_GHO_58(networkId),
|
|
1497
|
-
[FluidMainnetVersion.WBTC_GHO_59]: WBTC_GHO_59(networkId),
|
|
1498
|
-
[FluidMainnetVersion.CBBTC_GHO_60]: CBBTC_GHO_60(networkId),
|
|
1499
1543
|
[FluidMainnetVersion.GHO_USDC_GHO_USDC_61]: GHO_USDC_GHO_USDC_61(networkId),
|
|
1500
1544
|
[FluidMainnetVersion.WEETH_ETH_WSTETH_74]: WEETH_ETH_WSTETH_74(networkId),
|
|
1501
1545
|
[FluidMainnetVersion.USDC_ETH_USDC_ETH_77]: USDC_ETH_USDC_ETH_77(networkId),
|
|
1502
1546
|
[FluidMainnetVersion.RSETH_ETH_WSTETH_78]: RSETH_ETH_WSTETH_78(networkId),
|
|
1503
1547
|
[FluidMainnetVersion.RSETH_WSTETH_79]: RSETH_WSTETH_79(networkId),
|
|
1504
1548
|
[FluidMainnetVersion.WEETHS_ETH_WSTETH_80]: WEETHS_ETH_WSTETH_80(networkId),
|
|
1549
|
+
[FluidMainnetVersion.SUSDE_USDT_USDT_92]: SUSDE_USDT_USDT_92(networkId),
|
|
1550
|
+
[FluidMainnetVersion.USDE_USDT_USDT_93]: USDE_USDT_USDT_93(networkId),
|
|
1551
|
+
[FluidMainnetVersion.LBTC_CBBTC_WBTC_97]: LBTC_CBBTC_WBTC_97(networkId),
|
|
1505
1552
|
// arbitrum
|
|
1506
1553
|
[FluidArbitrumVersion.ETH_USDC_1_ARB]: ETH_USDC_1_ARB(networkId),
|
|
1507
1554
|
[FluidArbitrumVersion.ETH_USDT_2_ARB]: ETH_USDT_2_ARB(networkId),
|