-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathmainnet.json
More file actions
3347 lines (3347 loc) · 179 KB
/
mainnet.json
File metadata and controls
3347 lines (3347 loc) · 179 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
{
"$schema": "../../schemas/vaults.schema.json",
"name": "Berachain Mainnet Default Reward Vault List",
"categories": [
{
"slug": "defi",
"name": "DeFi",
"subcategories": [
{
"slug": "amm",
"name": "AMM"
},
{
"slug": "cdp",
"name": "CDP"
},
{
"slug": "lending",
"name": "Lending"
},
{
"slug": "liquid-staking",
"name": "Liquid Staking"
},
{
"slug": "yield",
"name": "Yield"
},
{
"slug": "derivatives",
"name": "Derivatives"
},
{
"slug": "options",
"name": "Options"
},
{
"slug": "dex-agg",
"name": "DEX Aggregators"
}
]
},
{
"slug": "gamefi",
"name": "GameFi",
"description": "GameFi is a category of blockchain-based games that combine elements of traditional gaming with blockchain technology."
},
{
"slug": "memecoin",
"name": "Memecoin"
}
],
"protocols": [
{
"name": "HUB",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/hub.png/public",
"url": "https://hub.berachain.com",
"description": "Swap a variety of tokens effortlessly on our decentralized platform. Provide liquidity to pools and earn BGT rewards.",
"tags": ["platform"]
},
{
"name": "Bend",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/bend.png/public",
"url": "https://bend.berachain.com",
"description": "Lend and borrow your assets on Berachain native lending market",
"tags": ["platform"]
},
{
"name": "Concrete",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/concrete.png/public",
"url": "https://app.concrete.xyz",
"description": "Concrete is the DeFi Liquidity Metalayer",
"tags": ["platform"]
},
{
"name": "WeBera",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/webera.png/public",
"url": "https://webera.finance/",
"description": "WeBera is a permissionless yield abstraction layer designed to simplify participation in DeFi on the Berachain ecosystem.",
"tags": ["platform"]
},
{
"name": "BurrBear",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/burrbear.png/public",
"url": "https://app.burrbear.io/",
"description": "BurrBear is a decentralized exchange and DeFi protocol on Berachain.",
"tags": ["platform"]
},
{
"name": "Charm",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/charm.jpg/public",
"url": "https://app.charm.fi/berachain/vaults",
"description": "Charm creates liquid markets for every asset through Alpha Vaults, a permissionless liquidity manager that creates deep liquidity for any token and profitable markets for liquidity providers.",
"tags": ["platform"]
},
{
"name": "Kodiak",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/kodiak.png/public",
"url": "https://app.kodiak.finance/",
"description": "Kodiak is a decentralized exchange for the Berachain ecosystem.",
"tags": ["platform"]
},
{
"name": "Yeet",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/yeet.png/public",
"url": "https://yeetit.xyz",
"description": "GigaBonzi",
"tags": ["platform"]
},
{
"name": "Infrared",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/infrared.png/public",
"url": "https://infrared.finance/",
"description": "Infrared is a DeFi protocol focused on innovative yield strategies and liquidity solutions.",
"tags": ["platform"]
},
{
"name": "Dolomite",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/dolomite.jpg/public",
"url": "https://dolomite.io/",
"description": "Dolomite is a decentralized money market protocol.",
"tags": ["platform"]
},
{
"name": "D2 Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/d2-finance.png/public",
"url": "https://d2.finance/strategies",
"description": "D2 Finance is a multi-strategy fund delivering tokenized derivatives strategies and derivatives trading, in a 100% on-chain solution.",
"tags": ["platform"]
},
{
"name": "Beraborrow",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/beraborrow.png/public",
"url": "https://app.beraborrow.com/",
"description": "Beraborrow unlocks instant liquidity against Berachain assets through the first PoL powered stablecoin, Nectar",
"tags": ["platform"]
},
{
"name": "Beradrome",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/beradrome.png/public",
"url": "https://www.beradrome.com/",
"description": "Beradrome is a decentralized exchange and liquidity protocol on Berachain.",
"tags": ["platform"]
},
{
"name": "Bulla Exchange",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/bulla-exchange.png/public",
"url": "https://www.bulla.exchange/",
"description": "Bulla Exchange is a decentralized trading platform on Berachain.",
"tags": ["platform"]
},
{
"name": "Wasabi",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/wasabi.png/public",
"url": "https://wasabi.xyz/",
"description": "Wasabi is a spot leverage DEX that allows you to long, short, swap, and earn on your favorite tokens.",
"tags": ["platform"]
},
{
"name": "Kuma",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/kuma.png/public",
"url": "https://kuma.bid",
"description": "Kuma is a layer 2 perpetual futures DEX powered by Berachain's Proof-of-Liquidity.",
"tags": ["platform"]
},
{
"name": "D8X",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/d8x.png/public",
"url": "https://www.d8x.exchange/",
"description": "D8X powers leveraged trading for the Berachain Ecosystem on DEXs like MadHoney.fi",
"tags": ["platform"]
},
{
"name": "bro.trade",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/brotrade.jpg/public",
"url": "https://app.bro.trade",
"description": "bro.trade is a community-driven, decentralized cryptocurrency trading platform specializing in perpetual futures (perps).",
"tags": ["platform"]
},
{
"name": "Wasabee",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/wasabee.png/public",
"url": "https://wasabee.xyz/",
"description": "Wasabee is a meme DEX for the Berachain ecosystem",
"tags": ["platform"]
},
{
"name": "Euler",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/euler.png/public",
"url": "https://euler.finance/",
"description": "Euler is a decentralized lending protocol.",
"tags": ["platform"]
},
{
"name": "Beratardio",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/beratardio.png/public",
"url": "https://beratardio.xyz",
"description": "Extra retarded (maybe sentient) bear smoking weed & buzzing off Mad Honey. First memecoin to graduate from @KodiakFi's Panda Factory."
},
{
"name": "IVX Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/ivx-finance.png/public",
"url": "https://ivx.fi",
"description": "IVX is a liquid options AMM built on top of Berachain network that allow users to trade zero days to expiry option contracts over a variety of assets.",
"tags": ["platform"]
},
{
"name": "Lode Trade",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/lode-trade.png/public",
"url": "https://lode.trade",
"description": "LODE is a decentralized trading platform that aggregates liquidity from both centralized and decentralized exchanges, offering deep liquidity, minimal slippage, and innovative risk management."
},
{
"name": "Wizzwoods",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/wizzwoods.png/public",
"url": "https://www.wizzwoods.com",
"description": "1st pixel farm game integrates interchain capabilities with a SocialFi twist."
},
{
"name": "OpenState",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/openstate.png/public",
"url": "https://openstate.com/?chain=berachain",
"description": "Openstate enables scalable yield infrastructure. Earn top yields and enjoy instant liquidity for BGT and more - all on Openstate."
},
{
"name": "Bearn",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/bearn.png/public",
"url": "https://bearn.sucks/",
"description": "BGT liquid locker and autocompounder"
},
{
"name": "Bedrock",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/bedrock.png/public",
"url": "https://www.bedrock.technology/",
"description": "Bedrock is the first multi-asset liquid restaking protocol, pioneering Bitcoin staking with uniBTC."
},
{
"name": "ZeroLend",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/zerolend.png/public",
"url": "https://zerolend.xyz",
"description": "ZeroLend is lending platform to lend/borrow medium and long-tail assets."
},
{
"name": "GetRichQuick",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/getrichquick.png/public",
"url": "https://www.grq.institute/",
"description": "A parody-powered financial experiment designed for degens, dreamers, and anyone who's ever ignored a \"DYOR\" warning."
},
{
"name": "BULL ISH",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/bull-ish.jpg/public",
"url": "https://game.bullas.xyz/",
"description": "Bull Ish is a Proof of Liquidity game where users spend BERA to 'spank a bera,' placing them in a queue to earn BGT while depositing the square root of their spank power into the Berachain vault.",
"tags": ["platform"]
},
{
"name": "BeraPaw",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/berapaw.png/public",
"url": "https://berapaw.com/",
"description": "BeraPaw is an innovative liquid staking protocol that converts Berachain's BERA and BGT into a more versatile and liquid assets, providing users with a seamless and hassle-free experience.",
"tags": ["platform"]
},
{
"name": "SX Bet",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/sx-bet.png/public",
"url": "https://bera.bet/",
"description": "On-chain sports betting exchange",
"tags": ["platform"]
},
{
"name": "Ether.fi",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/etherfi.png/public",
"url": "https://www.ether.fi",
"description": "Save, grow, spend.",
"tags": ["platform"]
},
{
"name": "Solv Protocol",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/solv-protocol.png/public",
"url": "https://solv.finance/",
"description": "Solv Protocol offers comprehensive financial services for Bitcoin holders including lending, liquid staking, yield generation, and fund management. Powered by large on-chain Bitcoin reserves.",
"tags": ["platform"]
},
{
"name": "Beramonium",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/beramonium.png/public",
"url": "https://beramonium.io",
"description": "Beramonium is an idle-RPG & economic strategy game on Berachain"
},
{
"name": "HoneyFun AI",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/honeyfun-ai.png/public",
"url": "https://app.honey.fun/",
"description": "We're bringing virtuals to Berachain. Create your memecoin/AI Agent in few clicks.",
"tags": ["platform"]
},
{
"name": "Roots",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/roots.png/public",
"url": "https://app.rootsfi.com",
"description": "Roots is a Berachain-native lending protocol that allows users to mint MEAD stablecoin against yield-generating assets, offering no-interest loans and minimal fees while retaining underlying APR.",
"tags": ["platform"]
},
{
"name": "TWIN Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/twin-finance.png/public",
"url": "https://app.twinfinance.io/",
"description": "TWIN Finance is a synthetic assets protocol for derivatives of real-world assets on Berachain"
},
{
"name": "Aquabera",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/aquabera.jpg/public",
"url": "https://app.aquabera.com/explore",
"description": "Liquidity management protocol that maximizes your returns while minimizing risks without requiring constant oversight.",
"tags": ["platform"]
},
{
"name": "Plutus",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/plutus.png/public",
"url": "https://plutus.fi",
"description": "Liquidity, Yield, and Stability — chains simplified. Parent protocol for Orange Finance, Berancia, Deep Thought, and LPfun. Plutus provides delta neutral yield strategies, simple interfaces for advanced strategies, and a berachain native algorithmic stable coin plsHONEY"
},
{
"name": "HENLO",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/henlo.png/public",
"url": "https://www.henlo.com",
"description": "HENLO is a memecoin built by 0xHoneyJar, designed for deep integration into Berachain PoL and DeFi ecosystem.",
"tags": ["platform"]
},
{
"name": "Origami Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/origami-finance.png/public",
"url": "https://origami.finance/collections",
"description": "Origami Finance offers automated DeFi strategies and yield optimization on Berachain.",
"tags": ["platform"]
},
{
"name": "Berabaddies Content Protocol",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/berabaddies-content-protocol.png/public",
"url": "https://www.notion.so/BaddieBounty-Public-Dashboard-208b0c2bc28880f68befec981f348ae6",
"description": "Berabaddies Content Protocol is a platform for incentivizing and managing content creation in the Berachain ecosystem.",
"tags": ["platform"]
},
{
"name": "GOING to ZERO",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/going-to-zero.png/public",
"url": "https://www.itsallzero.com/",
"description": "GOING to ZERO is a DeFi protocol focused on experimental tokenomics and community-driven incentives."
},
{
"name": "Ultraviolet",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/ultraviolet.png/public",
"url": "https://www.uvmoney.xyz/mint",
"description": "Ultraviolet is a yield-bearing derivatives protocol that enables users to speculate on BERA and infrared's iBGT premium through innovative DeFi products.",
"tags": ["platform"]
},
{
"name": "fatBERA",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/fatbera.png/public",
"url": "https://www.fatbera.xyz/",
"description": "fatBERA is a liquid staking token and yield product in the Berachain ecosystem."
},
{
"name": "Eden",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/eden.png/public",
"url": "https://eden.sexualfi.com",
"description": "The Gachapon proxy contract [0x73C7677A8bC73178aE36aD97C984df79E99A18CE] holds 100% of the staking token, which is only a placeholder token.",
"tags": ["platform"]
},
{
"name": "Apiology DAO",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/apiology-dao.png/public",
"url": "https://apiologydao.xyz",
"description": "The staking token is a treasury-held position; no external users can acquire it. Governance seat ownership is decentralized across 1,930 addresses, with no address controlling more than 20% of the seats. Seat holders can be viewed here: https://dune.com/thj/apiologydao"
},
{
"name": "Paddle Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/paddle-finance.png/public",
"url": "https://dapp.paddlefi.com/moneymarket",
"description": "Paddle Finance is a decentralized money market protocol on Berachain, enabling lending and borrowing of digital assets.",
"tags": ["platform"]
},
{
"name": "Kettle",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/kettle.png/public",
"url": "https://kettle.shop",
"description": "Kettle is a DeFi protocol on Berachain focused on innovative yield and liquidity strategies.",
"tags": ["platform"]
},
{
"name": "Stream Protocol",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/stream-protocol.png/public",
"url": "https://streamprotocol.money/",
"description": "Stream Protocol is a decentralized platform for streaming payments and programmable money on Berachain.",
"tags": ["platform"]
},
{
"name": "Lair Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/lair-finance.png/public",
"url": "https://app.lair.fi",
"description": "Lair Finance is a DeFi protocol for liquidity management and yield optimization on Berachain."
},
{
"name": "LiquidRoyalty",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/liquidroyalty.png/public",
"url": "https://liquidroyalty.com",
"description": "Liquid Royalty Protocol is an RWA tokenization protocol that tokenizes e-commerce cashflow from top e-commerce merchants into royalty tokens.",
"tags": ["platform"]
},
{
"name": "beraBTC",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/berabtc.png/public",
"url": "https://berabtc.xyz/",
"description": "beraBTC is a wrapped Bitcoin token and liquidity product on Berachain."
},
{
"name": "Jiko",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/jiko.png/public",
"url": "https://app.beraji.com/",
"description": "A yield optimizer protocol powering the PvP idle card game.",
"tags": ["platform"]
},
{
"name": "Batoshi",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/batoshi.png/public",
"url": "https://berabtc.io",
"description": "Batoshi Protocol aligns beraBTC liquidity, BVT governance, and Berachain's PoL system.",
"tags": ["platform"]
},
{
"name": "Bullas",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/bullas.png/public",
"url": "https://www.spankass.xyz/",
"description": "BULL ISH is the first PoL game on Berachain, creating an EV+ gaming experience.",
"tags": ["platform"]
},
{
"name": "Frax Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/frax-finance.png/public",
"url": "https://frax.com",
"description": "Frax Finance is a decentralized stablecoin and DeFi platform, offering the FRAX stablecoin and related products.",
"tags": ["platform"]
},
{
"name": "Ooga Booga",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/ooga-booga.png/public",
"url": "https://www.oogabooga.io/",
"description": "Ooga Booga is a meme and DeFi protocol on Berachain, focused on community-driven incentives and fun."
},
{
"name": "Booga Bullas",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/booga-bullas.png/public",
"url": "https://www.boogabullas.com/",
"description": "Pure leveraged Bera exposure, no liquidations, perpetual treasury growth through fees and buybacks.",
"tags": ["platform"]
},
{
"name": "Pendle",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/pendle.png/public",
"url": "https://www.pendle.finance/",
"description": "Pendle is a decentralized finance protocol that allows users to tokenize and sell future yields.",
"tags": ["platform"]
},
{
"name": "Honeypot Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/honeypot-finance.png/public",
"url": "https://wasabee.honeypotfinance.xyz/pools",
"description": "All-in-one Vault [0x9c52cD80455a9ee50610aC90e846e46E04014f6d] holds 100% of the staking token as the placeholder token.",
"tags": ["platform"]
},
{
"name": "BakerDAO",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/bakerdao.png/public",
"url": "https://bakerdao.io",
"description": "BakerDAO staking token owned by multisig. Rewards distributed to users with active loans/loops after snapshot block 5623025. Beneficial ownership will be decentralized to protocol users.",
"tags": ["platform"]
},
{
"name": "Quod In Altum",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/quod-in-altum.png/public",
"url": "https://panda.kodiak.finance/trade/0x41fc191d145307667ea3e50f244b78de9cddf53f",
"description": "The staking token is 100% controlled by BeraPaw's Proof of Liquidity Strategy Contract, where rewards will be used to buyback QIA and burn it, rewarding all holders in the process. Instead here is a list of QIA big holders addresses."
},
{
"name": "Stargate Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/stargate-finance.png/public",
"url": "https://stargate.finance/",
"description": "Stargate Finance is a cross-chain liquidity transfer protocol that enables seamless token transfers between different blockchains."
},
{
"name": "Golidilocks: Defi DAO (AMM, Yield Tokenisation platform and NFT lending), Origami (automated defi strategies) and Steer (automated liquidity manager)",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/golidilocks-defi-dao-amm-yield-tokenisation-platform-and-nft-lending-origami-automated-defi-strategies-and-steer-automated-liquidity-manager.png/public",
"url": "https://goldilocksdao.io",
"description": "Almost all supply currently in Beradrome farm."
},
{
"name": "SatLayer",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/satlayer.png/public",
"url": "https://app.satlayer.xyz/",
"description": "SatLayer is the economic layer for Bitcoin, making the best asset now fully programmable.",
"tags": ["platform"]
},
{
"name": "Sumer",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/sumer.png/public",
"url": "https://Sumer.money/",
"description": "Sumer is a liquidity infrastructure that combines lending, synthetic assets and cross chain liquidity into one unified pool to maximize capital efficiency.",
"tags": ["platform"]
},
{
"name": "WinnieSwap",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/winnieswap.png/public",
"url": "https://www.winnieswap.com",
"description": "Supercharging DeFi with Berachain Proof of Liquidity - enjoy deeper liquidity, smarter capital efficiency & sky-high APRs",
"tags": ["platform"]
},
{
"name": "BrownFi",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/brownfi.png/public",
"url": "https://brownfi.io/",
"description": "High Capital Efficiency (like UniswapV3) with simple LP management (like UniswapV2) and optimal returns for average LPers",
"tags": ["platform"]
},
{
"name": "TermMax",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/termmax.png/public",
"url": "https://ts.finance/termmax/",
"description": "High Capital Efficiency (like UniswapV3) with simple LP management (like UniswapV2) and optimal returns for average LPersA next-generation loan AMM offering one-click looping, range orders, fixed/variable rates, and customizable pricing curves.",
"tags": ["platform"]
},
{
"name": "apDAO",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/apdao.png/public",
"url": "https://apiologydao.0xhoneyjar.xyz/",
"description": "apDAO protocol on Berachain",
"tags": ["platform"]
},
{
"name": "Narra Agents",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/narra-agents.png/public",
"url": "https://arena.narralayer.ai",
"description": "Narra Agents is a PoL game on Berachain that contributes to the ecosystem by onboarding AI-curious users and creating novel dApp experiences. Users earn Pre-Narra (ZAI Points) through activities like holding NFTs and accumulating points, offering an engaging experience through random AI interaction while bringing an AI agent ecosystem to Berachain.",
"tags": ["platform"]
},
{
"name": "Smilee Finance",
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/protocols/smilee-finance.jpg/public",
"url": "https://smilee.finance/",
"description": "Smilee Finance is a DeFi protocol on Berachain",
"tags": ["platform"]
}
],
"vaults": [
{
"stakingTokenAddress": "0xdE04c469Ad658163e2a5E860a03A86B52f6FA8C8",
"vaultAddress": "0x6649Bc987a7c0fB0199c523de1b1b330cd0457A8",
"name": "BYUSD | HONEY",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x6649bc987a7c0fb0199c523de1b1b330cd0457a8.png/public",
"url": "https://hub.berachain.com/pools/0xde04c469ad658163e2a5e860a03a86b52f6fa8c8000000000000000000000000/details/",
"description": "Acquired by depositing liquidity into the BYUSD | HONEY Pool on Hub",
"owner": "Foundation",
"action": "Stake BYUSD / HONEY"
},
{
"stakingTokenAddress": "0xDd70A5eF7d8CfE5C5134b5f9874b09Fb5Ce812b4",
"vaultAddress": "0x17376aD6167a5592FbEAA42e6068c132474a513d",
"name": "WETH | WBERA",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x17376ad6167a5592fbeaa42e6068c132474a513d.png/public",
"url": "https://hub.berachain.com/pools/0xdd70a5ef7d8cfe5c5134b5f9874b09fb5ce812b4000200000000000000000003/details/",
"description": "Acquired by depositing liquidity into the WETH | WBERA Pool on Hub",
"owner": "Foundation",
"action": "Stake WETH / WBERA"
},
{
"stakingTokenAddress": "0x38fdD999Fe8783037dB1bBFE465759e312f2d809",
"vaultAddress": "0x086f82fa0cA310Cc835a9DB4f53697687ef149c7",
"name": "WBTC | WBERA",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x086f82fa0ca310cc835a9db4f53697687ef149c7.png/public",
"url": "https://hub.berachain.com/pools/0x38fdd999fe8783037db1bbfe465759e312f2d809000200000000000000000004/details/",
"description": "Acquired by depositing liquidity into the WBTC | WBERA Pool on Hub",
"owner": "Foundation",
"action": "Stake WBTC / WBERA"
},
{
"stakingTokenAddress": "0x30bba9cd9eb8c95824aa42faa1bb397b07545bc1",
"vaultAddress": "0xdb6e93cd7bddc45ebc411619792fc5f977316c38",
"name": "Bend - Re7 Honey",
"protocol": "Bend",
"categories": ["defi/lending"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xdb6e93cd7bddc45ebc411619792fc5f977316c38.png/public",
"url": "https://bend.berachain.com/lend/80094/0x30BbA9CD9Eb8c95824aa42Faa1Bb397b07545bc1/",
"description": "Acquired by depositing Honey into the Re7 Honey Pool on Bend",
"owner": "Foundation",
"action": "Lend Honey on Re7 vault"
},
{
"stakingTokenAddress": "0xF961a8f6d8c69E7321e78d254ecAfBcc3A637621",
"vaultAddress": "0xF99be47baf0c22B7eB5EAC42c8D91b9942Dc7e84",
"name": "USDC.e | HONEY",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xf99be47baf0c22b7eb5eac42c8d91b9942dc7e84.png/public",
"url": "https://hub.berachain.com/pools/0xf961a8f6d8c69e7321e78d254ecafbcc3a637621000000000000000000000001/details/",
"description": "Acquired by depositing liquidity into the USDC.e | HONEY Pool on Hub",
"owner": "Foundation",
"action": "Stake USDC.e / HONEY"
},
{
"stakingTokenAddress": "0x2c4a603A2aA5596287A06886862dc29d56DbC354",
"vaultAddress": "0xC2BaA8443cDA8EBE51a640905A8E6bc4e1f9872c",
"name": "WBERA | HONEY",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xc2baa8443cda8ebe51a640905a8e6bc4e1f9872c.png/public",
"url": "https://hub.berachain.com/pools/0x2c4a603a2aa5596287a06886862dc29d56dbc354000200000000000000000002/details/",
"description": "Acquired by depositing liquidity into the WBERA | HONEY Pool on Hub",
"owner": "Foundation",
"action": "Stake WBERA / HONEY"
},
{
"stakingTokenAddress": "0xE416C064946112c1626D6700D1081a750B1B1Dd7",
"vaultAddress": "0x4974Ee5f484a3c05F181Aeb380cd7C411dd79c0E",
"name": "Smilee - NECT | wgBERA",
"protocol": "BurrBear",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x4974ee5f484a3c05f181aeb380cd7c411dd79c0e.png/public",
"url": "https://app.burrbear.io/pools/berachain/v2/0xe416c064946112c1626d6700d1081a750b1b1dd7000200000000000000000008",
"description": "Acquired by depositing liquidity into the Smilee - NECT | wgBERA Pool on BurrBear",
"owner": "Smilee",
"action": "Stake NECT / wgBERA"
},
{
"stakingTokenAddress": "0x88c983bf3d4A9Adcee14e1b4f1C446c4C5853EA3",
"vaultAddress": "0x25AceC3A1766A0d02d7C8E22f48533D32D7b311b",
"name": "Smilee - iBERA | wgBERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x25acec3a1766a0d02d7c8e22f48533d32d7b311b.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x88c983bf3d4a9adcee14e1b4f1c446c4c5853ea3?farm=0x25acec3a1766a0d02d7c8e22f48533d32d7b311b&chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the iBERA-wgBERA Pool on Kodiak",
"owner": "Smilee",
"action": "Stake iBERA / wgBERA"
},
{
"stakingTokenAddress": "0x567f32E86BE3e3963CdBc1887b5043B701f113d9",
"vaultAddress": "0x1Fe3C13B009eCfCe196E480180Db5f8990FFf5Fe",
"name": "Smilee - WBERA | wgBERA",
"protocol": "BurrBear",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x1fe3c13b009ecfce196e480180db5f8990fff5fe.png/public",
"url": "https://app.burrbear.io/pools/berachain/v2/0x567f32e86be3e3963cdbc1887b5043b701f113d9000000000000000000000006",
"description": "The stable pool wgBERA-BERA, including the official Liquid Staking Token from Smilee Finance.",
"owner": "Smilee",
"action": "Stake WBERA / wgBERA"
},
{
"stakingTokenAddress": "0x62C030B29a6Fef1B32677499e4a1F1852a8808c0",
"vaultAddress": "0x92aF7d5fcDEF44C3df168ecfDCd03deA1807AF28",
"name": "Infrared - WBERA | iBERA",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x92af7d5fcdef44c3df168ecfdcd03dea1807af28.png/public",
"url": "https://hub.berachain.com/pools/0x62c030b29a6fef1b32677499e4a1f1852a8808c00000000000000000000000c6/details/",
"description": "Acquired by depositing liquidity into the Infrared - WBERA | iBERA Pool on Hub",
"owner": "Infrared Finance",
"action": "Stake WBERA / iBERA"
},
{
"stakingTokenAddress": "0xb66d97C1dE2BC2b61EEf8EF9c761a87521DF207d",
"vaultAddress": "0xE06E0d35AA771929Df26d77f2bA3D6bc0235A811",
"name": "Stride - stBGT | WBERA",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xe06e0d35aa771929df26d77f2ba3d6bc0235a811.png/public",
"url": "https://hub.berachain.com/pools/0xb66d97c1de2bc2b61eef8ef9c761a87521df207d00020000000000000000005d/details/",
"description": "Acquired by depositing liquidity into the Stride - stBGT | WBERA Pool on Hub",
"owner": "Stride",
"action": "Stake stBGT / WBERA"
},
{
"stakingTokenAddress": "0x36FA291f4A4Ae41e4be2a979136EBd7eb97950E7",
"vaultAddress": "0xf3BDf754B4691286090090D601f77384dA9FB721",
"name": "Beradrome LOCKS/BERA Vault",
"protocol": "Beradrome",
"categories": ["defi"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xf3bdf754b4691286090090d601f77384da9fb721.png/public",
"url": "https://www.beradrome.com/farms/0x74A38Bfeedd95f65cbBF72eEDf01EAC77778bcF9",
"description": "Acquired by depositing liquidity into the Goldilocks - LOCKS | BERA Pool on Kodiak and subsequently staking on Beradrome",
"owner": "Goldilocks DAO",
"action": "Stake LOCKS / BERA"
},
{
"stakingTokenAddress": "0x2461e93D5963C2bB69de499676763E67A63c7Ba5",
"vaultAddress": "0xCB522875373c5DB79F4B0816B381b4461d07B1af",
"name": "Dinero - DINERO | WBERA",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xcb522875373c5db79f4b0816b381b4461d07b1af.png/public",
"url": "https://hub.berachain.com/pools/0x2461e93d5963c2bb69de499676763e67a63c7ba50002000000000000000000c2/details/",
"description": "Acquired by depositing liquidity into the Dinero - DINERO | WBERA Pool on Hub",
"owner": "Dinero",
"action": "Stake DINERO / WBERA"
},
{
"stakingTokenAddress": "0x03bCcF796cDef61064c4a2EffdD21f1AC8C29E92",
"vaultAddress": "0xedD27cE3793d655E3d15E29e297F4848De1EF092",
"name": "Dinero - WETH | beraETH",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xedd27ce3793d655e3d15e29e297f4848de1ef092.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x03bccf796cdef61064c4a2effdd21f1ac8c29e92?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Dinero - WETH | beraETH Pool on Kodiak",
"owner": "Dinero",
"action": "Stake WETH / beraETH"
},
{
"stakingTokenAddress": "0x705Fc16BA5A1EB67051934F2Fb17EacaE660F6c7",
"vaultAddress": "0xE8ED00B1B142E8D84eF773C4FCcaA18682d5a401",
"name": "BeraPaw - WBERA | LBGT",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xe8ed00b1b142e8d84ef773c4fccaa18682d5a401.png/public",
"url": "https://hub.berachain.com/pools/0x705fc16ba5a1eb67051934f2fb17eacae660f6c70002000000000000000000d5/details/",
"description": "Acquired by depositing liquidity into the BeraPaw - WBERA | LBGT Pool on Hub",
"owner": "BeraPaw",
"action": "Stake WBERA / LBGT"
},
{
"stakingTokenAddress": "0x1e1ff653525875bf0f4d41d897fe46f0fa3c2dc7",
"vaultAddress": "0x51d4dc2fe8ad332dc47a36480c20f9bb0d293f76",
"name": "BeraHub - sUSDe | USDe | HONEY",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x51d4dc2fe8ad332dc47a36480c20f9bb0d293f76.jpg/public",
"url": "https://hub.berachain.com/pools/0x1e1ff653525875bf0f4d41d897fe46f0fa3c2dc70000000000000000000001be/details/",
"description": "Acquired by depositing liquidity into the sUSDe | USDe | HONEY Pool on Hub",
"owner": "BeraHub",
"action": "Stake sUSDe | USDe | HONEY"
},
{
"stakingTokenAddress": "0xe98763d61ab493a55963583bcdd854580e084b5b",
"vaultAddress": "0xca098a50efd1dc1403f2d601a381c99e16313456",
"name": "BeraPaw - LBGT | pBERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xca098a50efd1dc1403f2d601a381c99e16313456.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0xe98763d61ab493a55963583bcdd854580e084b5b?farm=0xca098a50efd1dc1403f2d601a381c99e16313456&chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the LBGT | pBERA island on Kodiak",
"owner": "BeraPaw",
"action": "Stake LBGT / pBERA"
},
{
"stakingTokenAddress": "0xEc8BA456b4e009408d0776cdE8B91f8717D13Fa1",
"vaultAddress": "0x0710ABFfB1A54211a5e88d18Bf9854Cba86d0819",
"name": "Yeet - YEET | WBERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x0710abffb1a54211a5e88d18bf9854cba86d0819.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0xec8ba456b4e009408d0776cde8b91f8717d13fa1?farm=0x0710abffb1a54211a5e88d18bf9854cba86d0819&chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Yeet - YEET | WBERA Pool on Kodiak",
"owner": "Yeet",
"action": "Stake YEET / WBERA"
},
{
"stakingTokenAddress": "0xf9845a03F7e6b06645A03a28b943C8A4B5fE7BCC",
"vaultAddress": "0x4796039d56892A324585d77A76059b1cD2b9D02a",
"name": "Beramonium - BERA | BERAMO",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x4796039d56892a324585d77a76059b1cd2b9d02a.png/public",
"url": "https://v3.info.kodiak.finance/berachain_mainnet#/berachain_mainnet/pools/0x37640ccf25e5f189c3d8c1a188d28d09953fd612",
"description": "Acquired by depositing liquidity into the Beramonium - BERA | BERAMO Pool on Kodiak",
"owner": "Beramonium",
"action": "Stake BERA / BERAMO"
},
{
"stakingTokenAddress": "0x3000C6BF0AAEb813e252B584c4D9a82f99e7a71D",
"vaultAddress": "0x9136df2daabe52a97340cce8c53d4c1314d52c18",
"name": "Reservoir | Dolomite - drUSD",
"protocol": "Dolomite",
"categories": ["defi/lending"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x9136df2daabe52a97340cce8c53d4c1314d52c18.png/public",
"url": "https://app.dolomite.io/balances",
"description": "Acquired by depositing rUSD into Dolomite",
"owner": "Dolomite",
"action": "Stake drUSD"
},
{
"stakingTokenAddress": "0x1fb6c1aDE4F9083b2EA42ED3fa9342e41788D4b5",
"vaultAddress": "0xc6De36eceD67db9c17919708865b3eE94a7D987C",
"name": "Reservoir | Tether - rUSD-USD₮0",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xc6de36eced67db9c17919708865b3ee94a7d987c.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x1fb6c1ade4f9083b2ea42ed3fa9342e41788d4b5?chain=berachain_mainnet",
"description": "Acquired by depositing rUSD and USDT0 in the LP on Kodiak",
"owner": "Reservoir",
"action": "Stake rUSD-USD₮0"
},
{
"stakingTokenAddress": "0x7fd165B73775884a38AA8f2B384A53A3Ca7400E6",
"vaultAddress": "0x34852C863D266100f573D4D1fD1D0CFE20602Da0",
"name": "Reservoir rUSD | HONEY",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x34852c863d266100f573d4d1fd1d0cfe20602da0.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x7fd165b73775884a38aa8f2b384a53a3ca7400e6?farm=0x34852c863d266100f573d4d1fd1d0cfe20602da0&chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Reservoir rUSD | HONEY Pool on Kodiak",
"owner": "Reservoir",
"action": "Stake rUSD / HONEY"
},
{
"stakingTokenAddress": "0x98bDEEde9A45C28d229285d9d6e9139e9F505391",
"vaultAddress": "0x815596fA7C4d983d1Ca5304e5b48978424C1B448",
"name": "Olympus - OHM | HONEY",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x815596fa7c4d983d1ca5304e5b48978424c1b448.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x98bdeede9a45c28d229285d9d6e9139e9f505391?farm=0x815596fa7c4d983d1ca5304e5b48978424c1b448&chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Olympus - OHM | HONEY Pool on Kodiak",
"owner": "Olympus",
"action": "Stake OHM / HONEY"
},
{
"stakingTokenAddress": "0x083a86797db5B6F738CE9E0599F6bE17d3059275",
"vaultAddress": "0x63233e055847eD2526d9275a6cD1d01CAAFC09f0",
"name": "Beradrome - hiBERO | HONEY",
"protocol": "Beradrome",
"categories": ["defi"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x63233e055847ed2526d9275a6cd1d01caafc09f0.png/public",
"url": "https://www.beradrome.com/swap",
"owner": "Beradrome",
"action": "Stake hiBERO / HONEY"
},
{
"stakingTokenAddress": "0x4a254B11810B8EBb63C5468E438FC561Cb1bB1da",
"vaultAddress": "0x45325Df4A6A6ebD268f4693474AaAa1f3f0ce8Ca",
"name": "Kodiak - WBERA | HONEY",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x45325df4a6a6ebd268f4693474aaaa1f3f0ce8ca.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x4a254B11810B8EBb63C5468E438FC561Cb1bB1da?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Kodiak - WBERA | HONEY Pool on Kodiak",
"owner": "Kodiak",
"action": "Stake WBERA / HONEY"
},
{
"stakingTokenAddress": "0x9659dc8c1565E0bd82627267e3b4eEd1a377ebE6",
"vaultAddress": "0xFB657cd154E661dDF3E229529D92545640b19292",
"name": "Kodiak - WETH | WBERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xfb657cd154e661ddf3e229529d92545640b19292.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x9659dc8c1565E0bd82627267e3b4eEd1a377ebE6?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Kodiak - WETH | WBERA Pool on Kodiak",
"owner": "Kodiak",
"action": "Stake WETH / WBERA"
},
{
"stakingTokenAddress": "0xF06EA29FCF4765200742d29E685973a1870EaC98",
"vaultAddress": "0xeec2AD7bb37374229860265e644F4E2693b23fdd",
"name": "Kodiak - WBTC | WBERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xeec2ad7bb37374229860265e644f4e2693b23fdd.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0xF06EA29FCF4765200742d29E685973a1870EaC98?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Kodiak - WBTC | WBERA Pool on Kodiak",
"owner": "Kodiak",
"action": "Stake WBTC / WBERA"
},
{
"stakingTokenAddress": "0xdcA120bd3A13250B67f6FAA5c29c1F38eC6EBeCE",
"vaultAddress": "0x4551C0e216f59cC081B6610637668b770FFdf843",
"name": "Holdstation - HOLD | WBERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x4551c0e216f59cc081b6610637668b770ffdf843.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0xdcA120bd3A13250B67f6FAA5c29c1F38eC6EBeCE?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Holdstation - HOLD | WBERA Pool on Kodiak",
"owner": "Holdstation",
"action": "Stake HOLD / WBERA"
},
{
"stakingTokenAddress": "0xcfFBFD665BEdB19B47837461A5aBf4388C560D35",
"vaultAddress": "0xb4c32fD71C89f0195A8AC0c3fA9ebf2b4774bd26",
"name": "Bulla - BERA | iBGT",
"protocol": "Bulla Exchange",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xb4c32fd71c89f0195a8ac0c3fa9ebf2b4774bd26.png/public",
"url": "https://www.bulla.exchange/pools/0x01ad86d9946c04917970578ff50f6ae4822214da",
"description": "Acquired by depositing liquidity into the Bulla - BERA | iBGT Pool on Bulla Exchange",
"owner": "Bulla Exchange",
"action": "Stake BERA / iBGT"
},
{
"stakingTokenAddress": "0x258d8933B625566fBe057874121783a2808aDafA",
"vaultAddress": "0x1932d24df32ec4cFDecA7824F36fd06c1458434C",
"name": "Dinero - WETH | beraETH",
"protocol": "HUB",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x1932d24df32ec4cfdeca7824f36fd06c1458434c.png/public",
"url": "https://hub.berachain.com/pools/0x258d8933b625566fbe057874121783a2808adafa0000000000000000000000c1/details/",
"description": "Acquired by depositing liquidity into the Dinero - WETH | beraETH Pool on Hub",
"owner": "Dinero",
"action": "Stake WETH / beraETH"
},
{
"stakingTokenAddress": "0x57161d6272F47cd48BA165646c802f001040C2E0",
"vaultAddress": "0x19Ecf480652A7DE3A60dd7fd7012dAeD6C79E3E9",
"name": "Dinero - STONE | beraETH",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x19ecf480652a7de3a60dd7fd7012daed6c79e3e9.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x57161d6272f47cd48ba165646c802f001040c2e0?farm=0x19ecf480652a7de3a60dd7fd7012daed6c79e3e9&chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Dinero - STONE | beraETH Pool on Kodiak",
"owner": "Dinero",
"action": "Stake STONE / beraETH"
},
{
"stakingTokenAddress": "0xE3EeB9e48934634d8B5B39A0d15DD89eE0F969C4",
"vaultAddress": "0xa2c5adB20A446Fa71A1762002E3C9B4Dd37DBAf4",
"name": "Infrared - WBERA-iBERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xa2c5adb20a446fa71a1762002e3c9b4dd37dbaf4.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0xE3EeB9e48934634d8B5B39A0d15DD89eE0F969C4?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Infrared - WBERA-iBERA Pool on Kodiak",
"owner": "Infrared Finance",
"action": "Stake WBERA / iBERA"
},
{
"stakingTokenAddress": "0x564f011D557aAd1cA09BFC956Eb8a17C35d490e0",
"vaultAddress": "0x3Be1bE98eFAcA8c1Eb786Cbf38234c84B5052EeB",
"name": "Infrared - WBERA-iBGT",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x3be1be98efaca8c1eb786cbf38234c84b5052eeb.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x564f011D557aAd1cA09BFC956Eb8a17C35d490e0?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Infrared - WBERA-iBGT Pool on Kodiak",
"owner": "Infrared Finance",
"action": "Stake WBERA / iBGT"
},
{
"stakingTokenAddress": "0x93A913351CaE2D8C82C4b85f699726947eB76d32",
"vaultAddress": "0x6B23E121C6A13c959d69493Ea5cA015A5847596A",
"name": "Ramen - RAMEN | BERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x6b23e121c6a13c959d69493ea5ca015a5847596a.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x93A913351CaE2D8C82C4b85f699726947eB76d32?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the Ramen - RAMEN | BERA Pool on Kodiak",
"owner": "Ramen Finance",
"action": "Stake RAMEN / BERA"
},
{
"stakingTokenAddress": "0x0FD67ac75F9DF51f5d81F582417B318F44b45f5c",
"vaultAddress": "0x193fF57dc9EFA1DeC154946c10332bA31C8e72b2",
"name": "BM - WBERA | BM",
"protocol": "Kodiak",
"categories": ["memecoin"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x193ff57dc9efa1dec154946c10332ba31c8e72b2.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x0FD67ac75F9DF51f5d81F582417B318F44b45f5c?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the BM - WBERA | BM Pool on Kodiak",
"owner": "BM",
"action": "Stake WBERA / BM"
},
{
"stakingTokenAddress": "0xEf8C3239E0D8Be9d58f145E18F5909Ddad681365",
"vaultAddress": "0x66EB42C499372E897929eFBF6026821B0a148119",
"name": "NAV - NAV | BERA",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0x66eb42c499372e897929efbf6026821b0a148119.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0xEf8C3239E0D8Be9d58f145E18F5909Ddad681365?chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the NAV - NAV | BERA Pool on Kodiak",
"owner": "Kodiak",
"action": "Stake NAV / BERA"
},
{
"stakingTokenAddress": "0x97431F104be73FC0e6fc731cE84486DA05C48871",
"vaultAddress": "0xcD1982B07ADFa787a88Dc1157b9fa3221d25fcaF",
"name": "StakeStone - WETH | STONE",
"protocol": "Kodiak",
"categories": ["defi/amm"],
"logoURI": "https://imagedelivery.net/qNj7Q3MCke89zoKzav7eDQ/vaults/0xcd1982b07adfa787a88dc1157b9fa3221d25fcaf.png/public",
"url": "https://app.kodiak.finance/#/liquidity/pools/0x97431f104be73fc0e6fc731ce84486da05c48871?farm=0xcd1982b07adfa787a88dc1157b9fa3221d25fcaf&chain=berachain_mainnet",
"description": "Acquired by depositing liquidity into the StakeStone - WETH | STONE Pool on Kodiak",
"owner": "StakeStone",
"action": "Stake WETH / STONE"
},
{
"stakingTokenAddress": "0x8b161685135e9FbC5475169e1adDc0F2C4b7c343",
"vaultAddress": "0xCf77d23cFC561E34e3b6137C736EA5CB395BcDA0",
"name": "Stride - stBGT | BERA",