@defisaver/positions-sdk 1.0.11-fluid-dev2 → 1.0.11-fluid-dev3
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/markets/fluid/index.d.ts +26 -0
- package/cjs/markets/fluid/index.js +363 -94
- package/cjs/types/fluid.d.ts +15 -2
- package/cjs/types/fluid.js +13 -0
- package/esm/markets/fluid/index.d.ts +26 -0
- package/esm/markets/fluid/index.js +348 -93
- package/esm/types/fluid.d.ts +15 -2
- package/esm/types/fluid.js +13 -0
- package/package.json +1 -1
- package/src/markets/fluid/index.ts +362 -93
- package/src/types/fluid.ts +13 -0
|
@@ -7,7 +7,7 @@ export const FLUID_ETH_USDC_1 = (networkId = NetworkNumber.Eth) => ({
|
|
|
7
7
|
stableBased: true,
|
|
8
8
|
ethBased: true,
|
|
9
9
|
chainIds: [NetworkNumber.Eth],
|
|
10
|
-
label: 'ETH / USDC
|
|
10
|
+
label: '#1 (ETH / USDC)',
|
|
11
11
|
shortLabel: 'ETH/USDC',
|
|
12
12
|
value: FluidMainnetVersion.FLUID_ETH_USDC_1,
|
|
13
13
|
url: 'eth-usdc-1',
|
|
@@ -26,7 +26,7 @@ export const FLUID_ETH_USDT_2 = (networkId = NetworkNumber.Eth) => ({
|
|
|
26
26
|
stableBased: true,
|
|
27
27
|
ethBased: true,
|
|
28
28
|
chainIds: [NetworkNumber.Eth],
|
|
29
|
-
label: 'ETH / USDT
|
|
29
|
+
label: '#2 (ETH / USDT)',
|
|
30
30
|
shortLabel: 'ETH/USDT',
|
|
31
31
|
value: FluidMainnetVersion.FLUID_ETH_USDT_2,
|
|
32
32
|
url: 'eth-usdt-2',
|
|
@@ -45,7 +45,7 @@ export const FLUID_WSTETH_ETH_3 = (networkId = NetworkNumber.Eth) => ({
|
|
|
45
45
|
ethBased: true,
|
|
46
46
|
wstETHBased: true,
|
|
47
47
|
chainIds: [NetworkNumber.Eth],
|
|
48
|
-
label: 'wstETH / ETH
|
|
48
|
+
label: '#3 (wstETH / ETH)',
|
|
49
49
|
shortLabel: 'wstETH/ETH',
|
|
50
50
|
value: FluidMainnetVersion.FLUID_WSTETH_ETH_3,
|
|
51
51
|
url: 'wsteth-eth-3',
|
|
@@ -64,7 +64,7 @@ export const FLUID_WSTETH_USDC_4 = (networkId = NetworkNumber.Eth) => ({
|
|
|
64
64
|
stableBased: true,
|
|
65
65
|
wstETHBased: true,
|
|
66
66
|
chainIds: [NetworkNumber.Eth],
|
|
67
|
-
label: 'wstETH / USDC
|
|
67
|
+
label: '#4 (wstETH / USDC)',
|
|
68
68
|
shortLabel: 'wstETH/USDC',
|
|
69
69
|
value: FluidMainnetVersion.FLUID_WSTETH_USDC_4,
|
|
70
70
|
url: 'wsteth-usdc-4',
|
|
@@ -83,7 +83,7 @@ export const FLUID_WSTETH_USDT_5 = (networkId = NetworkNumber.Eth) => ({
|
|
|
83
83
|
stableBased: true,
|
|
84
84
|
wstETHBased: true,
|
|
85
85
|
chainIds: [NetworkNumber.Eth],
|
|
86
|
-
label: 'wstETH / USDT
|
|
86
|
+
label: '#5 (wstETH / USDT)',
|
|
87
87
|
shortLabel: 'wstETH/USDT',
|
|
88
88
|
value: FluidMainnetVersion.FLUID_WSTETH_USDT_5,
|
|
89
89
|
url: 'wsteth-usdt-5',
|
|
@@ -102,7 +102,7 @@ export const FLUID_WEETH_WSTETH_6 = (networkId = NetworkNumber.Eth) => ({
|
|
|
102
102
|
wstETHBased: true,
|
|
103
103
|
stableBased: false,
|
|
104
104
|
chainIds: [NetworkNumber.Eth],
|
|
105
|
-
label: 'weETH / wstETH
|
|
105
|
+
label: '#6 (weETH / wstETH)',
|
|
106
106
|
shortLabel: 'weETH/wstETH',
|
|
107
107
|
value: FluidMainnetVersion.FLUID_WEETH_WSTETH_6,
|
|
108
108
|
url: 'weeth-wsteth-6',
|
|
@@ -120,7 +120,7 @@ export const FLUID_WEETH_USDC_9 = (networkId = NetworkNumber.Eth) => ({
|
|
|
120
120
|
ethBased: true,
|
|
121
121
|
stableBased: true,
|
|
122
122
|
chainIds: [NetworkNumber.Eth],
|
|
123
|
-
label: 'weETH / USDC
|
|
123
|
+
label: '#9 (weETH / USDC)',
|
|
124
124
|
shortLabel: 'weETH/USDC',
|
|
125
125
|
value: FluidMainnetVersion.FLUID_WEETH_USDC_9,
|
|
126
126
|
url: 'weeth-usdc-9',
|
|
@@ -141,7 +141,7 @@ export const FLUID_WEETH_USDT_10 = (networkId = NetworkNumber.Eth) => ({
|
|
|
141
141
|
stableBased: true,
|
|
142
142
|
type: FluidVaultType.T1,
|
|
143
143
|
chainIds: [NetworkNumber.Eth],
|
|
144
|
-
label: 'weETH / USDT
|
|
144
|
+
label: '#10 (weETH / USDT)',
|
|
145
145
|
shortLabel: 'weETH/USDT',
|
|
146
146
|
value: FluidMainnetVersion.FLUID_WEETH_USDT_10,
|
|
147
147
|
url: 'weeth-usdt-10',
|
|
@@ -160,7 +160,7 @@ export const FLUID_ETH_USDC_11 = (networkId = NetworkNumber.Eth) => ({
|
|
|
160
160
|
stableBased: true,
|
|
161
161
|
type: FluidVaultType.T1,
|
|
162
162
|
chainIds: [NetworkNumber.Eth],
|
|
163
|
-
label: 'ETH / USDC
|
|
163
|
+
label: '#11 (ETH / USDC)',
|
|
164
164
|
shortLabel: 'ETH/USDC',
|
|
165
165
|
value: FluidMainnetVersion.FLUID_ETH_USDC_11,
|
|
166
166
|
url: 'eth-usdc-11',
|
|
@@ -178,7 +178,7 @@ export const FLUID_ETH_USDT_12 = (networkId = NetworkNumber.Eth) => ({
|
|
|
178
178
|
stableBased: true,
|
|
179
179
|
type: FluidVaultType.T1,
|
|
180
180
|
chainIds: [NetworkNumber.Eth],
|
|
181
|
-
label: 'ETH / USDT
|
|
181
|
+
label: '#12 (ETH / USDT)',
|
|
182
182
|
shortLabel: 'ETH/USDT',
|
|
183
183
|
value: FluidMainnetVersion.FLUID_ETH_USDT_12,
|
|
184
184
|
url: 'eth-usdt-12',
|
|
@@ -196,7 +196,7 @@ export const FLUID_WSTETH_ETH_13 = (networkId = NetworkNumber.Eth) => ({
|
|
|
196
196
|
ethBased: true,
|
|
197
197
|
type: FluidVaultType.T1,
|
|
198
198
|
chainIds: [NetworkNumber.Eth],
|
|
199
|
-
label: 'wstETH / ETH
|
|
199
|
+
label: '#13 (wstETH / ETH)',
|
|
200
200
|
shortLabel: 'wstETH/ETH',
|
|
201
201
|
value: FluidMainnetVersion.FLUID_WSTETH_ETH_13,
|
|
202
202
|
url: 'wsteth-eth-13',
|
|
@@ -214,7 +214,7 @@ export const FLUID_WSTETH_USDC_14 = (networkId = NetworkNumber.Eth) => ({
|
|
|
214
214
|
ethBased: true,
|
|
215
215
|
type: FluidVaultType.T1,
|
|
216
216
|
chainIds: [NetworkNumber.Eth],
|
|
217
|
-
label: 'wstETH / USDC
|
|
217
|
+
label: '#14 (wstETH / USDC)',
|
|
218
218
|
shortLabel: 'wstETH/USDC',
|
|
219
219
|
value: FluidMainnetVersion.FLUID_WSTETH_USDC_14,
|
|
220
220
|
url: 'wsteth-usdc-14',
|
|
@@ -232,7 +232,7 @@ export const FLUID_WSTETH_USDT_15 = (networkId = NetworkNumber.Eth) => ({
|
|
|
232
232
|
ethBased: true,
|
|
233
233
|
type: FluidVaultType.T1,
|
|
234
234
|
chainIds: [NetworkNumber.Eth],
|
|
235
|
-
label: 'wstETH / USDT
|
|
235
|
+
label: '#15 (wstETH / USDT)',
|
|
236
236
|
shortLabel: 'wstETH/USDT',
|
|
237
237
|
value: FluidMainnetVersion.FLUID_WSTETH_USDT_15,
|
|
238
238
|
url: 'wsteth-usdt-15',
|
|
@@ -250,7 +250,7 @@ export const FLUID_WEETH_WSTETH_16 = (networkId = NetworkNumber.Eth) => ({
|
|
|
250
250
|
ethBased: true,
|
|
251
251
|
type: FluidVaultType.T1,
|
|
252
252
|
chainIds: [NetworkNumber.Eth],
|
|
253
|
-
label: 'weETH / wstETH
|
|
253
|
+
label: '#16 (weETH / wstETH)',
|
|
254
254
|
shortLabel: 'weETH/wstETH',
|
|
255
255
|
value: FluidMainnetVersion.FLUID_WEETH_WSTETH_16,
|
|
256
256
|
url: 'weeth-wsteth-16',
|
|
@@ -268,7 +268,7 @@ export const FLUID_SUSDE_USDC_17 = (networkId = NetworkNumber.Eth) => ({
|
|
|
268
268
|
ethBased: false,
|
|
269
269
|
type: FluidVaultType.T1,
|
|
270
270
|
chainIds: [NetworkNumber.Eth],
|
|
271
|
-
label: 'sUSDe / USDC
|
|
271
|
+
label: '#17 (sUSDe / USDC)',
|
|
272
272
|
shortLabel: 'sUSDe/USDC',
|
|
273
273
|
value: FluidMainnetVersion.FLUID_SUSDE_USDC_17,
|
|
274
274
|
url: 'susde-usdc-17',
|
|
@@ -286,7 +286,7 @@ export const FLUID_SUSDE_USDT_18 = (networkId = NetworkNumber.Eth) => ({
|
|
|
286
286
|
ethBased: false,
|
|
287
287
|
type: FluidVaultType.T1,
|
|
288
288
|
chainIds: [NetworkNumber.Eth],
|
|
289
|
-
label: 'sUSDe / USDT
|
|
289
|
+
label: '#18 (sUSDe / USDT)',
|
|
290
290
|
shortLabel: 'sUSDe/USDT',
|
|
291
291
|
value: FluidMainnetVersion.FLUID_SUSDE_USDT_18,
|
|
292
292
|
url: 'susde-usdt-18',
|
|
@@ -304,7 +304,7 @@ export const FLUID_WEETH_USDC_19 = (networkId = NetworkNumber.Eth) => ({
|
|
|
304
304
|
ethBased: true,
|
|
305
305
|
type: FluidVaultType.T1,
|
|
306
306
|
chainIds: [NetworkNumber.Eth],
|
|
307
|
-
label: 'weETH / USDC
|
|
307
|
+
label: '#19 (weETH / USDC)',
|
|
308
308
|
shortLabel: 'weETH/USDC',
|
|
309
309
|
value: FluidMainnetVersion.FLUID_WEETH_USDC_19,
|
|
310
310
|
url: 'weeth-usdc-19',
|
|
@@ -322,7 +322,7 @@ export const FLUID_WEETH_USDT_20 = (networkId = NetworkNumber.Eth) => ({
|
|
|
322
322
|
ethBased: true,
|
|
323
323
|
type: FluidVaultType.T1,
|
|
324
324
|
chainIds: [NetworkNumber.Eth],
|
|
325
|
-
label: 'weETH / USDT
|
|
325
|
+
label: '#20 (weETH / USDT)',
|
|
326
326
|
shortLabel: 'weETH/USDT',
|
|
327
327
|
value: FluidMainnetVersion.FLUID_WEETH_USDT_20,
|
|
328
328
|
url: 'weeth-usdt-20',
|
|
@@ -340,7 +340,7 @@ export const FLUID_WBTC_USDC_21 = (networkId = NetworkNumber.Eth) => ({
|
|
|
340
340
|
ethBased: false,
|
|
341
341
|
type: FluidVaultType.T1,
|
|
342
342
|
chainIds: [NetworkNumber.Eth],
|
|
343
|
-
label: 'WBTC / USDC
|
|
343
|
+
label: '#21 (WBTC / USDC)',
|
|
344
344
|
shortLabel: 'WBTC/USDC',
|
|
345
345
|
value: FluidMainnetVersion.FLUID_WBTC_USDC_21,
|
|
346
346
|
url: 'wbtc-usdc-21',
|
|
@@ -358,7 +358,7 @@ export const FLUID_WBTC_USDT_22 = (networkId = NetworkNumber.Eth) => ({
|
|
|
358
358
|
ethBased: false,
|
|
359
359
|
type: FluidVaultType.T1,
|
|
360
360
|
chainIds: [NetworkNumber.Eth],
|
|
361
|
-
label: 'WBTC / USDT
|
|
361
|
+
label: '#22 (WBTC / USDT)',
|
|
362
362
|
shortLabel: 'WBTC/USDT',
|
|
363
363
|
value: FluidMainnetVersion.FLUID_WBTC_USDT_22,
|
|
364
364
|
url: 'wbtc-usdt-22',
|
|
@@ -376,7 +376,7 @@ export const FLUID_WBTC_ETH_23 = (networkId = NetworkNumber.Eth) => ({
|
|
|
376
376
|
ethBased: true,
|
|
377
377
|
type: FluidVaultType.T1,
|
|
378
378
|
chainIds: [NetworkNumber.Eth],
|
|
379
|
-
label: 'WBTC / ETH
|
|
379
|
+
label: '#23 (WBTC / ETH)',
|
|
380
380
|
shortLabel: 'WBTC/ETH',
|
|
381
381
|
value: FluidMainnetVersion.FLUID_WBTC_ETH_23,
|
|
382
382
|
url: 'wbtc-eth-23',
|
|
@@ -394,7 +394,7 @@ export const FLUID_ETH_WBTC_24 = (networkId = NetworkNumber.Eth) => ({
|
|
|
394
394
|
ethBased: true,
|
|
395
395
|
type: FluidVaultType.T1,
|
|
396
396
|
chainIds: [NetworkNumber.Eth],
|
|
397
|
-
label: 'ETH / WBTC
|
|
397
|
+
label: '#24 (ETH / WBTC)',
|
|
398
398
|
shortLabel: 'ETH/WBTC',
|
|
399
399
|
value: FluidMainnetVersion.FLUID_ETH_WBTC_24,
|
|
400
400
|
url: 'eth-wbtc-24',
|
|
@@ -412,7 +412,7 @@ export const FLUID_WSTETH_WBTC_25 = (networkId = NetworkNumber.Eth) => ({
|
|
|
412
412
|
ethBased: true,
|
|
413
413
|
type: FluidVaultType.T1,
|
|
414
414
|
chainIds: [NetworkNumber.Eth],
|
|
415
|
-
label: 'wstETH / WBTC
|
|
415
|
+
label: '#25 (wstETH / WBTC)',
|
|
416
416
|
shortLabel: 'wstETH/WBTC',
|
|
417
417
|
value: FluidMainnetVersion.FLUID_WSTETH_WBTC_25,
|
|
418
418
|
url: 'wsteth-wbtc-25',
|
|
@@ -430,7 +430,7 @@ export const FLUID_WEETH_WBTC_26 = (networkId = NetworkNumber.Eth) => ({
|
|
|
430
430
|
ethBased: true,
|
|
431
431
|
type: FluidVaultType.T1,
|
|
432
432
|
chainIds: [NetworkNumber.Eth],
|
|
433
|
-
label: 'weETH / WBTC
|
|
433
|
+
label: '#26 (weETH / WBTC)',
|
|
434
434
|
shortLabel: 'weETH/WBTC',
|
|
435
435
|
value: FluidMainnetVersion.FLUID_WEETH_WBTC_26,
|
|
436
436
|
url: 'weeth-wbtc-26',
|
|
@@ -448,7 +448,7 @@ export const FLUID_WEETHS_WSTETH_27 = (networkId = NetworkNumber.Eth) => ({
|
|
|
448
448
|
ethBased: true,
|
|
449
449
|
type: FluidVaultType.T1,
|
|
450
450
|
chainIds: [NetworkNumber.Eth],
|
|
451
|
-
label: 'weETHs / wstETH
|
|
451
|
+
label: '#27 (weETHs / wstETH)',
|
|
452
452
|
shortLabel: 'weETHs/wstETH',
|
|
453
453
|
value: FluidMainnetVersion.FLUID_WEETHS_WSTETH_27,
|
|
454
454
|
url: 'weeths-wsteth-27',
|
|
@@ -466,7 +466,7 @@ export const FLUID_CBBTC_ETH_28 = (networkId = NetworkNumber.Eth) => ({
|
|
|
466
466
|
ethBased: true,
|
|
467
467
|
type: FluidVaultType.T1,
|
|
468
468
|
chainIds: [NetworkNumber.Eth],
|
|
469
|
-
label: 'cbBTC / ETH
|
|
469
|
+
label: '#28 (cbBTC / ETH)',
|
|
470
470
|
shortLabel: 'cbBTC/ETH',
|
|
471
471
|
value: FluidMainnetVersion.FLUID_CBBTC_ETH_28,
|
|
472
472
|
url: 'cbbtc-eth-28',
|
|
@@ -484,7 +484,7 @@ export const FLUID_CBBTC_USDC_29 = (networkId = NetworkNumber.Eth) => ({
|
|
|
484
484
|
ethBased: false,
|
|
485
485
|
type: FluidVaultType.T1,
|
|
486
486
|
chainIds: [NetworkNumber.Eth],
|
|
487
|
-
label: 'cbBTC / USDC
|
|
487
|
+
label: '#29 (cbBTC / USDC)',
|
|
488
488
|
shortLabel: 'cbBTC/USDC',
|
|
489
489
|
value: FluidMainnetVersion.FLUID_CBBTC_USDC_29,
|
|
490
490
|
url: 'cbbtc-usdc-29',
|
|
@@ -502,7 +502,7 @@ export const FLUID_CBBTC_USDT_30 = (networkId = NetworkNumber.Eth) => ({
|
|
|
502
502
|
ethBased: false,
|
|
503
503
|
type: FluidVaultType.T1,
|
|
504
504
|
chainIds: [NetworkNumber.Eth],
|
|
505
|
-
label: 'cbBTC / USDT
|
|
505
|
+
label: '#30 (cbBTC / USDT)',
|
|
506
506
|
shortLabel: 'cbBTC/USDT',
|
|
507
507
|
value: FluidMainnetVersion.FLUID_CBBTC_USDT_30,
|
|
508
508
|
url: 'cbbtc-usdt-30',
|
|
@@ -520,7 +520,7 @@ export const FLUID_ETH_CBBTC_31 = (networkId = NetworkNumber.Eth) => ({
|
|
|
520
520
|
ethBased: true,
|
|
521
521
|
type: FluidVaultType.T1,
|
|
522
522
|
chainIds: [NetworkNumber.Eth],
|
|
523
|
-
label: 'ETH / cbBTC
|
|
523
|
+
label: '#31 (ETH / cbBTC)',
|
|
524
524
|
shortLabel: 'ETH/cbBTC',
|
|
525
525
|
value: FluidMainnetVersion.FLUID_ETH_CBBTC_31,
|
|
526
526
|
url: 'eth-cbbtc-31',
|
|
@@ -538,7 +538,7 @@ export const FLUID_WEETH_CBBTC_32 = (networkId = NetworkNumber.Eth) => ({
|
|
|
538
538
|
ethBased: true,
|
|
539
539
|
type: FluidVaultType.T1,
|
|
540
540
|
chainIds: [NetworkNumber.Eth],
|
|
541
|
-
label: 'weETH / cbBTC
|
|
541
|
+
label: '#32 (weETH / cbBTC)',
|
|
542
542
|
shortLabel: 'weETH/cbBTC',
|
|
543
543
|
value: FluidMainnetVersion.FLUID_WEETH_CBBTC_32,
|
|
544
544
|
url: 'weeth-cbbtc-32',
|
|
@@ -556,7 +556,7 @@ export const FLUID_WSTETH_ETH_WSTETH_ETH_44 = (networkId = NetworkNumber.Eth) =>
|
|
|
556
556
|
ethBased: true,
|
|
557
557
|
type: FluidVaultType.T4,
|
|
558
558
|
chainIds: [NetworkNumber.Eth],
|
|
559
|
-
label: 'wstETH-ETH / wstETH-ETH
|
|
559
|
+
label: '#44 (wstETH-ETH / wstETH-ETH)',
|
|
560
560
|
shortLabel: 'wstETH-ETH/wstETH-ETH',
|
|
561
561
|
value: FluidMainnetVersion.FLUID_WSTETH_ETH_WSTETH_ETH_44,
|
|
562
562
|
url: 'wsteth-eth-wsteth-eth-44',
|
|
@@ -576,7 +576,7 @@ export const FLUID_ETH_USDC_USDT_45 = (networkId = NetworkNumber.Eth) => ({
|
|
|
576
576
|
ethBased: true,
|
|
577
577
|
type: FluidVaultType.T3,
|
|
578
578
|
chainIds: [NetworkNumber.Eth],
|
|
579
|
-
label: 'ETH / USDC-USDT
|
|
579
|
+
label: '#45 (ETH / USDC-USDT)',
|
|
580
580
|
shortLabel: 'ETH/USDC-USDT',
|
|
581
581
|
value: FluidMainnetVersion.FLUID_ETH_USDC_USDT_45,
|
|
582
582
|
url: 'eth-usdc-usdt-45',
|
|
@@ -595,7 +595,7 @@ export const FLUID_WSTETH_USDC_USDT_46 = (networkId = NetworkNumber.Eth) => ({
|
|
|
595
595
|
ethBased: true,
|
|
596
596
|
type: FluidVaultType.T3,
|
|
597
597
|
chainIds: [NetworkNumber.Eth],
|
|
598
|
-
label: 'wstETH / USDC-USDT
|
|
598
|
+
label: '#46 (wstETH / USDC-USDT)',
|
|
599
599
|
shortLabel: 'wstETH/USDC-USDT',
|
|
600
600
|
value: FluidMainnetVersion.FLUID_WSTETH_USDC_USDT_46,
|
|
601
601
|
url: 'wsteth-usdc-usdt-46',
|
|
@@ -614,7 +614,7 @@ export const FLUID_WEETH_USDC_USDT_47 = (networkId = NetworkNumber.Eth) => ({
|
|
|
614
614
|
ethBased: true,
|
|
615
615
|
type: FluidVaultType.T3,
|
|
616
616
|
chainIds: [NetworkNumber.Eth],
|
|
617
|
-
label: 'weETH / USDC-USDT
|
|
617
|
+
label: '#47 (weETH / USDC-USDT)',
|
|
618
618
|
shortLabel: 'weETH/USDC-USDT',
|
|
619
619
|
value: FluidMainnetVersion.FLUID_WEETH_USDC_USDT_47,
|
|
620
620
|
url: 'weeth-usdc-usdt-47',
|
|
@@ -633,7 +633,7 @@ export const FLUID_WBTC_USDC_USDT_48 = (networkId = NetworkNumber.Eth) => ({
|
|
|
633
633
|
ethBased: false,
|
|
634
634
|
type: FluidVaultType.T3,
|
|
635
635
|
chainIds: [NetworkNumber.Eth],
|
|
636
|
-
label: 'WBTC / USDC-USDT
|
|
636
|
+
label: '#48 (WBTC / USDC-USDT)',
|
|
637
637
|
shortLabel: 'WBTC/USDC-USDT',
|
|
638
638
|
value: FluidMainnetVersion.FLUID_WBTC_USDC_USDT_48,
|
|
639
639
|
url: 'wbtc-usdc-usdt-48',
|
|
@@ -652,7 +652,7 @@ export const FLUID_CBBTC_USDC_USDT_49 = (networkId = NetworkNumber.Eth) => ({
|
|
|
652
652
|
ethBased: false,
|
|
653
653
|
type: FluidVaultType.T3,
|
|
654
654
|
chainIds: [NetworkNumber.Eth],
|
|
655
|
-
label: 'cbBTC / USDC-USDT
|
|
655
|
+
label: '#49 (cbBTC / USDC-USDT)',
|
|
656
656
|
shortLabel: 'cbBTC/USDC-USDT',
|
|
657
657
|
value: FluidMainnetVersion.FLUID_CBBTC_USDC_USDT_49,
|
|
658
658
|
url: 'cbbtc-usdc-usdt-49',
|
|
@@ -671,7 +671,7 @@ export const FLUID_SUSDE_USDC_USDT_50 = (networkId = NetworkNumber.Eth) => ({
|
|
|
671
671
|
ethBased: false,
|
|
672
672
|
type: FluidVaultType.T3,
|
|
673
673
|
chainIds: [NetworkNumber.Eth],
|
|
674
|
-
label: 'sUSDe / USDC-USDT
|
|
674
|
+
label: '#50 (sUSDe / USDC-USDT)',
|
|
675
675
|
shortLabel: 'sUSDe/USDC-USDT',
|
|
676
676
|
value: FluidMainnetVersion.FLUID_SUSDE_USDC_USDT_50,
|
|
677
677
|
url: 'susde-usdc-usdt-50',
|
|
@@ -690,7 +690,7 @@ export const FLUID_WBTC_CBBTC_WBTC_CBBTC_51 = (networkId = NetworkNumber.Eth) =>
|
|
|
690
690
|
ethBased: false,
|
|
691
691
|
type: FluidVaultType.T4,
|
|
692
692
|
chainIds: [NetworkNumber.Eth],
|
|
693
|
-
label: 'WBTC-cbBTC / WBTC-cbBTC
|
|
693
|
+
label: '#51 (WBTC-cbBTC / WBTC-cbBTC)',
|
|
694
694
|
shortLabel: 'WBTC-cbBTC/WBTC-cbBTC',
|
|
695
695
|
value: FluidMainnetVersion.FLUID_WBTC_CBBTC_WBTC_CBBTC_51,
|
|
696
696
|
url: 'wbtc-cbbtc-wbtc-cbbtc-51',
|
|
@@ -710,7 +710,7 @@ export const FLUID_WBTC_CBBTC_USDC_52 = (networkId = NetworkNumber.Eth) => ({
|
|
|
710
710
|
ethBased: false,
|
|
711
711
|
type: FluidVaultType.T2,
|
|
712
712
|
chainIds: [NetworkNumber.Eth],
|
|
713
|
-
label: 'WBTC-cbBTC / USDC
|
|
713
|
+
label: '#52 (WBTC-cbBTC / USDC)',
|
|
714
714
|
shortLabel: 'WBTC-cbBTC/USDC',
|
|
715
715
|
value: FluidMainnetVersion.FLUID_WBTC_CBBTC_USDC_52,
|
|
716
716
|
url: 'wbtc-cbbtc-usdc-52',
|
|
@@ -730,8 +730,8 @@ export const FLUID_WBTC_CBBTC_USDT_53 = (networkId = NetworkNumber.Eth) => ({
|
|
|
730
730
|
type: FluidVaultType.T2,
|
|
731
731
|
id: 53,
|
|
732
732
|
chainIds: [NetworkNumber.Eth],
|
|
733
|
-
label: 'WBTC-cbBTC /
|
|
734
|
-
shortLabel: 'WBTC-cbBTC/
|
|
733
|
+
label: '#53 (WBTC-cbBTC / USDT)',
|
|
734
|
+
shortLabel: 'WBTC-cbBTC/USDT',
|
|
735
735
|
value: FluidMainnetVersion.FLUID_WBTC_CBBTC_USDT_53,
|
|
736
736
|
url: 'wbtc-cbbtc-usdt-53',
|
|
737
737
|
marketAddress: '0xf7FA55D14C71241e3c970E30C509Ff58b5f5D557',
|
|
@@ -749,7 +749,7 @@ export const FLUID_ETH_GHO_54 = (networkId = NetworkNumber.Eth) => ({
|
|
|
749
749
|
type: FluidVaultType.T1,
|
|
750
750
|
id: 54,
|
|
751
751
|
chainIds: [NetworkNumber.Eth],
|
|
752
|
-
label: 'ETH / GHO
|
|
752
|
+
label: '#54 (ETH / GHO)',
|
|
753
753
|
shortLabel: 'ETH/GHO',
|
|
754
754
|
value: FluidMainnetVersion.FLUID_ETH_GHO_54,
|
|
755
755
|
url: 'eth-gho-54',
|
|
@@ -767,7 +767,7 @@ export const FLUID_WSTETH_GHO_55 = (networkId = NetworkNumber.Eth) => ({
|
|
|
767
767
|
type: FluidVaultType.T1,
|
|
768
768
|
id: 55,
|
|
769
769
|
chainIds: [NetworkNumber.Eth],
|
|
770
|
-
label: 'wstETH / GHO
|
|
770
|
+
label: '#55 (wstETH / GHO)',
|
|
771
771
|
shortLabel: 'wstETH/GHO',
|
|
772
772
|
value: FluidMainnetVersion.FLUID_WSTETH_GHO_55,
|
|
773
773
|
url: 'wsteth-gho-55',
|
|
@@ -785,7 +785,7 @@ export const FLUID_SUSDE_GHO_56 = (networkId = NetworkNumber.Eth) => ({
|
|
|
785
785
|
type: FluidVaultType.T1,
|
|
786
786
|
id: 56,
|
|
787
787
|
chainIds: [NetworkNumber.Eth],
|
|
788
|
-
label: 'sUSDe / GHO
|
|
788
|
+
label: '#56 (sUSDe / GHO)',
|
|
789
789
|
shortLabel: 'sUSDe/GHO',
|
|
790
790
|
value: FluidMainnetVersion.FLUID_SUSDE_GHO_56,
|
|
791
791
|
url: 'susde-gho-56',
|
|
@@ -803,7 +803,7 @@ export const FLUID_WEETH_GHO_57 = (networkId = NetworkNumber.Eth) => ({
|
|
|
803
803
|
type: FluidVaultType.T1,
|
|
804
804
|
id: 57,
|
|
805
805
|
chainIds: [NetworkNumber.Eth],
|
|
806
|
-
label: 'weETH / GHO
|
|
806
|
+
label: '#57 (weETH / GHO)',
|
|
807
807
|
shortLabel: 'weETH/GHO',
|
|
808
808
|
value: FluidMainnetVersion.FLUID_WEETH_GHO_57,
|
|
809
809
|
url: 'weeth-gho-57',
|
|
@@ -821,14 +821,14 @@ export const FLUID_SUSDS_GHO_58 = (networkId = NetworkNumber.Eth) => ({
|
|
|
821
821
|
type: FluidVaultType.T1,
|
|
822
822
|
id: 58,
|
|
823
823
|
chainIds: [NetworkNumber.Eth],
|
|
824
|
-
label: '
|
|
825
|
-
shortLabel: '
|
|
824
|
+
label: '#58 (sUSDS / GHO)',
|
|
825
|
+
shortLabel: 'sUSDS/GHO',
|
|
826
826
|
value: FluidMainnetVersion.FLUID_SUSDS_GHO_58,
|
|
827
827
|
url: 'susds-gho-58',
|
|
828
828
|
marketAddress: '0x7ED2cbD4C98a6E151d2a48792c1E45E4f0CD57D1',
|
|
829
829
|
hasSmartCollateral: false,
|
|
830
830
|
hasSmartDebt: false,
|
|
831
|
-
collateralAsset0: '
|
|
831
|
+
collateralAsset0: 'sUSDS',
|
|
832
832
|
debtAsset0: 'GHO',
|
|
833
833
|
});
|
|
834
834
|
export const FLUID_GHO_USDC_GHO_USDC_61 = (networkId = NetworkNumber.Eth) => ({
|
|
@@ -839,8 +839,8 @@ export const FLUID_GHO_USDC_GHO_USDC_61 = (networkId = NetworkNumber.Eth) => ({
|
|
|
839
839
|
type: FluidVaultType.T4,
|
|
840
840
|
id: 61,
|
|
841
841
|
chainIds: [NetworkNumber.Eth],
|
|
842
|
-
label: 'GHO / USDC
|
|
843
|
-
shortLabel: 'GHO/USDC',
|
|
842
|
+
label: '#61 (GHO-USDC / GHO-USDC)',
|
|
843
|
+
shortLabel: 'GHO-USDC/GHO-USDC',
|
|
844
844
|
value: FluidMainnetVersion.FLUID_GHO_USDC_GHO_USDC_61,
|
|
845
845
|
url: 'gho-usdc-gho-usdc-61',
|
|
846
846
|
marketAddress: '0x20b32C597633f12B44CFAFe0ab27408028CA0f6A',
|
|
@@ -859,8 +859,8 @@ export const FLUID_WEETH_ETH_WSTETH_74 = (networkId = NetworkNumber.Eth) => ({
|
|
|
859
859
|
type: FluidVaultType.T2,
|
|
860
860
|
id: 74,
|
|
861
861
|
chainIds: [NetworkNumber.Eth],
|
|
862
|
-
label: 'weETH /
|
|
863
|
-
shortLabel: 'weETH/
|
|
862
|
+
label: '#74 (weETH-ETH / wstETH)',
|
|
863
|
+
shortLabel: 'weETH-ETH/wstETH',
|
|
864
864
|
value: FluidMainnetVersion.FLUID_WEETH_ETH_WSTETH_74,
|
|
865
865
|
url: 'weeth-eth-wsteth-74',
|
|
866
866
|
marketAddress: '0xb4a15526d427f4d20b0dAdaF3baB4177C85A699A',
|
|
@@ -878,8 +878,8 @@ export const FLUID_USDC_ETH_USDC_ETH_77 = (networkId = NetworkNumber.Eth) => ({
|
|
|
878
878
|
type: FluidVaultType.T4,
|
|
879
879
|
id: 77,
|
|
880
880
|
chainIds: [NetworkNumber.Eth],
|
|
881
|
-
label: 'USDC / ETH
|
|
882
|
-
shortLabel: 'USDC/ETH',
|
|
881
|
+
label: '#77 (USDC-ETH / USDC-ETH)',
|
|
882
|
+
shortLabel: 'USDC-ETH/USDC-ETH',
|
|
883
883
|
value: FluidMainnetVersion.FLUID_USDC_ETH_USDC_ETH_77,
|
|
884
884
|
url: 'usdc-eth-usdc-eth-77',
|
|
885
885
|
marketAddress: '0x469D8c7990b9072EEF05d6349224621a71176213',
|
|
@@ -898,8 +898,8 @@ export const FLUID_RSETH_ETH_WSTETH_78 = (networkId = NetworkNumber.Eth) => ({
|
|
|
898
898
|
type: FluidVaultType.T2,
|
|
899
899
|
id: 78,
|
|
900
900
|
chainIds: [NetworkNumber.Eth],
|
|
901
|
-
label: 'rsETH /
|
|
902
|
-
shortLabel: 'rsETH/
|
|
901
|
+
label: '#78 (rsETH-ETH / wstETH)',
|
|
902
|
+
shortLabel: 'rsETH-ETH/wstETH',
|
|
903
903
|
value: FluidMainnetVersion.FLUID_RSETH_ETH_WSTETH_78,
|
|
904
904
|
url: 'rseth-eth-wsteth-78',
|
|
905
905
|
marketAddress: '0x9A64E3EB9c2F917CBAdDe75Ad23bb402257acf2E',
|
|
@@ -917,7 +917,7 @@ export const FLUID_RSETH_WSTETH_79 = (networkId = NetworkNumber.Eth) => ({
|
|
|
917
917
|
type: FluidVaultType.T1,
|
|
918
918
|
id: 79,
|
|
919
919
|
chainIds: [NetworkNumber.Eth],
|
|
920
|
-
label: 'rsETH / wstETH
|
|
920
|
+
label: '#79 (rsETH / wstETH)',
|
|
921
921
|
shortLabel: 'rsETH/wstETH',
|
|
922
922
|
value: FluidMainnetVersion.FLUID_RSETH_WSTETH_79,
|
|
923
923
|
url: 'rseth-wsteth-79',
|
|
@@ -935,8 +935,8 @@ export const FLUID_WEETHS_ETH_WSTETH_80 = (networkId = NetworkNumber.Eth) => ({
|
|
|
935
935
|
type: FluidVaultType.T2,
|
|
936
936
|
id: 80,
|
|
937
937
|
chainIds: [NetworkNumber.Eth],
|
|
938
|
-
label: 'weETHs /
|
|
939
|
-
shortLabel: 'weETHs/
|
|
938
|
+
label: '#80 (weETHs-ETH / wstETH)',
|
|
939
|
+
shortLabel: 'weETHs-ETH/wstETH',
|
|
940
940
|
value: FluidMainnetVersion.FLUID_WEETHS_ETH_WSTETH_80,
|
|
941
941
|
url: 'weeths-eth-wsteth-80',
|
|
942
942
|
marketAddress: '0x153a0D021AeD5d20D9E59e8B9ecC9E3e9276f6C3',
|
|
@@ -954,7 +954,7 @@ export const FLUID_SUSDE_USDT_USDT_92 = (networkId = NetworkNumber.Eth) => ({
|
|
|
954
954
|
type: FluidVaultType.T2,
|
|
955
955
|
id: 92,
|
|
956
956
|
chainIds: [NetworkNumber.Eth],
|
|
957
|
-
label: 'sUSDe-USDT / USDT
|
|
957
|
+
label: '#92 (sUSDe-USDT / USDT)',
|
|
958
958
|
shortLabel: 'sUSDe-USDT/USDT',
|
|
959
959
|
value: FluidMainnetVersion.FLUID_SUSDE_USDT_USDT_92,
|
|
960
960
|
url: 'susde-usdt-usdt-92',
|
|
@@ -973,8 +973,8 @@ export const FLUID_USDE_USDT_USDT_93 = (networkId = NetworkNumber.Eth) => ({
|
|
|
973
973
|
type: FluidVaultType.T2,
|
|
974
974
|
id: 93,
|
|
975
975
|
chainIds: [NetworkNumber.Eth],
|
|
976
|
-
label: 'USDe-USDT / USDT
|
|
977
|
-
shortLabel: '
|
|
976
|
+
label: '#93 (USDe-USDT / USDT)',
|
|
977
|
+
shortLabel: 'USDe-USDT/USDT',
|
|
978
978
|
value: FluidMainnetVersion.FLUID_USDE_USDT_USDT_93,
|
|
979
979
|
url: 'usde-usdt-usdt-93',
|
|
980
980
|
marketAddress: '0x989a44CB4dBb7eBe20e0aBf3C1E1d727BF90F881',
|
|
@@ -992,8 +992,8 @@ export const FLUID_LBTC_CBBTC_WBTC_97 = (networkId = NetworkNumber.Eth) => ({
|
|
|
992
992
|
type: FluidVaultType.T2,
|
|
993
993
|
id: 97,
|
|
994
994
|
chainIds: [NetworkNumber.Eth],
|
|
995
|
-
label: 'LBTC-cbBTC / WBTC
|
|
996
|
-
shortLabel: '
|
|
995
|
+
label: '#97 (LBTC-cbBTC / WBTC)',
|
|
996
|
+
shortLabel: 'LBTC-cbBTC/WBTC',
|
|
997
997
|
value: FluidMainnetVersion.FLUID_LBTC_CBBTC_WBTC_97,
|
|
998
998
|
url: 'lbtc-cbbtc-wbtc-97',
|
|
999
999
|
marketAddress: '0x96B2A29823d475468eE6f15e07878adf79E8199b',
|
|
@@ -1003,6 +1003,229 @@ export const FLUID_LBTC_CBBTC_WBTC_97 = (networkId = NetworkNumber.Eth) => ({
|
|
|
1003
1003
|
collateralAsset1: 'cbBTC',
|
|
1004
1004
|
debtAsset0: 'WBTC',
|
|
1005
1005
|
});
|
|
1006
|
+
export const FLUID_SUSDE_USDT_USDC_USDT_98 = (networkId = NetworkNumber.Eth) => ({
|
|
1007
|
+
stableBased: true,
|
|
1008
|
+
btcBased: false,
|
|
1009
|
+
wstETHBased: false,
|
|
1010
|
+
ethBased: false,
|
|
1011
|
+
type: FluidVaultType.T4,
|
|
1012
|
+
id: 98,
|
|
1013
|
+
chainIds: [NetworkNumber.Eth],
|
|
1014
|
+
label: '#98 (sUSDe-USDT / USDC-USDT)',
|
|
1015
|
+
shortLabel: 'sUSDe-USDT/USDC-USDT',
|
|
1016
|
+
value: FluidMainnetVersion.FLUID_SUSDE_USDT_USDC_USDT_98,
|
|
1017
|
+
url: 'susde-usdt-usdc-usdt-98',
|
|
1018
|
+
marketAddress: '',
|
|
1019
|
+
hasSmartCollateral: true,
|
|
1020
|
+
hasSmartDebt: true,
|
|
1021
|
+
collateralAsset0: 'sUSDe',
|
|
1022
|
+
collateralAsset1: 'USDT',
|
|
1023
|
+
debtAsset0: 'USDC',
|
|
1024
|
+
debtAsset1: 'USDT',
|
|
1025
|
+
});
|
|
1026
|
+
export const FLUID_USDE_USDT_USDC_USDT_99 = (networkId = NetworkNumber.Eth) => ({
|
|
1027
|
+
stableBased: false,
|
|
1028
|
+
btcBased: true,
|
|
1029
|
+
wstETHBased: false,
|
|
1030
|
+
ethBased: false,
|
|
1031
|
+
type: FluidVaultType.T4,
|
|
1032
|
+
id: 99,
|
|
1033
|
+
chainIds: [NetworkNumber.Eth],
|
|
1034
|
+
label: '#99 (USDe-USDT / USDC-USDT)',
|
|
1035
|
+
shortLabel: 'USDe-USDT/USDC-USDT',
|
|
1036
|
+
value: FluidMainnetVersion.FLUID_USDE_USDT_USDC_USDT_99,
|
|
1037
|
+
url: 'usde-usdt-usdc-usdt-99',
|
|
1038
|
+
marketAddress: '',
|
|
1039
|
+
hasSmartCollateral: true,
|
|
1040
|
+
hasSmartDebt: true,
|
|
1041
|
+
collateralAsset0: 'USDe',
|
|
1042
|
+
collateralAsset1: 'USDT',
|
|
1043
|
+
debtAsset0: 'USDC',
|
|
1044
|
+
debtAsset1: 'USDT',
|
|
1045
|
+
});
|
|
1046
|
+
export const FLUID_USDC_ETH_100 = (networkId = NetworkNumber.Eth) => ({
|
|
1047
|
+
stableBased: true,
|
|
1048
|
+
btcBased: false,
|
|
1049
|
+
wstETHBased: false,
|
|
1050
|
+
ethBased: true,
|
|
1051
|
+
type: FluidVaultType.T1,
|
|
1052
|
+
id: 100,
|
|
1053
|
+
chainIds: [NetworkNumber.Eth],
|
|
1054
|
+
label: '#100 (USDC / ETH)',
|
|
1055
|
+
shortLabel: 'USDC/ETH',
|
|
1056
|
+
value: FluidMainnetVersion.FLUID_USDC_ETH_100,
|
|
1057
|
+
url: 'usdc-eth-100',
|
|
1058
|
+
marketAddress: '',
|
|
1059
|
+
hasSmartCollateral: false,
|
|
1060
|
+
hasSmartDebt: false,
|
|
1061
|
+
collateralAsset0: 'USDC',
|
|
1062
|
+
debtAsset0: 'ETH',
|
|
1063
|
+
});
|
|
1064
|
+
export const FLUID_USDC_WBTC_101 = (networkId = NetworkNumber.Eth) => ({
|
|
1065
|
+
stableBased: true,
|
|
1066
|
+
btcBased: true,
|
|
1067
|
+
wstETHBased: false,
|
|
1068
|
+
ethBased: false,
|
|
1069
|
+
type: FluidVaultType.T1,
|
|
1070
|
+
id: 101,
|
|
1071
|
+
chainIds: [NetworkNumber.Eth],
|
|
1072
|
+
label: '#101 (USDC / WBTC)',
|
|
1073
|
+
shortLabel: 'USDC/WBTC',
|
|
1074
|
+
value: FluidMainnetVersion.FLUID_USDC_WBTC_101,
|
|
1075
|
+
url: 'usdc-wbtc-101',
|
|
1076
|
+
marketAddress: '',
|
|
1077
|
+
hasSmartCollateral: false,
|
|
1078
|
+
hasSmartDebt: false,
|
|
1079
|
+
collateralAsset0: 'USDC',
|
|
1080
|
+
debtAsset0: 'WBTC',
|
|
1081
|
+
});
|
|
1082
|
+
export const FLUID_USDC_CBBTC_102 = (networkId = NetworkNumber.Eth) => ({
|
|
1083
|
+
stableBased: true,
|
|
1084
|
+
btcBased: true,
|
|
1085
|
+
wstETHBased: false,
|
|
1086
|
+
ethBased: false,
|
|
1087
|
+
type: FluidVaultType.T1,
|
|
1088
|
+
id: 102,
|
|
1089
|
+
chainIds: [NetworkNumber.Eth],
|
|
1090
|
+
label: '#102 (USDC / cbBTC)',
|
|
1091
|
+
shortLabel: 'USDC/cbBTC',
|
|
1092
|
+
value: FluidMainnetVersion.FLUID_USDC_CBBTC_102,
|
|
1093
|
+
url: 'usdc-cbbtc-102',
|
|
1094
|
+
marketAddress: '',
|
|
1095
|
+
hasSmartCollateral: false,
|
|
1096
|
+
hasSmartDebt: false,
|
|
1097
|
+
collateralAsset0: 'USDC',
|
|
1098
|
+
debtAsset0: 'cbBTC',
|
|
1099
|
+
});
|
|
1100
|
+
export const FLUID_EZETH_WSTETH_103 = (networkId = NetworkNumber.Eth) => ({
|
|
1101
|
+
stableBased: false,
|
|
1102
|
+
btcBased: false,
|
|
1103
|
+
wstETHBased: true,
|
|
1104
|
+
ethBased: true,
|
|
1105
|
+
type: FluidVaultType.T1,
|
|
1106
|
+
id: 103,
|
|
1107
|
+
chainIds: [NetworkNumber.Eth],
|
|
1108
|
+
label: '#103 (ezETH / wstETH)',
|
|
1109
|
+
shortLabel: 'ezETH/wstETH',
|
|
1110
|
+
value: FluidMainnetVersion.FLUID_EZETH_WSTETH_103,
|
|
1111
|
+
url: 'ezeth-wsteth-103',
|
|
1112
|
+
marketAddress: '',
|
|
1113
|
+
hasSmartCollateral: false,
|
|
1114
|
+
hasSmartDebt: false,
|
|
1115
|
+
collateralAsset0: 'ezETH',
|
|
1116
|
+
debtAsset0: 'wstETH',
|
|
1117
|
+
});
|
|
1118
|
+
export const FLUID_EZETH_ETH_WSTETH_104 = (networkId = NetworkNumber.Eth) => ({
|
|
1119
|
+
stableBased: false,
|
|
1120
|
+
btcBased: false,
|
|
1121
|
+
wstETHBased: true,
|
|
1122
|
+
ethBased: true,
|
|
1123
|
+
type: FluidVaultType.T2,
|
|
1124
|
+
id: 104,
|
|
1125
|
+
chainIds: [NetworkNumber.Eth],
|
|
1126
|
+
label: '#104 (ezETH-ETH / wstETH)',
|
|
1127
|
+
shortLabel: 'ezETH-ETH/wstETH',
|
|
1128
|
+
value: FluidMainnetVersion.FLUID_EZETH_ETH_WSTETH_104,
|
|
1129
|
+
url: 'ezeth-eth-wsteth-104',
|
|
1130
|
+
marketAddress: '',
|
|
1131
|
+
hasSmartCollateral: true,
|
|
1132
|
+
hasSmartDebt: false,
|
|
1133
|
+
collateralAsset0: 'ezETH',
|
|
1134
|
+
collateralAsset1: 'ETH',
|
|
1135
|
+
debtAsset0: 'wstETH',
|
|
1136
|
+
});
|
|
1137
|
+
export const FLUID_LBTC_USDC_107 = (networkId = NetworkNumber.Eth) => ({
|
|
1138
|
+
stableBased: true,
|
|
1139
|
+
btcBased: true,
|
|
1140
|
+
wstETHBased: false,
|
|
1141
|
+
ethBased: false,
|
|
1142
|
+
type: FluidVaultType.T1,
|
|
1143
|
+
id: 107,
|
|
1144
|
+
chainIds: [NetworkNumber.Eth],
|
|
1145
|
+
label: '#107 (LBTC / USDC)',
|
|
1146
|
+
shortLabel: 'LBTC/USDC',
|
|
1147
|
+
value: FluidMainnetVersion.FLUID_LBTC_USDC_107,
|
|
1148
|
+
url: 'lbtc-usdc-107',
|
|
1149
|
+
marketAddress: '',
|
|
1150
|
+
hasSmartCollateral: false,
|
|
1151
|
+
hasSmartDebt: false,
|
|
1152
|
+
collateralAsset0: 'LBTC',
|
|
1153
|
+
debtAsset0: 'USDC',
|
|
1154
|
+
});
|
|
1155
|
+
export const FLUID_LBTC_USDT_108 = (networkId = NetworkNumber.Eth) => ({
|
|
1156
|
+
stableBased: true,
|
|
1157
|
+
btcBased: true,
|
|
1158
|
+
wstETHBased: false,
|
|
1159
|
+
ethBased: false,
|
|
1160
|
+
type: FluidVaultType.T1,
|
|
1161
|
+
id: 108,
|
|
1162
|
+
chainIds: [NetworkNumber.Eth],
|
|
1163
|
+
label: '#108 (LBTC / USDT)',
|
|
1164
|
+
shortLabel: 'LBTC/USDT',
|
|
1165
|
+
value: FluidMainnetVersion.FLUID_LBTC_USDT_108,
|
|
1166
|
+
url: 'lbtc-usdt-108',
|
|
1167
|
+
marketAddress: '',
|
|
1168
|
+
hasSmartCollateral: false,
|
|
1169
|
+
hasSmartDebt: false,
|
|
1170
|
+
collateralAsset0: 'LBTC',
|
|
1171
|
+
debtAsset0: 'USDT',
|
|
1172
|
+
});
|
|
1173
|
+
export const FLUID_LBTC_GHO_109 = (networkId = NetworkNumber.Eth) => ({
|
|
1174
|
+
stableBased: true,
|
|
1175
|
+
btcBased: true,
|
|
1176
|
+
wstETHBased: false,
|
|
1177
|
+
ethBased: false,
|
|
1178
|
+
type: FluidVaultType.T1,
|
|
1179
|
+
id: 109,
|
|
1180
|
+
chainIds: [NetworkNumber.Eth],
|
|
1181
|
+
label: '#109 (LBTC / GHO)',
|
|
1182
|
+
shortLabel: 'LBTC/GHO',
|
|
1183
|
+
value: FluidMainnetVersion.FLUID_LBTC_GHO_109,
|
|
1184
|
+
url: 'lbtc-gho-109',
|
|
1185
|
+
marketAddress: '',
|
|
1186
|
+
hasSmartCollateral: false,
|
|
1187
|
+
hasSmartDebt: false,
|
|
1188
|
+
collateralAsset0: 'LBTC',
|
|
1189
|
+
debtAsset0: 'GHO',
|
|
1190
|
+
});
|
|
1191
|
+
export const FLUID_LBTC_CBBTC_CBBTC_114 = (networkId = NetworkNumber.Eth) => ({
|
|
1192
|
+
stableBased: false,
|
|
1193
|
+
btcBased: true,
|
|
1194
|
+
wstETHBased: false,
|
|
1195
|
+
ethBased: false,
|
|
1196
|
+
type: FluidVaultType.T2,
|
|
1197
|
+
id: 114,
|
|
1198
|
+
chainIds: [NetworkNumber.Eth],
|
|
1199
|
+
label: '#114 (LBTC-cbBTC / cbBTC)',
|
|
1200
|
+
shortLabel: 'LBTC-cbBTC/cbBTC',
|
|
1201
|
+
value: FluidMainnetVersion.FLUID_LBTC_CBBTC_CBBTC_114,
|
|
1202
|
+
url: 'lbtc-cbbtc-cbbtc-114',
|
|
1203
|
+
marketAddress: '',
|
|
1204
|
+
hasSmartCollateral: true,
|
|
1205
|
+
hasSmartDebt: false,
|
|
1206
|
+
collateralAsset0: 'LBTC',
|
|
1207
|
+
collateralAsset1: 'cbBTC',
|
|
1208
|
+
debtAsset0: 'cbBTC',
|
|
1209
|
+
});
|
|
1210
|
+
export const FLUID_WBTC_LBTC_WBTC_115 = (networkId = NetworkNumber.Eth) => ({
|
|
1211
|
+
stableBased: false,
|
|
1212
|
+
btcBased: true,
|
|
1213
|
+
wstETHBased: false,
|
|
1214
|
+
ethBased: false,
|
|
1215
|
+
type: FluidVaultType.T2,
|
|
1216
|
+
id: 115,
|
|
1217
|
+
chainIds: [NetworkNumber.Eth],
|
|
1218
|
+
label: '#115 (WBTC-LBTC / WBTC)',
|
|
1219
|
+
shortLabel: 'WBTC-LBTC/WBTC',
|
|
1220
|
+
value: FluidMainnetVersion.FLUID_WBTC_LBTC_WBTC_115,
|
|
1221
|
+
url: 'wbtc-lbtc-wbtc-115',
|
|
1222
|
+
marketAddress: '',
|
|
1223
|
+
hasSmartCollateral: true,
|
|
1224
|
+
hasSmartDebt: false,
|
|
1225
|
+
collateralAsset0: 'WBTC',
|
|
1226
|
+
collateralAsset1: 'LBTC',
|
|
1227
|
+
debtAsset0: 'WBTC',
|
|
1228
|
+
});
|
|
1006
1229
|
export const FLUID_ETH_USDC_1_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1007
1230
|
stableBased: true,
|
|
1008
1231
|
btcBased: false,
|
|
@@ -1011,7 +1234,7 @@ export const FLUID_ETH_USDC_1_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1011
1234
|
type: FluidVaultType.T1,
|
|
1012
1235
|
id: 1,
|
|
1013
1236
|
chainIds: [NetworkNumber.Arb],
|
|
1014
|
-
label: 'ETH / USDC
|
|
1237
|
+
label: '#1 (ETH / USDC)',
|
|
1015
1238
|
shortLabel: 'ETH/USDC',
|
|
1016
1239
|
value: FluidArbitrumVersion.FLUID_ETH_USDC_1_ARB,
|
|
1017
1240
|
url: 'eth-usdc-1-arb',
|
|
@@ -1029,7 +1252,7 @@ export const FLUID_ETH_USDT_2_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1029
1252
|
type: FluidVaultType.T1,
|
|
1030
1253
|
id: 2,
|
|
1031
1254
|
chainIds: [NetworkNumber.Arb],
|
|
1032
|
-
label: 'ETH / USDT
|
|
1255
|
+
label: '#2 (ETH / USDT)',
|
|
1033
1256
|
shortLabel: 'ETH/USDT',
|
|
1034
1257
|
value: FluidArbitrumVersion.FLUID_ETH_USDT_2_ARB,
|
|
1035
1258
|
url: 'eth-usdt-2-arb',
|
|
@@ -1047,7 +1270,7 @@ export const FLUID_WSTETH_USDC_3_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1047
1270
|
type: FluidVaultType.T1,
|
|
1048
1271
|
id: 3,
|
|
1049
1272
|
chainIds: [NetworkNumber.Arb],
|
|
1050
|
-
label: 'wstETH / USDC
|
|
1273
|
+
label: '#3 (wstETH / USDC)',
|
|
1051
1274
|
shortLabel: 'wstETH/USDC',
|
|
1052
1275
|
value: FluidArbitrumVersion.FLUID_WSTETH_USDC_3_ARB,
|
|
1053
1276
|
url: 'wsteth-usdc-3-arb',
|
|
@@ -1065,7 +1288,7 @@ export const FLUID_WSTETH_USDT_4_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1065
1288
|
type: FluidVaultType.T1,
|
|
1066
1289
|
id: 4,
|
|
1067
1290
|
chainIds: [NetworkNumber.Arb],
|
|
1068
|
-
label: 'wstETH / USDT
|
|
1291
|
+
label: '#4 (wstETH / USDT)',
|
|
1069
1292
|
shortLabel: 'wstETH/USDT',
|
|
1070
1293
|
value: FluidArbitrumVersion.FLUID_WSTETH_USDT_4_ARB,
|
|
1071
1294
|
url: 'wsteth-usdt-4-arb',
|
|
@@ -1083,7 +1306,7 @@ export const FLUID_WSTETH_ETH_5_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1083
1306
|
type: FluidVaultType.T1,
|
|
1084
1307
|
id: 5,
|
|
1085
1308
|
chainIds: [NetworkNumber.Arb],
|
|
1086
|
-
label: 'wstETH / ETH
|
|
1309
|
+
label: '#5 (wstETH / ETH)',
|
|
1087
1310
|
shortLabel: 'wstETH/ETH',
|
|
1088
1311
|
value: FluidArbitrumVersion.FLUID_WSTETH_ETH_5_ARB,
|
|
1089
1312
|
url: 'wsteth-eth-5-arb',
|
|
@@ -1101,7 +1324,7 @@ export const FLUID_WEETH_WSTETH_6_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1101
1324
|
type: FluidVaultType.T1,
|
|
1102
1325
|
id: 6,
|
|
1103
1326
|
chainIds: [NetworkNumber.Arb],
|
|
1104
|
-
label: 'weETH / wstETH
|
|
1327
|
+
label: '#6 (weETH / wstETH)',
|
|
1105
1328
|
shortLabel: 'weETH/wstETH',
|
|
1106
1329
|
value: FluidArbitrumVersion.FLUID_WEETH_WSTETH_6_ARB,
|
|
1107
1330
|
url: 'weeth-wsteth-6-arb',
|
|
@@ -1119,7 +1342,7 @@ export const FLUID_WEETH_USDC_7_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1119
1342
|
type: FluidVaultType.T1,
|
|
1120
1343
|
id: 7,
|
|
1121
1344
|
chainIds: [NetworkNumber.Arb],
|
|
1122
|
-
label: 'weETH / USDC
|
|
1345
|
+
label: '#7 (weETH / USDC)',
|
|
1123
1346
|
shortLabel: 'weETH/USDC',
|
|
1124
1347
|
value: FluidArbitrumVersion.FLUID_WEETH_USDC_7_ARB,
|
|
1125
1348
|
url: 'weeth-usdc-7-arb',
|
|
@@ -1137,7 +1360,7 @@ export const FLUID_WEETH_USDT_8_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1137
1360
|
type: FluidVaultType.T1,
|
|
1138
1361
|
id: 8,
|
|
1139
1362
|
chainIds: [NetworkNumber.Arb],
|
|
1140
|
-
label: 'weETH / USDT
|
|
1363
|
+
label: '#8 (weETH / USDT)',
|
|
1141
1364
|
shortLabel: 'weETH/USDT',
|
|
1142
1365
|
value: FluidArbitrumVersion.FLUID_WEETH_USDT_8_ARB,
|
|
1143
1366
|
url: 'weeth-usdt-8-arb',
|
|
@@ -1155,7 +1378,7 @@ export const FLUID_ETH_ARB_9_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1155
1378
|
type: FluidVaultType.T1,
|
|
1156
1379
|
id: 9,
|
|
1157
1380
|
chainIds: [NetworkNumber.Arb],
|
|
1158
|
-
label: 'ETH / ARB
|
|
1381
|
+
label: '#9 (ETH / ARB)',
|
|
1159
1382
|
shortLabel: 'ETH/ARB',
|
|
1160
1383
|
value: FluidArbitrumVersion.FLUID_ETH_ARB_9_ARB,
|
|
1161
1384
|
url: 'eth-arb-9-arb',
|
|
@@ -1173,7 +1396,7 @@ export const FLUID_ARB_USDC_10_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1173
1396
|
type: FluidVaultType.T1,
|
|
1174
1397
|
id: 10,
|
|
1175
1398
|
chainIds: [NetworkNumber.Arb],
|
|
1176
|
-
label: 'ARB / USDC
|
|
1399
|
+
label: '#10 (ARB / USDC)',
|
|
1177
1400
|
shortLabel: 'ARB/USDC',
|
|
1178
1401
|
value: FluidArbitrumVersion.FLUID_ARB_USDC_10_ARB,
|
|
1179
1402
|
url: 'arb-usdc-10-arb',
|
|
@@ -1191,7 +1414,7 @@ export const FLUID_ARB_USDT_11_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1191
1414
|
type: FluidVaultType.T1,
|
|
1192
1415
|
id: 11,
|
|
1193
1416
|
chainIds: [NetworkNumber.Arb],
|
|
1194
|
-
label: 'ARB / USDT
|
|
1417
|
+
label: '#11 (ARB / USDT)',
|
|
1195
1418
|
shortLabel: 'ARB/USDT',
|
|
1196
1419
|
value: FluidArbitrumVersion.FLUID_ARB_USDT_11_ARB,
|
|
1197
1420
|
url: 'arb-usdt-11-arb',
|
|
@@ -1209,7 +1432,7 @@ export const FLUID_WBTC_USDC_12_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1209
1432
|
type: FluidVaultType.T1,
|
|
1210
1433
|
id: 12,
|
|
1211
1434
|
chainIds: [NetworkNumber.Arb],
|
|
1212
|
-
label: 'WBTC / USDC
|
|
1435
|
+
label: '#12 (WBTC / USDC)',
|
|
1213
1436
|
shortLabel: 'WBTC/USDC',
|
|
1214
1437
|
value: FluidArbitrumVersion.FLUID_WBTC_USDC_12_ARB,
|
|
1215
1438
|
url: 'wbtc_usdc_12_arb',
|
|
@@ -1227,7 +1450,7 @@ export const FLUID_WBTC_USDT_13_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1227
1450
|
type: FluidVaultType.T1,
|
|
1228
1451
|
id: 13,
|
|
1229
1452
|
chainIds: [NetworkNumber.Arb],
|
|
1230
|
-
label: 'WBTC / USDT
|
|
1453
|
+
label: '#13 (WBTC / USDT)',
|
|
1231
1454
|
shortLabel: 'WBTC/USDT',
|
|
1232
1455
|
value: FluidArbitrumVersion.FLUID_WBTC_USDT_13_ARB,
|
|
1233
1456
|
url: 'wbtc_usdc_13_arb',
|
|
@@ -1245,8 +1468,8 @@ export const FLUID_WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId = NetworkNumber.Eth
|
|
|
1245
1468
|
type: FluidVaultType.T4,
|
|
1246
1469
|
id: 16,
|
|
1247
1470
|
chainIds: [NetworkNumber.Arb],
|
|
1248
|
-
label: 'wstETH / ETH
|
|
1249
|
-
shortLabel: 'wstETH/ETH',
|
|
1471
|
+
label: '#16 (wstETH-ETH / wstETH-ETH)',
|
|
1472
|
+
shortLabel: 'wstETH-ETH/wstETH-ETH',
|
|
1250
1473
|
value: FluidArbitrumVersion.FLUID_WSTETH_ETH_WSTETH_ETH_16_ARB,
|
|
1251
1474
|
url: 'wsteth-eth-wsteth-eth-16-arb',
|
|
1252
1475
|
marketAddress: '0xeAEf563015634a9d0EE6CF1357A3b205C35e028D',
|
|
@@ -1265,8 +1488,8 @@ export const FLUID_WEETH_ETH_WSTETH_17_ARB = (networkId = NetworkNumber.Eth) =>
|
|
|
1265
1488
|
type: FluidVaultType.T2,
|
|
1266
1489
|
id: 17,
|
|
1267
1490
|
chainIds: [NetworkNumber.Arb],
|
|
1268
|
-
label: 'weETH /
|
|
1269
|
-
shortLabel: 'weETH/
|
|
1491
|
+
label: '#17 (weETH-ETH / wstETH)',
|
|
1492
|
+
shortLabel: 'weETH-ETH/wstETH',
|
|
1270
1493
|
value: FluidArbitrumVersion.FLUID_WEETH_ETH_WSTETH_17_ARB,
|
|
1271
1494
|
url: 'weeth-eth-wsteth-17-arb',
|
|
1272
1495
|
marketAddress: '0x3996464c0fCCa8183e13ea5E5e74375e2c8744Dd',
|
|
@@ -1284,7 +1507,7 @@ export const FLUID_WBTC_ETH_18_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1284
1507
|
type: FluidVaultType.T1,
|
|
1285
1508
|
id: 18,
|
|
1286
1509
|
chainIds: [NetworkNumber.Arb],
|
|
1287
|
-
label: 'WBTC / ETH
|
|
1510
|
+
label: '#18 (WBTC / ETH)',
|
|
1288
1511
|
shortLabel: 'WBTC/ETH',
|
|
1289
1512
|
value: FluidArbitrumVersion.FLUID_WBTC_ETH_18_ARB,
|
|
1290
1513
|
url: 'wbtc_eth_18_arb',
|
|
@@ -1302,7 +1525,7 @@ export const FLUID_ETH_WBTC_19_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1302
1525
|
type: FluidVaultType.T1,
|
|
1303
1526
|
id: 19,
|
|
1304
1527
|
chainIds: [NetworkNumber.Arb],
|
|
1305
|
-
label: 'ETH / WBTC
|
|
1528
|
+
label: '#19 (ETH / WBTC)',
|
|
1306
1529
|
shortLabel: 'ETH/WBTC',
|
|
1307
1530
|
value: FluidArbitrumVersion.FLUID_ETH_WBTC_19_ARB,
|
|
1308
1531
|
url: 'eth_wbtc_19_arb',
|
|
@@ -1320,7 +1543,7 @@ export const FLUID_WSTETH_WBTC_20_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1320
1543
|
type: FluidVaultType.T1,
|
|
1321
1544
|
id: 20,
|
|
1322
1545
|
chainIds: [NetworkNumber.Arb],
|
|
1323
|
-
label: 'wstETH / WBTC
|
|
1546
|
+
label: '#20 (wstETH / WBTC)',
|
|
1324
1547
|
shortLabel: 'wstETH/WBTC',
|
|
1325
1548
|
value: FluidArbitrumVersion.FLUID_WSTETH_WBTC_20_ARB,
|
|
1326
1549
|
url: 'wsteth_wbtc_20_arb',
|
|
@@ -1338,7 +1561,7 @@ export const FLUID_WEETH_WBTC_21_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1338
1561
|
type: FluidVaultType.T1,
|
|
1339
1562
|
id: 21,
|
|
1340
1563
|
chainIds: [NetworkNumber.Arb],
|
|
1341
|
-
label: 'weETH / WBTC
|
|
1564
|
+
label: '#21 (weETH / WBTC)',
|
|
1342
1565
|
shortLabel: 'weETH/WBTC',
|
|
1343
1566
|
value: FluidArbitrumVersion.FLUID_WEETH_WBTC_21_ARB,
|
|
1344
1567
|
url: 'weeth_wbtc_21_arb',
|
|
@@ -1356,8 +1579,8 @@ export const FLUID_USDC_ETH_USDC_ETH_22_ARB = (networkId = NetworkNumber.Eth) =>
|
|
|
1356
1579
|
type: FluidVaultType.T4,
|
|
1357
1580
|
id: 22,
|
|
1358
1581
|
chainIds: [NetworkNumber.Arb],
|
|
1359
|
-
label: '
|
|
1360
|
-
shortLabel: '
|
|
1582
|
+
label: '#22 (USDC-ETH / USDC-ETH)',
|
|
1583
|
+
shortLabel: 'USDC-ETH/USDC-ETH',
|
|
1361
1584
|
value: FluidArbitrumVersion.FLUID_USDC_ETH_USDC_ETH_22_ARB,
|
|
1362
1585
|
url: 'usdc_eth_usdc_eth_22_arb',
|
|
1363
1586
|
marketAddress: '0x3A0b7c8840D74D39552EF53F586dD8c3d1234C40',
|
|
@@ -1376,7 +1599,7 @@ export const FLUID_ETH_USDC_USDT_23_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1376
1599
|
type: FluidVaultType.T3,
|
|
1377
1600
|
id: 23,
|
|
1378
1601
|
chainIds: [NetworkNumber.Arb],
|
|
1379
|
-
label: 'ETH / USDC-USDT
|
|
1602
|
+
label: '#23 (ETH / USDC-USDT)',
|
|
1380
1603
|
shortLabel: 'ETH/USDC-USDT',
|
|
1381
1604
|
value: FluidArbitrumVersion.FLUID_ETH_USDC_USDT_23_ARB,
|
|
1382
1605
|
url: 'eth_usdc_usdt_23_arb',
|
|
@@ -1393,12 +1616,12 @@ export const FLUID_WSTETH_USDC_USDT_24_ARB = (networkId = NetworkNumber.Eth) =>
|
|
|
1393
1616
|
wstETHBased: true,
|
|
1394
1617
|
ethBased: true,
|
|
1395
1618
|
type: FluidVaultType.T3,
|
|
1396
|
-
id:
|
|
1619
|
+
id: 24,
|
|
1397
1620
|
chainIds: [NetworkNumber.Arb],
|
|
1398
|
-
label: 'wstETH / USDC-USDT
|
|
1621
|
+
label: '#24 (wstETH / USDC-USDT)',
|
|
1399
1622
|
shortLabel: 'wstETH/USDC-USDT',
|
|
1400
1623
|
value: FluidArbitrumVersion.FLUID_WSTETH_USDC_USDT_24_ARB,
|
|
1401
|
-
url: '
|
|
1624
|
+
url: 'wsteth_usdc_usdt_24_arb',
|
|
1402
1625
|
marketAddress: '0x991416539E9DA46db233bCcbaEA38C4f852776D4',
|
|
1403
1626
|
hasSmartCollateral: false,
|
|
1404
1627
|
hasSmartDebt: true,
|
|
@@ -1414,7 +1637,7 @@ export const FLUID_WEETH_USDC_USDT_25_ARB = (networkId = NetworkNumber.Eth) => (
|
|
|
1414
1637
|
type: FluidVaultType.T3,
|
|
1415
1638
|
id: 25,
|
|
1416
1639
|
chainIds: [NetworkNumber.Arb],
|
|
1417
|
-
label: 'weETH / USDC-USDT
|
|
1640
|
+
label: '#25 (weETH / USDC-USDT)',
|
|
1418
1641
|
shortLabel: 'weETH/USDC-USDT',
|
|
1419
1642
|
value: FluidArbitrumVersion.FLUID_WEETH_USDC_USDT_25_ARB,
|
|
1420
1643
|
url: 'weeth_usdc_usdt_25_arb',
|
|
@@ -1433,7 +1656,7 @@ export const FLUID_WBTC_USDC_USDT_26_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1433
1656
|
type: FluidVaultType.T3,
|
|
1434
1657
|
id: 26,
|
|
1435
1658
|
chainIds: [NetworkNumber.Arb],
|
|
1436
|
-
label: 'WBTC / USDC-USDT
|
|
1659
|
+
label: '#26 (WBTC / USDC-USDT)',
|
|
1437
1660
|
shortLabel: 'WBTC/USDC-USDT',
|
|
1438
1661
|
value: FluidArbitrumVersion.FLUID_WBTC_USDC_USDT_26_ARB,
|
|
1439
1662
|
url: 'wbtc_usdc_usdt_26_arb',
|
|
@@ -1444,6 +1667,25 @@ export const FLUID_WBTC_USDC_USDT_26_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
1444
1667
|
debtAsset0: 'USDC',
|
|
1445
1668
|
debtAsset1: 'USDT',
|
|
1446
1669
|
});
|
|
1670
|
+
export const FLUID_SUSDS_USDC_USDT_30_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1671
|
+
stableBased: true,
|
|
1672
|
+
btcBased: false,
|
|
1673
|
+
wstETHBased: false,
|
|
1674
|
+
ethBased: false,
|
|
1675
|
+
type: FluidVaultType.T3,
|
|
1676
|
+
id: 30,
|
|
1677
|
+
chainIds: [NetworkNumber.Arb],
|
|
1678
|
+
label: '#30 (sUSDS / USDC-USDT)',
|
|
1679
|
+
shortLabel: 'sUSDS/USDC-USDT',
|
|
1680
|
+
value: FluidArbitrumVersion.FLUID_SUSDS_USDC_USDT_30_ARB,
|
|
1681
|
+
url: 'susds_usdc_usdt_30_arb',
|
|
1682
|
+
marketAddress: '',
|
|
1683
|
+
hasSmartCollateral: false,
|
|
1684
|
+
hasSmartDebt: true,
|
|
1685
|
+
collateralAsset0: 'sUSDS',
|
|
1686
|
+
debtAsset0: 'USDC',
|
|
1687
|
+
debtAsset1: 'USDT',
|
|
1688
|
+
});
|
|
1447
1689
|
export const FLUID_ETH_USDC_1_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1448
1690
|
stableBased: true,
|
|
1449
1691
|
btcBased: false,
|
|
@@ -1843,6 +2085,18 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1843
2085
|
[FluidMainnetVersion.FLUID_SUSDE_USDT_USDT_92]: FLUID_SUSDE_USDT_USDT_92(networkId),
|
|
1844
2086
|
[FluidMainnetVersion.FLUID_USDE_USDT_USDT_93]: FLUID_USDE_USDT_USDT_93(networkId),
|
|
1845
2087
|
[FluidMainnetVersion.FLUID_LBTC_CBBTC_WBTC_97]: FLUID_LBTC_CBBTC_WBTC_97(networkId),
|
|
2088
|
+
[FluidMainnetVersion.FLUID_SUSDE_USDT_USDC_USDT_98]: FLUID_SUSDE_USDT_USDC_USDT_98(networkId),
|
|
2089
|
+
[FluidMainnetVersion.FLUID_USDE_USDT_USDC_USDT_99]: FLUID_USDE_USDT_USDC_USDT_99(networkId),
|
|
2090
|
+
[FluidMainnetVersion.FLUID_USDC_ETH_100]: FLUID_USDC_ETH_100(networkId),
|
|
2091
|
+
[FluidMainnetVersion.FLUID_USDC_WBTC_101]: FLUID_USDC_WBTC_101(networkId),
|
|
2092
|
+
[FluidMainnetVersion.FLUID_USDC_CBBTC_102]: FLUID_USDC_CBBTC_102(networkId),
|
|
2093
|
+
[FluidMainnetVersion.FLUID_EZETH_WSTETH_103]: FLUID_EZETH_WSTETH_103(networkId),
|
|
2094
|
+
[FluidMainnetVersion.FLUID_EZETH_ETH_WSTETH_104]: FLUID_EZETH_ETH_WSTETH_104(networkId),
|
|
2095
|
+
[FluidMainnetVersion.FLUID_LBTC_USDC_107]: FLUID_LBTC_USDC_107(networkId),
|
|
2096
|
+
[FluidMainnetVersion.FLUID_LBTC_USDT_108]: FLUID_LBTC_USDT_108(networkId),
|
|
2097
|
+
[FluidMainnetVersion.FLUID_LBTC_GHO_109]: FLUID_LBTC_GHO_109(networkId),
|
|
2098
|
+
[FluidMainnetVersion.FLUID_LBTC_CBBTC_CBBTC_114]: FLUID_LBTC_CBBTC_CBBTC_114(networkId),
|
|
2099
|
+
[FluidMainnetVersion.FLUID_WBTC_LBTC_WBTC_115]: FLUID_WBTC_LBTC_WBTC_115(networkId),
|
|
1846
2100
|
// arbitrum
|
|
1847
2101
|
[FluidArbitrumVersion.FLUID_ETH_USDC_1_ARB]: FLUID_ETH_USDC_1_ARB(networkId),
|
|
1848
2102
|
[FluidArbitrumVersion.FLUID_ETH_USDT_2_ARB]: FLUID_ETH_USDT_2_ARB(networkId),
|
|
@@ -1868,6 +2122,7 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1868
2122
|
[FluidArbitrumVersion.FLUID_WSTETH_USDC_USDT_24_ARB]: FLUID_WSTETH_USDC_USDT_24_ARB(networkId),
|
|
1869
2123
|
[FluidArbitrumVersion.FLUID_WEETH_USDC_USDT_25_ARB]: FLUID_WEETH_USDC_USDT_25_ARB(networkId),
|
|
1870
2124
|
[FluidArbitrumVersion.FLUID_WBTC_USDC_USDT_26_ARB]: FLUID_WBTC_USDC_USDT_26_ARB(networkId),
|
|
2125
|
+
[FluidArbitrumVersion.FLUID_SUSDS_USDC_USDT_30_ARB]: FLUID_SUSDS_USDC_USDT_30_ARB(networkId),
|
|
1871
2126
|
// base
|
|
1872
2127
|
[FluidBaseVersions.FLUID_ETH_USDC_1_BASE]: FLUID_ETH_USDC_1_BASE(networkId),
|
|
1873
2128
|
[FluidBaseVersions.FLUID_WSTETH_USDC_2_BASE]: FLUID_WSTETH_USDC_2_BASE(networkId),
|