@defisaver/positions-sdk 0.0.201-fluid-dev-1 → 0.0.201-fluid-dev-3
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/fluid/index.js +6 -4
- package/cjs/markets/fluid/index.d.ts +34 -10
- package/cjs/markets/fluid/index.js +469 -144
- package/cjs/types/contracts/generated/FluidView.d.ts +127 -1
- package/cjs/types/fluid.d.ts +22 -3
- package/cjs/types/fluid.js +17 -0
- package/esm/config/contracts.d.ts +6 -0
- package/esm/config/contracts.js +4 -2
- package/esm/fluid/index.js +4 -2
- package/esm/markets/fluid/index.d.ts +34 -10
- package/esm/markets/fluid/index.js +450 -137
- package/esm/types/contracts/generated/FluidView.d.ts +127 -1
- package/esm/types/fluid.d.ts +22 -3
- package/esm/types/fluid.js +17 -0
- package/package.json +1 -1
- package/src/config/contracts.js +4 -2
- package/src/fluid/index.ts +4 -2
- package/src/markets/fluid/index.ts +465 -139
- package/src/types/contracts/generated/FluidView.ts +167 -5
- package/src/types/fluid.ts +19 -0
|
@@ -10,6 +10,8 @@ import {
|
|
|
10
10
|
export const ETH_USDC_1 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
11
11
|
btcBased: false,
|
|
12
12
|
wstETHBased: false,
|
|
13
|
+
stableBased: true,
|
|
14
|
+
ethBased: true,
|
|
13
15
|
chainIds: [NetworkNumber.Eth],
|
|
14
16
|
label: 'ETH / USDC Market 1',
|
|
15
17
|
shortLabel: 'ETH/USDC',
|
|
@@ -22,12 +24,13 @@ export const ETH_USDC_1 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidM
|
|
|
22
24
|
collateralAsset: 'ETH',
|
|
23
25
|
debtAsset: 'USDC',
|
|
24
26
|
type: FluidVaultType.T1,
|
|
25
|
-
ethBased: true,
|
|
26
27
|
});
|
|
27
28
|
|
|
28
29
|
export const ETH_USDT_2 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
29
30
|
btcBased: false,
|
|
30
31
|
wstETHBased: false,
|
|
32
|
+
stableBased: true,
|
|
33
|
+
ethBased: true,
|
|
31
34
|
chainIds: [NetworkNumber.Eth],
|
|
32
35
|
label: 'ETH / USDT Market 2',
|
|
33
36
|
shortLabel: 'ETH/USDT',
|
|
@@ -40,11 +43,13 @@ export const ETH_USDT_2 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidM
|
|
|
40
43
|
collateralAsset: 'ETH',
|
|
41
44
|
debtAsset: 'USDT',
|
|
42
45
|
type: FluidVaultType.T1,
|
|
43
|
-
ethBased: true,
|
|
44
46
|
});
|
|
45
47
|
|
|
46
48
|
export const WSTETH_ETH_3 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
49
|
+
stableBased: false,
|
|
47
50
|
btcBased: false,
|
|
51
|
+
ethBased: true,
|
|
52
|
+
wstETHBased: true,
|
|
48
53
|
chainIds: [NetworkNumber.Eth],
|
|
49
54
|
label: 'wstETH / ETH Market 3',
|
|
50
55
|
shortLabel: 'wstETH/ETH',
|
|
@@ -57,13 +62,13 @@ export const WSTETH_ETH_3 = (networkId: NetworkNumber = NetworkNumber.Eth): Flui
|
|
|
57
62
|
collateralAsset: 'wstETH',
|
|
58
63
|
debtAsset: 'ETH',
|
|
59
64
|
type: FluidVaultType.T1,
|
|
60
|
-
ethBased: false,
|
|
61
|
-
wstETHBased: true,
|
|
62
65
|
});
|
|
63
66
|
|
|
64
67
|
export const WSTETH_USDC_4 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
65
68
|
btcBased: false,
|
|
66
|
-
ethBased:
|
|
69
|
+
ethBased: true,
|
|
70
|
+
stableBased: true,
|
|
71
|
+
wstETHBased: true,
|
|
67
72
|
chainIds: [NetworkNumber.Eth],
|
|
68
73
|
label: 'wstETH / USDC Market 4',
|
|
69
74
|
shortLabel: 'wstETH/USDC',
|
|
@@ -76,12 +81,13 @@ export const WSTETH_USDC_4 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
76
81
|
collateralAsset: 'wstETH',
|
|
77
82
|
debtAsset: 'USDC',
|
|
78
83
|
type: FluidVaultType.T1,
|
|
79
|
-
wstETHBased: true,
|
|
80
84
|
});
|
|
81
85
|
|
|
82
86
|
export const WSTETH_USDT_5 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
83
87
|
btcBased: false,
|
|
84
|
-
ethBased:
|
|
88
|
+
ethBased: true,
|
|
89
|
+
stableBased: true,
|
|
90
|
+
wstETHBased: true,
|
|
85
91
|
chainIds: [NetworkNumber.Eth],
|
|
86
92
|
label: 'wstETH / USDT Market 5',
|
|
87
93
|
shortLabel: 'wstETH/USDT',
|
|
@@ -94,12 +100,13 @@ export const WSTETH_USDT_5 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
94
100
|
collateralAsset: 'wstETH',
|
|
95
101
|
debtAsset: 'USDT',
|
|
96
102
|
type: FluidVaultType.T1,
|
|
97
|
-
wstETHBased: true,
|
|
98
103
|
});
|
|
99
104
|
|
|
100
105
|
export const WEETH_WSTETH_6 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
101
106
|
btcBased: false,
|
|
102
107
|
ethBased: true,
|
|
108
|
+
wstETHBased: true,
|
|
109
|
+
stableBased: false,
|
|
103
110
|
chainIds: [NetworkNumber.Eth],
|
|
104
111
|
label: 'weETH / wstETH Market 6',
|
|
105
112
|
shortLabel: 'weETH/wstETH',
|
|
@@ -112,48 +119,13 @@ export const WEETH_WSTETH_6 = (networkId: NetworkNumber = NetworkNumber.Eth): Fl
|
|
|
112
119
|
collateralAsset: 'weETH',
|
|
113
120
|
debtAsset: 'wstETH',
|
|
114
121
|
type: FluidVaultType.T1,
|
|
115
|
-
wstETHBased: false,
|
|
116
122
|
});
|
|
117
123
|
|
|
118
|
-
export const SUSDE_USDC_7 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
119
|
-
btcBased: false,
|
|
120
|
-
ethBased: false,
|
|
121
|
-
chainIds: [NetworkNumber.Eth],
|
|
122
|
-
label: 'sUSDe / USDC Market 7',
|
|
123
|
-
shortLabel: 'sUSDe/USDC',
|
|
124
|
-
value: FluidMainnetVersion.SUSDE_USDC_7,
|
|
125
|
-
url: 'susde-usdc-7',
|
|
126
|
-
marketAddress: '0x4045720a33193b4Fe66c94DFbc8D37B0b4D9B469',
|
|
127
|
-
id: 7,
|
|
128
|
-
hasSmartCollateral: false,
|
|
129
|
-
hasSmartDebt: false,
|
|
130
|
-
collateralAsset: 'sUSDe',
|
|
131
|
-
debtAsset: 'USDC',
|
|
132
|
-
type: FluidVaultType.T1,
|
|
133
|
-
wstETHBased: false,
|
|
134
|
-
});
|
|
135
|
-
|
|
136
|
-
export const SUSDE_USDT_8 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
137
|
-
btcBased: false,
|
|
138
|
-
ethBased: false,
|
|
139
|
-
chainIds: [NetworkNumber.Eth],
|
|
140
|
-
label: 'sUSDe / USDT Market 8',
|
|
141
|
-
shortLabel: 'sUSDe/USDT',
|
|
142
|
-
value: FluidMainnetVersion.SUSDE_USDT_8,
|
|
143
|
-
url: 'susde-usdt-8',
|
|
144
|
-
marketAddress: '0xBFADEA65591235f38809076e14803Ac84AcF3F97',
|
|
145
|
-
id: 8,
|
|
146
|
-
hasSmartCollateral: false,
|
|
147
|
-
hasSmartDebt: false,
|
|
148
|
-
collateralAsset: 'sUSDe',
|
|
149
|
-
debtAsset: 'USDT',
|
|
150
|
-
type: FluidVaultType.T1,
|
|
151
|
-
wstETHBased: false,
|
|
152
|
-
});
|
|
153
124
|
|
|
154
125
|
export const WEETH_USDC_9 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
155
126
|
btcBased: false,
|
|
156
127
|
ethBased: true,
|
|
128
|
+
stableBased: true,
|
|
157
129
|
chainIds: [NetworkNumber.Eth],
|
|
158
130
|
label: 'weETH / USDC Market 9',
|
|
159
131
|
shortLabel: 'weETH/USDC',
|
|
@@ -173,6 +145,7 @@ export const WEETH_USDT_10 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
173
145
|
btcBased: false,
|
|
174
146
|
wstETHBased: false,
|
|
175
147
|
ethBased: true,
|
|
148
|
+
stableBased: true,
|
|
176
149
|
type: FluidVaultType.T1,
|
|
177
150
|
chainIds: [NetworkNumber.Eth],
|
|
178
151
|
label: 'weETH / USDT Market 10',
|
|
@@ -191,6 +164,7 @@ export const ETH_USDC_11 = (networkId: NetworkNumber = NetworkNumber.Eth): Fluid
|
|
|
191
164
|
btcBased: false,
|
|
192
165
|
wstETHBased: false,
|
|
193
166
|
ethBased: true,
|
|
167
|
+
stableBased: true,
|
|
194
168
|
type: FluidVaultType.T1,
|
|
195
169
|
chainIds: [NetworkNumber.Eth],
|
|
196
170
|
label: 'ETH / USDC Market 11',
|
|
@@ -209,6 +183,7 @@ export const ETH_USDT_12 = (networkId: NetworkNumber = NetworkNumber.Eth): Fluid
|
|
|
209
183
|
btcBased: false,
|
|
210
184
|
wstETHBased: false,
|
|
211
185
|
ethBased: true,
|
|
186
|
+
stableBased: true,
|
|
212
187
|
type: FluidVaultType.T1,
|
|
213
188
|
chainIds: [NetworkNumber.Eth],
|
|
214
189
|
label: 'ETH / USDT Market 12',
|
|
@@ -224,9 +199,10 @@ export const ETH_USDT_12 = (networkId: NetworkNumber = NetworkNumber.Eth): Fluid
|
|
|
224
199
|
});
|
|
225
200
|
|
|
226
201
|
export const WSTETH_ETH_13 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
202
|
+
stableBased: false,
|
|
227
203
|
btcBased: false,
|
|
228
204
|
wstETHBased: true,
|
|
229
|
-
ethBased:
|
|
205
|
+
ethBased: true,
|
|
230
206
|
type: FluidVaultType.T1,
|
|
231
207
|
chainIds: [NetworkNumber.Eth],
|
|
232
208
|
label: 'wstETH / ETH Market 13',
|
|
@@ -242,9 +218,10 @@ export const WSTETH_ETH_13 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
242
218
|
});
|
|
243
219
|
|
|
244
220
|
export const WSTETH_USDC_14 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
221
|
+
stableBased: true,
|
|
245
222
|
btcBased: false,
|
|
246
223
|
wstETHBased: true,
|
|
247
|
-
ethBased:
|
|
224
|
+
ethBased: true,
|
|
248
225
|
type: FluidVaultType.T1,
|
|
249
226
|
chainIds: [NetworkNumber.Eth],
|
|
250
227
|
label: 'wstETH / USDC Market 14',
|
|
@@ -260,9 +237,10 @@ export const WSTETH_USDC_14 = (networkId: NetworkNumber = NetworkNumber.Eth): Fl
|
|
|
260
237
|
});
|
|
261
238
|
|
|
262
239
|
export const WSTETH_USDT_15 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
240
|
+
stableBased: true,
|
|
263
241
|
btcBased: false,
|
|
264
242
|
wstETHBased: true,
|
|
265
|
-
ethBased:
|
|
243
|
+
ethBased: true,
|
|
266
244
|
type: FluidVaultType.T1,
|
|
267
245
|
chainIds: [NetworkNumber.Eth],
|
|
268
246
|
label: 'wstETH / USDT Market 15',
|
|
@@ -278,8 +256,9 @@ export const WSTETH_USDT_15 = (networkId: NetworkNumber = NetworkNumber.Eth): Fl
|
|
|
278
256
|
});
|
|
279
257
|
|
|
280
258
|
export const WEETH_WSTETH_16 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
259
|
+
stableBased: false,
|
|
281
260
|
btcBased: false,
|
|
282
|
-
wstETHBased:
|
|
261
|
+
wstETHBased: true,
|
|
283
262
|
ethBased: true,
|
|
284
263
|
type: FluidVaultType.T1,
|
|
285
264
|
chainIds: [NetworkNumber.Eth],
|
|
@@ -296,6 +275,7 @@ export const WEETH_WSTETH_16 = (networkId: NetworkNumber = NetworkNumber.Eth): F
|
|
|
296
275
|
});
|
|
297
276
|
|
|
298
277
|
export const SUSDE_USDC_17 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
278
|
+
stableBased: true,
|
|
299
279
|
btcBased: false,
|
|
300
280
|
wstETHBased: false,
|
|
301
281
|
ethBased: false,
|
|
@@ -314,6 +294,7 @@ export const SUSDE_USDC_17 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
314
294
|
});
|
|
315
295
|
|
|
316
296
|
export const SUSDE_USDT_18 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
297
|
+
stableBased: true,
|
|
317
298
|
btcBased: false,
|
|
318
299
|
wstETHBased: false,
|
|
319
300
|
ethBased: false,
|
|
@@ -332,6 +313,7 @@ export const SUSDE_USDT_18 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
332
313
|
});
|
|
333
314
|
|
|
334
315
|
export const WEETH_USDC_19 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
316
|
+
stableBased: true,
|
|
335
317
|
btcBased: false,
|
|
336
318
|
wstETHBased: false,
|
|
337
319
|
ethBased: true,
|
|
@@ -350,6 +332,7 @@ export const WEETH_USDC_19 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
350
332
|
});
|
|
351
333
|
|
|
352
334
|
export const WEETH_USDT_20 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
335
|
+
stableBased: true,
|
|
353
336
|
btcBased: false,
|
|
354
337
|
wstETHBased: false,
|
|
355
338
|
ethBased: true,
|
|
@@ -368,6 +351,7 @@ export const WEETH_USDT_20 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
368
351
|
});
|
|
369
352
|
|
|
370
353
|
export const WBTC_USDC_21 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
354
|
+
stableBased: true,
|
|
371
355
|
btcBased: true,
|
|
372
356
|
wstETHBased: false,
|
|
373
357
|
ethBased: false,
|
|
@@ -386,6 +370,7 @@ export const WBTC_USDC_21 = (networkId: NetworkNumber = NetworkNumber.Eth): Flui
|
|
|
386
370
|
});
|
|
387
371
|
|
|
388
372
|
export const WBTC_USDT_22 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
373
|
+
stableBased: true,
|
|
389
374
|
btcBased: true,
|
|
390
375
|
wstETHBased: false,
|
|
391
376
|
ethBased: false,
|
|
@@ -404,9 +389,10 @@ export const WBTC_USDT_22 = (networkId: NetworkNumber = NetworkNumber.Eth): Flui
|
|
|
404
389
|
});
|
|
405
390
|
|
|
406
391
|
export const WBTC_ETH_23 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
392
|
+
stableBased: false,
|
|
407
393
|
btcBased: true,
|
|
408
394
|
wstETHBased: false,
|
|
409
|
-
ethBased:
|
|
395
|
+
ethBased: true,
|
|
410
396
|
type: FluidVaultType.T1,
|
|
411
397
|
chainIds: [NetworkNumber.Eth],
|
|
412
398
|
label: 'WBTC / ETH Market 23',
|
|
@@ -422,7 +408,8 @@ export const WBTC_ETH_23 = (networkId: NetworkNumber = NetworkNumber.Eth): Fluid
|
|
|
422
408
|
});
|
|
423
409
|
|
|
424
410
|
export const ETH_WBTC_24 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
425
|
-
|
|
411
|
+
stableBased: false,
|
|
412
|
+
btcBased: true,
|
|
426
413
|
wstETHBased: false,
|
|
427
414
|
ethBased: true,
|
|
428
415
|
type: FluidVaultType.T1,
|
|
@@ -440,9 +427,10 @@ export const ETH_WBTC_24 = (networkId: NetworkNumber = NetworkNumber.Eth): Fluid
|
|
|
440
427
|
});
|
|
441
428
|
|
|
442
429
|
export const WSTETH_WBTC_25 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
443
|
-
|
|
430
|
+
stableBased: false,
|
|
431
|
+
btcBased: true,
|
|
444
432
|
wstETHBased: true,
|
|
445
|
-
ethBased:
|
|
433
|
+
ethBased: true,
|
|
446
434
|
type: FluidVaultType.T1,
|
|
447
435
|
chainIds: [NetworkNumber.Eth],
|
|
448
436
|
label: 'wstETH / WBTC Market 25',
|
|
@@ -458,7 +446,8 @@ export const WSTETH_WBTC_25 = (networkId: NetworkNumber = NetworkNumber.Eth): Fl
|
|
|
458
446
|
});
|
|
459
447
|
|
|
460
448
|
export const WEETH_WBTC_26 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
461
|
-
|
|
449
|
+
stableBased: false,
|
|
450
|
+
btcBased: true,
|
|
462
451
|
wstETHBased: false,
|
|
463
452
|
ethBased: true,
|
|
464
453
|
type: FluidVaultType.T1,
|
|
@@ -476,8 +465,9 @@ export const WEETH_WBTC_26 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
476
465
|
});
|
|
477
466
|
|
|
478
467
|
export const WEETHS_WSTETH_27 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
468
|
+
stableBased: false,
|
|
479
469
|
btcBased: false,
|
|
480
|
-
wstETHBased:
|
|
470
|
+
wstETHBased: true,
|
|
481
471
|
ethBased: true,
|
|
482
472
|
type: FluidVaultType.T1,
|
|
483
473
|
chainIds: [NetworkNumber.Eth],
|
|
@@ -494,9 +484,10 @@ export const WEETHS_WSTETH_27 = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
494
484
|
});
|
|
495
485
|
|
|
496
486
|
export const CBBTC_ETH_28 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
487
|
+
stableBased: false,
|
|
497
488
|
btcBased: true,
|
|
498
489
|
wstETHBased: false,
|
|
499
|
-
ethBased:
|
|
490
|
+
ethBased: true,
|
|
500
491
|
type: FluidVaultType.T1,
|
|
501
492
|
chainIds: [NetworkNumber.Eth],
|
|
502
493
|
label: 'cbBTC / ETH Market 28',
|
|
@@ -512,6 +503,7 @@ export const CBBTC_ETH_28 = (networkId: NetworkNumber = NetworkNumber.Eth): Flui
|
|
|
512
503
|
});
|
|
513
504
|
|
|
514
505
|
export const CBBTC_USDC_29 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
506
|
+
stableBased: true,
|
|
515
507
|
btcBased: true,
|
|
516
508
|
wstETHBased: false,
|
|
517
509
|
ethBased: false,
|
|
@@ -530,6 +522,7 @@ export const CBBTC_USDC_29 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
530
522
|
});
|
|
531
523
|
|
|
532
524
|
export const CBBTC_USDT_30 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
525
|
+
stableBased: true,
|
|
533
526
|
btcBased: true,
|
|
534
527
|
wstETHBased: false,
|
|
535
528
|
ethBased: false,
|
|
@@ -548,7 +541,8 @@ export const CBBTC_USDT_30 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
548
541
|
});
|
|
549
542
|
|
|
550
543
|
export const ETH_CBBTC_31 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
551
|
-
|
|
544
|
+
stableBased: false,
|
|
545
|
+
btcBased: true,
|
|
552
546
|
wstETHBased: false,
|
|
553
547
|
ethBased: true,
|
|
554
548
|
type: FluidVaultType.T1,
|
|
@@ -566,7 +560,8 @@ export const ETH_CBBTC_31 = (networkId: NetworkNumber = NetworkNumber.Eth): Flui
|
|
|
566
560
|
});
|
|
567
561
|
|
|
568
562
|
export const WEETH_CBBTC_32 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
569
|
-
|
|
563
|
+
stableBased: false,
|
|
564
|
+
btcBased: true,
|
|
570
565
|
wstETHBased: false,
|
|
571
566
|
ethBased: true,
|
|
572
567
|
type: FluidVaultType.T1,
|
|
@@ -583,28 +578,12 @@ export const WEETH_CBBTC_32 = (networkId: NetworkNumber = NetworkNumber.Eth): Fl
|
|
|
583
578
|
debtAsset: 'cbBTC',
|
|
584
579
|
});
|
|
585
580
|
|
|
586
|
-
export const WSTETH_CBBTC_33 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
587
|
-
btcBased: false,
|
|
588
|
-
wstETHBased: true,
|
|
589
|
-
ethBased: false,
|
|
590
|
-
type: FluidVaultType.T1,
|
|
591
|
-
chainIds: [NetworkNumber.Eth],
|
|
592
|
-
label: 'wstETH / cbBTC Market 33',
|
|
593
|
-
shortLabel: 'wstETH/cbBTC',
|
|
594
|
-
value: FluidMainnetVersion.WSTETH_CBBTC_33,
|
|
595
|
-
url: 'wsteth-cbbtc-33',
|
|
596
|
-
id: 33,
|
|
597
|
-
marketAddress: '0x6E0cDB09eb33cD3894C905E0DFF9289b95a86FFF',
|
|
598
|
-
hasSmartCollateral: false,
|
|
599
|
-
hasSmartDebt: false,
|
|
600
|
-
collateralAsset: 'wstETH',
|
|
601
|
-
debtAsset: 'cbBTC',
|
|
602
|
-
});
|
|
603
581
|
|
|
604
582
|
export const WSTETH_ETH_WSTETH_ETH_44 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
583
|
+
stableBased: false,
|
|
605
584
|
btcBased: false,
|
|
606
585
|
wstETHBased: true,
|
|
607
|
-
ethBased:
|
|
586
|
+
ethBased: true,
|
|
608
587
|
type: FluidVaultType.T4,
|
|
609
588
|
chainIds: [NetworkNumber.Eth],
|
|
610
589
|
label: 'wstETH / ETH Market 44',
|
|
@@ -620,6 +599,7 @@ export const WSTETH_ETH_WSTETH_ETH_44 = (networkId: NetworkNumber = NetworkNumbe
|
|
|
620
599
|
});
|
|
621
600
|
|
|
622
601
|
export const ETH_USDC_USDT_45 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
602
|
+
stableBased: true,
|
|
623
603
|
btcBased: false,
|
|
624
604
|
wstETHBased: false,
|
|
625
605
|
ethBased: true,
|
|
@@ -638,9 +618,10 @@ export const ETH_USDC_USDT_45 = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
638
618
|
});
|
|
639
619
|
|
|
640
620
|
export const WSTETH_USDC_USDT_46 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
621
|
+
stableBased: true,
|
|
641
622
|
btcBased: false,
|
|
642
623
|
wstETHBased: true,
|
|
643
|
-
ethBased:
|
|
624
|
+
ethBased: true,
|
|
644
625
|
type: FluidVaultType.T3,
|
|
645
626
|
chainIds: [NetworkNumber.Eth],
|
|
646
627
|
label: 'wstETH / USDC Market 46',
|
|
@@ -656,6 +637,7 @@ export const WSTETH_USDC_USDT_46 = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
656
637
|
});
|
|
657
638
|
|
|
658
639
|
export const WEETH_USDC_USDT_47 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
640
|
+
stableBased: true,
|
|
659
641
|
btcBased: false,
|
|
660
642
|
wstETHBased: false,
|
|
661
643
|
ethBased: true,
|
|
@@ -674,6 +656,7 @@ export const WEETH_USDC_USDT_47 = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
674
656
|
});
|
|
675
657
|
|
|
676
658
|
export const WBTC_USDC_USDT_48 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
659
|
+
stableBased: true,
|
|
677
660
|
btcBased: true,
|
|
678
661
|
wstETHBased: false,
|
|
679
662
|
ethBased: false,
|
|
@@ -692,6 +675,7 @@ export const WBTC_USDC_USDT_48 = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
692
675
|
});
|
|
693
676
|
|
|
694
677
|
export const CBBTC_USDC_USDT_49 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
678
|
+
stableBased: true,
|
|
695
679
|
btcBased: true,
|
|
696
680
|
wstETHBased: false,
|
|
697
681
|
ethBased: false,
|
|
@@ -710,6 +694,7 @@ export const CBBTC_USDC_USDT_49 = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
710
694
|
});
|
|
711
695
|
|
|
712
696
|
export const SUSDE_USDC_USDT_50 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
697
|
+
stableBased: true,
|
|
713
698
|
btcBased: false,
|
|
714
699
|
wstETHBased: false,
|
|
715
700
|
ethBased: false,
|
|
@@ -728,6 +713,7 @@ export const SUSDE_USDC_USDT_50 = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
728
713
|
});
|
|
729
714
|
|
|
730
715
|
export const WBTC_CBBTC_WBTC_CBBTC_51 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
716
|
+
stableBased: false,
|
|
731
717
|
btcBased: true,
|
|
732
718
|
wstETHBased: false,
|
|
733
719
|
ethBased: false,
|
|
@@ -746,6 +732,7 @@ export const WBTC_CBBTC_WBTC_CBBTC_51 = (networkId: NetworkNumber = NetworkNumbe
|
|
|
746
732
|
});
|
|
747
733
|
|
|
748
734
|
export const WBTC_CBBTC_USDC_52 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
735
|
+
stableBased: true,
|
|
749
736
|
btcBased: true,
|
|
750
737
|
wstETHBased: false,
|
|
751
738
|
ethBased: false,
|
|
@@ -764,6 +751,7 @@ export const WBTC_CBBTC_USDC_52 = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
764
751
|
});
|
|
765
752
|
|
|
766
753
|
export const WBTC_CBBTC_USDT_53 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
754
|
+
stableBased: true,
|
|
767
755
|
btcBased: true,
|
|
768
756
|
wstETHBased: false,
|
|
769
757
|
ethBased: false,
|
|
@@ -782,6 +770,7 @@ export const WBTC_CBBTC_USDT_53 = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
782
770
|
});
|
|
783
771
|
|
|
784
772
|
export const ETH_GHO_54 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
773
|
+
stableBased: true,
|
|
785
774
|
btcBased: false,
|
|
786
775
|
wstETHBased: false,
|
|
787
776
|
ethBased: true,
|
|
@@ -800,9 +789,10 @@ export const ETH_GHO_54 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidM
|
|
|
800
789
|
});
|
|
801
790
|
|
|
802
791
|
export const WSTETH_GHO_55 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
792
|
+
stableBased: true,
|
|
803
793
|
btcBased: false,
|
|
804
794
|
wstETHBased: true,
|
|
805
|
-
ethBased:
|
|
795
|
+
ethBased: true,
|
|
806
796
|
type: FluidVaultType.T1,
|
|
807
797
|
id: 55,
|
|
808
798
|
chainIds: [NetworkNumber.Eth],
|
|
@@ -818,6 +808,7 @@ export const WSTETH_GHO_55 = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
818
808
|
});
|
|
819
809
|
|
|
820
810
|
export const SUSDE_GHO_56 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
811
|
+
stableBased: true,
|
|
821
812
|
btcBased: false,
|
|
822
813
|
wstETHBased: false,
|
|
823
814
|
ethBased: false,
|
|
@@ -836,6 +827,7 @@ export const SUSDE_GHO_56 = (networkId: NetworkNumber = NetworkNumber.Eth): Flui
|
|
|
836
827
|
});
|
|
837
828
|
|
|
838
829
|
export const WEETH_GHO_57 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
830
|
+
stableBased: true,
|
|
839
831
|
btcBased: false,
|
|
840
832
|
wstETHBased: false,
|
|
841
833
|
ethBased: true,
|
|
@@ -854,6 +846,7 @@ export const WEETH_GHO_57 = (networkId: NetworkNumber = NetworkNumber.Eth): Flui
|
|
|
854
846
|
});
|
|
855
847
|
|
|
856
848
|
export const SUSDS_GHO_58 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
849
|
+
stableBased: true,
|
|
857
850
|
btcBased: false,
|
|
858
851
|
wstETHBased: false,
|
|
859
852
|
ethBased: false,
|
|
@@ -871,43 +864,9 @@ export const SUSDS_GHO_58 = (networkId: NetworkNumber = NetworkNumber.Eth): Flui
|
|
|
871
864
|
debtAsset: 'GHO',
|
|
872
865
|
});
|
|
873
866
|
|
|
874
|
-
export const WBTC_GHO_59 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
875
|
-
btcBased: true,
|
|
876
|
-
wstETHBased: false,
|
|
877
|
-
ethBased: false,
|
|
878
|
-
type: FluidVaultType.T1,
|
|
879
|
-
id: 59,
|
|
880
|
-
chainIds: [NetworkNumber.Eth],
|
|
881
|
-
label: 'WBTC / GHO Market 59',
|
|
882
|
-
shortLabel: 'WBTC/GHO',
|
|
883
|
-
value: FluidMainnetVersion.WBTC_GHO_59,
|
|
884
|
-
url: 'wbtc-gho-59',
|
|
885
|
-
marketAddress: '',
|
|
886
|
-
hasSmartCollateral: false,
|
|
887
|
-
hasSmartDebt: false,
|
|
888
|
-
collateralAsset: 'WBTC',
|
|
889
|
-
debtAsset: 'GHO',
|
|
890
|
-
});
|
|
891
|
-
|
|
892
|
-
export const CBBTC_GHO_60 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
893
|
-
btcBased: true,
|
|
894
|
-
wstETHBased: false,
|
|
895
|
-
ethBased: false,
|
|
896
|
-
type: FluidVaultType.T1,
|
|
897
|
-
id: 60,
|
|
898
|
-
chainIds: [NetworkNumber.Eth],
|
|
899
|
-
label: 'cbBTC / GHO Market 60',
|
|
900
|
-
shortLabel: 'cbBTC/GHO',
|
|
901
|
-
value: FluidMainnetVersion.CBBTC_GHO_60,
|
|
902
|
-
url: 'cbbtc-gho-60',
|
|
903
|
-
marketAddress: '',
|
|
904
|
-
hasSmartCollateral: false,
|
|
905
|
-
hasSmartDebt: false,
|
|
906
|
-
collateralAsset: 'cbBTC',
|
|
907
|
-
debtAsset: 'GHO',
|
|
908
|
-
});
|
|
909
867
|
|
|
910
868
|
export const GHO_USDC_GHO_USDC_61 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
869
|
+
stableBased: true,
|
|
911
870
|
btcBased: false,
|
|
912
871
|
wstETHBased: false,
|
|
913
872
|
ethBased: false,
|
|
@@ -926,8 +885,9 @@ export const GHO_USDC_GHO_USDC_61 = (networkId: NetworkNumber = NetworkNumber.Et
|
|
|
926
885
|
});
|
|
927
886
|
|
|
928
887
|
export const WEETH_ETH_WSTETH_74 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
888
|
+
stableBased: false,
|
|
929
889
|
btcBased: false,
|
|
930
|
-
wstETHBased:
|
|
890
|
+
wstETHBased: true,
|
|
931
891
|
ethBased: true,
|
|
932
892
|
type: FluidVaultType.T2,
|
|
933
893
|
id: 74,
|
|
@@ -944,9 +904,10 @@ export const WEETH_ETH_WSTETH_74 = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
944
904
|
});
|
|
945
905
|
|
|
946
906
|
export const USDC_ETH_USDC_ETH_77 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
907
|
+
stableBased: true,
|
|
947
908
|
btcBased: false,
|
|
948
909
|
wstETHBased: false,
|
|
949
|
-
ethBased:
|
|
910
|
+
ethBased: true,
|
|
950
911
|
type: FluidVaultType.T4,
|
|
951
912
|
id: 77,
|
|
952
913
|
chainIds: [NetworkNumber.Eth],
|
|
@@ -962,8 +923,9 @@ export const USDC_ETH_USDC_ETH_77 = (networkId: NetworkNumber = NetworkNumber.Et
|
|
|
962
923
|
});
|
|
963
924
|
|
|
964
925
|
export const RSETH_ETH_WSTETH_78 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
926
|
+
stableBased: false,
|
|
965
927
|
btcBased: false,
|
|
966
|
-
wstETHBased:
|
|
928
|
+
wstETHBased: true,
|
|
967
929
|
ethBased: true,
|
|
968
930
|
type: FluidVaultType.T2,
|
|
969
931
|
id: 78,
|
|
@@ -980,8 +942,9 @@ export const RSETH_ETH_WSTETH_78 = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
980
942
|
});
|
|
981
943
|
|
|
982
944
|
export const RSETH_WSTETH_79 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
945
|
+
stableBased: false,
|
|
983
946
|
btcBased: false,
|
|
984
|
-
wstETHBased:
|
|
947
|
+
wstETHBased: true,
|
|
985
948
|
ethBased: true,
|
|
986
949
|
type: FluidVaultType.T1,
|
|
987
950
|
id: 79,
|
|
@@ -998,8 +961,9 @@ export const RSETH_WSTETH_79 = (networkId: NetworkNumber = NetworkNumber.Eth): F
|
|
|
998
961
|
});
|
|
999
962
|
|
|
1000
963
|
export const WEETHS_ETH_WSTETH_80 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
964
|
+
stableBased: false,
|
|
1001
965
|
btcBased: false,
|
|
1002
|
-
wstETHBased:
|
|
966
|
+
wstETHBased: true,
|
|
1003
967
|
ethBased: true,
|
|
1004
968
|
type: FluidVaultType.T2,
|
|
1005
969
|
id: 80,
|
|
@@ -1015,7 +979,65 @@ export const WEETHS_ETH_WSTETH_80 = (networkId: NetworkNumber = NetworkNumber.Et
|
|
|
1015
979
|
debtAsset: 'ETH',
|
|
1016
980
|
});
|
|
1017
981
|
|
|
982
|
+
export const SUSDE_USDT_USDT_92 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
983
|
+
stableBased: true,
|
|
984
|
+
btcBased: false,
|
|
985
|
+
wstETHBased: false,
|
|
986
|
+
ethBased: false,
|
|
987
|
+
type: FluidVaultType.T2,
|
|
988
|
+
id: 92,
|
|
989
|
+
chainIds: [NetworkNumber.Eth],
|
|
990
|
+
label: 'sUSDe-USDT / USDT Market 92',
|
|
991
|
+
shortLabel: 'sUSDe-USDT/USDT',
|
|
992
|
+
value: FluidMainnetVersion.SUSDE_USDT_USDT_92,
|
|
993
|
+
url: 'susde-usdt-usdt-92',
|
|
994
|
+
marketAddress: '',
|
|
995
|
+
hasSmartCollateral: false,
|
|
996
|
+
hasSmartDebt: false,
|
|
997
|
+
collateralAsset: 'sUSDe',
|
|
998
|
+
debtAsset: 'USDT',
|
|
999
|
+
});
|
|
1000
|
+
|
|
1001
|
+
export const USDE_USDT_USDT_93 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1002
|
+
stableBased: true,
|
|
1003
|
+
btcBased: false,
|
|
1004
|
+
wstETHBased: false,
|
|
1005
|
+
ethBased: false,
|
|
1006
|
+
type: FluidVaultType.T2,
|
|
1007
|
+
id: 93,
|
|
1008
|
+
chainIds: [NetworkNumber.Eth],
|
|
1009
|
+
label: 'sUSDe-USDT / USDT Market 93',
|
|
1010
|
+
shortLabel: 'weETHs/ETH',
|
|
1011
|
+
value: FluidMainnetVersion.USDE_USDT_USDT_93,
|
|
1012
|
+
url: 'susde-usdt-usdt-93',
|
|
1013
|
+
marketAddress: '',
|
|
1014
|
+
hasSmartCollateral: false,
|
|
1015
|
+
hasSmartDebt: false,
|
|
1016
|
+
collateralAsset: 'sUSDe',
|
|
1017
|
+
debtAsset: 'USDT',
|
|
1018
|
+
});
|
|
1019
|
+
|
|
1020
|
+
export const LBTC_CBBTC_WBTC_97 = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1021
|
+
stableBased: false,
|
|
1022
|
+
btcBased: true,
|
|
1023
|
+
wstETHBased: false,
|
|
1024
|
+
ethBased: false,
|
|
1025
|
+
type: FluidVaultType.T2,
|
|
1026
|
+
id: 97,
|
|
1027
|
+
chainIds: [NetworkNumber.Eth],
|
|
1028
|
+
label: 'LBTC-cbBTC / WBTC Market 97',
|
|
1029
|
+
shortLabel: 'weETHs/ETH',
|
|
1030
|
+
value: FluidMainnetVersion.LBTC_CBBTC_WBTC_97,
|
|
1031
|
+
url: 'lbtc-cbbtc-wbtc-97',
|
|
1032
|
+
marketAddress: '',
|
|
1033
|
+
hasSmartCollateral: false,
|
|
1034
|
+
hasSmartDebt: false,
|
|
1035
|
+
collateralAsset: 'LBTC',
|
|
1036
|
+
debtAsset: 'WBTC',
|
|
1037
|
+
});
|
|
1038
|
+
|
|
1018
1039
|
export const ETH_USDC_1_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1040
|
+
stableBased: true,
|
|
1019
1041
|
btcBased: false,
|
|
1020
1042
|
wstETHBased: false,
|
|
1021
1043
|
ethBased: true,
|
|
@@ -1034,6 +1056,7 @@ export const ETH_USDC_1_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): Fl
|
|
|
1034
1056
|
});
|
|
1035
1057
|
|
|
1036
1058
|
export const ETH_USDT_2_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1059
|
+
stableBased: true,
|
|
1037
1060
|
btcBased: false,
|
|
1038
1061
|
wstETHBased: false,
|
|
1039
1062
|
ethBased: true,
|
|
@@ -1052,9 +1075,10 @@ export const ETH_USDT_2_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): Fl
|
|
|
1052
1075
|
});
|
|
1053
1076
|
|
|
1054
1077
|
export const WSTETH_USDC_3_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1078
|
+
stableBased: true,
|
|
1055
1079
|
btcBased: false,
|
|
1056
1080
|
wstETHBased: true,
|
|
1057
|
-
ethBased:
|
|
1081
|
+
ethBased: true,
|
|
1058
1082
|
type: FluidVaultType.T1,
|
|
1059
1083
|
id: 3,
|
|
1060
1084
|
chainIds: [NetworkNumber.Arb],
|
|
@@ -1070,9 +1094,10 @@ export const WSTETH_USDC_3_ARB = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1070
1094
|
});
|
|
1071
1095
|
|
|
1072
1096
|
export const WSTETH_USDT_4_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1097
|
+
stableBased: true,
|
|
1073
1098
|
btcBased: false,
|
|
1074
1099
|
wstETHBased: true,
|
|
1075
|
-
ethBased:
|
|
1100
|
+
ethBased: true,
|
|
1076
1101
|
type: FluidVaultType.T1,
|
|
1077
1102
|
id: 4,
|
|
1078
1103
|
chainIds: [NetworkNumber.Arb],
|
|
@@ -1088,9 +1113,10 @@ export const WSTETH_USDT_4_ARB = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1088
1113
|
});
|
|
1089
1114
|
|
|
1090
1115
|
export const WSTETH_ETH_5_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1116
|
+
stableBased: false,
|
|
1091
1117
|
btcBased: false,
|
|
1092
1118
|
wstETHBased: true,
|
|
1093
|
-
ethBased:
|
|
1119
|
+
ethBased: true,
|
|
1094
1120
|
type: FluidVaultType.T1,
|
|
1095
1121
|
id: 5,
|
|
1096
1122
|
chainIds: [NetworkNumber.Arb],
|
|
@@ -1106,8 +1132,9 @@ export const WSTETH_ETH_5_ARB = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1106
1132
|
});
|
|
1107
1133
|
|
|
1108
1134
|
export const WEETH_WSTETH_6_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1135
|
+
stableBased: false,
|
|
1109
1136
|
btcBased: false,
|
|
1110
|
-
wstETHBased:
|
|
1137
|
+
wstETHBased: true,
|
|
1111
1138
|
ethBased: true,
|
|
1112
1139
|
type: FluidVaultType.T1,
|
|
1113
1140
|
id: 6,
|
|
@@ -1124,6 +1151,7 @@ export const WEETH_WSTETH_6_ARB = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
1124
1151
|
});
|
|
1125
1152
|
|
|
1126
1153
|
export const WEETH_USDC_7_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1154
|
+
stableBased: true,
|
|
1127
1155
|
btcBased: false,
|
|
1128
1156
|
wstETHBased: false,
|
|
1129
1157
|
ethBased: true,
|
|
@@ -1142,6 +1170,7 @@ export const WEETH_USDC_7_ARB = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1142
1170
|
});
|
|
1143
1171
|
|
|
1144
1172
|
export const WEETH_USDT_8_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1173
|
+
stableBased: true,
|
|
1145
1174
|
btcBased: false,
|
|
1146
1175
|
wstETHBased: false,
|
|
1147
1176
|
ethBased: true,
|
|
@@ -1160,6 +1189,7 @@ export const WEETH_USDT_8_ARB = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1160
1189
|
});
|
|
1161
1190
|
|
|
1162
1191
|
export const ETH_ARB_9_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1192
|
+
stableBased: false,
|
|
1163
1193
|
btcBased: false,
|
|
1164
1194
|
wstETHBased: false,
|
|
1165
1195
|
ethBased: true,
|
|
@@ -1178,6 +1208,7 @@ export const ETH_ARB_9_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): Flu
|
|
|
1178
1208
|
});
|
|
1179
1209
|
|
|
1180
1210
|
export const ARB_USDC_10_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1211
|
+
stableBased: true,
|
|
1181
1212
|
btcBased: false,
|
|
1182
1213
|
wstETHBased: false,
|
|
1183
1214
|
ethBased: false,
|
|
@@ -1196,6 +1227,7 @@ export const ARB_USDC_10_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): F
|
|
|
1196
1227
|
});
|
|
1197
1228
|
|
|
1198
1229
|
export const ARB_USDT_11_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1230
|
+
stableBased: true,
|
|
1199
1231
|
btcBased: false,
|
|
1200
1232
|
wstETHBased: false,
|
|
1201
1233
|
ethBased: false,
|
|
@@ -1213,11 +1245,50 @@ export const ARB_USDT_11_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): F
|
|
|
1213
1245
|
debtAsset: 'USDT',
|
|
1214
1246
|
});
|
|
1215
1247
|
|
|
1248
|
+
export const WBTC_USDC_12_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1249
|
+
stableBased: true,
|
|
1250
|
+
btcBased: true,
|
|
1251
|
+
wstETHBased: false,
|
|
1252
|
+
ethBased: false,
|
|
1253
|
+
type: FluidVaultType.T1,
|
|
1254
|
+
id: 12,
|
|
1255
|
+
chainIds: [NetworkNumber.Arb],
|
|
1256
|
+
label: 'WBTC / USDC Market 12',
|
|
1257
|
+
shortLabel: 'WBTC/USDC',
|
|
1258
|
+
value: FluidArbitrumVersion.ARB_USDT_11_ARB,
|
|
1259
|
+
url: 'wbtc_usdc_12_arb',
|
|
1260
|
+
marketAddress: '',
|
|
1261
|
+
hasSmartCollateral: false,
|
|
1262
|
+
hasSmartDebt: false,
|
|
1263
|
+
collateralAsset: 'WBTC',
|
|
1264
|
+
debtAsset: 'USDC',
|
|
1265
|
+
});
|
|
1266
|
+
|
|
1267
|
+
export const WBTC_USDT_13_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1268
|
+
stableBased: true,
|
|
1269
|
+
btcBased: true,
|
|
1270
|
+
wstETHBased: false,
|
|
1271
|
+
ethBased: false,
|
|
1272
|
+
type: FluidVaultType.T1,
|
|
1273
|
+
id: 13,
|
|
1274
|
+
chainIds: [NetworkNumber.Arb],
|
|
1275
|
+
label: 'WBTC / USDT Market 13',
|
|
1276
|
+
shortLabel: 'WBTC/USDT',
|
|
1277
|
+
value: FluidArbitrumVersion.ARB_USDT_11_ARB,
|
|
1278
|
+
url: 'wbtc_usdc_13_arb',
|
|
1279
|
+
marketAddress: '',
|
|
1280
|
+
hasSmartCollateral: false,
|
|
1281
|
+
hasSmartDebt: false,
|
|
1282
|
+
collateralAsset: 'WBTC',
|
|
1283
|
+
debtAsset: 'USDT',
|
|
1284
|
+
});
|
|
1285
|
+
|
|
1216
1286
|
export const WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1287
|
+
stableBased: false,
|
|
1217
1288
|
btcBased: false,
|
|
1218
1289
|
wstETHBased: true,
|
|
1219
|
-
ethBased:
|
|
1220
|
-
type: FluidVaultType.
|
|
1290
|
+
ethBased: true,
|
|
1291
|
+
type: FluidVaultType.T4,
|
|
1221
1292
|
id: 16,
|
|
1222
1293
|
chainIds: [NetworkNumber.Arb],
|
|
1223
1294
|
label: 'wstETH / ETH Market 16',
|
|
@@ -1232,10 +1303,11 @@ export const WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId: NetworkNumber = NetworkN
|
|
|
1232
1303
|
});
|
|
1233
1304
|
|
|
1234
1305
|
export const WEETH_ETH_WSTETH_17_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1306
|
+
stableBased: false,
|
|
1235
1307
|
btcBased: false,
|
|
1236
|
-
wstETHBased:
|
|
1308
|
+
wstETHBased: true,
|
|
1237
1309
|
ethBased: true,
|
|
1238
|
-
type: FluidVaultType.
|
|
1310
|
+
type: FluidVaultType.T2,
|
|
1239
1311
|
id: 17,
|
|
1240
1312
|
chainIds: [NetworkNumber.Arb],
|
|
1241
1313
|
label: 'weETH / ETH Market 17',
|
|
@@ -1249,7 +1321,177 @@ export const WEETH_ETH_WSTETH_17_ARB = (networkId: NetworkNumber = NetworkNumber
|
|
|
1249
1321
|
debtAsset: 'ETH',
|
|
1250
1322
|
});
|
|
1251
1323
|
|
|
1324
|
+
export const WBTC_ETH_18_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1325
|
+
stableBased: false,
|
|
1326
|
+
btcBased: true,
|
|
1327
|
+
wstETHBased: false,
|
|
1328
|
+
ethBased: true,
|
|
1329
|
+
type: FluidVaultType.T1,
|
|
1330
|
+
id: 18,
|
|
1331
|
+
chainIds: [NetworkNumber.Arb],
|
|
1332
|
+
label: 'WBTC / ETH Market 18',
|
|
1333
|
+
shortLabel: 'WBTC/ETH',
|
|
1334
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1335
|
+
url: 'wbtc_eth_18_arb',
|
|
1336
|
+
marketAddress: '',
|
|
1337
|
+
hasSmartCollateral: false,
|
|
1338
|
+
hasSmartDebt: false,
|
|
1339
|
+
collateralAsset: 'WBTC',
|
|
1340
|
+
debtAsset: 'ETH',
|
|
1341
|
+
});
|
|
1342
|
+
|
|
1343
|
+
export const ETH_WBTC_19_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1344
|
+
stableBased: false,
|
|
1345
|
+
btcBased: true,
|
|
1346
|
+
wstETHBased: false,
|
|
1347
|
+
ethBased: true,
|
|
1348
|
+
type: FluidVaultType.T1,
|
|
1349
|
+
id: 19,
|
|
1350
|
+
chainIds: [NetworkNumber.Arb],
|
|
1351
|
+
label: 'ETH / WBTC Market 19',
|
|
1352
|
+
shortLabel: 'ETH/WBTC',
|
|
1353
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1354
|
+
url: 'eth_wbtc_19_arb',
|
|
1355
|
+
marketAddress: '',
|
|
1356
|
+
hasSmartCollateral: false,
|
|
1357
|
+
hasSmartDebt: false,
|
|
1358
|
+
collateralAsset: 'ETH',
|
|
1359
|
+
debtAsset: 'WBTC',
|
|
1360
|
+
});
|
|
1361
|
+
|
|
1362
|
+
export const WSTETH_WBTC_20_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1363
|
+
stableBased: false,
|
|
1364
|
+
btcBased: true,
|
|
1365
|
+
wstETHBased: true,
|
|
1366
|
+
ethBased: true,
|
|
1367
|
+
type: FluidVaultType.T1,
|
|
1368
|
+
id: 20,
|
|
1369
|
+
chainIds: [NetworkNumber.Arb],
|
|
1370
|
+
label: 'wstETH / WBTC Market 20',
|
|
1371
|
+
shortLabel: 'wstETH/WBTC',
|
|
1372
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1373
|
+
url: 'wsteth_wbtc_20_arb',
|
|
1374
|
+
marketAddress: '',
|
|
1375
|
+
hasSmartCollateral: false,
|
|
1376
|
+
hasSmartDebt: false,
|
|
1377
|
+
collateralAsset: 'wstETH',
|
|
1378
|
+
debtAsset: 'WBTC',
|
|
1379
|
+
});
|
|
1380
|
+
|
|
1381
|
+
export const WEETH_WBTC_21_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1382
|
+
stableBased: false,
|
|
1383
|
+
btcBased: true,
|
|
1384
|
+
wstETHBased: false,
|
|
1385
|
+
ethBased: true,
|
|
1386
|
+
type: FluidVaultType.T1,
|
|
1387
|
+
id: 21,
|
|
1388
|
+
chainIds: [NetworkNumber.Arb],
|
|
1389
|
+
label: 'weETH / WBTC Market 21',
|
|
1390
|
+
shortLabel: 'weETH/WBTC',
|
|
1391
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1392
|
+
url: 'weeth_wbtc_21_arb',
|
|
1393
|
+
marketAddress: '',
|
|
1394
|
+
hasSmartCollateral: false,
|
|
1395
|
+
hasSmartDebt: false,
|
|
1396
|
+
collateralAsset: 'weETH',
|
|
1397
|
+
debtAsset: 'WBTC',
|
|
1398
|
+
});
|
|
1399
|
+
|
|
1400
|
+
export const USDC_ETH_USDC_ETH_22_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1401
|
+
stableBased: true,
|
|
1402
|
+
btcBased: false,
|
|
1403
|
+
wstETHBased: false,
|
|
1404
|
+
ethBased: true,
|
|
1405
|
+
type: FluidVaultType.T4,
|
|
1406
|
+
id: 22,
|
|
1407
|
+
chainIds: [NetworkNumber.Arb],
|
|
1408
|
+
label: 'weETH / WBTC Market 22',
|
|
1409
|
+
shortLabel: 'weETH/WBTC',
|
|
1410
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1411
|
+
url: 'usdc_eth_usdc_eth_22_arb',
|
|
1412
|
+
marketAddress: '',
|
|
1413
|
+
hasSmartCollateral: false,
|
|
1414
|
+
hasSmartDebt: false,
|
|
1415
|
+
collateralAsset: 'weETH',
|
|
1416
|
+
debtAsset: 'WBTC',
|
|
1417
|
+
});
|
|
1418
|
+
|
|
1419
|
+
export const ETH_USDC_USDT_23_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1420
|
+
stableBased: true,
|
|
1421
|
+
btcBased: false,
|
|
1422
|
+
wstETHBased: false,
|
|
1423
|
+
ethBased: true,
|
|
1424
|
+
type: FluidVaultType.T3,
|
|
1425
|
+
id: 23,
|
|
1426
|
+
chainIds: [NetworkNumber.Arb],
|
|
1427
|
+
label: 'ETH / USDC-USDT Market 23',
|
|
1428
|
+
shortLabel: 'ETH/USDC-USDT',
|
|
1429
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1430
|
+
url: 'eth_usdc_usdt_23_arb',
|
|
1431
|
+
marketAddress: '',
|
|
1432
|
+
hasSmartCollateral: false,
|
|
1433
|
+
hasSmartDebt: false,
|
|
1434
|
+
collateralAsset: 'weETH',
|
|
1435
|
+
debtAsset: 'WBTC',
|
|
1436
|
+
});
|
|
1437
|
+
export const WSTETH_USDC_USDT_24_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1438
|
+
stableBased: true,
|
|
1439
|
+
btcBased: false,
|
|
1440
|
+
wstETHBased: true,
|
|
1441
|
+
ethBased: true,
|
|
1442
|
+
type: FluidVaultType.T3,
|
|
1443
|
+
id: 23,
|
|
1444
|
+
chainIds: [NetworkNumber.Arb],
|
|
1445
|
+
label: 'wstETH / USDC-USDT Market 23',
|
|
1446
|
+
shortLabel: 'wstETH/USDC-USDT',
|
|
1447
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1448
|
+
url: 'wsteth_usdc_usdt_23_arb',
|
|
1449
|
+
marketAddress: '',
|
|
1450
|
+
hasSmartCollateral: false,
|
|
1451
|
+
hasSmartDebt: false,
|
|
1452
|
+
collateralAsset: 'wstETH',
|
|
1453
|
+
debtAsset: 'WBTC',
|
|
1454
|
+
});
|
|
1455
|
+
export const WEETH_USDC_USDT_25_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1456
|
+
stableBased: true,
|
|
1457
|
+
btcBased: false,
|
|
1458
|
+
wstETHBased: false,
|
|
1459
|
+
ethBased: true,
|
|
1460
|
+
type: FluidVaultType.T3,
|
|
1461
|
+
id: 25,
|
|
1462
|
+
chainIds: [NetworkNumber.Arb],
|
|
1463
|
+
label: 'weETH / USDC-USDT Market 25',
|
|
1464
|
+
shortLabel: 'weETH/USDC-USDT',
|
|
1465
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1466
|
+
url: 'weeth_usdc_usdt_25_arb',
|
|
1467
|
+
marketAddress: '',
|
|
1468
|
+
hasSmartCollateral: false,
|
|
1469
|
+
hasSmartDebt: false,
|
|
1470
|
+
collateralAsset: 'weETH',
|
|
1471
|
+
debtAsset: 'WBTC',
|
|
1472
|
+
});
|
|
1473
|
+
|
|
1474
|
+
export const WBTC_USDC_USDT_26_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1475
|
+
stableBased: true,
|
|
1476
|
+
btcBased: true,
|
|
1477
|
+
wstETHBased: false,
|
|
1478
|
+
ethBased: false,
|
|
1479
|
+
type: FluidVaultType.T3,
|
|
1480
|
+
id: 26,
|
|
1481
|
+
chainIds: [NetworkNumber.Arb],
|
|
1482
|
+
label: 'WBTC / USDC-USDT Market 26',
|
|
1483
|
+
shortLabel: 'WBTC/USDC-USDT',
|
|
1484
|
+
value: FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB,
|
|
1485
|
+
url: 'wbtc_usdc_usdt_26_arb',
|
|
1486
|
+
marketAddress: '',
|
|
1487
|
+
hasSmartCollateral: false,
|
|
1488
|
+
hasSmartDebt: false,
|
|
1489
|
+
collateralAsset: 'WBTC',
|
|
1490
|
+
debtAsset: 'WBTC',
|
|
1491
|
+
});
|
|
1492
|
+
|
|
1252
1493
|
export const ETH_USDC_1_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1494
|
+
stableBased: true,
|
|
1253
1495
|
btcBased: false,
|
|
1254
1496
|
wstETHBased: false,
|
|
1255
1497
|
ethBased: true,
|
|
@@ -1268,9 +1510,10 @@ export const ETH_USDC_1_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): F
|
|
|
1268
1510
|
});
|
|
1269
1511
|
|
|
1270
1512
|
export const WSTETH_USDC_2_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1513
|
+
stableBased: true,
|
|
1271
1514
|
btcBased: false,
|
|
1272
1515
|
wstETHBased: true,
|
|
1273
|
-
ethBased:
|
|
1516
|
+
ethBased: true,
|
|
1274
1517
|
type: FluidVaultType.T1,
|
|
1275
1518
|
id: 2,
|
|
1276
1519
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1286,9 +1529,10 @@ export const WSTETH_USDC_2_BASE = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
1286
1529
|
});
|
|
1287
1530
|
|
|
1288
1531
|
export const WSTETH_ETH_3_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1532
|
+
stableBased: false,
|
|
1289
1533
|
btcBased: false,
|
|
1290
1534
|
wstETHBased: true,
|
|
1291
|
-
ethBased:
|
|
1535
|
+
ethBased: true,
|
|
1292
1536
|
type: FluidVaultType.T1,
|
|
1293
1537
|
id: 3,
|
|
1294
1538
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1304,8 +1548,9 @@ export const WSTETH_ETH_3_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1304
1548
|
});
|
|
1305
1549
|
|
|
1306
1550
|
export const WEETH_WSTETH_4_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1551
|
+
stableBased: false,
|
|
1307
1552
|
btcBased: false,
|
|
1308
|
-
wstETHBased:
|
|
1553
|
+
wstETHBased: true,
|
|
1309
1554
|
ethBased: true,
|
|
1310
1555
|
type: FluidVaultType.T1,
|
|
1311
1556
|
id: 4,
|
|
@@ -1322,6 +1567,7 @@ export const WEETH_WSTETH_4_BASE = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
1322
1567
|
});
|
|
1323
1568
|
|
|
1324
1569
|
export const WEETH_USDC_5_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1570
|
+
stableBased: true,
|
|
1325
1571
|
btcBased: false,
|
|
1326
1572
|
wstETHBased: false,
|
|
1327
1573
|
ethBased: true,
|
|
@@ -1340,6 +1586,7 @@ export const WEETH_USDC_5_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1340
1586
|
});
|
|
1341
1587
|
|
|
1342
1588
|
export const CBETH_USDC_6_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1589
|
+
stableBased: true,
|
|
1343
1590
|
btcBased: false,
|
|
1344
1591
|
wstETHBased: false,
|
|
1345
1592
|
ethBased: true,
|
|
@@ -1358,6 +1605,7 @@ export const CBETH_USDC_6_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1358
1605
|
});
|
|
1359
1606
|
|
|
1360
1607
|
export const CBBTC_USDC_7_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1608
|
+
stableBased: true,
|
|
1361
1609
|
btcBased: true,
|
|
1362
1610
|
wstETHBased: false,
|
|
1363
1611
|
ethBased: false,
|
|
@@ -1376,6 +1624,7 @@ export const CBBTC_USDC_7_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1376
1624
|
});
|
|
1377
1625
|
|
|
1378
1626
|
export const CBBTC_EURC_8_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1627
|
+
stableBased: true,
|
|
1379
1628
|
btcBased: true,
|
|
1380
1629
|
wstETHBased: false,
|
|
1381
1630
|
ethBased: false,
|
|
@@ -1394,6 +1643,7 @@ export const CBBTC_EURC_8_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1394
1643
|
});
|
|
1395
1644
|
|
|
1396
1645
|
export const CBETH_EURC_9_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1646
|
+
stableBased: true,
|
|
1397
1647
|
btcBased: false,
|
|
1398
1648
|
wstETHBased: false,
|
|
1399
1649
|
ethBased: true,
|
|
@@ -1412,6 +1662,7 @@ export const CBETH_EURC_9_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1412
1662
|
});
|
|
1413
1663
|
|
|
1414
1664
|
export const ETH_EURC_10_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1665
|
+
stableBased: true,
|
|
1415
1666
|
btcBased: false,
|
|
1416
1667
|
wstETHBased: false,
|
|
1417
1668
|
ethBased: true,
|
|
@@ -1430,6 +1681,7 @@ export const ETH_EURC_10_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1430
1681
|
});
|
|
1431
1682
|
|
|
1432
1683
|
export const WEETH_EURC_11_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1684
|
+
stableBased: true,
|
|
1433
1685
|
btcBased: false,
|
|
1434
1686
|
wstETHBased: false,
|
|
1435
1687
|
ethBased: true,
|
|
@@ -1448,9 +1700,10 @@ export const WEETH_EURC_11_BASE = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
1448
1700
|
});
|
|
1449
1701
|
|
|
1450
1702
|
export const WSTETH_EURC_12_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1703
|
+
stableBased: true,
|
|
1451
1704
|
btcBased: false,
|
|
1452
1705
|
wstETHBased: true,
|
|
1453
|
-
ethBased:
|
|
1706
|
+
ethBased: true,
|
|
1454
1707
|
type: FluidVaultType.T1,
|
|
1455
1708
|
id: 12,
|
|
1456
1709
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1466,9 +1719,10 @@ export const WSTETH_EURC_12_BASE = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
1466
1719
|
});
|
|
1467
1720
|
|
|
1468
1721
|
export const CBBTC_ETH_13_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1722
|
+
stableBased: false,
|
|
1469
1723
|
btcBased: true,
|
|
1470
1724
|
wstETHBased: false,
|
|
1471
|
-
ethBased:
|
|
1725
|
+
ethBased: true,
|
|
1472
1726
|
type: FluidVaultType.T1,
|
|
1473
1727
|
id: 13,
|
|
1474
1728
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1484,7 +1738,8 @@ export const CBBTC_ETH_13_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1484
1738
|
});
|
|
1485
1739
|
|
|
1486
1740
|
export const ETH_CBBTC_14_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1487
|
-
|
|
1741
|
+
stableBased: false,
|
|
1742
|
+
btcBased: true,
|
|
1488
1743
|
wstETHBased: false,
|
|
1489
1744
|
ethBased: true,
|
|
1490
1745
|
type: FluidVaultType.T1,
|
|
@@ -1502,7 +1757,8 @@ export const ETH_CBBTC_14_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1502
1757
|
});
|
|
1503
1758
|
|
|
1504
1759
|
export const WEETH_CBBTC_15_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1505
|
-
|
|
1760
|
+
stableBased: false,
|
|
1761
|
+
btcBased: true,
|
|
1506
1762
|
wstETHBased: false,
|
|
1507
1763
|
ethBased: true,
|
|
1508
1764
|
type: FluidVaultType.T1,
|
|
@@ -1520,9 +1776,10 @@ export const WEETH_CBBTC_15_BASE = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
1520
1776
|
});
|
|
1521
1777
|
|
|
1522
1778
|
export const WSTETH_CBBTC_16_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1523
|
-
|
|
1779
|
+
stableBased: false,
|
|
1780
|
+
btcBased: true,
|
|
1524
1781
|
wstETHBased: true,
|
|
1525
|
-
ethBased:
|
|
1782
|
+
ethBased: true,
|
|
1526
1783
|
type: FluidVaultType.T1,
|
|
1527
1784
|
id: 16,
|
|
1528
1785
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1537,6 +1794,63 @@ export const WSTETH_CBBTC_16_BASE = (networkId: NetworkNumber = NetworkNumber.Et
|
|
|
1537
1794
|
debtAsset: 'cbBTC',
|
|
1538
1795
|
});
|
|
1539
1796
|
|
|
1797
|
+
export const ETH_SUSDS_17_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1798
|
+
stableBased: true,
|
|
1799
|
+
btcBased: false,
|
|
1800
|
+
wstETHBased: false,
|
|
1801
|
+
ethBased: true,
|
|
1802
|
+
type: FluidVaultType.T1,
|
|
1803
|
+
id: 17,
|
|
1804
|
+
chainIds: [NetworkNumber.Base],
|
|
1805
|
+
label: 'ETH / sUSDS Market 17',
|
|
1806
|
+
shortLabel: 'ETH/sUSDS',
|
|
1807
|
+
value: FluidBaseVersions.ETH_SUSDS_17_BASE,
|
|
1808
|
+
url: 'eth-susds-17-base',
|
|
1809
|
+
marketAddress: '',
|
|
1810
|
+
hasSmartCollateral: false,
|
|
1811
|
+
hasSmartDebt: false,
|
|
1812
|
+
collateralAsset: 'ETH',
|
|
1813
|
+
debtAsset: 'sSUDS',
|
|
1814
|
+
});
|
|
1815
|
+
|
|
1816
|
+
export const WSTETH_SUSDS_18_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1817
|
+
stableBased: true,
|
|
1818
|
+
btcBased: false,
|
|
1819
|
+
wstETHBased: true,
|
|
1820
|
+
ethBased: true,
|
|
1821
|
+
type: FluidVaultType.T1,
|
|
1822
|
+
id: 18,
|
|
1823
|
+
chainIds: [NetworkNumber.Base],
|
|
1824
|
+
label: 'wstETH / sUSDS Market 18',
|
|
1825
|
+
shortLabel: 'wstETH/sUSDS',
|
|
1826
|
+
value: FluidBaseVersions.WSTETH_SUSDS_18_BASE,
|
|
1827
|
+
url: 'wsteth-susds-18-base',
|
|
1828
|
+
marketAddress: '',
|
|
1829
|
+
hasSmartCollateral: false,
|
|
1830
|
+
hasSmartDebt: false,
|
|
1831
|
+
collateralAsset: 'wstETH',
|
|
1832
|
+
debtAsset: 'sUSDS',
|
|
1833
|
+
});
|
|
1834
|
+
|
|
1835
|
+
export const CBBTC_SUSDS_19_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1836
|
+
stableBased: true,
|
|
1837
|
+
btcBased: false,
|
|
1838
|
+
wstETHBased: false,
|
|
1839
|
+
ethBased: false,
|
|
1840
|
+
type: FluidVaultType.T1,
|
|
1841
|
+
id: 19,
|
|
1842
|
+
chainIds: [NetworkNumber.Base],
|
|
1843
|
+
label: 'cbBTC / sUSDS Market 19',
|
|
1844
|
+
shortLabel: 'cbBTC/sUSDS',
|
|
1845
|
+
value: FluidBaseVersions.CBBTC_SUSDS_19_BASE,
|
|
1846
|
+
url: 'cbbtc-susds-19-base',
|
|
1847
|
+
marketAddress: '',
|
|
1848
|
+
hasSmartCollateral: false,
|
|
1849
|
+
hasSmartDebt: false,
|
|
1850
|
+
collateralAsset: 'cbBTC',
|
|
1851
|
+
debtAsset: 'sUSDS',
|
|
1852
|
+
});
|
|
1853
|
+
|
|
1540
1854
|
export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
1541
1855
|
[FluidMainnetVersion.ETH_USDC_1]: ETH_USDC_1(networkId),
|
|
1542
1856
|
[FluidMainnetVersion.ETH_USDT_2]: ETH_USDT_2(networkId),
|
|
@@ -1544,8 +1858,6 @@ export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
|
1544
1858
|
[FluidMainnetVersion.WSTETH_USDC_4]: WSTETH_USDC_4(networkId),
|
|
1545
1859
|
[FluidMainnetVersion.WSTETH_USDT_5]: WSTETH_USDT_5(networkId),
|
|
1546
1860
|
[FluidMainnetVersion.WEETH_WSTETH_6]: WEETH_WSTETH_6(networkId),
|
|
1547
|
-
[FluidMainnetVersion.SUSDE_USDC_7]: SUSDE_USDC_7(networkId),
|
|
1548
|
-
[FluidMainnetVersion.SUSDE_USDT_8]: SUSDE_USDT_8(networkId),
|
|
1549
1861
|
[FluidMainnetVersion.WEETH_USDC_9]: WEETH_USDC_9(networkId),
|
|
1550
1862
|
[FluidMainnetVersion.WEETH_USDT_10]: WEETH_USDT_10(networkId),
|
|
1551
1863
|
[FluidMainnetVersion.ETH_USDC_11]: ETH_USDC_11(networkId),
|
|
@@ -1570,7 +1882,6 @@ export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
|
1570
1882
|
[FluidMainnetVersion.CBBTC_USDT_30]: CBBTC_USDT_30(networkId),
|
|
1571
1883
|
[FluidMainnetVersion.ETH_CBBTC_31]: ETH_CBBTC_31(networkId),
|
|
1572
1884
|
[FluidMainnetVersion.WEETH_CBBTC_32]: WEETH_CBBTC_32(networkId),
|
|
1573
|
-
[FluidMainnetVersion.WSTETH_CBBTC_33]: WSTETH_CBBTC_33(networkId),
|
|
1574
1885
|
[FluidMainnetVersion.WSTETH_ETH_WSTETH_ETH_44]: WSTETH_ETH_WSTETH_ETH_44(networkId),
|
|
1575
1886
|
[FluidMainnetVersion.ETH_USDC_USDT_45]: ETH_USDC_USDT_45(networkId),
|
|
1576
1887
|
[FluidMainnetVersion.WSTETH_USDC_USDT_46]: WSTETH_USDC_USDT_46(networkId),
|
|
@@ -1586,14 +1897,15 @@ export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
|
1586
1897
|
[FluidMainnetVersion.SUSDE_GHO_56]: SUSDE_GHO_56(networkId),
|
|
1587
1898
|
[FluidMainnetVersion.WEETH_GHO_57]: WEETH_GHO_57(networkId),
|
|
1588
1899
|
[FluidMainnetVersion.SUSDS_GHO_58]: SUSDS_GHO_58(networkId),
|
|
1589
|
-
[FluidMainnetVersion.WBTC_GHO_59]: WBTC_GHO_59(networkId),
|
|
1590
|
-
[FluidMainnetVersion.CBBTC_GHO_60]: CBBTC_GHO_60(networkId),
|
|
1591
1900
|
[FluidMainnetVersion.GHO_USDC_GHO_USDC_61]: GHO_USDC_GHO_USDC_61(networkId),
|
|
1592
1901
|
[FluidMainnetVersion.WEETH_ETH_WSTETH_74]: WEETH_ETH_WSTETH_74(networkId),
|
|
1593
1902
|
[FluidMainnetVersion.USDC_ETH_USDC_ETH_77]: USDC_ETH_USDC_ETH_77(networkId),
|
|
1594
1903
|
[FluidMainnetVersion.RSETH_ETH_WSTETH_78]: RSETH_ETH_WSTETH_78(networkId),
|
|
1595
1904
|
[FluidMainnetVersion.RSETH_WSTETH_79]: RSETH_WSTETH_79(networkId),
|
|
1596
1905
|
[FluidMainnetVersion.WEETHS_ETH_WSTETH_80]: WEETHS_ETH_WSTETH_80(networkId),
|
|
1906
|
+
[FluidMainnetVersion.SUSDE_USDT_USDT_92]: SUSDE_USDT_USDT_92(networkId),
|
|
1907
|
+
[FluidMainnetVersion.USDE_USDT_USDT_93]: USDE_USDT_USDT_93(networkId),
|
|
1908
|
+
[FluidMainnetVersion.LBTC_CBBTC_WBTC_97]: LBTC_CBBTC_WBTC_97(networkId),
|
|
1597
1909
|
|
|
1598
1910
|
// arbitrum
|
|
1599
1911
|
[FluidArbitrumVersion.ETH_USDC_1_ARB]: ETH_USDC_1_ARB(networkId),
|
|
@@ -1607,8 +1919,19 @@ export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
|
1607
1919
|
[FluidArbitrumVersion.ETH_ARB_9_ARB]: ETH_ARB_9_ARB(networkId),
|
|
1608
1920
|
[FluidArbitrumVersion.ARB_USDC_10_ARB]: ARB_USDC_10_ARB(networkId),
|
|
1609
1921
|
[FluidArbitrumVersion.ARB_USDT_11_ARB]: ARB_USDT_11_ARB(networkId),
|
|
1922
|
+
[FluidArbitrumVersion.WBTC_USDC_12_ARB]: WBTC_USDC_12_ARB(networkId),
|
|
1923
|
+
[FluidArbitrumVersion.WBTC_USDT_13_ARB]: WBTC_USDT_13_ARB(networkId),
|
|
1610
1924
|
[FluidArbitrumVersion.WSTETH_ETH_WSTETH_ETH_16_ARB]: WSTETH_ETH_WSTETH_ETH_16_ARB(networkId),
|
|
1611
1925
|
[FluidArbitrumVersion.WEETH_ETH_WSTETH_17_ARB]: WEETH_ETH_WSTETH_17_ARB(networkId),
|
|
1926
|
+
[FluidArbitrumVersion.WBTC_ETH_18_ARB]: WBTC_ETH_18_ARB(networkId),
|
|
1927
|
+
[FluidArbitrumVersion.ETH_WBTC_19_ARB]: ETH_WBTC_19_ARB(networkId),
|
|
1928
|
+
[FluidArbitrumVersion.WSTETH_WBTC_20_ARB]: WSTETH_WBTC_20_ARB(networkId),
|
|
1929
|
+
[FluidArbitrumVersion.WEETH_WBTC_21_ARB]: WEETH_WBTC_21_ARB(networkId),
|
|
1930
|
+
[FluidArbitrumVersion.USDC_ETH_USDC_ETH_22_ARB]: USDC_ETH_USDC_ETH_22_ARB(networkId),
|
|
1931
|
+
[FluidArbitrumVersion.ETH_USDC_USDT_23_ARB]: ETH_USDC_USDT_23_ARB(networkId),
|
|
1932
|
+
[FluidArbitrumVersion.WSTETH_USDC_USDT_24_ARB]: WSTETH_USDC_USDT_24_ARB(networkId),
|
|
1933
|
+
[FluidArbitrumVersion.WEETH_USDC_USDT_25_ARB]: WEETH_USDC_USDT_25_ARB(networkId),
|
|
1934
|
+
[FluidArbitrumVersion.WBTC_USDC_USDT_26_ARB]: WBTC_USDC_USDT_26_ARB(networkId),
|
|
1612
1935
|
|
|
1613
1936
|
// base
|
|
1614
1937
|
[FluidBaseVersions.ETH_USDC_1_BASE]: ETH_USDC_1_BASE(networkId),
|
|
@@ -1627,6 +1950,9 @@ export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
|
1627
1950
|
[FluidBaseVersions.ETH_CBBTC_14_BASE]: ETH_CBBTC_14_BASE(networkId),
|
|
1628
1951
|
[FluidBaseVersions.WEETH_CBBTC_15_BASE]: WEETH_CBBTC_15_BASE(networkId),
|
|
1629
1952
|
[FluidBaseVersions.WSTETH_CBBTC_16_BASE]: WSTETH_CBBTC_16_BASE(networkId),
|
|
1953
|
+
[FluidBaseVersions.ETH_SUSDS_17_BASE]: ETH_SUSDS_17_BASE(networkId),
|
|
1954
|
+
[FluidBaseVersions.WSTETH_SUSDS_18_BASE]: WSTETH_SUSDS_18_BASE(networkId),
|
|
1955
|
+
[FluidBaseVersions.CBBTC_SUSDS_19_BASE]: CBBTC_SUSDS_19_BASE(networkId),
|
|
1630
1956
|
});
|
|
1631
1957
|
|
|
1632
1958
|
export const getFluidVersionsDataForNetwork = (network: NetworkNumber) => (
|