-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathvaults-v2-listing.json
More file actions
1873 lines (1873 loc) · 73 KB
/
vaults-v2-listing.json
File metadata and controls
1873 lines (1873 loc) · 73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"address": "0x89BeDBB1C4837444Da215A377275Ff96A84D6f53",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/anthias.svg",
"description": "The Moonwell Flagship ETH Morpho Vault curated by Anthias Labs is intended to optimize risk-adjusted interest earned from blue-chip collateral markets.",
"history": [
{
"action": "added",
"timestamp": 1773884158
}
]
},
{
"address": "0x5083b1387Ec3d4Ee6467B83890D98f1AF93F7c48",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/anthias.svg",
"description": "The Moonwell Flagship EURC Morpho Vault curated by Anthias Labs is intended to optimize risk-adjusted interest earned from blue-chip collateral markets.",
"history": [
{
"action": "added",
"timestamp": 1773884481
}
]
},
{
"address": "0xbeeff77CE5C059445714E6A3490E273fE7F2492F",
"chainId": 42161,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse High Yield USDT0 vault aims to optimize for yield on a wide range of collaterals.",
"history": [
{
"action": "added",
"timestamp": 1765877880
}
]
},
{
"address": "0xdbA76Bc542bb07538e046B40F2e8a215B409F7A8",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/anthias.svg",
"description": "The Moonwell Frontier cbBTC Vault curated by Anthias Labs is intended to optimize risk adjusted interest earned from BTC liquid restaking tokens as collateral. Unlike the more conservative Moonwell Flagship Vaults, Moonwell Frontier Vaults offer a higher risk reward opportunity for those interested in emerging Bitcoin derivative markets.",
"history": [
{
"action": "added",
"timestamp": 1773884544
}
]
},
{
"address": "0x093272C07700d3cA5301C3Bf9B3A392624179E2F",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/hyperithm.svg",
"description": "Hyperithm USDC Apex vault maximizes yield by swiftly integrating unique collaterals providing borrowers with high-return opportunities through active optimization while ensuring effective risk management.",
"history": [
{
"action": "added",
"timestamp": 1761742817
}
]
},
{
"address": "0xbeef009F28cCf367444a9F79096862920e025DC1",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse Prime EURC vault aims to optimize yields by lending EURC against blue chip collaterals.",
"history": [
{
"action": "added",
"timestamp": 1768949150
}
]
},
{
"address": "0xBeEF00fc6e87dE086A0e29169A2f6e25cF5C11a9",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The vault aims to optimize yields by lending USDC against blue chip crypto and real world asset RWA collateral markets depending on market conditions.",
"history": [
{
"action": "added",
"timestamp": 1766427614
}
]
},
{
"address": "0xbeef003E31546C7210687f1A7b40d096BE83ec58",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse Prime EURC vault aims to optimize yields by lending EURC against blue chip crypto and real world asset RWA collateral markets depending on market conditions.",
"history": [
{
"action": "added",
"timestamp": 1769591144
}
]
},
{
"address": "0x5f829B1B473cBA86838E1B7BB7E144DbDE228e21",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/rkx.svg",
"description": "The RockawayX USDC Prime vault allocates USDC across a curated set of bluechips ETH and BTC-backed Morpho markets to deliver sustainable risk-adjusted lending yield. Exposure is limited to established collateral with proven audit history and deep on-chain liquidity.",
"history": [
{
"action": "added",
"timestamp": 1774298186
}
]
},
{
"address": "0x0B7ee82ad75B2D3fc7f3A110A51ba68714171D25",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/re7.png",
"description": "The Universal USDC vault supplies USDC against assets issued by Universal a wrapped asset protocol designed to enable trading for any token on any chain",
"history": [
{
"action": "added",
"timestamp": 1761429965
}
]
},
{
"address": "0xF39AC02DEc8faE8292d5f42202e4Cd885356256B",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/singularv.svg",
"description": "SingularV ETH lending vault on Morpho V2 that allocates across diversified collateral markets to generate yield for depositors. Curated by SingularV with a focus on risk-adjusted returns through disciplined market selection and parameter management.",
"history": [
{
"action": "added",
"timestamp": 1771467392
}
]
},
{
"address": "0xD1E9242e075Db4bdd3f3c721D7d5fd4180A94A7e",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/clearstar.svg",
"description": "Re Ecosystem Vault exclusively allocates to assets related to the re.xyz ecosystem.\nFind more info about Re on their website re.xyz",
"history": [
{
"action": "added",
"timestamp": 1764780866
}
]
},
{
"address": "0xBEEfF0d672ab7F5018dFB614c93981045D4aA98a",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "Grove x Steakhouse AUSD for Grove AUSD allocation.",
"history": [
{
"action": "added",
"timestamp": 1769459583
}
]
},
{
"address": "0xae9A5aa54ae43BB8811435F02A29E9d2B43CDC7C",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/clearstar.svg",
"description": "The Clearstar ETH Reactor vault maximizes ETH yields while fostering the growth of a wide range of collateral assets. By combining strategic asset selection with intelligent routing across efficient lending markets it creates a flywheel of liquidity and sustainability. This vault has automated reallocation to maximize APR within static risk parameter.",
"history": [
{
"action": "added",
"timestamp": 1769073188
}
]
},
{
"address": "0xe7D0DBE3493830e2Ab62619211A2BfF0Fc60dB42",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/yearn.svg",
"description": "Yearn OG vaults lend underlying assets to markets labeled as moderate risk by the Yearn team. Optimization across markets is handled automatically via an algorithm developed by Yearn. Supply caps are set based on various factors and continuously monitored by the Yearn team as well.",
"history": [
{
"action": "added",
"timestamp": 1769536626
}
]
},
{
"address": "0xF3Cc5c9A25508D8d959618fd48F6AbC18cA4Db49",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/clearstar.svg",
"description": "The Clearstar Boring USDC vault maximizes USDC yields and allocates exclusively to bluechip and highly liquid assets.",
"history": [
{
"action": "added",
"timestamp": 1769724504
}
]
},
{
"address": "0xbB2F06CeAE42CBcF5559Ed0713538c8892D977c9",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/anthias.svg",
"description": "The Moonwell Ecosystem USDC Vault is a strategic vault designed to support the long term growth of the Moonwell ecosystem. Built on Morpho and curated by Anthias Labs it provides capital efficiency and professional risk oversight to power future expansion.",
"history": [
{
"action": "added",
"timestamp": 1766543281
}
]
},
{
"address": "0xbEeF006fb43820C864894892db0eCFEee3FdF587",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "USDC vault for Riva ecosystem.",
"history": [
{
"action": "added",
"timestamp": 1773835232
}
]
},
{
"address": "0x5dbf760b4fd0cDdDe0366b33aEb338b2A6d77725",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/kpk.svg",
"description": "A ETH vault with 24h automation targeting a balanced risk profile. Allocations are continuously rebalanced across incentive-rich markets on Ethereum with strict caps in place to preserve liquidity and mitigate risk.",
"history": [
{
"action": "added",
"timestamp": 1769036147
}
]
},
{
"address": "0xe09A93786275546690247d70f1767cF0b69e8Ea0",
"chainId": 143,
"image": "https://cdn.morpho.org/v2/assets/images/hyperithm.svg",
"description": "Hyperithm cbBTC Apex vault maximizes yield by swiftly integrating unique collaterals providing borrowers with high-return opportunities through active optimization while ensuring effective risk management.",
"history": [
{
"action": "added",
"timestamp": 1773035050
}
]
},
{
"address": "0xbeef0e0834849aCC03f0089F01f4F1Eeb06873C9",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "Steakhouse Prime Instant vault aims to optimize yields by lending USDC against blue chip crypto and real world asset RWA collateral markets depending on market conditions. We call this the dual engine.",
"history": [
{
"action": "added",
"timestamp": 1761680527
}
]
},
{
"address": "0x242572d6f1AF7111bcA807ECDd0f74108cEAeD5d",
"chainId": 999,
"image": "https://cdn.morpho.org/v2/assets/images/alphaping.png",
"description": "Alpha USDT Prime is a USDT-denominated vault that allocates capital across selected lending markets and strategies within the AlphaPing ecosystem. The vault focuses on capital efficiency liquidity and disciplined risk management while dynamically adjusting allocations as market conditions evolve.",
"history": [
{
"action": "added",
"timestamp": 1777384652
}
]
},
{
"address": "0xe2221Aa07ec3266DA87763E2b1e28d07A8a4e53b",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/api3.svg",
"description": "Api3 Core USDC focuses on conservative lending against the highest-quality collateral available. By limiting exposure to well-established assets and recapturing liquidation incentives through Api3s oracle design the vault prioritizes capital preservation and stable returns across market conditions.",
"history": [
{
"action": "added",
"timestamp": 1767009399
}
]
},
{
"address": "0x2EfD54529329AD364B8Df988CE3BAb5Ff256ab3E",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/yearn.svg",
"description": "Yearn OG vaults lend underlying assets to markets labeled as moderate risk by the Yearn team. Optimization across markets is handled automatically via an algorithm developed by Yearn. Supply caps are set based on various factors and continuously monitored by the Yearn team as well.",
"history": [
{
"action": "added",
"timestamp": 1769541034
}
]
},
{
"address": "0xeb6719c14BA01Bf1D6bFB78A65F63f12FabF202C",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/alphaping.png",
"description": "Alpha APXUSD V2 is an actively curated on-chain credit vault designed to allocate capital across selected overcollateralized lending opportunities based on risk liquidity and market conditions.",
"history": [
{
"action": "added",
"timestamp": 1773477521
}
]
},
{
"address": "0x43fCd85E8D9D003D515f886891B7C742AC9f92da",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet WETH Prime vault aims to optimize for risk-adjusted yield by allocating across large market cap assets and high liquidity yield sources. The vaults risk strategy follows the Gauntlet Prime conservative framework whereby we curate supply to manage security and yield to provide a low risk profile at competitive APYs.",
"history": [
{
"action": "added",
"timestamp": 1761324026
}
]
},
{
"address": "0xb7Df8db22A5DBBFA9ebeb94b3910aec6a4f05c08",
"chainId": 988,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet USDT0 Balanced vault aims to optimize for risk-adjusted yield across large and medium market cap assets and high liquidity yield sources. The vaults risk strategy follows Gauntlets Balanced framework whereby we curate supply to balance security and yield to provide a low risk profile at competitive APYs",
"history": [
{
"action": "added",
"timestamp": 1764720918
}
]
},
{
"address": "0x8effa741061aaA2d8A5012a9B09A2d31d8B628d7",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/architect.svg",
"description": "ARCHITECT GLOBAL VALUE partners with a select group of exceptional curators distinguished by judgement and demonstrable edge in capital markets. ARCHITECT backs stewards who operate with clarity of mandate and a long-term orientation towards enduring value creation.",
"history": [
{
"action": "added",
"timestamp": 1763319176
}
]
},
{
"address": "0x91600E31fBeDc72433d4a57F16639cfe661Be7d8",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/galaxy.png",
"description": "The Galaxy Quality Stablecoin Vault allocates stablecoin liquidity across a curated selection of markets collateralized exclusively by blue chip assets. The vault is structured for depositors whose primary objective is capital preservation with yield treated as a secondary consideration.",
"history": [
{
"action": "added",
"timestamp": 1775583991
}
]
},
{
"address": "0xbeEFf443C3CbA3E369DA795002243BeaC311aB83",
"chainId": 143,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse High Yield USDC vault aims to optimize yields by lending USDC against a wide range of collaterals.",
"history": [
{
"action": "added",
"timestamp": 1763987839
}
]
},
{
"address": "0x2bD3A43863c07B6A01581FADa0E1614ca5DF0E3d",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/skymoney.svg",
"description": "sky.money USDT Risk Capital vault accepts USDT deposits and deploys them exclusively into an stUSDS-USDT Morpho market.",
"history": [
{
"action": "added",
"timestamp": 1771753347
}
]
},
{
"address": "0xBEEf3f3A04e28895f3D5163d910474901981183D",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The 3F x Steakhouse USDC Vault lends against a curated set of institutional-grade RWAs and crypto assets with real-world exposure. It targets yields supported by disciplined structuring and risk management.",
"history": [
{
"action": "added",
"timestamp": 1768413207
}
]
},
{
"address": "0xFeFeC33668E22677c4762d0853d56245a800ff08",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet WETH Balanced vault aims to optimize for risk-adjusted yield across large and medium market cap assets and high liquidity yield sources. The vaults risk strategy follows Gauntlets Balanced framework whereby we curate supply to balance security and yield to provide a low risk profile at competitive APYs.",
"history": [
{
"action": "added",
"timestamp": 1761329605
}
]
},
{
"address": "0x9a1D6bd5b8642C41F25e0958129B85f8E1176F3e",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet USDC Frontier Vault targets maximum yield by allocating to potentially higher volatility yield sources that may face liquidity risks in exchange for greater returns. The vaults risk strategy follows Gauntlets Frontier framework whereby we curate supply to aggressively target higher yields while managing security to provide an aggressive risk profile at competitive APYs.",
"history": [
{
"action": "added",
"timestamp": 1761331659
}
]
},
{
"address": "0x1394841afe9cb4Eaad8d60278AF25ecbe179C5Af",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/hyperithm.svg",
"description": "Hyperithm ETH Apex vault maximizes yield by swiftly integrating unique collaterals providing borrowers with high-return opportunities through active optimization while ensuring effective risk management.",
"history": [
{
"action": "added",
"timestamp": 1765813190
},
{
"action": "removed",
"timestamp": 1777060418
}
]
},
{
"address": "0x04447273Ee808702a4855403af0acE8E7c042122",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/re7.png",
"description": "The Re7 USDC Prime vault curated by Re7 Labs is intended to seamlessly allocate USDC liquidity to a selection of blue-chip Morpho markets targeting risk-adjusted yield.",
"history": [
{
"action": "added",
"timestamp": 1772824246
}
]
},
{
"address": "0x91C056B6d4311a743614FBc03ac32d4E6A2d3a3c",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/clearstar.svg",
"description": "The Clearstar High Yield USDC vault aims to provide liquidity to volatile and frontier assets on Base. Potential higher volatility markets mean higher implied risks in exchange for high yields. This vault has automated reallocation to maximize APR within static risk parameters and also monitors active on-chain risks.",
"history": [
{
"action": "added",
"timestamp": 1769074885
}
]
},
{
"address": "0xbeef00B5d83C1188F07A5184230a805639c39f04",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse Prime Instant PYUSD vault aims to optimize yields by lending PYUSD against blue chip crypto and real world asset RWA collateral markets depending on market conditions.",
"history": [
{
"action": "added",
"timestamp": 1764415706
}
]
},
{
"address": "0x78999cc96d2Ba0341588C60CcB0E91c6C33CF371",
"chainId": 143,
"image": "https://cdn.morpho.org/v2/assets/images/hyperithm.svg",
"description": "Hyperithm USDC Apex vault maximizes yield by swiftly integrating unique collaterals providing borrowers with high-return opportunities through active optimization while ensuring effective risk management.",
"history": [
{
"action": "added",
"timestamp": 1767946750
}
]
},
{
"address": "0xe9f691cF56a15E662764d2a8245c1Cf2C909a4d9",
"chainId": 747474,
"image": "https://cdn.morpho.org/v2/assets/images/hyperithm.svg",
"description": "Hyperithm vbUSDC Apex vault maximizes yield by swiftly integrating unique collaterals providing borrowers with high-return opportunities through active optimization while ensuring effective risk management.",
"history": [
{
"action": "added",
"timestamp": 1767597612
}
]
},
{
"address": "0xBEEf0F82E269760429BE6255Fa00821b7e4b592A",
"chainId": 137,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "Steakhouse PaoTech JPYC lends against blue chip collaterals.",
"history": [
{
"action": "added",
"timestamp": 1769459674
}
]
},
{
"address": "0x90B482cA9769807569998B20e062e024B1A0A39d",
"chainId": 1,
"image": "https://cdn.morpho.org/assets/logos/usdc.svg",
"description": "This is a Test V2 USDC Vault",
"forumLink": "https://morpho.org",
"history": [
{
"action": "added",
"timestamp": 1758637162
},
{
"action": "removed",
"timestamp": 1759150800
}
]
},
{
"address": "0x44dd77d51629987d9555c762bF09903928c70206",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/alphaping.png",
"description": "Alpha USDC Prime V2 is a USDC-denominated vault that allocates capital across selected lending markets and strategies within the AlphaPing ecosystem. The vault focuses on capital efficiency liquidity and disciplined risk management while dynamically adjusting allocations as market conditions evolve.",
"history": [
{
"action": "added",
"timestamp": 1777535132
}
]
},
{
"address": "0xbEeFf89ABb7815cCD5182BD1FF82C4a4F8FCb13D",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse High Yield Instant AUSD vault aims to optimize yields by lending AUSD against a wide range of collaterals.",
"history": [
{
"action": "added",
"timestamp": 1766004842
}
]
},
{
"address": "0xeBBaE8CfAbB0092d5B32f00EBeE0c8139d24dDcd",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/avantgarde.svg",
"description": "The Avantgarde USDC Conservative vault aims to allocate to the most liquid USDC markets across the highest quality collateral.",
"history": [
{
"action": "added",
"timestamp": 1768825437
}
]
},
{
"address": "0x1e9e47583f15D45a10Df48c0b1846E0492c795D7",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/galaxy.png",
"description": "The Galaxy Quality Stablecoin Vault allocates stablecoin liquidity across a curated selection of markets collateralized exclusively by blue chip assets. The vault is structured for depositors whose primary objective is capital preservation with yield treated as a secondary consideration.",
"history": [
{
"action": "added",
"timestamp": 1777583844
}
]
},
{
"address": "0xa877D5bb0274dcCbA8556154A30E1Ca4021a275f",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/kpk.svg",
"description": "A low-risk EURC vault with 24h automation. Allocations are continuously rebalanced across liquid markets with strict collateral filters to preserve liquidity and mitigate risk.",
"history": [
{
"action": "added",
"timestamp": 1762876519
}
]
},
{
"address": "0xbeeff96D65Cb80a0029dc9D3C4d7306c3C3A6253",
"chainId": 143,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse High Yield ETH vault aims to optimize yields by lending WETH against a wide range of collaterals.",
"history": [
{
"action": "added",
"timestamp": 1773064026
}
]
},
{
"address": "0x8E56CB6Bc1a8961ed9062B99045D3299b27CDb4D",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/avantgarde.svg",
"description": "The Avantgarde USDC Dynamic vault optimises risk-adjusted returns by allocating across a broader range of liquid USDC markets.",
"history": [
{
"action": "added",
"timestamp": 1773831206
}
]
},
{
"address": "0xe479bCbc98579bA3E1a1261f7bE85C4C10303d88",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/sentora.svg",
"description": "The Sentora PYUSD Core vault allocates deposits to be borrowed by supremely battle tested assets with over 1B in circulation and years of track record.",
"history": [
{
"action": "added",
"timestamp": 1768941611
}
]
},
{
"address": "0xbeeffeA75cFC4128ebe10C8D7aE22016D215060D",
"chainId": 143,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse High Yield AUSD vault aims to optimize yields by lending AUSD against a wide range of collaterals.",
"history": [
{
"action": "added",
"timestamp": 1763988028
}
]
},
{
"address": "0x0ED3615ff949C8A34D15441970900E849A3409FC",
"chainId": 143,
"image": "https://cdn.morpho.org/v2/assets/images/unified-labs.svg",
"description": "Institutional-grade RWA lending vault curated by Unified Labs, Asia's first Risk Curator focused on RWA lending on Morpho. Lending against professionally vetted, tokenized real-world asset collaterals with conservative risk parameters.",
"history": [
{
"action": "added",
"timestamp": 1776234041
}
]
},
{
"address": "0x4C7b69b4a82e9E5D8ec60E96516f7A0E17CBC55C",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/clearstar.svg",
"description": "The Clearstar EURC Reactor vault maximizes EURC yields while fostering the growth of high-quality collateral assets. By combining strategic asset selection with intelligent routing across efficient lending markets it creates a flywheel of liquidity and sustainability. This vault has automated reallocation to maximize APR within static risk parameters.",
"history": [
{
"action": "added",
"timestamp": 1769031983
}
]
},
{
"address": "0xb576765fB15505433aF24FEe2c0325895C559FB2",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/sentora.svg",
"description": "Sentora Vault provides superior risk-adjusted returns by lending against top-tier collaterals from Bitcoin wrappers to staked ETH and yield-bearing stablecoin derivatives with strong risk management.",
"history": [
{
"action": "added",
"timestamp": 1765985556
}
]
},
{
"address": "0x4Ef53d2cAa51C447fdFEEedee8F07FD1962C9ee6",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/kpk.svg",
"description": "A low-risk USDC vault with 24h automation. Allocations are continuously rebalanced across liquid markets with strict collateral filters to preserve liquidity and mitigate risk.",
"history": [
{
"action": "added",
"timestamp": 1762877149
}
]
},
{
"address": "0x56bfa6f53669B836D1E0Dfa5e99706b12c373ecf",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/skymoney.svg",
"description": "sky.money USDC Risk Capital vault accepts USDC deposits and deploys them exclusively into an stUSDS-USDC Morpho market.",
"history": [
{
"action": "added",
"timestamp": 1771753437
}
]
},
{
"address": "0x8c106EEDAd96553e64287A5A6839c3Cc78afA3D0",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet USDC Prime vault aims to optimize for risk-adjusted yield by allocating across large market cap assets and high liquidity yield sources. The vaults risk strategy follows the Gauntlet Prime conservative framework whereby we curate supply to manage security and yield to provide a low risk profile at competitive APY",
"history": [
{
"action": "added",
"timestamp": 1761323825
}
]
},
{
"address": "0xBEeFF047C03714965a54b671A37C18beF6b96210",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse Reservoir USDC vault aims to optimize yield on USDC lending against a wide range of collateral assets from the Reservoir ecosystem.",
"history": [
{
"action": "added",
"timestamp": 1769079685
}
]
},
{
"address": "0x3d63934715b6D4c4DFbBC1a00Fe2A2145079DD76",
"chainId": 10,
"image": "https://cdn.morpho.org/v2/assets/images/re7.png",
"description": "The Re7 WETH Morpho V2 vault curated by Re7 Labs aims to outperform staked ETH yields by lending WETH against a diverse set of Liquid Staking and Liquid Restaking Token collateral markets",
"history": [
{
"action": "added",
"timestamp": 1776770567
}
]
},
{
"address": "0xCa120dCc42F45427eD0d0f060d56104c4a8EDEC4",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/re7.png",
"description": "The Re7 WETH Morpho V2 vault curated by Re7 Labs aims to outperform staked ETH yields by lending WETH against a diverse set of Liquid Staking and Liquid Restaking Token collateral markets",
"history": [
{
"action": "added",
"timestamp": 1761431297
}
]
},
{
"address": "0xbeef009FF4FB1727297BF2526806F4A73E4b99aD",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "Steakhouse Prime frxUSD vault aims to optimize yields by lending frxUSD against blue chip crypto and real world asset RWA collateral.",
"history": [
{
"action": "added",
"timestamp": 1773245489
}
]
},
{
"address": "0xbeef00A299ae1784Fb7740d2d469F60a1E015fe9",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse Prime XSGD vault aims to optimize yields by lending XSGD against blue chip crypto assets.",
"history": [
{
"action": "added",
"timestamp": 1764007009
}
]
},
{
"address": "0xbeef0046fcab1dE47E41fB75BB3dC4Dfc94108E3",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse Prime Instant ETH vault aims to optimize yields by lending ETH against blue chip crypto and real world asset RWA collateral markets depending on market conditions.",
"history": [
{
"action": "added",
"timestamp": 1764415830
}
]
},
{
"address": "0xbeeff1D5dE8F79ff37a151681100B039661da518",
"chainId": 42161,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse High Yield USDC vault aims to optimize for yield on a wide range of collaterals.",
"history": [
{
"action": "added",
"timestamp": 1765878285
}
]
},
{
"address": "0xbeeffABcd0dB09589Dd21854aa760C52aB4bf04F",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse tGBP vault aims to optimize yields by lending tGBP against a wide range of collaterals.",
"history": [
{
"action": "added",
"timestamp": 1776449454
}
]
},
{
"address": "0x610D151aE40662AE148cdBaaE1Ea5904b6AFAE78",
"chainId": 42161,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet USDC Prime vault aims to optimize for risk-adjusted yield by allocating across large market cap assets and high liquidity yield sources. The vaults risk strategy follows the Gauntlet Prime conservative framework whereby we curate supply to manage security and yield to provide a low risk profile at competitive APY",
"history": [
{
"action": "added",
"timestamp": 1767903866
}
]
},
{
"address": "0x1deEfABEe758AAbdC29a542B24ca3b75aFD56765",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet USDC Frontier Vault targets maximum yield by allocating to potentially higher volatility yield sources that may face liquidity risks in exchange for greater returns. The vaults risk strategy follows Gauntlets Frontier framework whereby we curate supply to aggressively target higher yields while managing security to provide an aggressive risk profile at competitive APYs.",
"history": [
{
"action": "added",
"timestamp": 1761340379
}
]
},
{
"address": "0xbeef0C075Da5D01112AE5cF34d257074fB5DDB2f",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "The Steakhouse Prime Instant EURCV vault aims to optimize yields by lending EURCV against blue chip crypto and real world asset RWA collateral markets depending on market conditions.",
"history": [
{
"action": "added",
"timestamp": 1765877626
}
]
},
{
"address": "0x04422053aDDbc9bB2759b248B574e3FCA76Bc145",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/keyrock.svg",
"description": "Keyrocks V2 USDC vault leverages our experience in fixed lending operations and enhances the end users experience providing them the solution that best fits their trading requirements",
"history": [
{
"action": "added",
"timestamp": 1759743317
}
]
},
{
"address": "0xBb50A5341368751024ddf33385BA8cf61fE65FF9",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/kpk.svg",
"description": "A low-risk ETH vault with 24h automation. Allocations are continuously rebalanced across liquid markets with strict collateral filters in place to preserve liquidity and mitigate risk.",
"history": [
{
"action": "added",
"timestamp": 1762876802
}
]
},
{
"address": "0x54210d3f1A066413891AF9E17210E787d5C6e3f4",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/api3.svg",
"description": "Kabu USDC brings stablecoin liquidity to assets other curators avoid. By operating both the oracle and the vault - Api3 can deliver price updates precisely when liquidation thresholds are reached and not only on broad deviations. Combined with Morpho partial liquidation design this added oracle precision allows long tail assets to be supported in a safer and more controlled way. This allows Kabu to operate markets that other curators cannot run safely.",
"history": [
{
"action": "added",
"timestamp": 1767378248
}
]
},
{
"address": "0x787FC686879EaCE7Ad94A63fcEcd520fdeAf7AF9",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/re7.png",
"description": "The fx Protocol USDC vault lends against assets in the fx protocol ecosystem in partnership with Aladdin DAO",
"history": [
{
"action": "added",
"timestamp": 1761493130
},
{
"action": "removed",
"timestamp": 1776785763
}
]
},
{
"address": "0xA1B096268D200d0ecFD57015700F6a0DA9c494e2",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/edge-capital-ultrayield.svg",
"description": "The YieldNest RWA USDC vault curated by the UltraYield team provides diversified exposure to YieldNest ynRWAx Morpho market by lending USDC to achieve an optimized risk-adjusted return.",
"history": [
{
"action": "added",
"timestamp": 1768926536
}
]
},
{
"address": "0xbeeff7aE5E00Aae3Db302e4B0d8C883810a58100",
"chainId": 8453,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "Steakhouse High Yield Instant vault aims to optimize for yield on a wide range of collaterals.",
"history": [
{
"action": "added",
"timestamp": 1761760095
}
]
},
{
"address": "0x5181cD56C2C71d20094d23d43F4D6362834643AE",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/re7.png",
"description": "The Re7 WETH Morpho vault curated by Re7 Labs aims to outperform staked ETH yields by lending WETH against a diverse set of Liquid Staking and Liquid Restaking Token collateral markets",
"history": [
{
"action": "added",
"timestamp": 1761507626
}
]
},
{
"address": "0xD5cCe260E7a755DDf0Fb9cdF06443d593AaeaA13",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/kpk.svg",
"description": "A USDC vault with 24h automation targeting a balanced risk profile. Allocations are continuously rebalanced across incentive-rich markets on Ethereum with strict caps in place to preserve liquidity and mitigate risk",
"history": [
{
"action": "added",
"timestamp": 1769427977
}
]
},
{
"address": "0xd8CD72A2eB7A4312404C00AeD5172C0026da0C27",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/alphaping.png",
"description": "Alpha Enhanced for Frax USD is a higher-conviction credit strategy for allocators seeking returns beyond baseline stablecoin lending. The vault deploys frxUSD across a curated set of strategy-driven on-chain credit and liquidity venues including structured borrowing markets incentive-aligned pools and yield mechanisms linked to frxUSDs role within the Frax Finance ecosystem and broader tokenized credit infrastructure.",
"history": [
{
"action": "added",
"timestamp": 1771275803
}
]
},
{
"address": "0x132Fe294ea9b6faD8cA00554D211d5F2b905c1AD",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/avantgarde.svg",
"description": "The Avantgarde WETH Conservative vault aims to allocate to the most liquid WETH markets across the highest quality collateral.",
"history": [
{
"action": "added",
"timestamp": 1769085828
}
]
},
{
"address": "0xE571B648569619566CF6ce1060C97B621CB635D3",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet USDT Frontier Vault targets maximum yield by allocating to potentially higher volatility yield sources that may face liquidity risks in exchange for greater returns. The vaults risk strategy follows Gauntlets Frontier framework whereby we curate supply to aggressively target higher yields while managing security to provide an aggressive risk profile at competitive APYs.",
"history": [
{
"action": "added",
"timestamp": 1764347724
}
]
},
{
"address": "0xBeefF08dF54897e7544aB01d0e86f013DA354111",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "Grove x Steakhouse USDC for Grove USDC allocation.",
"history": [
{
"action": "added",
"timestamp": 1769459445
}
]
},
{
"address": "0xbeef088055857739C12CD3765F20b7679Def0f51",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/steakhouse.svg",
"description": "Steakhouse Prime Instant vault aims to optimize yields by lending USDC against blue chip crypto and real world asset RWA collateral markets depending on market conditions. We call this the dual engine.",
"history": [
{
"action": "added",
"timestamp": 1761680671
}
]
},
{
"address": "0x5f342382D5F77F0f99E8f26161E689df6c7Cded3",
"chainId": 1,
"image": "https://cdn.morpho.org/v2/assets/images/gauntlet.svg",
"description": "The Gauntlet WETH Balanced vault aims to optimize for risk-adjusted yield across large and medium market cap assets and high liquidity yield sources. The vaults risk strategy follows Gauntlets Balanced framework whereby we curate supply to balance security and yield to provide a low risk profile at competitive APYs.",
"history": [
{
"action": "added",
"timestamp": 1761324110
}
]
},
{
"address": "0xbeeff9eBE518d1C7E552c4BbfB99487435c4dEc9",