forked from safe-global/safe-ecosystem-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
3795 lines (3795 loc) · 153 KB
/
data.json
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
[
{
"project": "0xNFT by Castle",
"description": "NFT Marketplace Aggregator: Buy, list and transfer NFTs across OpenSea and all major markets",
"project_scope": "Safe Apps",
"primary_category": "Collectibles / NFT",
"secondary_categories": "Marketplace",
"logo": "/logos/castle.png",
"value_prop": "",
"project_website": "https://castle.link/",
"github_dev_docs": "",
"twitter": "https://twitter.com/CastleLinkHQ",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Basket experience, transaction batching, transaction queue native UI",
"networks": "Ethereum"
},
{
"project": "0xPlasma Finance",
"description": "Your Web3 dashboard for all things DeFi and NFT",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "DEX, Dashboard",
"logo": "/logos/plasma.png",
"value_prop": "",
"project_website": "https://plasma.finance/",
"github_dev_docs": "",
"twitter": "https://twitter.com/0xPlasma",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions No need to approve token swaps: cheaper transactions",
"networks": "Arbitrum, Avalanche, BNB Chain, Ethereum, Optimism, Polygon"
},
{
"project": "0xSplits",
"description": "Decentralized protocol for trustlessly sharing onchain income",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "DAO Tooling, Infrastructure",
"logo": "/logos/splitz0x.jpeg",
"value_prop": "",
"project_website": "https://www.0xsplits.xyz/",
"github_dev_docs": "https://github.com/0xSplits",
"twitter": "https://twitter.com/0xsplits",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Arbitrum, Aurora, Avalanche, BNB Chain, Base, Ethereum, Gnosis Chain, Optimism, Polygon"
},
{
"project": "1inch Network",
"description": "The most efficient DeFi aggregator",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Aggregator, DEX",
"logo": "/logos/1inch-token.svg",
"value_prop": "",
"project_website": "https://1inch.io/",
"github_dev_docs": "https://github.com/1inch",
"twitter": "https://twitter.com/1inch",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions. No need to approve token swaps. No need to approve token swaps: cheaper transactions",
"networks": "BNB Chain, Ethereum, Gnosis Chain, Polygon"
},
{
"project": "Aave v3",
"description": "Non-custodial liquidity protocol",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Lending/Borrowing",
"logo": "/logos/aave.svg",
"value_prop": "",
"project_website": "https://aave.com/",
"github_dev_docs": "https://github.com/aave",
"twitter": "https://twitter.com/AaveAave",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Arbitrum, Avalanche, Ethereum, Optimism, Polygon"
},
{
"project": "Acctual",
"description": "Acctual is accounts payable (AP) and accounts receivable (AR) automation for crypto and fiat. Synced to your accounting system",
"project_scope": "Core SDK Integration",
"primary_category": "Payments",
"secondary_categories": "Accounting",
"logo": "/logos/acctual.png",
"value_prop": "",
"project_website": "https://acctual.com/",
"github_dev_docs": "",
"twitter": "https://twitter.com/AcctualTeam",
"primary_integration": "Core SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Arbitrum, Ethereum, Optimism, Polygon"
},
{
"project": "Aerodrome",
"description": "Aerodrome Finance is a next-generation AMM that combines the best of Curve, Convex and Uniswap, designed to serve as the central liquidity hub on Base network. Aerodrome NFTs vote on token emissions and receive incentives and fees generated by the protocol.",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Governance, Yield",
"logo": "/logos/aerodrome.svg",
"value_prop": "",
"project_website": "https://aerodrome.finance",
"github_dev_docs": "https://github.com/aerodrome-finance/",
"twitter": "https://twitter.com/aerodromeFi",
"primary_integration": "Safe Apps SDK",
"packages": "safe-apps-wagmi",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Base"
},
{
"project": "Alkemi Earn",
"description": "Lend and borrow your crypto and earn yields through professional DeFi",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "CeFi, Lending/Borrowing",
"logo": "/logos/alkemi.png",
"value_prop": "",
"project_website": "https://alkemi.network/",
"github_dev_docs": "https://github.com/AlkemiNetwork",
"twitter": "https://twitter.com/AlkemiNetwork",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum"
},
{
"project": "Alloc8",
"description": "Alloc8 enables users to allocate tokens to Strategy Vaults to maximize point & yield farming across all chains.",
"project_scope": "Interface",
"primary_category": "DeFi",
"secondary_categories": "Automation, DeFi, Lending/Borrowing, Yield",
"logo": "/logos/alloc8.png",
"value_prop": "",
"project_website": "https://alloc8.xyz",
"github_dev_docs": "",
"twitter": "https://twitter.com/alloc8_xyz",
"primary_integration": "Core SDK, Core Tx Service API, Safe Contracts",
"packages": "Safe Core SDK, Safe Deployments, Safe Ethers Adapter, Transaction Service API, safe-apps-wagmi, safe-apps-web3modal, web3-react",
"modules_guards": "Created our own modules for the liquidation of funds on the sub-account using Gelato as the caller.",
"safe_apps_smart": "Using the security and safety of Safe, for every new user on Alloc8, a new Safe smart account is deployed to be used as a sub-account. Users use the Safe-powered smart sub-accounts to leverage borrow and interact with the whitelisted protocols on Alloc8.",
"networks": "Arbitrum, Ethereum, Gnosis Chain"
},
{
"project": "Arbitrum",
"description": "Ethereum L2 suite of solutions providing faster speeds at lower cost with the same level of security",
"project_scope": "Network",
"primary_category": "Infrastructure",
"secondary_categories": "Collectibles / NFT, DEX, DeFi, Institutional, Payments, Stablecoin",
"logo": "/logos/arbi.jpeg",
"value_prop": "",
"project_website": "https://arbitrum.foundation/",
"github_dev_docs": "https://github.com/OffchainLabs",
"twitter": "https://twitter.com/arbitrum",
"primary_integration": "Core Tx Service API, Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "ATA Network",
"description": "A decentralized middleware service protocol, ATA network protects fairness & privacy in web3",
"project_scope": "",
"primary_category": "Infrastructure",
"secondary_categories": "Privacy, Wallet",
"logo": "/logos/ata-network.png",
"value_prop": "",
"project_website": "https://www.ata.network/",
"github_dev_docs": "https://github.com/automata-network",
"twitter": "https://twitter.com/AutomataNetwork",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Attest Fest",
"description": "Create multiple onchain attestations about anything, fostering a more trustful and transparent world using only one Ethereum transaction",
"project_scope": "Safe Apps",
"primary_category": "DAO Tooling",
"secondary_categories": "",
"logo": "/logos/attest-fest.svg",
"value_prop": "",
"project_website": "https://attest-fest.party/",
"github_dev_docs": "https://github.com/kristoferlund/attest-fest",
"twitter": "https://twitter.com/AttestFest",
"primary_integration": "Core SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Ethereum, Optimism"
},
{
"project": "Aura Finance",
"description": "Boosting DeFi yield potential and governance power",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Yield",
"logo": "/logos/aura.svg",
"value_prop": "",
"project_website": "https://aura.finance/",
"github_dev_docs": "https://github.com/aurafinance",
"twitter": "https://twitter.com/aurafinance",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum"
},
{
"project": "Aurora",
"description": "Aurora is an EVM-compatible L2 built on the NEAR protocol",
"project_scope": "Network",
"primary_category": "Infrastructure",
"secondary_categories": "Collectibles / NFT, Dashboard, Gaming, Marketplace, Messaging",
"logo": "/logos/aurora.jpeg",
"value_prop": "",
"project_website": "https://aurora.dev/",
"github_dev_docs": "https://github.com/aurora-is-near",
"twitter": "https://twitter.com/auroraisnear",
"primary_integration": "Core Tx Service API, Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Avalanche",
"description": "Avalanche is an open-source smart contracts platform for decentralized applications",
"project_scope": "Network",
"primary_category": "Infrastructure",
"secondary_categories": "Bridge, CeFi, DeFi, Gaming, Mobile App, Privacy, Staking",
"logo": "/logos/avax.svg",
"value_prop": "",
"project_website": "https://www.avax.network/",
"github_dev_docs": "https://github.com/ava-labs/avalanche-docs",
"twitter": "https://twitter.com/avax",
"primary_integration": "Core Tx Service API, Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Balancer",
"description": "Swap tokens and manage your assets on Balancer Protocol",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "DEX, Fundraising",
"logo": "/logos/balancer.png",
"value_prop": "",
"project_website": "https://balancer.fi/",
"github_dev_docs": "https://github.com/balancer-labs/",
"twitter": "https://twitter.com/Balancer",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Arbitrum, Ethereum, Gnosis Chain, Polygon"
},
{
"project": "Bancor",
"description": "An ecosystem of decentralized, open-source DeFi protocols that foster on-chain trading and liquidity",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "DEX",
"logo": "/logos/bancor.png",
"value_prop": "",
"project_website": "https://home.bancor.network/",
"github_dev_docs": "https://github.com/bancorprotocol",
"twitter": "https://twitter.com/Bancor",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum"
},
{
"project": "Base",
"description": "Ethereum L2, incubated by Coinbase and built on the open-source OP Stack",
"project_scope": "Network",
"primary_category": "Infrastructure",
"secondary_categories": "CeFi, DEX, DeFi, Institutional, Stablecoin, Staking",
"logo": "/logos/Base.png",
"value_prop": "L2 Network built on OP Stack",
"project_website": "https://base.org/",
"github_dev_docs": "https://github.com/base-org",
"twitter": "https://twitter.com/BuildOnBase",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "BasedApp",
"description": "A Web 3.0 neobank, BasedApp issues a Visa debit card that taps onto funds held in Safe wallets for spending in real-life",
"project_scope": "Interface",
"primary_category": "Payments",
"secondary_categories": "",
"logo": "/logos/basedapp.png",
"value_prop": "",
"project_website": "https://basedapp.io/",
"github_dev_docs": "",
"twitter": "https://twitter.com/basedappHQ",
"primary_integration": "Core SDK, Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Polygon"
},
{
"project": "Beamer Bridge",
"description": "Beam your ERC20 assets between EVM compatible rollups with certainty, speed and security",
"project_scope": "Safe Apps",
"primary_category": "Infrastructure",
"secondary_categories": "Bridge",
"logo": "/logos/beamer.png",
"value_prop": "",
"project_website": "https://beamerbridge.com/",
"github_dev_docs": "https://github.com/beamer-bridge",
"twitter": "https://twitter.com/BeamerBridge",
"primary_integration": "Safe Apps SDK",
"packages": "safe-apps-provider",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Arbitrum, Ethereum, Optimism"
},
{
"project": "BIM Finance",
"description": "More Than An Exchange, buy, swap, bridge and stake your cryptocurrencies from a single interface.",
"project_scope": "Connection provider",
"primary_category": "DeFi",
"secondary_categories": "Bridge, DeFi, Staking",
"logo": "/logos/bim_finance.png",
"value_prop": "Why BIM Protocol?\nBIM Protocol has been audited and secured. The protocol is completely open source, which allows anyone to interact with a user interface client, API or directly with the smart contracts on the Polygon network and other EVM blockchain. Being open source means that you are able to build any third-party service or application to interact with the protocol and enrich your product.\nHow do I use the BIM protocol?\nHow to use the BIM protocol? To Buy Sell, Bridge, Provide Liquidity, Swap Tokens, or Vote on Governance Proposals, go to the https://exchange.bim.finance/ interface and connect a Web3 wallet.",
"project_website": "https://bim.finance/",
"github_dev_docs": "https://docs.bim.finance/faq",
"twitter": "https://twitter.com/BIM_Finance",
"primary_integration": "Core SDK",
"packages": "Safe Service Client",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Arbitrum, Avalanche, BNB Chain, Base, Ethereum, Gnosis Chain, Optimism, Polygon"
},
{
"project": "Bitbond Token Tool",
"description": "Bitbond supports hundreds of customers with leading tokenization infrastructure and expertise",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Fundraising",
"logo": "/logos/download.png",
"value_prop": "",
"project_website": "https://www.bitbond.com/",
"github_dev_docs": "https://github.com/bitbond",
"twitter": "https://twitter.com/Bitbond",
"primary_integration": "Safe Apps SDK",
"packages": "web3-onboard",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Arbitrum, Avalanche, BNB Chain, Ethereum, Optimism, Polygon"
},
{
"project": "Blocknative",
"description": "Programmable web3 infrastructure for builders and searchers",
"project_scope": "Connection provider",
"primary_category": "Infrastructure",
"secondary_categories": "",
"logo": "/logos/blocknative.svg",
"value_prop": "Blocknative provides and maintain web3onboard library",
"project_website": "https://www.blocknative.com/",
"github_dev_docs": "https://github.com/blocknative",
"twitter": "https://twitter.com/blocknative",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Blockpeer",
"description": "An integrated digital asset and fiat accounting platform for institutions!",
"project_scope": "Core SDK Integration",
"primary_category": "Payments",
"secondary_categories": "Accounting, Institutional, Payments",
"logo": "/logos/blockpeer.svg",
"value_prop": "BlockPeer is a blockchain wallet integrated accounting platform. Safe multisig wallets are natively integrated into BlockPeer. Finance teams from web3 and web2 can seamlessly create and operate Safe multisig wallets from our integrated digital asset and fiat accounting platform.\n\nCoupled with in-built MPC wallets, BlockPeer just needs an email to create an EOA wallet and Safe multisig wallets. A simple login flow resembles a typical web2 accounting platform login process, a web2-like UI.\n\nSafe multisig is deeply integrated into the Accounts Payable (AP) workflows in BlockPeer. Accounting context for signers to understand the underlying payment transaction and automatic accounting for bills paid through BlockPeer's Safe interface adds significant value to finance teams!",
"project_website": "https://www.blockpeer.finance",
"github_dev_docs": "",
"twitter": "https://x.com/blockpeerfin",
"primary_integration": "Core SDK",
"packages": "Safe Core SDK, Safe Deployments, Transaction Service API",
"modules_guards": "",
"safe_apps_smart": "Smart accounts eliminate the risk of EOA's single point of control/failure. With BlockPeer's integrated Safe Smart accounts, institutions can seamlessly manage digital asset payment flows among their team members right within our integrated accounting platform!",
"networks": ""
},
{
"project": "BNB Smart Chain",
"description": "EVM-compatible L1 smart contracts network in the Binance ecosystem",
"project_scope": "Network",
"primary_category": "Infrastructure",
"secondary_categories": "CeFi, DEX, DeFi, Gaming, Lending/Borrowing, Stablecoin",
"logo": "/logos/bnb.png",
"value_prop": "",
"project_website": "https://www.bnbchain.org/en",
"github_dev_docs": "https://github.com/bnb-chain",
"twitter": "https://twitter.com/BNBCHAIN",
"primary_integration": "Core Tx Service API, Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Brahma",
"description": "Earn, hedge, and deploy capital across DeFi with powerful automations",
"project_scope": "Interface",
"primary_category": "DeFi",
"secondary_categories": "Automation, DeFi, Derivatives, Lending/Borrowing, Payments, Stablecoin",
"logo": "/logos/brahma.jpeg",
"value_prop": "Earn, hedge, and deploy capital across DeFi with Brahma",
"project_website": "https://console.brahma.fi",
"github_dev_docs": "https://github.com/Brahma-fi",
"twitter": "https://twitter.com/BrahmaFi",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "Guards - Yes\nModules - Yes",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Bulla Banker",
"description": "A bankless web3 accounting protocol for invoices and payments",
"project_scope": "Safe Apps",
"primary_category": "Payments",
"secondary_categories": "Accounting, Tooling",
"logo": "/logos/bulla.png",
"value_prop": "",
"project_website": "https://bulla.network/",
"github_dev_docs": "https://github.com/bulla-network/bulla-contracts",
"twitter": "https://twitter.com/BullaNetwork",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "https://github.com/bulla-network/bulla-contracts/blob/master/contracts/BullaBankerModule.sol",
"safe_apps_smart": "No",
"networks": "Arbitrum, Aurora, Avalanche, Ethereum, Gnosis Chain, Optimism, Polygon, Base"
},
{
"project": "Bungee Exchange",
"description": "Find the best route & make the jump to your favourite chains",
"project_scope": "Safe Apps",
"primary_category": "Infrastructure",
"secondary_categories": "Aggregator, Bridge",
"logo": "/logos/bungee.png",
"value_prop": "",
"project_website": "https://bungee.exchange",
"github_dev_docs": "https://github.com/SocketDotTech",
"twitter": "https://twitter.com/BungeeExchange",
"primary_integration": "Safe Apps SDK",
"packages": "safe-apps-wagmi",
"modules_guards": "",
"safe_apps_smart": "Cross chain swaps",
"networks": "Arbitrum, Aurora, Avalanche, BNB Chain, Ethereum, Gnosis Chain, Optimism, Polygon"
},
{
"project": "Bunni",
"description": "Bunni is a liquidity engine for Uniswap v3",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Yield",
"logo": "/logos/bunni-logo.png",
"value_prop": "",
"project_website": "https://bunni.pro/",
"github_dev_docs": "https://github.com/ZeframLou/bunni",
"twitter": "https://twitter.com/timeless_fi",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Arbitrum, Ethereum, Optimism, Polygon"
},
{
"project": "Candide Wallet",
"description": "Unleash the true power of Account Abstraction with a Smart Account wallet",
"project_scope": "Interface",
"primary_category": "Infrastructure",
"secondary_categories": "Wallet",
"logo": "/logos/candide.jpeg",
"value_prop": "Candide is an Ethereum wallet built as a public good",
"project_website": "https://www.candidewallet.com/",
"github_dev_docs": "https://github.com/candidelabs & https://docs.candide.dev/wallet/atelier-intro/",
"twitter": "https://twitter.com/candidewallet",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "https://github.com/candidelabs/CandideWalletContracts/blob/main/contracts/gnosisWallet/EIP4337Fallback.sol#L22",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Carbon",
"description": "Onchain protocol for advanced trading strategies",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Automation",
"logo": "/logos/carbon.jpg",
"value_prop": "",
"project_website": "https://carbondefi.xyz/",
"github_dev_docs": "",
"twitter": "https://twitter.com/CarbonDeFixyz",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Ethereum"
},
{
"project": "Cardstack",
"description": "Collaborative OS for web3 with no coding required",
"project_scope": "Interface",
"primary_category": "Infrastructure",
"secondary_categories": "CeFi, DeFi, Payments",
"logo": "/logos/cardstack.png",
"value_prop": "Web 3 Tool Box",
"project_website": "https://cardstack.com/",
"github_dev_docs": "https://github.com/cardstack",
"twitter": "https://twitter.com/cardstack",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "https://github.com/cardstack/cardstack-meta-guard",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Casa",
"description": "Hold your own keys and safely take self-custody with a Casa multisig wallet",
"project_scope": "Interface",
"primary_category": "Infrastructure",
"secondary_categories": "Institutional, Mobile App, Wallet",
"logo": "/logos/casa.png",
"value_prop": "Casa Multisig protects your bitcoin / ether with multiple keys, so losing one key doesn't mean losing funds",
"project_website": "https://keys.casa/how-it-works",
"github_dev_docs": "https://github.com/Casa",
"twitter": "https://twitter.com/CasaHODL",
"primary_integration": "Safe Contracts",
"packages": "Unsure",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Ethereum"
},
{
"project": "Censo",
"description": "Secure seed phrase manager, ensuring you will no longer have to worry about losing your seed phrases or access to your crypto again",
"project_scope": "Interface",
"primary_category": "Infrastructure",
"secondary_categories": "DAO Tooling, Institutional, Wallet",
"logo": "/logos/censo.jpg",
"value_prop": "Like MPC, Censo is a private key management solution for organizations. But unlike MPC, Censo is a truly decentralized key management and self-custody solution. It’s not just different, but it’s also more secure, sovereign, and seamless. Plus, it’s the only one of its kind out there.",
"project_website": "https://censo.co/",
"github_dev_docs": "https://github.com/Censo-Inc/censo-eth-wallet/blob/master/contracts/",
"twitter": "https://twitter.com/censo_inc",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "https://docs.google.com/document/d/1kYfMtlHLIXVyfdey3vhPEhORBc7bKnghvyNgsZOBk-Y/edit#heading=h.6h3zkw4gg1kf",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Centrifuge",
"description": "The platform for onchain credit.\nTransparent. Affordable. Limitless.",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Yield",
"logo": "/logos/centrifuge.svg",
"value_prop": "",
"project_website": "https://centrifuge.io/",
"github_dev_docs": "https://github.com/centrifuge",
"twitter": "https://twitter.com/centrifuge",
"primary_integration": "Safe Apps SDK",
"packages": "web3-react",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum"
},
{
"project": "Chamber",
"description": "Secures your ETH, USDC and other digital assets with the devices you already own and trust",
"project_scope": "Interface",
"primary_category": "Payments",
"secondary_categories": "Wallet",
"logo": "/logos/chamber.svg",
"value_prop": "",
"project_website": "https://www.withchamber.com/",
"github_dev_docs": "",
"twitter": "",
"primary_integration": "Core SDK, Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "CharmVerse",
"description": "Web3 operations platform for token communities to build relationships, work together and vote",
"project_scope": "Interface",
"primary_category": "DAO Tooling",
"secondary_categories": "Governance",
"logo": "/logos/charmverse.jpeg",
"value_prop": "CharmVerse is a Web3 operations platform handling docs, tasks, bounties, proposals, and votes",
"project_website": "https://app.charmverse.io/",
"github_dev_docs": "https://github.com/charmverse",
"twitter": "https://twitter.com/charmverse",
"primary_integration": "Core SDK",
"packages": "Safe Core SDK, Safe Service Client",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Circles UBI",
"description": "Decentralized Universal Basic Income platform based on personal cryptocurrencies",
"project_scope": "Interface",
"primary_category": "DeFi",
"secondary_categories": "Donation, Mobile App",
"logo": "/logos/circles.jpeg",
"value_prop": "Circles is a decentralised Universal Basic Income platform based on personal cryptocurrencies",
"project_website": "https://circles.garden/welcome",
"github_dev_docs": "https://github.com/CirclesUBI",
"twitter": "https://twitter.com/CirclesUBI",
"primary_integration": "Core SDK, Safe Contracts",
"packages": "Safe Core SDK, Transaction Service API, Unsure",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Cobo Safe",
"description": "All-in-one custody solutions provider to safeguard and manage all your digital assets",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "CeFi, Institutional",
"logo": "/logos/cobo-safe.png",
"value_prop": "",
"project_website": "https://www.cobo.com/",
"github_dev_docs": "",
"twitter": "https://twitter.com/Cobo_Global",
"primary_integration": "Core SDK, Safe Apps SDK, Safe Contracts",
"packages": "",
"modules_guards": "https://etherscan.io/address/0x7893405d9d968a4e3637897f4fd734ca59f338f6#code",
"safe_apps_smart": "No",
"networks": "Arbitrum, Avalanche, BNB Chain, Ethereum, Gnosis Chain, Optimism, Polygon"
},
{
"project": "Coinshift",
"description": "Smart treasury management for DAOs and crypto organizations",
"project_scope": "Interface",
"primary_category": "DAO Tooling",
"secondary_categories": "Accounting, Payments",
"logo": "/logos/Coinshift.jpeg",
"value_prop": "Smart Treasury Management for DAOs and Companies",
"project_website": "https://coinshift.xyz/",
"github_dev_docs": "",
"twitter": "https://twitter.com/0xCoinshift",
"primary_integration": "Core Tx Service API, Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Collabland",
"description": "Automated community management tool that curates membership based on token ownership",
"project_scope": "Interface",
"primary_category": "DAO Tooling",
"secondary_categories": "",
"logo": "/logos/collab.jpeg",
"value_prop": "Collab.Land leverages the power of identity through crypto currency to create a social space unique to a specific network of humans.",
"project_website": "https://www.collab.land/",
"github_dev_docs": "https://github.com/collabland",
"twitter": "https://twitter.com/Collab_Land_",
"primary_integration": "Core Tx Service API",
"packages": "Unsure",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "Cometh Connect",
"description": "Cometh Connect is an SDK (Web & Unity) that enables applications to provide to their users a smart wallet (Safe) controlled with a biometric signer (passkey)",
"project_scope": "Core SDK Integration",
"primary_category": "Collectibles / NFT",
"secondary_categories": "Wallet",
"logo": "/logos/288149260-4cb19dc4-73cc-49d0-8aac-b0bf5c703668.png",
"value_prop": "",
"project_website": "https://cometh.io",
"github_dev_docs": "https://docs.cometh.io",
"twitter": "twitter.com/cometh",
"primary_integration": "Core SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Arbitrum, Aurora, Avalanche, BNB Chain, Base, Celo, Ethereum, Gnosis Chain, Optimism"
},
{
"project": "Connext",
"description": "Connext is a modular interoperability protocol that lets you build secure crosschain apps (xApps)",
"project_scope": "Module",
"primary_category": "Infrastructure",
"secondary_categories": "Tooling",
"logo": "/logos/connext.png",
"value_prop": "",
"project_website": "https://www.connext.network/",
"github_dev_docs": "https://github.com/connext",
"twitter": "https://twitter.com/ConnextNetwork",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "https://github.com/gnosis/zodiac-module-connext/",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "CoW Swap",
"description": "Find the lowest prices from all DEXes and aggregators & save more with p2p trading and MEV protection",
"project_scope": "Safe Apps",
"primary_category": "DAO Tooling",
"secondary_categories": "Aggregator, MEV Protection",
"logo": "/logos/cow.png",
"value_prop": "",
"project_website": "https://cow.fi/",
"github_dev_docs": "https://github.com/cowprotocol/",
"twitter": "https://twitter.com/CoWSwap",
"primary_integration": "Safe Apps SDK, Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Ethereum, Gnosis Chain"
},
{
"project": "Cryptio",
"description": "Enterprise-grade accounting, audit and tax software for your digital assets",
"project_scope": "Interface",
"primary_category": "DAO Tooling",
"secondary_categories": "Accounting, Tooling",
"logo": "/logos/cryptio.jpeg",
"value_prop": "Enterprise-grade accounting, audit and tax software for your digital assets",
"project_website": "https://cryptio.co/",
"github_dev_docs": "",
"twitter": "https://twitter.com/cryptio_co",
"primary_integration": "Core Tx Service API",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "CSV Airdrop",
"description": "Upload your CSV transfer file to send arbitrarily many tokens of various amounts to a list of recipients",
"project_scope": "Safe Apps",
"primary_category": "Payments",
"secondary_categories": "Accounting, Tooling",
"logo": "/logos/csv-airdrop.svg",
"value_prop": "",
"project_website": "",
"github_dev_docs": "https://github.com/bh2smith/safe-airdrop",
"twitter": "",
"primary_integration": "Safe Apps SDK",
"packages": "safe-apps-provider",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Arbitrum, Aurora, Avalanche, BNB Chain, Ethereum, Gnosis Chain, Optimism, Polygon"
},
{
"project": "Curve Finance",
"description": "Creating deep on-chain liquidity using advanced bonding curves",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "DEX, Stablecoin",
"logo": "/logos/Curve.png",
"value_prop": "",
"project_website": "https://curve.fi",
"github_dev_docs": "https://github.com/curvefi/curve-contract",
"twitter": "https://twitter.com/curvefinance",
"primary_integration": "Safe Apps SDK",
"packages": "web3-onboard",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum"
},
{
"project": "DAA Finance",
"description": "Non-custodial investment tools without the risks, complexity and costs from outsourcing custody to 3rd parties",
"project_scope": "Interface",
"primary_category": "DeFi",
"secondary_categories": "DAO Tooling, Institutional",
"logo": "/logos/daa.jpg",
"value_prop": "",
"project_website": "https://github.com/DAA-Finance",
"github_dev_docs": "https://github.com/DAA-Finance",
"twitter": "",
"primary_integration": "Core SDK",
"packages": "Unsure",
"modules_guards": "https://github.com/DAA-Finance/evm-development/tree/master/gnosis-withdrawal-module\n\nhttps://github.com/DAA-Finance/evm-development/tree/master/gnosis-dsa-module\n\nhttps://github.com/DAA-Finance/evm-development/tree/master/gnosis-tokenizer-module",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "DAOHaus",
"description": "DAOhaus is a no code platform for Moloch DAOs",
"project_scope": "Safe Apps",
"primary_category": "DAO Tooling",
"secondary_categories": "Governance",
"logo": "/logos/daohaus.png",
"value_prop": "",
"project_website": "https://daohaus.club/",
"github_dev_docs": "https://github.com/HausDAO/daohaus-app",
"twitter": "https://twitter.com/nowdaoit",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "https://github.com/HausDAO/MinionSummonerV2/blob/main/contracts/SafeMinion.sol",
"safe_apps_smart": "No",
"networks": "Ethereum, Gnosis Chain, Polygon"
},
{
"project": "DeFi Saver",
"description": "One-stop dashboard for creating, managing and tracking your DeFi positions",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Automation, Dashboard",
"logo": "/logos/defi-saver.svg",
"value_prop": "",
"project_website": "https://defisaver.com/",
"github_dev_docs": "https://github.com/defisaver/defisaver-v3-contracts",
"twitter": "https://twitter.com/defisaver",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum"
},
{
"project": "Den",
"description": "The Fastest Multisig for Onchain Teams",
"project_scope": "Interface",
"primary_category": "DAO Tooling",
"secondary_categories": "Accounting, Infrastructure, Payments",
"logo": "/logos/Den.jpeg",
"value_prop": "Get your transactions built & signed fast",
"project_website": "https://www.onchainden.com/",
"github_dev_docs": "https://github.com/OnChainDen",
"twitter": "https://twitter.com/OnChainDen",
"primary_integration": "Core SDK, Core Tx Service API, Safe Contracts",
"packages": "Unsure",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Arbitrum, Avalanche, BNB Chain, Ethereum, Gnosis Chain, Optimism, Polygon"
},
{
"project": "Dework.xyz",
"description": "Web3-native project management with token payments, credentialing and bounties",
"project_scope": "Interface",
"primary_category": "DAO Tooling",
"secondary_categories": "Governance",
"logo": "/logos/Dework.jpeg",
"value_prop": "Web3-native project management with token payments, credentialing, bounties",
"project_website": "https://dework.xyz/",
"github_dev_docs": "https://github.com/deworkxyz",
"twitter": "https://twitter.com/deworkxyz",
"primary_integration": "Core Tx Service API",
"packages": "Unsure",
"modules_guards": "",
"safe_apps_smart": "",
"networks": ""
},
{
"project": "dHEDGE",
"description": "Decentralized social asset management: Find the best managers and automated strategies in DeFi",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Dashboard",
"logo": "/logos/dhedge.svg",
"value_prop": "",
"project_website": "https://www.dhedge.org/",
"github_dev_docs": "https://github.com/dhedge",
"twitter": "https://twitter.com/dHedgeOrg",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "—",
"networks": "Ethereum, Optimism, Polygon"
},
{
"project": "DODO",
"description": "Your on-chain liquidity provider",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Bridge, DEX",
"logo": "/logos/dodo.png",
"value_prop": "",
"project_website": "https://dodoex.io/",
"github_dev_docs": "https://github.com/DODOEX",
"twitter": "https://twitter.com/BreederDodo",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "BNB Chain, Ethereum, Polygon"
},
{
"project": "Drain Account",
"description": "Transfer all your Safe assets in a single transaction",
"project_scope": "Safe Apps",
"primary_category": "Payments",
"secondary_categories": "Tooling",
"logo": "/logos/drain.svg",
"value_prop": "",
"project_website": "",
"github_dev_docs": "https://github.com/safe-global/safe-apps-sdk/tree/main/guides/drain-safe-app",
"twitter": "",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Arbitrum, Aurora, Avalanche, BNB Chain, Ethereum, Gnosis Chain, Optimism, Polygon"
},
{
"project": "Drips",
"description": "Stream & split any ERC-20 on Ethereum",
"project_scope": "Safe Apps",
"primary_category": "Payments",
"secondary_categories": "",
"logo": "/logos/drips.png",
"value_prop": "",
"project_website": "https://drips.network/",
"github_dev_docs": "https://github.com/radicle-dev/drips-app-v2",
"twitter": "https://twitter.com/dripsnetwork",
"primary_integration": "Safe Apps SDK",
"packages": "safe-apps-provider",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Ethereum"
},
{
"project": "dump.services",
"description": "Dump your tokens like a pro",
"project_scope": "Safe Apps",
"primary_category": "Infrastructure",
"secondary_categories": "Tooling",
"logo": "/logos/dump.svg",
"value_prop": "",
"project_website": "https://dump.services",
"github_dev_docs": "https://github.com/SmolDapp/dumpservices",
"twitter": "",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Ethereum"
},
{
"project": "DustSweeper",
"description": "Swap small token balances for ETH with minimal gas",
"project_scope": "Safe Apps",
"primary_category": "Infrastructure",
"secondary_categories": "Tooling",
"logo": "/logos/dust.png",
"value_prop": "",
"project_website": "https://www.dustsweeper.xyz/",
"github_dev_docs": "",
"twitter": "https://twitter.com/DustSweeperDAO",
"primary_integration": "Safe Apps SDK",
"packages": "web3-react",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum"
},
{
"project": "ENS - Ethereum Name Service",
"description": "Decentralized naming for wallets, websites and more",
"project_scope": "Safe Apps",
"primary_category": "Infrastructure",
"secondary_categories": "",
"logo": "/logos/ens.svg",
"value_prop": "",
"project_website": "https://ens.domains/",
"github_dev_docs": "https://github.com/ensdomains",
"twitter": "https://twitter.com/ensdomains",
"primary_integration": "Safe Apps SDK",
"packages": "",