@defisaver/positions-sdk 0.0.201-fluid-dev → 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 +11 -5
- package/cjs/config/contracts.js +4 -2
- package/cjs/fluid/index.d.ts +1 -0
- package/cjs/fluid/index.js +65 -12
- package/cjs/markets/fluid/index.d.ts +8 -10
- package/cjs/markets/fluid/index.js +466 -77
- package/cjs/markets/index.d.ts +1 -1
- package/cjs/markets/index.js +3 -1
- package/cjs/morphoBlue/index.js +1 -2
- package/cjs/multicall/index.d.ts +1 -0
- package/cjs/multicall/index.js +8 -1
- package/cjs/services/utils.d.ts +1 -0
- package/cjs/services/utils.js +3 -1
- package/cjs/types/contracts/generated/FluidView.d.ts +125 -41
- package/cjs/types/fluid.d.ts +16 -1
- package/cjs/types/fluid.js +3 -0
- package/esm/config/contracts.d.ts +11 -5
- package/esm/config/contracts.js +4 -2
- package/esm/fluid/index.d.ts +1 -0
- package/esm/fluid/index.js +65 -13
- package/esm/markets/fluid/index.d.ts +8 -10
- package/esm/markets/fluid/index.js +460 -71
- package/esm/markets/index.d.ts +1 -1
- package/esm/markets/index.js +1 -1
- package/esm/morphoBlue/index.js +1 -2
- package/esm/multicall/index.d.ts +1 -0
- package/esm/multicall/index.js +6 -0
- package/esm/services/utils.d.ts +1 -0
- package/esm/services/utils.js +1 -0
- package/esm/types/contracts/generated/FluidView.d.ts +125 -41
- package/esm/types/fluid.d.ts +16 -1
- package/esm/types/fluid.js +3 -0
- package/package.json +5 -3
- package/src/config/contracts.js +4 -2
- package/src/fluid/index.ts +69 -12
- package/src/markets/fluid/index.ts +467 -74
- package/src/markets/index.ts +1 -1
- package/src/morphoBlue/index.ts +1 -3
- package/src/multicall/index.ts +10 -1
- package/src/services/utils.ts +3 -1
- package/src/types/contracts/generated/FluidView.ts +159 -79
- package/src/types/fluid.ts +15 -0
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { NetworkNumber } from '../../types/common';
|
|
2
|
-
import { FluidArbitrumVersion, FluidBaseVersions, FluidMainnetVersion, } from '../../types';
|
|
2
|
+
import { FluidArbitrumVersion, FluidBaseVersions, FluidMainnetVersion, FluidVaultType, } from '../../types';
|
|
3
3
|
export const ETH_USDC_1 = (networkId = NetworkNumber.Eth) => ({
|
|
4
|
+
btcBased: false,
|
|
5
|
+
wstETHBased: false,
|
|
6
|
+
stableBased: true,
|
|
7
|
+
ethBased: true,
|
|
4
8
|
chainIds: [NetworkNumber.Eth],
|
|
5
9
|
label: 'ETH / USDC Market 1',
|
|
6
10
|
shortLabel: 'ETH/USDC',
|
|
@@ -12,8 +16,13 @@ export const ETH_USDC_1 = (networkId = NetworkNumber.Eth) => ({
|
|
|
12
16
|
hasSmartDebt: false,
|
|
13
17
|
collateralAsset: 'ETH',
|
|
14
18
|
debtAsset: 'USDC',
|
|
19
|
+
type: FluidVaultType.T1,
|
|
15
20
|
});
|
|
16
21
|
export const ETH_USDT_2 = (networkId = NetworkNumber.Eth) => ({
|
|
22
|
+
btcBased: false,
|
|
23
|
+
wstETHBased: false,
|
|
24
|
+
stableBased: true,
|
|
25
|
+
ethBased: true,
|
|
17
26
|
chainIds: [NetworkNumber.Eth],
|
|
18
27
|
label: 'ETH / USDT Market 2',
|
|
19
28
|
shortLabel: 'ETH/USDT',
|
|
@@ -25,8 +34,13 @@ export const ETH_USDT_2 = (networkId = NetworkNumber.Eth) => ({
|
|
|
25
34
|
hasSmartDebt: false,
|
|
26
35
|
collateralAsset: 'ETH',
|
|
27
36
|
debtAsset: 'USDT',
|
|
37
|
+
type: FluidVaultType.T1,
|
|
28
38
|
});
|
|
29
39
|
export const WSTETH_ETH_3 = (networkId = NetworkNumber.Eth) => ({
|
|
40
|
+
stableBased: false,
|
|
41
|
+
btcBased: false,
|
|
42
|
+
ethBased: true,
|
|
43
|
+
wstETHBased: true,
|
|
30
44
|
chainIds: [NetworkNumber.Eth],
|
|
31
45
|
label: 'wstETH / ETH Market 3',
|
|
32
46
|
shortLabel: 'wstETH/ETH',
|
|
@@ -38,8 +52,13 @@ export const WSTETH_ETH_3 = (networkId = NetworkNumber.Eth) => ({
|
|
|
38
52
|
hasSmartDebt: false,
|
|
39
53
|
collateralAsset: 'wstETH',
|
|
40
54
|
debtAsset: 'ETH',
|
|
55
|
+
type: FluidVaultType.T1,
|
|
41
56
|
});
|
|
42
57
|
export const WSTETH_USDC_4 = (networkId = NetworkNumber.Eth) => ({
|
|
58
|
+
btcBased: false,
|
|
59
|
+
ethBased: true,
|
|
60
|
+
stableBased: true,
|
|
61
|
+
wstETHBased: true,
|
|
43
62
|
chainIds: [NetworkNumber.Eth],
|
|
44
63
|
label: 'wstETH / USDC Market 4',
|
|
45
64
|
shortLabel: 'wstETH/USDC',
|
|
@@ -51,8 +70,13 @@ export const WSTETH_USDC_4 = (networkId = NetworkNumber.Eth) => ({
|
|
|
51
70
|
hasSmartDebt: false,
|
|
52
71
|
collateralAsset: 'wstETH',
|
|
53
72
|
debtAsset: 'USDC',
|
|
73
|
+
type: FluidVaultType.T1,
|
|
54
74
|
});
|
|
55
75
|
export const WSTETH_USDT_5 = (networkId = NetworkNumber.Eth) => ({
|
|
76
|
+
btcBased: false,
|
|
77
|
+
ethBased: true,
|
|
78
|
+
stableBased: true,
|
|
79
|
+
wstETHBased: true,
|
|
56
80
|
chainIds: [NetworkNumber.Eth],
|
|
57
81
|
label: 'wstETH / USDT Market 5',
|
|
58
82
|
shortLabel: 'wstETH/USDT',
|
|
@@ -64,8 +88,13 @@ export const WSTETH_USDT_5 = (networkId = NetworkNumber.Eth) => ({
|
|
|
64
88
|
hasSmartDebt: false,
|
|
65
89
|
collateralAsset: 'wstETH',
|
|
66
90
|
debtAsset: 'USDT',
|
|
91
|
+
type: FluidVaultType.T1,
|
|
67
92
|
});
|
|
68
93
|
export const WEETH_WSTETH_6 = (networkId = NetworkNumber.Eth) => ({
|
|
94
|
+
btcBased: false,
|
|
95
|
+
ethBased: true,
|
|
96
|
+
wstETHBased: true,
|
|
97
|
+
stableBased: false,
|
|
69
98
|
chainIds: [NetworkNumber.Eth],
|
|
70
99
|
label: 'weETH / wstETH Market 6',
|
|
71
100
|
shortLabel: 'weETH/wstETH',
|
|
@@ -77,34 +106,12 @@ export const WEETH_WSTETH_6 = (networkId = NetworkNumber.Eth) => ({
|
|
|
77
106
|
hasSmartDebt: false,
|
|
78
107
|
collateralAsset: 'weETH',
|
|
79
108
|
debtAsset: 'wstETH',
|
|
80
|
-
|
|
81
|
-
export const SUSDE_USDC_7 = (networkId = NetworkNumber.Eth) => ({
|
|
82
|
-
chainIds: [NetworkNumber.Eth],
|
|
83
|
-
label: 'sUSDe / USDC Market 7',
|
|
84
|
-
shortLabel: 'sUSDe/USDC',
|
|
85
|
-
value: FluidMainnetVersion.SUSDE_USDC_7,
|
|
86
|
-
url: 'susde-usdc-7',
|
|
87
|
-
marketAddress: '0x4045720a33193b4Fe66c94DFbc8D37B0b4D9B469',
|
|
88
|
-
id: 7,
|
|
89
|
-
hasSmartCollateral: false,
|
|
90
|
-
hasSmartDebt: false,
|
|
91
|
-
collateralAsset: 'sUSDe',
|
|
92
|
-
debtAsset: 'USDC',
|
|
93
|
-
});
|
|
94
|
-
export const SUSDE_USDT_8 = (networkId = NetworkNumber.Eth) => ({
|
|
95
|
-
chainIds: [NetworkNumber.Eth],
|
|
96
|
-
label: 'sUSDe / USDT Market 8',
|
|
97
|
-
shortLabel: 'sUSDe/USDT',
|
|
98
|
-
value: FluidMainnetVersion.SUSDE_USDT_8,
|
|
99
|
-
url: 'susde-usdt-8',
|
|
100
|
-
marketAddress: '0xBFADEA65591235f38809076e14803Ac84AcF3F97',
|
|
101
|
-
id: 8,
|
|
102
|
-
hasSmartCollateral: false,
|
|
103
|
-
hasSmartDebt: false,
|
|
104
|
-
collateralAsset: 'sUSDe',
|
|
105
|
-
debtAsset: 'USDT',
|
|
109
|
+
type: FluidVaultType.T1,
|
|
106
110
|
});
|
|
107
111
|
export const WEETH_USDC_9 = (networkId = NetworkNumber.Eth) => ({
|
|
112
|
+
btcBased: false,
|
|
113
|
+
ethBased: true,
|
|
114
|
+
stableBased: true,
|
|
108
115
|
chainIds: [NetworkNumber.Eth],
|
|
109
116
|
label: 'weETH / USDC Market 9',
|
|
110
117
|
shortLabel: 'weETH/USDC',
|
|
@@ -116,8 +123,15 @@ export const WEETH_USDC_9 = (networkId = NetworkNumber.Eth) => ({
|
|
|
116
123
|
hasSmartDebt: false,
|
|
117
124
|
collateralAsset: 'weETH',
|
|
118
125
|
debtAsset: 'USDC',
|
|
126
|
+
type: FluidVaultType.T1,
|
|
127
|
+
wstETHBased: false,
|
|
119
128
|
});
|
|
120
129
|
export const WEETH_USDT_10 = (networkId = NetworkNumber.Eth) => ({
|
|
130
|
+
btcBased: false,
|
|
131
|
+
wstETHBased: false,
|
|
132
|
+
ethBased: true,
|
|
133
|
+
stableBased: true,
|
|
134
|
+
type: FluidVaultType.T1,
|
|
121
135
|
chainIds: [NetworkNumber.Eth],
|
|
122
136
|
label: 'weETH / USDT Market 10',
|
|
123
137
|
shortLabel: 'weETH/USDT',
|
|
@@ -131,6 +145,11 @@ export const WEETH_USDT_10 = (networkId = NetworkNumber.Eth) => ({
|
|
|
131
145
|
debtAsset: 'USDT',
|
|
132
146
|
});
|
|
133
147
|
export const ETH_USDC_11 = (networkId = NetworkNumber.Eth) => ({
|
|
148
|
+
btcBased: false,
|
|
149
|
+
wstETHBased: false,
|
|
150
|
+
ethBased: true,
|
|
151
|
+
stableBased: true,
|
|
152
|
+
type: FluidVaultType.T1,
|
|
134
153
|
chainIds: [NetworkNumber.Eth],
|
|
135
154
|
label: 'ETH / USDC Market 11',
|
|
136
155
|
shortLabel: 'ETH/USDC',
|
|
@@ -144,6 +163,11 @@ export const ETH_USDC_11 = (networkId = NetworkNumber.Eth) => ({
|
|
|
144
163
|
debtAsset: 'USDC',
|
|
145
164
|
});
|
|
146
165
|
export const ETH_USDT_12 = (networkId = NetworkNumber.Eth) => ({
|
|
166
|
+
btcBased: false,
|
|
167
|
+
wstETHBased: false,
|
|
168
|
+
ethBased: true,
|
|
169
|
+
stableBased: true,
|
|
170
|
+
type: FluidVaultType.T1,
|
|
147
171
|
chainIds: [NetworkNumber.Eth],
|
|
148
172
|
label: 'ETH / USDT Market 12',
|
|
149
173
|
shortLabel: 'ETH/USDT',
|
|
@@ -157,6 +181,11 @@ export const ETH_USDT_12 = (networkId = NetworkNumber.Eth) => ({
|
|
|
157
181
|
debtAsset: 'USDT',
|
|
158
182
|
});
|
|
159
183
|
export const WSTETH_ETH_13 = (networkId = NetworkNumber.Eth) => ({
|
|
184
|
+
stableBased: false,
|
|
185
|
+
btcBased: false,
|
|
186
|
+
wstETHBased: true,
|
|
187
|
+
ethBased: true,
|
|
188
|
+
type: FluidVaultType.T1,
|
|
160
189
|
chainIds: [NetworkNumber.Eth],
|
|
161
190
|
label: 'wstETH / ETH Market 13',
|
|
162
191
|
shortLabel: 'wstETH/ETH',
|
|
@@ -170,6 +199,11 @@ export const WSTETH_ETH_13 = (networkId = NetworkNumber.Eth) => ({
|
|
|
170
199
|
debtAsset: 'ETH',
|
|
171
200
|
});
|
|
172
201
|
export const WSTETH_USDC_14 = (networkId = NetworkNumber.Eth) => ({
|
|
202
|
+
stableBased: true,
|
|
203
|
+
btcBased: false,
|
|
204
|
+
wstETHBased: true,
|
|
205
|
+
ethBased: true,
|
|
206
|
+
type: FluidVaultType.T1,
|
|
173
207
|
chainIds: [NetworkNumber.Eth],
|
|
174
208
|
label: 'wstETH / USDC Market 14',
|
|
175
209
|
shortLabel: 'wstETH/USDC',
|
|
@@ -183,6 +217,11 @@ export const WSTETH_USDC_14 = (networkId = NetworkNumber.Eth) => ({
|
|
|
183
217
|
debtAsset: 'USDC',
|
|
184
218
|
});
|
|
185
219
|
export const WSTETH_USDT_15 = (networkId = NetworkNumber.Eth) => ({
|
|
220
|
+
stableBased: true,
|
|
221
|
+
btcBased: false,
|
|
222
|
+
wstETHBased: true,
|
|
223
|
+
ethBased: true,
|
|
224
|
+
type: FluidVaultType.T1,
|
|
186
225
|
chainIds: [NetworkNumber.Eth],
|
|
187
226
|
label: 'wstETH / USDT Market 15',
|
|
188
227
|
shortLabel: 'wstETH/USDT',
|
|
@@ -196,6 +235,11 @@ export const WSTETH_USDT_15 = (networkId = NetworkNumber.Eth) => ({
|
|
|
196
235
|
debtAsset: 'USDT',
|
|
197
236
|
});
|
|
198
237
|
export const WEETH_WSTETH_16 = (networkId = NetworkNumber.Eth) => ({
|
|
238
|
+
stableBased: false,
|
|
239
|
+
btcBased: false,
|
|
240
|
+
wstETHBased: true,
|
|
241
|
+
ethBased: true,
|
|
242
|
+
type: FluidVaultType.T1,
|
|
199
243
|
chainIds: [NetworkNumber.Eth],
|
|
200
244
|
label: 'weETH / wstETH Market 16',
|
|
201
245
|
shortLabel: 'weETH/wstETH',
|
|
@@ -209,6 +253,11 @@ export const WEETH_WSTETH_16 = (networkId = NetworkNumber.Eth) => ({
|
|
|
209
253
|
debtAsset: 'wstETH',
|
|
210
254
|
});
|
|
211
255
|
export const SUSDE_USDC_17 = (networkId = NetworkNumber.Eth) => ({
|
|
256
|
+
stableBased: true,
|
|
257
|
+
btcBased: false,
|
|
258
|
+
wstETHBased: false,
|
|
259
|
+
ethBased: false,
|
|
260
|
+
type: FluidVaultType.T1,
|
|
212
261
|
chainIds: [NetworkNumber.Eth],
|
|
213
262
|
label: 'sUSDe / USDC Market 17',
|
|
214
263
|
shortLabel: 'sUSDe/USDC',
|
|
@@ -222,6 +271,11 @@ export const SUSDE_USDC_17 = (networkId = NetworkNumber.Eth) => ({
|
|
|
222
271
|
debtAsset: 'USDC',
|
|
223
272
|
});
|
|
224
273
|
export const SUSDE_USDT_18 = (networkId = NetworkNumber.Eth) => ({
|
|
274
|
+
stableBased: true,
|
|
275
|
+
btcBased: false,
|
|
276
|
+
wstETHBased: false,
|
|
277
|
+
ethBased: false,
|
|
278
|
+
type: FluidVaultType.T1,
|
|
225
279
|
chainIds: [NetworkNumber.Eth],
|
|
226
280
|
label: 'sUSDe / USDT Market 18',
|
|
227
281
|
shortLabel: 'sUSDe/USDT',
|
|
@@ -235,6 +289,11 @@ export const SUSDE_USDT_18 = (networkId = NetworkNumber.Eth) => ({
|
|
|
235
289
|
debtAsset: 'USDT',
|
|
236
290
|
});
|
|
237
291
|
export const WEETH_USDC_19 = (networkId = NetworkNumber.Eth) => ({
|
|
292
|
+
stableBased: true,
|
|
293
|
+
btcBased: false,
|
|
294
|
+
wstETHBased: false,
|
|
295
|
+
ethBased: true,
|
|
296
|
+
type: FluidVaultType.T1,
|
|
238
297
|
chainIds: [NetworkNumber.Eth],
|
|
239
298
|
label: 'weETH / USDC Market 19',
|
|
240
299
|
shortLabel: 'weETH/USDC',
|
|
@@ -248,6 +307,11 @@ export const WEETH_USDC_19 = (networkId = NetworkNumber.Eth) => ({
|
|
|
248
307
|
debtAsset: 'USDC',
|
|
249
308
|
});
|
|
250
309
|
export const WEETH_USDT_20 = (networkId = NetworkNumber.Eth) => ({
|
|
310
|
+
stableBased: true,
|
|
311
|
+
btcBased: false,
|
|
312
|
+
wstETHBased: false,
|
|
313
|
+
ethBased: true,
|
|
314
|
+
type: FluidVaultType.T1,
|
|
251
315
|
chainIds: [NetworkNumber.Eth],
|
|
252
316
|
label: 'weETH / USDT Market 20',
|
|
253
317
|
shortLabel: 'weETH/USDT',
|
|
@@ -261,6 +325,11 @@ export const WEETH_USDT_20 = (networkId = NetworkNumber.Eth) => ({
|
|
|
261
325
|
debtAsset: 'USDT',
|
|
262
326
|
});
|
|
263
327
|
export const WBTC_USDC_21 = (networkId = NetworkNumber.Eth) => ({
|
|
328
|
+
stableBased: true,
|
|
329
|
+
btcBased: true,
|
|
330
|
+
wstETHBased: false,
|
|
331
|
+
ethBased: false,
|
|
332
|
+
type: FluidVaultType.T1,
|
|
264
333
|
chainIds: [NetworkNumber.Eth],
|
|
265
334
|
label: 'WBTC / USDC Market 21',
|
|
266
335
|
shortLabel: 'WBTC/USDC',
|
|
@@ -274,6 +343,11 @@ export const WBTC_USDC_21 = (networkId = NetworkNumber.Eth) => ({
|
|
|
274
343
|
debtAsset: 'USDC',
|
|
275
344
|
});
|
|
276
345
|
export const WBTC_USDT_22 = (networkId = NetworkNumber.Eth) => ({
|
|
346
|
+
stableBased: true,
|
|
347
|
+
btcBased: true,
|
|
348
|
+
wstETHBased: false,
|
|
349
|
+
ethBased: false,
|
|
350
|
+
type: FluidVaultType.T1,
|
|
277
351
|
chainIds: [NetworkNumber.Eth],
|
|
278
352
|
label: 'WBTC / USDT Market 22',
|
|
279
353
|
shortLabel: 'WBTC/USDT',
|
|
@@ -287,6 +361,11 @@ export const WBTC_USDT_22 = (networkId = NetworkNumber.Eth) => ({
|
|
|
287
361
|
debtAsset: 'USDT',
|
|
288
362
|
});
|
|
289
363
|
export const WBTC_ETH_23 = (networkId = NetworkNumber.Eth) => ({
|
|
364
|
+
stableBased: false,
|
|
365
|
+
btcBased: true,
|
|
366
|
+
wstETHBased: false,
|
|
367
|
+
ethBased: true,
|
|
368
|
+
type: FluidVaultType.T1,
|
|
290
369
|
chainIds: [NetworkNumber.Eth],
|
|
291
370
|
label: 'WBTC / ETH Market 23',
|
|
292
371
|
shortLabel: 'WBTC/ETH',
|
|
@@ -300,6 +379,11 @@ export const WBTC_ETH_23 = (networkId = NetworkNumber.Eth) => ({
|
|
|
300
379
|
debtAsset: 'ETH',
|
|
301
380
|
});
|
|
302
381
|
export const ETH_WBTC_24 = (networkId = NetworkNumber.Eth) => ({
|
|
382
|
+
stableBased: false,
|
|
383
|
+
btcBased: true,
|
|
384
|
+
wstETHBased: false,
|
|
385
|
+
ethBased: true,
|
|
386
|
+
type: FluidVaultType.T1,
|
|
303
387
|
chainIds: [NetworkNumber.Eth],
|
|
304
388
|
label: 'ETH / WBTC Market 24',
|
|
305
389
|
shortLabel: 'ETH/WBTC',
|
|
@@ -313,6 +397,11 @@ export const ETH_WBTC_24 = (networkId = NetworkNumber.Eth) => ({
|
|
|
313
397
|
debtAsset: 'WBTC',
|
|
314
398
|
});
|
|
315
399
|
export const WSTETH_WBTC_25 = (networkId = NetworkNumber.Eth) => ({
|
|
400
|
+
stableBased: false,
|
|
401
|
+
btcBased: true,
|
|
402
|
+
wstETHBased: true,
|
|
403
|
+
ethBased: true,
|
|
404
|
+
type: FluidVaultType.T1,
|
|
316
405
|
chainIds: [NetworkNumber.Eth],
|
|
317
406
|
label: 'wstETH / WBTC Market 25',
|
|
318
407
|
shortLabel: 'wstETH/WBTC',
|
|
@@ -326,6 +415,11 @@ export const WSTETH_WBTC_25 = (networkId = NetworkNumber.Eth) => ({
|
|
|
326
415
|
debtAsset: 'WBTC',
|
|
327
416
|
});
|
|
328
417
|
export const WEETH_WBTC_26 = (networkId = NetworkNumber.Eth) => ({
|
|
418
|
+
stableBased: false,
|
|
419
|
+
btcBased: true,
|
|
420
|
+
wstETHBased: false,
|
|
421
|
+
ethBased: true,
|
|
422
|
+
type: FluidVaultType.T1,
|
|
329
423
|
chainIds: [NetworkNumber.Eth],
|
|
330
424
|
label: 'weETH / WBTC Market 26',
|
|
331
425
|
shortLabel: 'weETH/WBTC',
|
|
@@ -339,6 +433,11 @@ export const WEETH_WBTC_26 = (networkId = NetworkNumber.Eth) => ({
|
|
|
339
433
|
debtAsset: 'WBTC',
|
|
340
434
|
});
|
|
341
435
|
export const WEETHS_WSTETH_27 = (networkId = NetworkNumber.Eth) => ({
|
|
436
|
+
stableBased: false,
|
|
437
|
+
btcBased: false,
|
|
438
|
+
wstETHBased: true,
|
|
439
|
+
ethBased: true,
|
|
440
|
+
type: FluidVaultType.T1,
|
|
342
441
|
chainIds: [NetworkNumber.Eth],
|
|
343
442
|
label: 'weETHs / wstETH Market 27',
|
|
344
443
|
shortLabel: 'weETHs/wstETH',
|
|
@@ -352,6 +451,11 @@ export const WEETHS_WSTETH_27 = (networkId = NetworkNumber.Eth) => ({
|
|
|
352
451
|
debtAsset: 'wstETH',
|
|
353
452
|
});
|
|
354
453
|
export const CBBTC_ETH_28 = (networkId = NetworkNumber.Eth) => ({
|
|
454
|
+
stableBased: false,
|
|
455
|
+
btcBased: true,
|
|
456
|
+
wstETHBased: false,
|
|
457
|
+
ethBased: true,
|
|
458
|
+
type: FluidVaultType.T1,
|
|
355
459
|
chainIds: [NetworkNumber.Eth],
|
|
356
460
|
label: 'cbBTC / ETH Market 28',
|
|
357
461
|
shortLabel: 'cbBTC/ETH',
|
|
@@ -365,6 +469,11 @@ export const CBBTC_ETH_28 = (networkId = NetworkNumber.Eth) => ({
|
|
|
365
469
|
debtAsset: 'ETH',
|
|
366
470
|
});
|
|
367
471
|
export const CBBTC_USDC_29 = (networkId = NetworkNumber.Eth) => ({
|
|
472
|
+
stableBased: true,
|
|
473
|
+
btcBased: true,
|
|
474
|
+
wstETHBased: false,
|
|
475
|
+
ethBased: false,
|
|
476
|
+
type: FluidVaultType.T1,
|
|
368
477
|
chainIds: [NetworkNumber.Eth],
|
|
369
478
|
label: 'cbBTC / USDC Market 29',
|
|
370
479
|
shortLabel: 'cbBTC/USDC',
|
|
@@ -378,6 +487,11 @@ export const CBBTC_USDC_29 = (networkId = NetworkNumber.Eth) => ({
|
|
|
378
487
|
debtAsset: 'USDC',
|
|
379
488
|
});
|
|
380
489
|
export const CBBTC_USDT_30 = (networkId = NetworkNumber.Eth) => ({
|
|
490
|
+
stableBased: true,
|
|
491
|
+
btcBased: true,
|
|
492
|
+
wstETHBased: false,
|
|
493
|
+
ethBased: false,
|
|
494
|
+
type: FluidVaultType.T1,
|
|
381
495
|
chainIds: [NetworkNumber.Eth],
|
|
382
496
|
label: 'cbBTC / USDT Market 30',
|
|
383
497
|
shortLabel: 'cbBTC/USDT',
|
|
@@ -391,6 +505,11 @@ export const CBBTC_USDT_30 = (networkId = NetworkNumber.Eth) => ({
|
|
|
391
505
|
debtAsset: 'USDT',
|
|
392
506
|
});
|
|
393
507
|
export const ETH_CBBTC_31 = (networkId = NetworkNumber.Eth) => ({
|
|
508
|
+
stableBased: false,
|
|
509
|
+
btcBased: true,
|
|
510
|
+
wstETHBased: false,
|
|
511
|
+
ethBased: true,
|
|
512
|
+
type: FluidVaultType.T1,
|
|
394
513
|
chainIds: [NetworkNumber.Eth],
|
|
395
514
|
label: 'ETH / cbBTC Market 31',
|
|
396
515
|
shortLabel: 'ETH/cbBTC',
|
|
@@ -404,6 +523,11 @@ export const ETH_CBBTC_31 = (networkId = NetworkNumber.Eth) => ({
|
|
|
404
523
|
debtAsset: 'cbBTC',
|
|
405
524
|
});
|
|
406
525
|
export const WEETH_CBBTC_32 = (networkId = NetworkNumber.Eth) => ({
|
|
526
|
+
stableBased: false,
|
|
527
|
+
btcBased: true,
|
|
528
|
+
wstETHBased: false,
|
|
529
|
+
ethBased: true,
|
|
530
|
+
type: FluidVaultType.T1,
|
|
407
531
|
chainIds: [NetworkNumber.Eth],
|
|
408
532
|
label: 'weETH / cbBTC Market 32',
|
|
409
533
|
shortLabel: 'weETH/cbBTC',
|
|
@@ -416,20 +540,12 @@ export const WEETH_CBBTC_32 = (networkId = NetworkNumber.Eth) => ({
|
|
|
416
540
|
collateralAsset: 'weETH',
|
|
417
541
|
debtAsset: 'cbBTC',
|
|
418
542
|
});
|
|
419
|
-
export const WSTETH_CBBTC_33 = (networkId = NetworkNumber.Eth) => ({
|
|
420
|
-
chainIds: [NetworkNumber.Eth],
|
|
421
|
-
label: 'wstETH / cbBTC Market 33',
|
|
422
|
-
shortLabel: 'wstETH/cbBTC',
|
|
423
|
-
value: FluidMainnetVersion.WSTETH_CBBTC_33,
|
|
424
|
-
url: 'wsteth-cbbtc-33',
|
|
425
|
-
id: 33,
|
|
426
|
-
marketAddress: '0x6E0cDB09eb33cD3894C905E0DFF9289b95a86FFF',
|
|
427
|
-
hasSmartCollateral: false,
|
|
428
|
-
hasSmartDebt: false,
|
|
429
|
-
collateralAsset: 'wstETH',
|
|
430
|
-
debtAsset: 'cbBTC',
|
|
431
|
-
});
|
|
432
543
|
export const WSTETH_ETH_WSTETH_ETH_44 = (networkId = NetworkNumber.Eth) => ({
|
|
544
|
+
stableBased: false,
|
|
545
|
+
btcBased: false,
|
|
546
|
+
wstETHBased: true,
|
|
547
|
+
ethBased: true,
|
|
548
|
+
type: FluidVaultType.T4,
|
|
433
549
|
chainIds: [NetworkNumber.Eth],
|
|
434
550
|
label: 'wstETH / ETH Market 44',
|
|
435
551
|
shortLabel: 'wstETH/ETH',
|
|
@@ -443,6 +559,11 @@ export const WSTETH_ETH_WSTETH_ETH_44 = (networkId = NetworkNumber.Eth) => ({
|
|
|
443
559
|
debtAsset: 'ETH',
|
|
444
560
|
});
|
|
445
561
|
export const ETH_USDC_USDT_45 = (networkId = NetworkNumber.Eth) => ({
|
|
562
|
+
stableBased: true,
|
|
563
|
+
btcBased: false,
|
|
564
|
+
wstETHBased: false,
|
|
565
|
+
ethBased: true,
|
|
566
|
+
type: FluidVaultType.T3,
|
|
446
567
|
chainIds: [NetworkNumber.Eth],
|
|
447
568
|
label: 'ETH / USDC Market 45',
|
|
448
569
|
shortLabel: 'ETH/USDC',
|
|
@@ -456,6 +577,11 @@ export const ETH_USDC_USDT_45 = (networkId = NetworkNumber.Eth) => ({
|
|
|
456
577
|
debtAsset: 'USDC',
|
|
457
578
|
});
|
|
458
579
|
export const WSTETH_USDC_USDT_46 = (networkId = NetworkNumber.Eth) => ({
|
|
580
|
+
stableBased: true,
|
|
581
|
+
btcBased: false,
|
|
582
|
+
wstETHBased: true,
|
|
583
|
+
ethBased: true,
|
|
584
|
+
type: FluidVaultType.T3,
|
|
459
585
|
chainIds: [NetworkNumber.Eth],
|
|
460
586
|
label: 'wstETH / USDC Market 46',
|
|
461
587
|
shortLabel: 'wstETH/USDC',
|
|
@@ -469,6 +595,11 @@ export const WSTETH_USDC_USDT_46 = (networkId = NetworkNumber.Eth) => ({
|
|
|
469
595
|
debtAsset: 'USDC',
|
|
470
596
|
});
|
|
471
597
|
export const WEETH_USDC_USDT_47 = (networkId = NetworkNumber.Eth) => ({
|
|
598
|
+
stableBased: true,
|
|
599
|
+
btcBased: false,
|
|
600
|
+
wstETHBased: false,
|
|
601
|
+
ethBased: true,
|
|
602
|
+
type: FluidVaultType.T3,
|
|
472
603
|
chainIds: [NetworkNumber.Eth],
|
|
473
604
|
label: 'weETH / USDC Market 47',
|
|
474
605
|
shortLabel: 'weETH/USDC',
|
|
@@ -482,6 +613,11 @@ export const WEETH_USDC_USDT_47 = (networkId = NetworkNumber.Eth) => ({
|
|
|
482
613
|
debtAsset: 'USDC',
|
|
483
614
|
});
|
|
484
615
|
export const WBTC_USDC_USDT_48 = (networkId = NetworkNumber.Eth) => ({
|
|
616
|
+
stableBased: true,
|
|
617
|
+
btcBased: true,
|
|
618
|
+
wstETHBased: false,
|
|
619
|
+
ethBased: false,
|
|
620
|
+
type: FluidVaultType.T3,
|
|
485
621
|
chainIds: [NetworkNumber.Eth],
|
|
486
622
|
label: 'WBTC / USDC Market 48',
|
|
487
623
|
shortLabel: 'WBTC/USDC',
|
|
@@ -495,6 +631,11 @@ export const WBTC_USDC_USDT_48 = (networkId = NetworkNumber.Eth) => ({
|
|
|
495
631
|
debtAsset: 'USDC',
|
|
496
632
|
});
|
|
497
633
|
export const CBBTC_USDC_USDT_49 = (networkId = NetworkNumber.Eth) => ({
|
|
634
|
+
stableBased: true,
|
|
635
|
+
btcBased: true,
|
|
636
|
+
wstETHBased: false,
|
|
637
|
+
ethBased: false,
|
|
638
|
+
type: FluidVaultType.T3,
|
|
498
639
|
chainIds: [NetworkNumber.Eth],
|
|
499
640
|
label: 'cbBTC / USDC Market 49',
|
|
500
641
|
shortLabel: 'cbBTC/USDC',
|
|
@@ -508,6 +649,11 @@ export const CBBTC_USDC_USDT_49 = (networkId = NetworkNumber.Eth) => ({
|
|
|
508
649
|
debtAsset: 'USDC',
|
|
509
650
|
});
|
|
510
651
|
export const SUSDE_USDC_USDT_50 = (networkId = NetworkNumber.Eth) => ({
|
|
652
|
+
stableBased: true,
|
|
653
|
+
btcBased: false,
|
|
654
|
+
wstETHBased: false,
|
|
655
|
+
ethBased: false,
|
|
656
|
+
type: FluidVaultType.T3,
|
|
511
657
|
chainIds: [NetworkNumber.Eth],
|
|
512
658
|
label: 'sUSDe / USDC Market 50',
|
|
513
659
|
shortLabel: 'sUSDe/USDC',
|
|
@@ -521,6 +667,11 @@ export const SUSDE_USDC_USDT_50 = (networkId = NetworkNumber.Eth) => ({
|
|
|
521
667
|
debtAsset: 'USDC',
|
|
522
668
|
});
|
|
523
669
|
export const WBTC_CBBTC_WBTC_CBBTC_51 = (networkId = NetworkNumber.Eth) => ({
|
|
670
|
+
stableBased: false,
|
|
671
|
+
btcBased: true,
|
|
672
|
+
wstETHBased: false,
|
|
673
|
+
ethBased: false,
|
|
674
|
+
type: FluidVaultType.T4,
|
|
524
675
|
chainIds: [NetworkNumber.Eth],
|
|
525
676
|
label: 'WBTC / cbBTC Market 51',
|
|
526
677
|
shortLabel: 'WBTC/cbBTC',
|
|
@@ -534,6 +685,11 @@ export const WBTC_CBBTC_WBTC_CBBTC_51 = (networkId = NetworkNumber.Eth) => ({
|
|
|
534
685
|
debtAsset: 'cbBTC',
|
|
535
686
|
});
|
|
536
687
|
export const WBTC_CBBTC_USDC_52 = (networkId = NetworkNumber.Eth) => ({
|
|
688
|
+
stableBased: true,
|
|
689
|
+
btcBased: true,
|
|
690
|
+
wstETHBased: false,
|
|
691
|
+
ethBased: false,
|
|
692
|
+
type: FluidVaultType.T2,
|
|
537
693
|
chainIds: [NetworkNumber.Eth],
|
|
538
694
|
label: 'WBTC / cbBTC Market 52',
|
|
539
695
|
shortLabel: 'WBTC/cbBTC',
|
|
@@ -547,6 +703,11 @@ export const WBTC_CBBTC_USDC_52 = (networkId = NetworkNumber.Eth) => ({
|
|
|
547
703
|
debtAsset: 'cbBTC',
|
|
548
704
|
});
|
|
549
705
|
export const WBTC_CBBTC_USDT_53 = (networkId = NetworkNumber.Eth) => ({
|
|
706
|
+
stableBased: true,
|
|
707
|
+
btcBased: true,
|
|
708
|
+
wstETHBased: false,
|
|
709
|
+
ethBased: false,
|
|
710
|
+
type: FluidVaultType.T2,
|
|
550
711
|
id: 53,
|
|
551
712
|
chainIds: [NetworkNumber.Eth],
|
|
552
713
|
label: 'WBTC / cbBTC Market 53',
|
|
@@ -560,6 +721,11 @@ export const WBTC_CBBTC_USDT_53 = (networkId = NetworkNumber.Eth) => ({
|
|
|
560
721
|
debtAsset: 'cbBTC',
|
|
561
722
|
});
|
|
562
723
|
export const ETH_GHO_54 = (networkId = NetworkNumber.Eth) => ({
|
|
724
|
+
stableBased: true,
|
|
725
|
+
btcBased: false,
|
|
726
|
+
wstETHBased: false,
|
|
727
|
+
ethBased: true,
|
|
728
|
+
type: FluidVaultType.T1,
|
|
563
729
|
id: 54,
|
|
564
730
|
chainIds: [NetworkNumber.Eth],
|
|
565
731
|
label: 'ETH / GHO Market 54',
|
|
@@ -573,6 +739,11 @@ export const ETH_GHO_54 = (networkId = NetworkNumber.Eth) => ({
|
|
|
573
739
|
debtAsset: 'GHO',
|
|
574
740
|
});
|
|
575
741
|
export const WSTETH_GHO_55 = (networkId = NetworkNumber.Eth) => ({
|
|
742
|
+
stableBased: true,
|
|
743
|
+
btcBased: false,
|
|
744
|
+
wstETHBased: true,
|
|
745
|
+
ethBased: true,
|
|
746
|
+
type: FluidVaultType.T1,
|
|
576
747
|
id: 55,
|
|
577
748
|
chainIds: [NetworkNumber.Eth],
|
|
578
749
|
label: 'wstETH / GHO Market 55',
|
|
@@ -586,6 +757,11 @@ export const WSTETH_GHO_55 = (networkId = NetworkNumber.Eth) => ({
|
|
|
586
757
|
debtAsset: 'GHO',
|
|
587
758
|
});
|
|
588
759
|
export const SUSDE_GHO_56 = (networkId = NetworkNumber.Eth) => ({
|
|
760
|
+
stableBased: true,
|
|
761
|
+
btcBased: false,
|
|
762
|
+
wstETHBased: false,
|
|
763
|
+
ethBased: false,
|
|
764
|
+
type: FluidVaultType.T1,
|
|
589
765
|
id: 56,
|
|
590
766
|
chainIds: [NetworkNumber.Eth],
|
|
591
767
|
label: 'sUSDe / GHO Market 56',
|
|
@@ -599,6 +775,11 @@ export const SUSDE_GHO_56 = (networkId = NetworkNumber.Eth) => ({
|
|
|
599
775
|
debtAsset: 'GHO',
|
|
600
776
|
});
|
|
601
777
|
export const WEETH_GHO_57 = (networkId = NetworkNumber.Eth) => ({
|
|
778
|
+
stableBased: true,
|
|
779
|
+
btcBased: false,
|
|
780
|
+
wstETHBased: false,
|
|
781
|
+
ethBased: true,
|
|
782
|
+
type: FluidVaultType.T1,
|
|
602
783
|
id: 57,
|
|
603
784
|
chainIds: [NetworkNumber.Eth],
|
|
604
785
|
label: 'weETH / GHO Market 57',
|
|
@@ -612,6 +793,11 @@ export const WEETH_GHO_57 = (networkId = NetworkNumber.Eth) => ({
|
|
|
612
793
|
debtAsset: 'GHO',
|
|
613
794
|
});
|
|
614
795
|
export const SUSDS_GHO_58 = (networkId = NetworkNumber.Eth) => ({
|
|
796
|
+
stableBased: true,
|
|
797
|
+
btcBased: false,
|
|
798
|
+
wstETHBased: false,
|
|
799
|
+
ethBased: false,
|
|
800
|
+
type: FluidVaultType.T1,
|
|
615
801
|
id: 58,
|
|
616
802
|
chainIds: [NetworkNumber.Eth],
|
|
617
803
|
label: 'SUSDS / GHO Market 58',
|
|
@@ -624,33 +810,12 @@ export const SUSDS_GHO_58 = (networkId = NetworkNumber.Eth) => ({
|
|
|
624
810
|
collateralAsset: 'SUSDS',
|
|
625
811
|
debtAsset: 'GHO',
|
|
626
812
|
});
|
|
627
|
-
export const WBTC_GHO_59 = (networkId = NetworkNumber.Eth) => ({
|
|
628
|
-
id: 59,
|
|
629
|
-
chainIds: [NetworkNumber.Eth],
|
|
630
|
-
label: 'WBTC / GHO Market 59',
|
|
631
|
-
shortLabel: 'WBTC/GHO',
|
|
632
|
-
value: FluidMainnetVersion.WBTC_GHO_59,
|
|
633
|
-
url: 'wbtc-gho-59',
|
|
634
|
-
marketAddress: '',
|
|
635
|
-
hasSmartCollateral: false,
|
|
636
|
-
hasSmartDebt: false,
|
|
637
|
-
collateralAsset: 'WBTC',
|
|
638
|
-
debtAsset: 'GHO',
|
|
639
|
-
});
|
|
640
|
-
export const CBBTC_GHO_60 = (networkId = NetworkNumber.Eth) => ({
|
|
641
|
-
id: 60,
|
|
642
|
-
chainIds: [NetworkNumber.Eth],
|
|
643
|
-
label: 'cbBTC / GHO Market 60',
|
|
644
|
-
shortLabel: 'cbBTC/GHO',
|
|
645
|
-
value: FluidMainnetVersion.CBBTC_GHO_60,
|
|
646
|
-
url: 'cbbtc-gho-60',
|
|
647
|
-
marketAddress: '',
|
|
648
|
-
hasSmartCollateral: false,
|
|
649
|
-
hasSmartDebt: false,
|
|
650
|
-
collateralAsset: 'cbBTC',
|
|
651
|
-
debtAsset: 'GHO',
|
|
652
|
-
});
|
|
653
813
|
export const GHO_USDC_GHO_USDC_61 = (networkId = NetworkNumber.Eth) => ({
|
|
814
|
+
stableBased: true,
|
|
815
|
+
btcBased: false,
|
|
816
|
+
wstETHBased: false,
|
|
817
|
+
ethBased: false,
|
|
818
|
+
type: FluidVaultType.T4,
|
|
654
819
|
id: 61,
|
|
655
820
|
chainIds: [NetworkNumber.Eth],
|
|
656
821
|
label: 'GHO / USDC Market 61',
|
|
@@ -664,6 +829,11 @@ export const GHO_USDC_GHO_USDC_61 = (networkId = NetworkNumber.Eth) => ({
|
|
|
664
829
|
debtAsset: 'USDC',
|
|
665
830
|
});
|
|
666
831
|
export const WEETH_ETH_WSTETH_74 = (networkId = NetworkNumber.Eth) => ({
|
|
832
|
+
stableBased: false,
|
|
833
|
+
btcBased: false,
|
|
834
|
+
wstETHBased: true,
|
|
835
|
+
ethBased: true,
|
|
836
|
+
type: FluidVaultType.T2,
|
|
667
837
|
id: 74,
|
|
668
838
|
chainIds: [NetworkNumber.Eth],
|
|
669
839
|
label: 'weETH / ETH Market 74',
|
|
@@ -677,6 +847,11 @@ export const WEETH_ETH_WSTETH_74 = (networkId = NetworkNumber.Eth) => ({
|
|
|
677
847
|
debtAsset: 'ETH',
|
|
678
848
|
});
|
|
679
849
|
export const USDC_ETH_USDC_ETH_77 = (networkId = NetworkNumber.Eth) => ({
|
|
850
|
+
stableBased: true,
|
|
851
|
+
btcBased: false,
|
|
852
|
+
wstETHBased: false,
|
|
853
|
+
ethBased: true,
|
|
854
|
+
type: FluidVaultType.T4,
|
|
680
855
|
id: 77,
|
|
681
856
|
chainIds: [NetworkNumber.Eth],
|
|
682
857
|
label: 'USDC / ETH Market 77',
|
|
@@ -690,6 +865,11 @@ export const USDC_ETH_USDC_ETH_77 = (networkId = NetworkNumber.Eth) => ({
|
|
|
690
865
|
debtAsset: 'ETH',
|
|
691
866
|
});
|
|
692
867
|
export const RSETH_ETH_WSTETH_78 = (networkId = NetworkNumber.Eth) => ({
|
|
868
|
+
stableBased: false,
|
|
869
|
+
btcBased: false,
|
|
870
|
+
wstETHBased: true,
|
|
871
|
+
ethBased: true,
|
|
872
|
+
type: FluidVaultType.T2,
|
|
693
873
|
id: 78,
|
|
694
874
|
chainIds: [NetworkNumber.Eth],
|
|
695
875
|
label: 'RSETH / ETH Market 78',
|
|
@@ -703,6 +883,11 @@ export const RSETH_ETH_WSTETH_78 = (networkId = NetworkNumber.Eth) => ({
|
|
|
703
883
|
debtAsset: 'ETH',
|
|
704
884
|
});
|
|
705
885
|
export const RSETH_WSTETH_79 = (networkId = NetworkNumber.Eth) => ({
|
|
886
|
+
stableBased: false,
|
|
887
|
+
btcBased: false,
|
|
888
|
+
wstETHBased: true,
|
|
889
|
+
ethBased: true,
|
|
890
|
+
type: FluidVaultType.T1,
|
|
706
891
|
id: 79,
|
|
707
892
|
chainIds: [NetworkNumber.Eth],
|
|
708
893
|
label: 'RSETH / wstETH Market 79',
|
|
@@ -716,6 +901,11 @@ export const RSETH_WSTETH_79 = (networkId = NetworkNumber.Eth) => ({
|
|
|
716
901
|
debtAsset: 'wstETH',
|
|
717
902
|
});
|
|
718
903
|
export const WEETHS_ETH_WSTETH_80 = (networkId = NetworkNumber.Eth) => ({
|
|
904
|
+
stableBased: false,
|
|
905
|
+
btcBased: false,
|
|
906
|
+
wstETHBased: true,
|
|
907
|
+
ethBased: true,
|
|
908
|
+
type: FluidVaultType.T2,
|
|
719
909
|
id: 80,
|
|
720
910
|
chainIds: [NetworkNumber.Eth],
|
|
721
911
|
label: 'weETHs / ETH Market 80',
|
|
@@ -728,7 +918,66 @@ export const WEETHS_ETH_WSTETH_80 = (networkId = NetworkNumber.Eth) => ({
|
|
|
728
918
|
collateralAsset: 'weETHs',
|
|
729
919
|
debtAsset: 'ETH',
|
|
730
920
|
});
|
|
921
|
+
export const SUSDE_USDT_USDT_92 = (networkId = NetworkNumber.Eth) => ({
|
|
922
|
+
stableBased: true,
|
|
923
|
+
btcBased: false,
|
|
924
|
+
wstETHBased: false,
|
|
925
|
+
ethBased: false,
|
|
926
|
+
type: FluidVaultType.T2,
|
|
927
|
+
id: 92,
|
|
928
|
+
chainIds: [NetworkNumber.Eth],
|
|
929
|
+
label: 'sUSDe-USDT / USDT Market 92',
|
|
930
|
+
shortLabel: 'sUSDe-USDT/USDT',
|
|
931
|
+
value: FluidMainnetVersion.SUSDE_USDT_USDT_92,
|
|
932
|
+
url: 'susde-usdt-usdt-92',
|
|
933
|
+
marketAddress: '',
|
|
934
|
+
hasSmartCollateral: false,
|
|
935
|
+
hasSmartDebt: false,
|
|
936
|
+
collateralAsset: 'sUSDe',
|
|
937
|
+
debtAsset: 'USDT',
|
|
938
|
+
});
|
|
939
|
+
export const USDE_USDT_USDT_93 = (networkId = NetworkNumber.Eth) => ({
|
|
940
|
+
stableBased: true,
|
|
941
|
+
btcBased: false,
|
|
942
|
+
wstETHBased: false,
|
|
943
|
+
ethBased: false,
|
|
944
|
+
type: FluidVaultType.T2,
|
|
945
|
+
id: 93,
|
|
946
|
+
chainIds: [NetworkNumber.Eth],
|
|
947
|
+
label: 'sUSDe-USDT / USDT Market 93',
|
|
948
|
+
shortLabel: 'weETHs/ETH',
|
|
949
|
+
value: FluidMainnetVersion.USDE_USDT_USDT_93,
|
|
950
|
+
url: 'susde-usdt-usdt-93',
|
|
951
|
+
marketAddress: '',
|
|
952
|
+
hasSmartCollateral: false,
|
|
953
|
+
hasSmartDebt: false,
|
|
954
|
+
collateralAsset: 'sUSDe',
|
|
955
|
+
debtAsset: 'USDT',
|
|
956
|
+
});
|
|
957
|
+
export const LBTC_CBBTC_WBTC_97 = (networkId = NetworkNumber.Eth) => ({
|
|
958
|
+
stableBased: false,
|
|
959
|
+
btcBased: true,
|
|
960
|
+
wstETHBased: false,
|
|
961
|
+
ethBased: false,
|
|
962
|
+
type: FluidVaultType.T2,
|
|
963
|
+
id: 97,
|
|
964
|
+
chainIds: [NetworkNumber.Eth],
|
|
965
|
+
label: 'LBTC-cbBTC / WBTC Market 97',
|
|
966
|
+
shortLabel: 'weETHs/ETH',
|
|
967
|
+
value: FluidMainnetVersion.LBTC_CBBTC_WBTC_97,
|
|
968
|
+
url: 'lbtc-cbbtc-wbtc-97',
|
|
969
|
+
marketAddress: '',
|
|
970
|
+
hasSmartCollateral: false,
|
|
971
|
+
hasSmartDebt: false,
|
|
972
|
+
collateralAsset: 'LBTC',
|
|
973
|
+
debtAsset: 'WBTC',
|
|
974
|
+
});
|
|
731
975
|
export const ETH_USDC_1_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
976
|
+
stableBased: true,
|
|
977
|
+
btcBased: false,
|
|
978
|
+
wstETHBased: false,
|
|
979
|
+
ethBased: true,
|
|
980
|
+
type: FluidVaultType.T1,
|
|
732
981
|
id: 1,
|
|
733
982
|
chainIds: [NetworkNumber.Arb],
|
|
734
983
|
label: 'ETH / USDC Market 1',
|
|
@@ -742,6 +991,11 @@ export const ETH_USDC_1_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
742
991
|
debtAsset: 'USDC',
|
|
743
992
|
});
|
|
744
993
|
export const ETH_USDT_2_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
994
|
+
stableBased: true,
|
|
995
|
+
btcBased: false,
|
|
996
|
+
wstETHBased: false,
|
|
997
|
+
ethBased: true,
|
|
998
|
+
type: FluidVaultType.T1,
|
|
745
999
|
id: 2,
|
|
746
1000
|
chainIds: [NetworkNumber.Arb],
|
|
747
1001
|
label: 'ETH / USDT Market 2',
|
|
@@ -755,6 +1009,11 @@ export const ETH_USDT_2_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
755
1009
|
debtAsset: 'USDT',
|
|
756
1010
|
});
|
|
757
1011
|
export const WSTETH_USDC_3_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1012
|
+
stableBased: true,
|
|
1013
|
+
btcBased: false,
|
|
1014
|
+
wstETHBased: true,
|
|
1015
|
+
ethBased: true,
|
|
1016
|
+
type: FluidVaultType.T1,
|
|
758
1017
|
id: 3,
|
|
759
1018
|
chainIds: [NetworkNumber.Arb],
|
|
760
1019
|
label: 'wstETH / USDC Market 3',
|
|
@@ -768,6 +1027,11 @@ export const WSTETH_USDC_3_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
768
1027
|
debtAsset: 'USDC',
|
|
769
1028
|
});
|
|
770
1029
|
export const WSTETH_USDT_4_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1030
|
+
stableBased: true,
|
|
1031
|
+
btcBased: false,
|
|
1032
|
+
wstETHBased: true,
|
|
1033
|
+
ethBased: true,
|
|
1034
|
+
type: FluidVaultType.T1,
|
|
771
1035
|
id: 4,
|
|
772
1036
|
chainIds: [NetworkNumber.Arb],
|
|
773
1037
|
label: 'wstETH / USDT Market 4',
|
|
@@ -781,6 +1045,11 @@ export const WSTETH_USDT_4_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
781
1045
|
debtAsset: 'USDT',
|
|
782
1046
|
});
|
|
783
1047
|
export const WSTETH_ETH_5_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1048
|
+
stableBased: false,
|
|
1049
|
+
btcBased: false,
|
|
1050
|
+
wstETHBased: true,
|
|
1051
|
+
ethBased: true,
|
|
1052
|
+
type: FluidVaultType.T1,
|
|
784
1053
|
id: 5,
|
|
785
1054
|
chainIds: [NetworkNumber.Arb],
|
|
786
1055
|
label: 'wstETH / ETH Market 5',
|
|
@@ -794,6 +1063,11 @@ export const WSTETH_ETH_5_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
794
1063
|
debtAsset: 'ETH',
|
|
795
1064
|
});
|
|
796
1065
|
export const WEETH_WSTETH_6_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1066
|
+
stableBased: false,
|
|
1067
|
+
btcBased: false,
|
|
1068
|
+
wstETHBased: true,
|
|
1069
|
+
ethBased: true,
|
|
1070
|
+
type: FluidVaultType.T1,
|
|
797
1071
|
id: 6,
|
|
798
1072
|
chainIds: [NetworkNumber.Arb],
|
|
799
1073
|
label: 'weETH / wstETH Market 6',
|
|
@@ -807,6 +1081,11 @@ export const WEETH_WSTETH_6_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
807
1081
|
debtAsset: 'wstETH',
|
|
808
1082
|
});
|
|
809
1083
|
export const WEETH_USDC_7_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1084
|
+
stableBased: true,
|
|
1085
|
+
btcBased: false,
|
|
1086
|
+
wstETHBased: false,
|
|
1087
|
+
ethBased: true,
|
|
1088
|
+
type: FluidVaultType.T1,
|
|
810
1089
|
id: 7,
|
|
811
1090
|
chainIds: [NetworkNumber.Arb],
|
|
812
1091
|
label: 'weETH / USDC Market 7',
|
|
@@ -820,6 +1099,11 @@ export const WEETH_USDC_7_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
820
1099
|
debtAsset: 'USDC',
|
|
821
1100
|
});
|
|
822
1101
|
export const WEETH_USDT_8_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1102
|
+
stableBased: true,
|
|
1103
|
+
btcBased: false,
|
|
1104
|
+
wstETHBased: false,
|
|
1105
|
+
ethBased: true,
|
|
1106
|
+
type: FluidVaultType.T1,
|
|
823
1107
|
id: 8,
|
|
824
1108
|
chainIds: [NetworkNumber.Arb],
|
|
825
1109
|
label: 'weETH / USDT Market 8',
|
|
@@ -833,6 +1117,11 @@ export const WEETH_USDT_8_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
833
1117
|
debtAsset: 'USDT',
|
|
834
1118
|
});
|
|
835
1119
|
export const ETH_ARB_9_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1120
|
+
stableBased: false,
|
|
1121
|
+
btcBased: false,
|
|
1122
|
+
wstETHBased: false,
|
|
1123
|
+
ethBased: true,
|
|
1124
|
+
type: FluidVaultType.T1,
|
|
836
1125
|
id: 9,
|
|
837
1126
|
chainIds: [NetworkNumber.Arb],
|
|
838
1127
|
label: 'ETH / ARB Market 9',
|
|
@@ -846,6 +1135,11 @@ export const ETH_ARB_9_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
846
1135
|
debtAsset: 'ARB',
|
|
847
1136
|
});
|
|
848
1137
|
export const ARB_USDC_10_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1138
|
+
stableBased: true,
|
|
1139
|
+
btcBased: false,
|
|
1140
|
+
wstETHBased: false,
|
|
1141
|
+
ethBased: false,
|
|
1142
|
+
type: FluidVaultType.T1,
|
|
849
1143
|
id: 10,
|
|
850
1144
|
chainIds: [NetworkNumber.Arb],
|
|
851
1145
|
label: 'ARB / USDC Market 10',
|
|
@@ -859,6 +1153,11 @@ export const ARB_USDC_10_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
859
1153
|
debtAsset: 'USDC',
|
|
860
1154
|
});
|
|
861
1155
|
export const ARB_USDT_11_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1156
|
+
stableBased: true,
|
|
1157
|
+
btcBased: false,
|
|
1158
|
+
wstETHBased: false,
|
|
1159
|
+
ethBased: false,
|
|
1160
|
+
type: FluidVaultType.T1,
|
|
862
1161
|
id: 11,
|
|
863
1162
|
chainIds: [NetworkNumber.Arb],
|
|
864
1163
|
label: 'ARB / USDT Market 11',
|
|
@@ -872,6 +1171,11 @@ export const ARB_USDT_11_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
872
1171
|
debtAsset: 'USDT',
|
|
873
1172
|
});
|
|
874
1173
|
export const WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1174
|
+
stableBased: false,
|
|
1175
|
+
btcBased: false,
|
|
1176
|
+
wstETHBased: true,
|
|
1177
|
+
ethBased: true,
|
|
1178
|
+
type: FluidVaultType.T4,
|
|
875
1179
|
id: 16,
|
|
876
1180
|
chainIds: [NetworkNumber.Arb],
|
|
877
1181
|
label: 'wstETH / ETH Market 16',
|
|
@@ -885,6 +1189,11 @@ export const WSTETH_ETH_WSTETH_ETH_16_ARB = (networkId = NetworkNumber.Eth) => (
|
|
|
885
1189
|
debtAsset: 'ETH',
|
|
886
1190
|
});
|
|
887
1191
|
export const WEETH_ETH_WSTETH_17_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
1192
|
+
stableBased: false,
|
|
1193
|
+
btcBased: false,
|
|
1194
|
+
wstETHBased: true,
|
|
1195
|
+
ethBased: true,
|
|
1196
|
+
type: FluidVaultType.T1,
|
|
888
1197
|
id: 17,
|
|
889
1198
|
chainIds: [NetworkNumber.Arb],
|
|
890
1199
|
label: 'weETH / ETH Market 17',
|
|
@@ -898,6 +1207,11 @@ export const WEETH_ETH_WSTETH_17_ARB = (networkId = NetworkNumber.Eth) => ({
|
|
|
898
1207
|
debtAsset: 'ETH',
|
|
899
1208
|
});
|
|
900
1209
|
export const ETH_USDC_1_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1210
|
+
stableBased: true,
|
|
1211
|
+
btcBased: false,
|
|
1212
|
+
wstETHBased: false,
|
|
1213
|
+
ethBased: true,
|
|
1214
|
+
type: FluidVaultType.T1,
|
|
901
1215
|
id: 1,
|
|
902
1216
|
chainIds: [NetworkNumber.Base],
|
|
903
1217
|
label: 'ETH / USDC Market 1',
|
|
@@ -911,6 +1225,11 @@ export const ETH_USDC_1_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
911
1225
|
debtAsset: 'USDC',
|
|
912
1226
|
});
|
|
913
1227
|
export const WSTETH_USDC_2_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1228
|
+
stableBased: true,
|
|
1229
|
+
btcBased: false,
|
|
1230
|
+
wstETHBased: true,
|
|
1231
|
+
ethBased: true,
|
|
1232
|
+
type: FluidVaultType.T1,
|
|
914
1233
|
id: 2,
|
|
915
1234
|
chainIds: [NetworkNumber.Base],
|
|
916
1235
|
label: 'wstETH / USDC Market 2',
|
|
@@ -924,6 +1243,11 @@ export const WSTETH_USDC_2_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
924
1243
|
debtAsset: 'USDC',
|
|
925
1244
|
});
|
|
926
1245
|
export const WSTETH_ETH_3_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1246
|
+
stableBased: false,
|
|
1247
|
+
btcBased: false,
|
|
1248
|
+
wstETHBased: true,
|
|
1249
|
+
ethBased: true,
|
|
1250
|
+
type: FluidVaultType.T1,
|
|
927
1251
|
id: 3,
|
|
928
1252
|
chainIds: [NetworkNumber.Base],
|
|
929
1253
|
label: 'wstETH / ETH Market 3',
|
|
@@ -937,6 +1261,11 @@ export const WSTETH_ETH_3_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
937
1261
|
debtAsset: 'ETH',
|
|
938
1262
|
});
|
|
939
1263
|
export const WEETH_WSTETH_4_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1264
|
+
stableBased: false,
|
|
1265
|
+
btcBased: false,
|
|
1266
|
+
wstETHBased: true,
|
|
1267
|
+
ethBased: true,
|
|
1268
|
+
type: FluidVaultType.T1,
|
|
940
1269
|
id: 4,
|
|
941
1270
|
chainIds: [NetworkNumber.Base],
|
|
942
1271
|
label: 'weETH / wstETH Market 4',
|
|
@@ -950,6 +1279,11 @@ export const WEETH_WSTETH_4_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
950
1279
|
debtAsset: 'wstETH',
|
|
951
1280
|
});
|
|
952
1281
|
export const WEETH_USDC_5_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1282
|
+
stableBased: true,
|
|
1283
|
+
btcBased: false,
|
|
1284
|
+
wstETHBased: false,
|
|
1285
|
+
ethBased: true,
|
|
1286
|
+
type: FluidVaultType.T1,
|
|
953
1287
|
id: 5,
|
|
954
1288
|
chainIds: [NetworkNumber.Base],
|
|
955
1289
|
label: 'weETH / USDC Market 5',
|
|
@@ -963,6 +1297,11 @@ export const WEETH_USDC_5_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
963
1297
|
debtAsset: 'USDC',
|
|
964
1298
|
});
|
|
965
1299
|
export const CBETH_USDC_6_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1300
|
+
stableBased: true,
|
|
1301
|
+
btcBased: false,
|
|
1302
|
+
wstETHBased: false,
|
|
1303
|
+
ethBased: true,
|
|
1304
|
+
type: FluidVaultType.T1,
|
|
966
1305
|
id: 6,
|
|
967
1306
|
chainIds: [NetworkNumber.Base],
|
|
968
1307
|
label: 'CBETH / USDC Market 6',
|
|
@@ -976,6 +1315,11 @@ export const CBETH_USDC_6_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
976
1315
|
debtAsset: 'USDC',
|
|
977
1316
|
});
|
|
978
1317
|
export const CBBTC_USDC_7_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1318
|
+
stableBased: true,
|
|
1319
|
+
btcBased: true,
|
|
1320
|
+
wstETHBased: false,
|
|
1321
|
+
ethBased: false,
|
|
1322
|
+
type: FluidVaultType.T1,
|
|
979
1323
|
id: 7,
|
|
980
1324
|
chainIds: [NetworkNumber.Base],
|
|
981
1325
|
label: 'cbBTC / USDC Market 7',
|
|
@@ -989,6 +1333,11 @@ export const CBBTC_USDC_7_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
989
1333
|
debtAsset: 'USDC',
|
|
990
1334
|
});
|
|
991
1335
|
export const CBBTC_EURC_8_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1336
|
+
stableBased: true,
|
|
1337
|
+
btcBased: true,
|
|
1338
|
+
wstETHBased: false,
|
|
1339
|
+
ethBased: false,
|
|
1340
|
+
type: FluidVaultType.T1,
|
|
992
1341
|
id: 8,
|
|
993
1342
|
chainIds: [NetworkNumber.Base],
|
|
994
1343
|
label: 'cbBTC / EURC Market 8',
|
|
@@ -1002,6 +1351,11 @@ export const CBBTC_EURC_8_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1002
1351
|
debtAsset: 'EURC',
|
|
1003
1352
|
});
|
|
1004
1353
|
export const CBETH_EURC_9_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1354
|
+
stableBased: true,
|
|
1355
|
+
btcBased: false,
|
|
1356
|
+
wstETHBased: false,
|
|
1357
|
+
ethBased: true,
|
|
1358
|
+
type: FluidVaultType.T1,
|
|
1005
1359
|
id: 9,
|
|
1006
1360
|
chainIds: [NetworkNumber.Base],
|
|
1007
1361
|
label: 'CBETH / EURC Market 9',
|
|
@@ -1015,6 +1369,11 @@ export const CBETH_EURC_9_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1015
1369
|
debtAsset: 'EURC',
|
|
1016
1370
|
});
|
|
1017
1371
|
export const ETH_EURC_10_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1372
|
+
stableBased: true,
|
|
1373
|
+
btcBased: false,
|
|
1374
|
+
wstETHBased: false,
|
|
1375
|
+
ethBased: true,
|
|
1376
|
+
type: FluidVaultType.T1,
|
|
1018
1377
|
id: 10,
|
|
1019
1378
|
chainIds: [NetworkNumber.Base],
|
|
1020
1379
|
label: 'ETH / EURC Market 10',
|
|
@@ -1028,6 +1387,11 @@ export const ETH_EURC_10_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1028
1387
|
debtAsset: 'EURC',
|
|
1029
1388
|
});
|
|
1030
1389
|
export const WEETH_EURC_11_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1390
|
+
stableBased: true,
|
|
1391
|
+
btcBased: false,
|
|
1392
|
+
wstETHBased: false,
|
|
1393
|
+
ethBased: true,
|
|
1394
|
+
type: FluidVaultType.T1,
|
|
1031
1395
|
id: 11,
|
|
1032
1396
|
chainIds: [NetworkNumber.Base],
|
|
1033
1397
|
label: 'weETH / EURC Market 11',
|
|
@@ -1041,6 +1405,11 @@ export const WEETH_EURC_11_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1041
1405
|
debtAsset: 'EURC',
|
|
1042
1406
|
});
|
|
1043
1407
|
export const WSTETH_EURC_12_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1408
|
+
stableBased: true,
|
|
1409
|
+
btcBased: false,
|
|
1410
|
+
wstETHBased: true,
|
|
1411
|
+
ethBased: true,
|
|
1412
|
+
type: FluidVaultType.T1,
|
|
1044
1413
|
id: 12,
|
|
1045
1414
|
chainIds: [NetworkNumber.Base],
|
|
1046
1415
|
label: 'wstETH / EURC Market 12',
|
|
@@ -1054,6 +1423,11 @@ export const WSTETH_EURC_12_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1054
1423
|
debtAsset: 'EURC',
|
|
1055
1424
|
});
|
|
1056
1425
|
export const CBBTC_ETH_13_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1426
|
+
stableBased: false,
|
|
1427
|
+
btcBased: true,
|
|
1428
|
+
wstETHBased: false,
|
|
1429
|
+
ethBased: true,
|
|
1430
|
+
type: FluidVaultType.T1,
|
|
1057
1431
|
id: 13,
|
|
1058
1432
|
chainIds: [NetworkNumber.Base],
|
|
1059
1433
|
label: 'cbBTC / ETH Market 13',
|
|
@@ -1067,6 +1441,11 @@ export const CBBTC_ETH_13_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1067
1441
|
debtAsset: 'ETH',
|
|
1068
1442
|
});
|
|
1069
1443
|
export const ETH_CBBTC_14_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1444
|
+
stableBased: false,
|
|
1445
|
+
btcBased: true,
|
|
1446
|
+
wstETHBased: false,
|
|
1447
|
+
ethBased: true,
|
|
1448
|
+
type: FluidVaultType.T1,
|
|
1070
1449
|
id: 14,
|
|
1071
1450
|
chainIds: [NetworkNumber.Base],
|
|
1072
1451
|
label: 'ETH / cbBTC Market 14',
|
|
@@ -1080,6 +1459,11 @@ export const ETH_CBBTC_14_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1080
1459
|
debtAsset: 'cbBTC',
|
|
1081
1460
|
});
|
|
1082
1461
|
export const WEETH_CBBTC_15_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1462
|
+
stableBased: false,
|
|
1463
|
+
btcBased: true,
|
|
1464
|
+
wstETHBased: false,
|
|
1465
|
+
ethBased: true,
|
|
1466
|
+
type: FluidVaultType.T1,
|
|
1083
1467
|
id: 15,
|
|
1084
1468
|
chainIds: [NetworkNumber.Base],
|
|
1085
1469
|
label: 'weETH / cbBTC Market 15',
|
|
@@ -1093,6 +1477,11 @@ export const WEETH_CBBTC_15_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
|
1093
1477
|
debtAsset: 'cbBTC',
|
|
1094
1478
|
});
|
|
1095
1479
|
export const WSTETH_CBBTC_16_BASE = (networkId = NetworkNumber.Eth) => ({
|
|
1480
|
+
stableBased: false,
|
|
1481
|
+
btcBased: true,
|
|
1482
|
+
wstETHBased: true,
|
|
1483
|
+
ethBased: true,
|
|
1484
|
+
type: FluidVaultType.T1,
|
|
1096
1485
|
id: 16,
|
|
1097
1486
|
chainIds: [NetworkNumber.Base],
|
|
1098
1487
|
label: 'wstETH / cbBTC Market 16',
|
|
@@ -1112,8 +1501,6 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1112
1501
|
[FluidMainnetVersion.WSTETH_USDC_4]: WSTETH_USDC_4(networkId),
|
|
1113
1502
|
[FluidMainnetVersion.WSTETH_USDT_5]: WSTETH_USDT_5(networkId),
|
|
1114
1503
|
[FluidMainnetVersion.WEETH_WSTETH_6]: WEETH_WSTETH_6(networkId),
|
|
1115
|
-
[FluidMainnetVersion.SUSDE_USDC_7]: SUSDE_USDC_7(networkId),
|
|
1116
|
-
[FluidMainnetVersion.SUSDE_USDT_8]: SUSDE_USDT_8(networkId),
|
|
1117
1504
|
[FluidMainnetVersion.WEETH_USDC_9]: WEETH_USDC_9(networkId),
|
|
1118
1505
|
[FluidMainnetVersion.WEETH_USDT_10]: WEETH_USDT_10(networkId),
|
|
1119
1506
|
[FluidMainnetVersion.ETH_USDC_11]: ETH_USDC_11(networkId),
|
|
@@ -1138,7 +1525,6 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1138
1525
|
[FluidMainnetVersion.CBBTC_USDT_30]: CBBTC_USDT_30(networkId),
|
|
1139
1526
|
[FluidMainnetVersion.ETH_CBBTC_31]: ETH_CBBTC_31(networkId),
|
|
1140
1527
|
[FluidMainnetVersion.WEETH_CBBTC_32]: WEETH_CBBTC_32(networkId),
|
|
1141
|
-
[FluidMainnetVersion.WSTETH_CBBTC_33]: WSTETH_CBBTC_33(networkId),
|
|
1142
1528
|
[FluidMainnetVersion.WSTETH_ETH_WSTETH_ETH_44]: WSTETH_ETH_WSTETH_ETH_44(networkId),
|
|
1143
1529
|
[FluidMainnetVersion.ETH_USDC_USDT_45]: ETH_USDC_USDT_45(networkId),
|
|
1144
1530
|
[FluidMainnetVersion.WSTETH_USDC_USDT_46]: WSTETH_USDC_USDT_46(networkId),
|
|
@@ -1154,14 +1540,15 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1154
1540
|
[FluidMainnetVersion.SUSDE_GHO_56]: SUSDE_GHO_56(networkId),
|
|
1155
1541
|
[FluidMainnetVersion.WEETH_GHO_57]: WEETH_GHO_57(networkId),
|
|
1156
1542
|
[FluidMainnetVersion.SUSDS_GHO_58]: SUSDS_GHO_58(networkId),
|
|
1157
|
-
[FluidMainnetVersion.WBTC_GHO_59]: WBTC_GHO_59(networkId),
|
|
1158
|
-
[FluidMainnetVersion.CBBTC_GHO_60]: CBBTC_GHO_60(networkId),
|
|
1159
1543
|
[FluidMainnetVersion.GHO_USDC_GHO_USDC_61]: GHO_USDC_GHO_USDC_61(networkId),
|
|
1160
1544
|
[FluidMainnetVersion.WEETH_ETH_WSTETH_74]: WEETH_ETH_WSTETH_74(networkId),
|
|
1161
1545
|
[FluidMainnetVersion.USDC_ETH_USDC_ETH_77]: USDC_ETH_USDC_ETH_77(networkId),
|
|
1162
1546
|
[FluidMainnetVersion.RSETH_ETH_WSTETH_78]: RSETH_ETH_WSTETH_78(networkId),
|
|
1163
1547
|
[FluidMainnetVersion.RSETH_WSTETH_79]: RSETH_WSTETH_79(networkId),
|
|
1164
1548
|
[FluidMainnetVersion.WEETHS_ETH_WSTETH_80]: WEETHS_ETH_WSTETH_80(networkId),
|
|
1549
|
+
[FluidMainnetVersion.SUSDE_USDT_USDT_92]: SUSDE_USDT_USDT_92(networkId),
|
|
1550
|
+
[FluidMainnetVersion.USDE_USDT_USDT_93]: USDE_USDT_USDT_93(networkId),
|
|
1551
|
+
[FluidMainnetVersion.LBTC_CBBTC_WBTC_97]: LBTC_CBBTC_WBTC_97(networkId),
|
|
1165
1552
|
// arbitrum
|
|
1166
1553
|
[FluidArbitrumVersion.ETH_USDC_1_ARB]: ETH_USDC_1_ARB(networkId),
|
|
1167
1554
|
[FluidArbitrumVersion.ETH_USDT_2_ARB]: ETH_USDT_2_ARB(networkId),
|
|
@@ -1194,3 +1581,5 @@ export const FluidMarkets = (networkId) => ({
|
|
|
1194
1581
|
[FluidBaseVersions.WEETH_CBBTC_15_BASE]: WEETH_CBBTC_15_BASE(networkId),
|
|
1195
1582
|
[FluidBaseVersions.WSTETH_CBBTC_16_BASE]: WSTETH_CBBTC_16_BASE(networkId),
|
|
1196
1583
|
});
|
|
1584
|
+
export const getFluidVersionsDataForNetwork = (network) => (Object.values(FluidMarkets(network)).filter(({ chainIds, marketAddress, type }) => !!marketAddress && chainIds.includes(network) && type === FluidVaultType.T1));
|
|
1585
|
+
export const getFluidMarketInfoById = (vaultId, network = 1) => getFluidVersionsDataForNetwork(network).find(({ id }) => id === vaultId);
|