@nexusmutual/sdk 0.4.4 → 0.4.5
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/dist/data/products.json +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +155 -81
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +155 -81
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/data/products.json
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -18,14 +18,14 @@ declare const DEFAULT_COMMISSION_RATIO = 1500;
|
|
|
18
18
|
declare const NEXUS_MUTUAL_DAO_TREASURY_ADDRESS = "0x586b9b2F8010b284A0197f392156f1A7Eb5e86e9";
|
|
19
19
|
|
|
20
20
|
declare enum ProductCategoryEnum {
|
|
21
|
-
All = "all",
|
|
22
21
|
Lending = "lending",
|
|
23
22
|
Dex = "dex",
|
|
24
23
|
LiquidRestaking = "liquid-restaking",
|
|
25
24
|
YieldOptimizer = "yield-optimizer",
|
|
26
25
|
Perpetuals = "perpetuals",
|
|
27
26
|
SmartWallet = "smart-wallet",
|
|
28
|
-
ETHStaking = "eth-staking"
|
|
27
|
+
ETHStaking = "eth-staking",
|
|
28
|
+
Uncategorized = "uncategorized"
|
|
29
29
|
}
|
|
30
30
|
declare const categoryLabelByEnum: Record<ProductCategoryEnum, string>;
|
|
31
31
|
declare const productCategoryMap: {
|
|
@@ -3980,7 +3980,7 @@ var products = [
|
|
|
3980
3980
|
"USDC"
|
|
3981
3981
|
],
|
|
3982
3982
|
isPrivate: false,
|
|
3983
|
-
timestamp:
|
|
3983
|
+
timestamp: 1723127459
|
|
3984
3984
|
},
|
|
3985
3985
|
{
|
|
3986
3986
|
id: 220,
|
package/dist/index.d.ts
CHANGED
|
@@ -18,14 +18,14 @@ declare const DEFAULT_COMMISSION_RATIO = 1500;
|
|
|
18
18
|
declare const NEXUS_MUTUAL_DAO_TREASURY_ADDRESS = "0x586b9b2F8010b284A0197f392156f1A7Eb5e86e9";
|
|
19
19
|
|
|
20
20
|
declare enum ProductCategoryEnum {
|
|
21
|
-
All = "all",
|
|
22
21
|
Lending = "lending",
|
|
23
22
|
Dex = "dex",
|
|
24
23
|
LiquidRestaking = "liquid-restaking",
|
|
25
24
|
YieldOptimizer = "yield-optimizer",
|
|
26
25
|
Perpetuals = "perpetuals",
|
|
27
26
|
SmartWallet = "smart-wallet",
|
|
28
|
-
ETHStaking = "eth-staking"
|
|
27
|
+
ETHStaking = "eth-staking",
|
|
28
|
+
Uncategorized = "uncategorized"
|
|
29
29
|
}
|
|
30
30
|
declare const categoryLabelByEnum: Record<ProductCategoryEnum, string>;
|
|
31
31
|
declare const productCategoryMap: {
|
|
@@ -3980,7 +3980,7 @@ var products = [
|
|
|
3980
3980
|
"USDC"
|
|
3981
3981
|
],
|
|
3982
3982
|
isPrivate: false,
|
|
3983
|
-
timestamp:
|
|
3983
|
+
timestamp: 1723127459
|
|
3984
3984
|
},
|
|
3985
3985
|
{
|
|
3986
3986
|
id: 220,
|
package/dist/index.js
CHANGED
|
@@ -210,7 +210,6 @@ __export(constants_exports, {
|
|
|
210
210
|
|
|
211
211
|
// src/constants/products.ts
|
|
212
212
|
var ProductCategoryEnum = /* @__PURE__ */ ((ProductCategoryEnum2) => {
|
|
213
|
-
ProductCategoryEnum2["All"] = "all";
|
|
214
213
|
ProductCategoryEnum2["Lending"] = "lending";
|
|
215
214
|
ProductCategoryEnum2["Dex"] = "dex";
|
|
216
215
|
ProductCategoryEnum2["LiquidRestaking"] = "liquid-restaking";
|
|
@@ -218,18 +217,18 @@ var ProductCategoryEnum = /* @__PURE__ */ ((ProductCategoryEnum2) => {
|
|
|
218
217
|
ProductCategoryEnum2["Perpetuals"] = "perpetuals";
|
|
219
218
|
ProductCategoryEnum2["SmartWallet"] = "smart-wallet";
|
|
220
219
|
ProductCategoryEnum2["ETHStaking"] = "eth-staking";
|
|
220
|
+
ProductCategoryEnum2["Uncategorized"] = "uncategorized";
|
|
221
221
|
return ProductCategoryEnum2;
|
|
222
222
|
})(ProductCategoryEnum || {});
|
|
223
223
|
var categoryLabelByEnum = {
|
|
224
|
-
["all" /* All */]: "All categories",
|
|
225
224
|
["lending" /* Lending */]: "Lending",
|
|
226
225
|
["dex" /* Dex */]: "DEX",
|
|
227
226
|
["liquid-restaking" /* LiquidRestaking */]: "Liquid Restaking",
|
|
228
227
|
["yield-optimizer" /* YieldOptimizer */]: "Yield Optimizer",
|
|
229
228
|
["perpetuals" /* Perpetuals */]: "Perpetuals",
|
|
230
229
|
["smart-wallet" /* SmartWallet */]: "Smart Wallet",
|
|
231
|
-
["eth-staking" /* ETHStaking */]: "ETH Staking"
|
|
232
|
-
|
|
230
|
+
["eth-staking" /* ETHStaking */]: "ETH Staking",
|
|
231
|
+
["uncategorized" /* Uncategorized */]: "Uncategorized"
|
|
233
232
|
};
|
|
234
233
|
var productCategoryMap = {
|
|
235
234
|
1: "dex" /* Dex */,
|
|
@@ -240,98 +239,136 @@ var productCategoryMap = {
|
|
|
240
239
|
// Abracadabra v1
|
|
241
240
|
4: "yield-optimizer" /* YieldOptimizer */,
|
|
242
241
|
// Alchemix v2
|
|
243
|
-
|
|
242
|
+
5: "uncategorized" /* Uncategorized */,
|
|
243
|
+
// Anchor
|
|
244
244
|
6: "lending" /* Lending */,
|
|
245
245
|
// Angle v1
|
|
246
246
|
7: "smart-wallet" /* SmartWallet */,
|
|
247
247
|
// Argent
|
|
248
248
|
8: "yield-optimizer" /* YieldOptimizer */,
|
|
249
249
|
// Aura v1
|
|
250
|
-
|
|
251
|
-
//
|
|
250
|
+
9: "uncategorized" /* Uncategorized */,
|
|
251
|
+
// Babylon Finance
|
|
252
|
+
10: "uncategorized" /* Uncategorized */,
|
|
253
|
+
// BadgerDAO v1
|
|
252
254
|
11: "dex" /* Dex */,
|
|
253
255
|
// Balancer v2
|
|
254
|
-
|
|
255
|
-
//
|
|
256
|
+
12: "uncategorized" /* Uncategorized */,
|
|
257
|
+
// Bancor v2
|
|
258
|
+
13: "uncategorized" /* Uncategorized */,
|
|
259
|
+
// Bancor v3
|
|
256
260
|
14: "yield-optimizer" /* YieldOptimizer */,
|
|
257
261
|
// Beefy v2
|
|
258
|
-
|
|
259
|
-
//
|
|
260
|
-
|
|
261
|
-
//
|
|
262
|
-
|
|
262
|
+
15: "uncategorized" /* Uncategorized */,
|
|
263
|
+
// Binance
|
|
264
|
+
16: "uncategorized" /* Uncategorized */,
|
|
265
|
+
// BlockFi
|
|
266
|
+
17: "uncategorized" /* Uncategorized */,
|
|
267
|
+
// Bundle: Gelt + mStable + Aave v2
|
|
268
|
+
18: "uncategorized" /* Uncategorized */,
|
|
269
|
+
// Centrifuge Tinlake
|
|
270
|
+
19: "uncategorized" /* Uncategorized */,
|
|
271
|
+
// Coinbase
|
|
263
272
|
20: "lending" /* Lending */,
|
|
264
273
|
// Compound v2
|
|
265
|
-
|
|
274
|
+
21: "uncategorized" /* Uncategorized */,
|
|
275
|
+
// Convex 3CRV (cvx3CRV)
|
|
266
276
|
22: "yield-optimizer" /* YieldOptimizer */,
|
|
267
277
|
// Convex Finance v1
|
|
268
|
-
|
|
269
|
-
//
|
|
270
|
-
|
|
278
|
+
23: "uncategorized" /* Uncategorized */,
|
|
279
|
+
// Convex stethCrv (cvxstethCrv)
|
|
280
|
+
24: "uncategorized" /* Uncategorized */,
|
|
281
|
+
// Crypto.com
|
|
282
|
+
25: "uncategorized" /* Uncategorized */,
|
|
283
|
+
// Curve 3pool LP (3Crv)
|
|
271
284
|
26: "dex" /* Dex */,
|
|
272
285
|
// Curve All Pools (incl staking)
|
|
273
|
-
|
|
286
|
+
27: "uncategorized" /* Uncategorized */,
|
|
287
|
+
// Curve sETH LP (eCrv)
|
|
274
288
|
28: "perpetuals" /* Perpetuals */,
|
|
275
289
|
// dydx Perpetual
|
|
276
|
-
|
|
277
|
-
//
|
|
290
|
+
29: "uncategorized" /* Uncategorized */,
|
|
291
|
+
// Ease v1
|
|
292
|
+
30: "uncategorized" /* Uncategorized */,
|
|
293
|
+
// Enzyme v3
|
|
278
294
|
31: "yield-optimizer" /* YieldOptimizer */,
|
|
279
295
|
// Enzyme v4
|
|
280
|
-
|
|
281
|
-
//
|
|
296
|
+
32: "uncategorized" /* Uncategorized */,
|
|
297
|
+
// Eth 2.0 (deposit contract)
|
|
298
|
+
33: "uncategorized" /* Uncategorized */,
|
|
299
|
+
// Euler
|
|
282
300
|
34: "perpetuals" /* Perpetuals */,
|
|
283
301
|
// FODL v1
|
|
284
|
-
|
|
302
|
+
35: "uncategorized" /* Uncategorized */,
|
|
303
|
+
// FTX
|
|
285
304
|
36: "lending" /* Lending */,
|
|
286
305
|
// Gearbox v2
|
|
287
|
-
|
|
306
|
+
37: "uncategorized" /* Uncategorized */,
|
|
307
|
+
// Gemini
|
|
288
308
|
38: "perpetuals" /* Perpetuals */,
|
|
289
309
|
// GMX v1
|
|
290
310
|
39: "lending" /* Lending */,
|
|
291
311
|
// Goldfinch v1
|
|
292
|
-
|
|
293
|
-
//
|
|
294
|
-
|
|
295
|
-
//
|
|
312
|
+
40: "uncategorized" /* Uncategorized */,
|
|
313
|
+
// Hodlnaut
|
|
314
|
+
41: "uncategorized" /* Uncategorized */,
|
|
315
|
+
// Kraken
|
|
316
|
+
42: "uncategorized" /* Uncategorized */,
|
|
317
|
+
// Ledn
|
|
318
|
+
43: "uncategorized" /* Uncategorized */,
|
|
319
|
+
// Liquid Collective
|
|
296
320
|
44: "lending" /* Lending */,
|
|
297
321
|
// Liquity v1
|
|
298
322
|
45: "lending" /* Lending */,
|
|
299
323
|
// MakerDAO CDP
|
|
300
|
-
|
|
301
|
-
//
|
|
302
|
-
|
|
324
|
+
46: "uncategorized" /* Uncategorized */,
|
|
325
|
+
// mStable
|
|
326
|
+
47: "uncategorized" /* Uncategorized */,
|
|
327
|
+
// Nested v1
|
|
328
|
+
48: "uncategorized" /* Uncategorized */,
|
|
329
|
+
// Nexo
|
|
303
330
|
49: "lending" /* Lending */,
|
|
304
331
|
// Notional Finance v2
|
|
305
|
-
|
|
332
|
+
50: "uncategorized" /* Uncategorized */,
|
|
333
|
+
// OlympusDAO
|
|
306
334
|
51: "perpetuals" /* Perpetuals */,
|
|
307
335
|
// Opyn v2
|
|
308
|
-
|
|
336
|
+
52: "uncategorized" /* Uncategorized */,
|
|
337
|
+
// Origin OUSD
|
|
309
338
|
53: "dex" /* Dex */,
|
|
310
339
|
// Pangolin v1
|
|
311
340
|
54: "perpetuals" /* Perpetuals */,
|
|
312
341
|
// Perpetual Protocol v2
|
|
313
|
-
|
|
314
|
-
//
|
|
315
|
-
|
|
342
|
+
55: "uncategorized" /* Uncategorized */,
|
|
343
|
+
// Pool Together v4
|
|
344
|
+
56: "uncategorized" /* Uncategorized */,
|
|
345
|
+
// Premia Finance
|
|
346
|
+
57: "uncategorized" /* Uncategorized */,
|
|
347
|
+
// Rari Capital
|
|
316
348
|
58: "lending" /* Lending */,
|
|
317
349
|
// Reflexer v1
|
|
318
350
|
59: "perpetuals" /* Perpetuals */,
|
|
319
351
|
// Aevo
|
|
320
352
|
60: "smart-wallet" /* SmartWallet */,
|
|
321
353
|
// Safe (formerly Gnosis Safe)
|
|
322
|
-
|
|
354
|
+
61: "uncategorized" /* Uncategorized */,
|
|
355
|
+
// Set Protocol
|
|
323
356
|
62: "yield-optimizer" /* YieldOptimizer */,
|
|
324
357
|
// Set Protocol v2
|
|
325
|
-
|
|
358
|
+
63: "uncategorized" /* Uncategorized */,
|
|
359
|
+
// Stakewise(?)
|
|
326
360
|
64: "yield-optimizer" /* YieldOptimizer */,
|
|
327
361
|
// Stake DAO v1
|
|
328
|
-
|
|
329
|
-
//
|
|
362
|
+
65: "uncategorized" /* Uncategorized */,
|
|
363
|
+
// Stakewise 3rd party (3 ETH/validator)
|
|
364
|
+
66: "uncategorized" /* Uncategorized */,
|
|
365
|
+
// Stakewise operated (3 ETH/validator)
|
|
330
366
|
67: "dex" /* Dex */,
|
|
331
367
|
// SushiSwap v1
|
|
332
368
|
68: "perpetuals" /* Perpetuals */,
|
|
333
369
|
// Synthetix
|
|
334
|
-
|
|
370
|
+
69: "uncategorized" /* Uncategorized */,
|
|
371
|
+
// THORChain (Thorchain Network)
|
|
335
372
|
70: "dex" /* Dex */,
|
|
336
373
|
// Trader Joe v2.1
|
|
337
374
|
71: "dex" /* Dex */,
|
|
@@ -344,29 +381,44 @@ var productCategoryMap = {
|
|
|
344
381
|
// Vesper v3
|
|
345
382
|
75: "yield-optimizer" /* YieldOptimizer */,
|
|
346
383
|
// Yearn Finance v2 (all vaults)
|
|
347
|
-
|
|
384
|
+
76: "uncategorized" /* Uncategorized */,
|
|
385
|
+
// Yearn yvUSDC v2
|
|
348
386
|
77: "lending" /* Lending */,
|
|
349
387
|
// Yeti Finance v1
|
|
350
|
-
|
|
388
|
+
78: "uncategorized" /* Uncategorized */,
|
|
389
|
+
// Yield App
|
|
351
390
|
79: "yield-optimizer" /* YieldOptimizer */,
|
|
352
391
|
// Alpaca Finance v1
|
|
353
392
|
80: "lending" /* Lending */,
|
|
354
393
|
// WeFi v1
|
|
355
394
|
81: "lending" /* Lending */,
|
|
356
395
|
// Exactly
|
|
357
|
-
|
|
358
|
-
//
|
|
359
|
-
|
|
360
|
-
//
|
|
361
|
-
|
|
362
|
-
//
|
|
363
|
-
|
|
364
|
-
//
|
|
365
|
-
|
|
366
|
-
//
|
|
367
|
-
|
|
368
|
-
//
|
|
369
|
-
|
|
396
|
+
82: "uncategorized" /* Uncategorized */,
|
|
397
|
+
// EtherFi 5ETH
|
|
398
|
+
83: "uncategorized" /* Uncategorized */,
|
|
399
|
+
// Squeeth by Opyn (Sherlock)
|
|
400
|
+
84: "uncategorized" /* Uncategorized */,
|
|
401
|
+
// Rage Trade (Sherlock)
|
|
402
|
+
85: "uncategorized" /* Uncategorized */,
|
|
403
|
+
// Sentiment (Sherlock)
|
|
404
|
+
86: "uncategorized" /* Uncategorized */,
|
|
405
|
+
// Lyra Newport (Sherlock)
|
|
406
|
+
87: "uncategorized" /* Uncategorized */,
|
|
407
|
+
// Perennial (Sherlock)
|
|
408
|
+
88: "uncategorized" /* Uncategorized */,
|
|
409
|
+
// LiquiFi (Sherlock)
|
|
410
|
+
89: "uncategorized" /* Uncategorized */,
|
|
411
|
+
// Lyra Avalon (Sherlock)
|
|
412
|
+
90: "uncategorized" /* Uncategorized */,
|
|
413
|
+
// Buffer Finance (Sherlock)
|
|
414
|
+
91: "uncategorized" /* Uncategorized */,
|
|
415
|
+
// Hook (Sherlock)
|
|
416
|
+
92: "uncategorized" /* Uncategorized */,
|
|
417
|
+
// Holyheld (Sherlock)
|
|
418
|
+
93: "uncategorized" /* Uncategorized */,
|
|
419
|
+
// Union Finance (Sherlock)
|
|
420
|
+
94: "uncategorized" /* Uncategorized */,
|
|
421
|
+
// OpenQ (Sherlock)
|
|
370
422
|
95: "perpetuals" /* Perpetuals */,
|
|
371
423
|
// Level Finance v1
|
|
372
424
|
96: "dex" /* Dex */,
|
|
@@ -375,23 +427,36 @@ var productCategoryMap = {
|
|
|
375
427
|
// Aave v3
|
|
376
428
|
98: "yield-optimizer" /* YieldOptimizer */,
|
|
377
429
|
// Morpho Optimisers v1
|
|
378
|
-
|
|
379
|
-
//
|
|
380
|
-
|
|
381
|
-
//
|
|
430
|
+
99: "uncategorized" /* Uncategorized */,
|
|
431
|
+
// Chorus One
|
|
432
|
+
100: "uncategorized" /* Uncategorized */,
|
|
433
|
+
// Kiln
|
|
434
|
+
101: "uncategorized" /* Uncategorized */,
|
|
435
|
+
// Vertex (Native Protocol)
|
|
436
|
+
102: "uncategorized" /* Uncategorized */,
|
|
437
|
+
// The Retail Mutual
|
|
382
438
|
103: "eth-staking" /* ETHStaking */,
|
|
383
439
|
// Figment
|
|
384
|
-
|
|
385
|
-
//
|
|
440
|
+
104: "uncategorized" /* Uncategorized */,
|
|
441
|
+
// Teller (Sherlock)
|
|
442
|
+
105: "uncategorized" /* Uncategorized */,
|
|
443
|
+
// Ajna (Sherlock)
|
|
386
444
|
106: "liquid-restaking" /* LiquidRestaking */,
|
|
387
445
|
// EigenLayer v1
|
|
388
|
-
|
|
389
|
-
//
|
|
390
|
-
|
|
391
|
-
//
|
|
392
|
-
|
|
393
|
-
//
|
|
394
|
-
|
|
446
|
+
107: "uncategorized" /* Uncategorized */,
|
|
447
|
+
// Vox Finance (UnoRe)
|
|
448
|
+
108: "uncategorized" /* Uncategorized */,
|
|
449
|
+
// MahaLend (UnoRe)
|
|
450
|
+
109: "uncategorized" /* Uncategorized */,
|
|
451
|
+
// SELF (UnoRe)
|
|
452
|
+
110: "uncategorized" /* Uncategorized */,
|
|
453
|
+
// Scallop (UnoRe)
|
|
454
|
+
111: "uncategorized" /* Uncategorized */,
|
|
455
|
+
// WeFi (UnoRe)
|
|
456
|
+
112: "uncategorized" /* Uncategorized */,
|
|
457
|
+
// ZkTsunami (UnoRe)
|
|
458
|
+
113: "uncategorized" /* Uncategorized */,
|
|
459
|
+
// Hats Protocol
|
|
395
460
|
114: "yield-optimizer" /* YieldOptimizer */,
|
|
396
461
|
// MakerDAO DSR (sDAI)
|
|
397
462
|
115: "lending" /* Lending */,
|
|
@@ -458,7 +523,8 @@ var productCategoryMap = {
|
|
|
458
523
|
// wstETH/USDC Market Morpho Blue
|
|
459
524
|
150: "yield-optimizer" /* YieldOptimizer */,
|
|
460
525
|
// EtherFi Liquid
|
|
461
|
-
|
|
526
|
+
151: "uncategorized" /* Uncategorized */,
|
|
527
|
+
// Arcadia (Sherlock)
|
|
462
528
|
152: "yield-optimizer" /* YieldOptimizer */,
|
|
463
529
|
// fx Protocol + Curve + Convex
|
|
464
530
|
153: "liquid-restaking" /* LiquidRestaking */,
|
|
@@ -473,15 +539,18 @@ var productCategoryMap = {
|
|
|
473
539
|
// Lyra + Synthetix
|
|
474
540
|
158: "liquid-restaking" /* LiquidRestaking */,
|
|
475
541
|
// EigenLayer + Renzo
|
|
476
|
-
|
|
542
|
+
159: "uncategorized" /* Uncategorized */,
|
|
543
|
+
// Liquid Collective
|
|
477
544
|
160: "liquid-restaking" /* LiquidRestaking */,
|
|
478
545
|
// Etherfi (Zircuit) Pendle
|
|
479
546
|
161: "liquid-restaking" /* LiquidRestaking */,
|
|
480
547
|
// KelpDAO (Zircuit) Pendle
|
|
481
548
|
162: "liquid-restaking" /* LiquidRestaking */,
|
|
482
549
|
// Renzo (Zircuit) Pendle
|
|
483
|
-
|
|
484
|
-
//
|
|
550
|
+
163: "uncategorized" /* Uncategorized */,
|
|
551
|
+
// Pocket Universe
|
|
552
|
+
164: "uncategorized" /* Uncategorized */,
|
|
553
|
+
// Request Finance
|
|
485
554
|
165: "yield-optimizer" /* YieldOptimizer */,
|
|
486
555
|
// Etherfi Liquid Market-Neutral USD Vault
|
|
487
556
|
166: "yield-optimizer" /* YieldOptimizer */,
|
|
@@ -524,7 +593,8 @@ var productCategoryMap = {
|
|
|
524
593
|
// Instadapp Fluid
|
|
525
594
|
185: "lending" /* Lending */,
|
|
526
595
|
// Silo Finance
|
|
527
|
-
|
|
596
|
+
186: "uncategorized" /* Uncategorized */,
|
|
597
|
+
// DeltaPrime (UnoRe)
|
|
528
598
|
187: "yield-optimizer" /* YieldOptimizer */,
|
|
529
599
|
// Toros Finance Solana Bull 3x
|
|
530
600
|
188: "yield-optimizer" /* YieldOptimizer */,
|
|
@@ -541,8 +611,10 @@ var productCategoryMap = {
|
|
|
541
611
|
// Etherfi Liquid Super Symbiotic LRT Vault
|
|
542
612
|
194: "yield-optimizer" /* YieldOptimizer */,
|
|
543
613
|
// Toros Finance Andromeda Yield
|
|
544
|
-
|
|
545
|
-
//
|
|
614
|
+
195: "uncategorized" /* Uncategorized */,
|
|
615
|
+
// Dialectic Moonphase
|
|
616
|
+
196: "uncategorized" /* Uncategorized */,
|
|
617
|
+
// Dialectic Chronograph
|
|
546
618
|
197: "yield-optimizer" /* YieldOptimizer */,
|
|
547
619
|
// Spectra
|
|
548
620
|
198: "yield-optimizer" /* YieldOptimizer */,
|
|
@@ -585,10 +657,12 @@ var productCategoryMap = {
|
|
|
585
657
|
// Credit Guild
|
|
586
658
|
217: "yield-optimizer" /* YieldOptimizer */,
|
|
587
659
|
// Reserve
|
|
588
|
-
218: "yield-optimizer" /* YieldOptimizer
|
|
660
|
+
218: "yield-optimizer" /* YieldOptimizer */,
|
|
589
661
|
// Contango
|
|
590
|
-
|
|
591
|
-
//
|
|
662
|
+
219: "uncategorized" /* Uncategorized */,
|
|
663
|
+
// Flat Money (deprecated)
|
|
664
|
+
220: "uncategorized" /* Uncategorized */
|
|
665
|
+
// Flat Money
|
|
592
666
|
};
|
|
593
667
|
|
|
594
668
|
// src/constants/index.ts
|
|
@@ -4604,7 +4678,7 @@ var products_default = [
|
|
|
4604
4678
|
"USDC"
|
|
4605
4679
|
],
|
|
4606
4680
|
isPrivate: false,
|
|
4607
|
-
timestamp:
|
|
4681
|
+
timestamp: 1723127459
|
|
4608
4682
|
},
|
|
4609
4683
|
{
|
|
4610
4684
|
id: 220,
|