@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
|
@@ -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,
|
|
@@ -1214,10 +1246,11 @@ export const ARB_USDT_11_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): F
|
|
|
1214
1246
|
});
|
|
1215
1247
|
|
|
1216
1248
|
export const WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1249
|
+
stableBased: false,
|
|
1217
1250
|
btcBased: false,
|
|
1218
1251
|
wstETHBased: true,
|
|
1219
|
-
ethBased:
|
|
1220
|
-
type: FluidVaultType.
|
|
1252
|
+
ethBased: true,
|
|
1253
|
+
type: FluidVaultType.T4,
|
|
1221
1254
|
id: 16,
|
|
1222
1255
|
chainIds: [NetworkNumber.Arb],
|
|
1223
1256
|
label: 'wstETH / ETH Market 16',
|
|
@@ -1232,8 +1265,9 @@ export const WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId: NetworkNumber = NetworkN
|
|
|
1232
1265
|
});
|
|
1233
1266
|
|
|
1234
1267
|
export const WEETH_ETH_WSTETH_17_ARB = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1268
|
+
stableBased: false,
|
|
1235
1269
|
btcBased: false,
|
|
1236
|
-
wstETHBased:
|
|
1270
|
+
wstETHBased: true,
|
|
1237
1271
|
ethBased: true,
|
|
1238
1272
|
type: FluidVaultType.T1,
|
|
1239
1273
|
id: 17,
|
|
@@ -1250,6 +1284,7 @@ export const WEETH_ETH_WSTETH_17_ARB = (networkId: NetworkNumber = NetworkNumber
|
|
|
1250
1284
|
});
|
|
1251
1285
|
|
|
1252
1286
|
export const ETH_USDC_1_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1287
|
+
stableBased: true,
|
|
1253
1288
|
btcBased: false,
|
|
1254
1289
|
wstETHBased: false,
|
|
1255
1290
|
ethBased: true,
|
|
@@ -1268,9 +1303,10 @@ export const ETH_USDC_1_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): F
|
|
|
1268
1303
|
});
|
|
1269
1304
|
|
|
1270
1305
|
export const WSTETH_USDC_2_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1306
|
+
stableBased: true,
|
|
1271
1307
|
btcBased: false,
|
|
1272
1308
|
wstETHBased: true,
|
|
1273
|
-
ethBased:
|
|
1309
|
+
ethBased: true,
|
|
1274
1310
|
type: FluidVaultType.T1,
|
|
1275
1311
|
id: 2,
|
|
1276
1312
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1286,9 +1322,10 @@ export const WSTETH_USDC_2_BASE = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
1286
1322
|
});
|
|
1287
1323
|
|
|
1288
1324
|
export const WSTETH_ETH_3_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1325
|
+
stableBased: false,
|
|
1289
1326
|
btcBased: false,
|
|
1290
1327
|
wstETHBased: true,
|
|
1291
|
-
ethBased:
|
|
1328
|
+
ethBased: true,
|
|
1292
1329
|
type: FluidVaultType.T1,
|
|
1293
1330
|
id: 3,
|
|
1294
1331
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1304,8 +1341,9 @@ export const WSTETH_ETH_3_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1304
1341
|
});
|
|
1305
1342
|
|
|
1306
1343
|
export const WEETH_WSTETH_4_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1344
|
+
stableBased: false,
|
|
1307
1345
|
btcBased: false,
|
|
1308
|
-
wstETHBased:
|
|
1346
|
+
wstETHBased: true,
|
|
1309
1347
|
ethBased: true,
|
|
1310
1348
|
type: FluidVaultType.T1,
|
|
1311
1349
|
id: 4,
|
|
@@ -1322,6 +1360,7 @@ export const WEETH_WSTETH_4_BASE = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
1322
1360
|
});
|
|
1323
1361
|
|
|
1324
1362
|
export const WEETH_USDC_5_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1363
|
+
stableBased: true,
|
|
1325
1364
|
btcBased: false,
|
|
1326
1365
|
wstETHBased: false,
|
|
1327
1366
|
ethBased: true,
|
|
@@ -1340,6 +1379,7 @@ export const WEETH_USDC_5_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1340
1379
|
});
|
|
1341
1380
|
|
|
1342
1381
|
export const CBETH_USDC_6_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1382
|
+
stableBased: true,
|
|
1343
1383
|
btcBased: false,
|
|
1344
1384
|
wstETHBased: false,
|
|
1345
1385
|
ethBased: true,
|
|
@@ -1358,6 +1398,7 @@ export const CBETH_USDC_6_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1358
1398
|
});
|
|
1359
1399
|
|
|
1360
1400
|
export const CBBTC_USDC_7_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1401
|
+
stableBased: true,
|
|
1361
1402
|
btcBased: true,
|
|
1362
1403
|
wstETHBased: false,
|
|
1363
1404
|
ethBased: false,
|
|
@@ -1376,6 +1417,7 @@ export const CBBTC_USDC_7_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1376
1417
|
});
|
|
1377
1418
|
|
|
1378
1419
|
export const CBBTC_EURC_8_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1420
|
+
stableBased: true,
|
|
1379
1421
|
btcBased: true,
|
|
1380
1422
|
wstETHBased: false,
|
|
1381
1423
|
ethBased: false,
|
|
@@ -1394,6 +1436,7 @@ export const CBBTC_EURC_8_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1394
1436
|
});
|
|
1395
1437
|
|
|
1396
1438
|
export const CBETH_EURC_9_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1439
|
+
stableBased: true,
|
|
1397
1440
|
btcBased: false,
|
|
1398
1441
|
wstETHBased: false,
|
|
1399
1442
|
ethBased: true,
|
|
@@ -1412,6 +1455,7 @@ export const CBETH_EURC_9_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1412
1455
|
});
|
|
1413
1456
|
|
|
1414
1457
|
export const ETH_EURC_10_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1458
|
+
stableBased: true,
|
|
1415
1459
|
btcBased: false,
|
|
1416
1460
|
wstETHBased: false,
|
|
1417
1461
|
ethBased: true,
|
|
@@ -1430,6 +1474,7 @@ export const ETH_EURC_10_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1430
1474
|
});
|
|
1431
1475
|
|
|
1432
1476
|
export const WEETH_EURC_11_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1477
|
+
stableBased: true,
|
|
1433
1478
|
btcBased: false,
|
|
1434
1479
|
wstETHBased: false,
|
|
1435
1480
|
ethBased: true,
|
|
@@ -1448,9 +1493,10 @@ export const WEETH_EURC_11_BASE = (networkId: NetworkNumber = NetworkNumber.Eth)
|
|
|
1448
1493
|
});
|
|
1449
1494
|
|
|
1450
1495
|
export const WSTETH_EURC_12_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1496
|
+
stableBased: true,
|
|
1451
1497
|
btcBased: false,
|
|
1452
1498
|
wstETHBased: true,
|
|
1453
|
-
ethBased:
|
|
1499
|
+
ethBased: true,
|
|
1454
1500
|
type: FluidVaultType.T1,
|
|
1455
1501
|
id: 12,
|
|
1456
1502
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1466,9 +1512,10 @@ export const WSTETH_EURC_12_BASE = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
1466
1512
|
});
|
|
1467
1513
|
|
|
1468
1514
|
export const CBBTC_ETH_13_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1515
|
+
stableBased: false,
|
|
1469
1516
|
btcBased: true,
|
|
1470
1517
|
wstETHBased: false,
|
|
1471
|
-
ethBased:
|
|
1518
|
+
ethBased: true,
|
|
1472
1519
|
type: FluidVaultType.T1,
|
|
1473
1520
|
id: 13,
|
|
1474
1521
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1484,7 +1531,8 @@ export const CBBTC_ETH_13_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1484
1531
|
});
|
|
1485
1532
|
|
|
1486
1533
|
export const ETH_CBBTC_14_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1487
|
-
|
|
1534
|
+
stableBased: false,
|
|
1535
|
+
btcBased: true,
|
|
1488
1536
|
wstETHBased: false,
|
|
1489
1537
|
ethBased: true,
|
|
1490
1538
|
type: FluidVaultType.T1,
|
|
@@ -1502,7 +1550,8 @@ export const ETH_CBBTC_14_BASE = (networkId: NetworkNumber = NetworkNumber.Eth):
|
|
|
1502
1550
|
});
|
|
1503
1551
|
|
|
1504
1552
|
export const WEETH_CBBTC_15_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1505
|
-
|
|
1553
|
+
stableBased: false,
|
|
1554
|
+
btcBased: true,
|
|
1506
1555
|
wstETHBased: false,
|
|
1507
1556
|
ethBased: true,
|
|
1508
1557
|
type: FluidVaultType.T1,
|
|
@@ -1520,9 +1569,10 @@ export const WEETH_CBBTC_15_BASE = (networkId: NetworkNumber = NetworkNumber.Eth
|
|
|
1520
1569
|
});
|
|
1521
1570
|
|
|
1522
1571
|
export const WSTETH_CBBTC_16_BASE = (networkId: NetworkNumber = NetworkNumber.Eth): FluidMarketInfo => ({
|
|
1523
|
-
|
|
1572
|
+
stableBased: false,
|
|
1573
|
+
btcBased: true,
|
|
1524
1574
|
wstETHBased: true,
|
|
1525
|
-
ethBased:
|
|
1575
|
+
ethBased: true,
|
|
1526
1576
|
type: FluidVaultType.T1,
|
|
1527
1577
|
id: 16,
|
|
1528
1578
|
chainIds: [NetworkNumber.Base],
|
|
@@ -1544,8 +1594,6 @@ export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
|
1544
1594
|
[FluidMainnetVersion.WSTETH_USDC_4]: WSTETH_USDC_4(networkId),
|
|
1545
1595
|
[FluidMainnetVersion.WSTETH_USDT_5]: WSTETH_USDT_5(networkId),
|
|
1546
1596
|
[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
1597
|
[FluidMainnetVersion.WEETH_USDC_9]: WEETH_USDC_9(networkId),
|
|
1550
1598
|
[FluidMainnetVersion.WEETH_USDT_10]: WEETH_USDT_10(networkId),
|
|
1551
1599
|
[FluidMainnetVersion.ETH_USDC_11]: ETH_USDC_11(networkId),
|
|
@@ -1570,7 +1618,6 @@ export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
|
1570
1618
|
[FluidMainnetVersion.CBBTC_USDT_30]: CBBTC_USDT_30(networkId),
|
|
1571
1619
|
[FluidMainnetVersion.ETH_CBBTC_31]: ETH_CBBTC_31(networkId),
|
|
1572
1620
|
[FluidMainnetVersion.WEETH_CBBTC_32]: WEETH_CBBTC_32(networkId),
|
|
1573
|
-
[FluidMainnetVersion.WSTETH_CBBTC_33]: WSTETH_CBBTC_33(networkId),
|
|
1574
1621
|
[FluidMainnetVersion.WSTETH_ETH_WSTETH_ETH_44]: WSTETH_ETH_WSTETH_ETH_44(networkId),
|
|
1575
1622
|
[FluidMainnetVersion.ETH_USDC_USDT_45]: ETH_USDC_USDT_45(networkId),
|
|
1576
1623
|
[FluidMainnetVersion.WSTETH_USDC_USDT_46]: WSTETH_USDC_USDT_46(networkId),
|
|
@@ -1586,14 +1633,15 @@ export const FluidMarkets = (networkId: NetworkNumber) => ({
|
|
|
1586
1633
|
[FluidMainnetVersion.SUSDE_GHO_56]: SUSDE_GHO_56(networkId),
|
|
1587
1634
|
[FluidMainnetVersion.WEETH_GHO_57]: WEETH_GHO_57(networkId),
|
|
1588
1635
|
[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
1636
|
[FluidMainnetVersion.GHO_USDC_GHO_USDC_61]: GHO_USDC_GHO_USDC_61(networkId),
|
|
1592
1637
|
[FluidMainnetVersion.WEETH_ETH_WSTETH_74]: WEETH_ETH_WSTETH_74(networkId),
|
|
1593
1638
|
[FluidMainnetVersion.USDC_ETH_USDC_ETH_77]: USDC_ETH_USDC_ETH_77(networkId),
|
|
1594
1639
|
[FluidMainnetVersion.RSETH_ETH_WSTETH_78]: RSETH_ETH_WSTETH_78(networkId),
|
|
1595
1640
|
[FluidMainnetVersion.RSETH_WSTETH_79]: RSETH_WSTETH_79(networkId),
|
|
1596
1641
|
[FluidMainnetVersion.WEETHS_ETH_WSTETH_80]: WEETHS_ETH_WSTETH_80(networkId),
|
|
1642
|
+
[FluidMainnetVersion.SUSDE_USDT_USDT_92]: SUSDE_USDT_USDT_92(networkId),
|
|
1643
|
+
[FluidMainnetVersion.USDE_USDT_USDT_93]: USDE_USDT_USDT_93(networkId),
|
|
1644
|
+
[FluidMainnetVersion.LBTC_CBBTC_WBTC_97]: LBTC_CBBTC_WBTC_97(networkId),
|
|
1597
1645
|
|
|
1598
1646
|
// arbitrum
|
|
1599
1647
|
[FluidArbitrumVersion.ETH_USDC_1_ARB]: ETH_USDC_1_ARB(networkId),
|