forked from safe-global/safe-ecosystem-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
3782 lines (3782 loc) · 151 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": "",
"team_contact": "https://discord.gg/red4SbMzYs",
"twitter": "https://twitter.com/CastleLinkHQ",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Basket experience, transaction batching, transaction queue native UI",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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": "",
"team_contact": "https://discord.com/invite/xjQg982",
"twitter": "https://twitter.com/0xPlasma",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions No need to approve token swaps: cheaper transactions",
"networks": "Arbitrum, Avalanche, BNB, Ethereum, Optimism, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "",
"twitter": "https://twitter.com/0xsplits",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Ethereum, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/1inch",
"twitter": "https://twitter.com/1inch",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions. No need to approve token swaps. No need to approve token swaps: cheaper transactions",
"networks": "BNB, Ethereum, Gnosis Chain, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/CvKUrqM",
"twitter": "https://twitter.com/AaveAave",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Arbitrum, Avalanche, Ethereum, Optimism, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Aelin",
"description": "Permissionless multi-chain protocol for capital raises and OTC deals. Aelin decentralizes fundraising without a need for VC’s",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Fundraising",
"logo": "/logos/aelin.png",
"value_prop": "",
"project_website": "https://aelin.xyz/",
"github_dev_docs": "https://github.com/AelinXYZ",
"team_contact": "https://discord.com/invite/YHffnV9sUM",
"twitter": "https://twitter.com/aelinprotocol",
"primary_integration": "Safe Apps SDK",
"packages": "web3-onboard",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum, Optimism",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/N7bMz6n2vX",
"twitter": "https://twitter.com/AlkemiNetwork",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Angle Protocol",
"description": "Decentralized stablecoin protocol",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Stablecoin",
"logo": "/logos/angle.svg",
"value_prop": "",
"project_website": "https://www.angle.money/",
"github_dev_docs": "https://github.com/AngleProtocol/",
"team_contact": "https://discord.com/invite/5Af6xum9bc",
"twitter": "https://twitter.com/AngleProtocol",
"primary_integration": "Safe Apps SDK",
"packages": "web3-onboard",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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, DEX, DeFi, Institutional, Payments, Stablecoin",
"logo": "/logos/arbi.jpeg",
"value_prop": "",
"project_website": "https://arbitrum.foundation/",
"github_dev_docs": "https://github.com/OffchainLabs",
"team_contact": "https://discord.com/invite/arbitrum",
"twitter": "https://twitter.com/arbitrum",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/dCCjWK86TF",
"twitter": "https://twitter.com/AutomataNetwork",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/aurafinance",
"twitter": "https://twitter.com/aurafinance",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Aurora",
"description": "Aurora is an EVM-compatible L2 built on the NEAR protocol",
"project_scope": "Network",
"primary_category": "Infrastructure",
"secondary_categories": "Collectibles, Dashboard, Gaming, Marketplace, Messaging",
"logo": "/logos/aurora.jpeg",
"value_prop": "",
"project_website": "https://aurora.dev/",
"github_dev_docs": "https://github.com/aurora-is-near",
"team_contact": "https://discord.com/invite/dEFJBz8HQV",
"twitter": "https://twitter.com/auroraisnear",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Autonolas",
"description": "Own & decentralize off-chain processes with an open-source software stack",
"project_scope": "Interface",
"primary_category": "Infrastructure",
"secondary_categories": "Automation, DAO tooling, Tooling",
"logo": "/logos/autonolas.png",
"value_prop": "",
"project_website": "https://autonolas.network/",
"github_dev_docs": "https://github.com/valory-xyz",
"team_contact": "https://discord.com/invite/z2PT65jKqQ",
"twitter": "https://twitter.com/autonolas",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/RwXY7P6",
"twitter": "https://twitter.com/avax",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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/",
"team_contact": "https://discord.balancer.fi/",
"twitter": "https://twitter.com/Balancer",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Arbitrum, Ethereum, Gnosis Chain, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/5d3JXqYQGj",
"twitter": "https://twitter.com/Bancor",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/buildonbase",
"twitter": "https://twitter.com/BuildOnBase",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/bnbchain",
"twitter": "https://twitter.com/BNBCHAIN",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/ZZpKQYvzxE",
"twitter": "https://twitter.com/Bitbond",
"primary_integration": "Safe Apps SDK",
"packages": "web3-onboard",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Arbitrum, Avalanche, BNB, Ethereum, Optimism, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Blocknative",
"description": "Programmable web3 infrastructure for builders and searchers",
"project_scope": "Connection provider",
"primary_category": "",
"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",
"team_contact": "https://discord.com/invite/KZaBVME",
"twitter": "https://twitter.com/blocknative",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/brahma",
"twitter": "https://twitter.com/BrahmaFi",
"primary_integration": "",
"packages": "",
"modules_guards": "Guards - Yes\nModules - Yes",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "Yes",
"interface_can_you_import_an_existing_safe": "Yes"
},
{
"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",
"team_contact": "https://discord.com/invite/fZTfavP4EV",
"twitter": "https://twitter.com/BullaNetwork",
"primary_integration": "",
"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",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "",
"twitter": "https://twitter.com/timeless_fi",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Arbitrum, Ethereum, Optimism, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/7q6JAmJdjz",
"twitter": "https://twitter.com/candidewallet",
"primary_integration": "",
"packages": "",
"modules_guards": "https://github.com/candidelabs/CandideWalletContracts/blob/main/contracts/gnosisWallet/EIP4337Fallback.sol#L22",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/cardstack",
"twitter": "https://twitter.com/cardstack",
"primary_integration": "Safe Contracts",
"packages": "",
"modules_guards": "https://github.com/cardstack/cardstack-meta-guard",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "",
"twitter": "https://twitter.com/CasaHODL",
"primary_integration": "Safe Contracts",
"packages": "Unsure",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Cask Protocol",
"description": "Automate money flows on web3",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Payments",
"logo": "/logos/Cask.png",
"value_prop": "",
"project_website": "https://www.cask.fi/",
"github_dev_docs": "https://github.com/CaskProtocol/",
"team_contact": "https://discord.com/invite/mbmFKr9xeu",
"twitter": "https://twitter.com/caskprotocol",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Avalanche, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Castle",
"description": "A unified interface to vault, track and trade your coins and NFTs with ease",
"project_scope": "Interface",
"primary_category": "Collectibles / NFT",
"secondary_categories": "Marketplace",
"logo": "/logos/castle.jpeg",
"value_prop": "The smart and safe way to manage your NFTs",
"project_website": "https://castle.link/",
"github_dev_docs": "https://docs.castle.link",
"team_contact": "https://discord.gg/red4SbMzYs",
"twitter": "https://twitter.com/CastleLinkHQ",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/ACYCzBGC2M",
"twitter": "https://twitter.com/charmverse",
"primary_integration": "Core SDK",
"packages": "Safe Core SDK, Safe Service Client",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "",
"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": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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": "",
"team_contact": "https://support.cobo.com/hc/en-us",
"twitter": "https://twitter.com/Cobo_Global",
"primary_integration": "",
"packages": "",
"modules_guards": "https://etherscan.io/address/0x7893405d9d968a4e3637897f4fd734ca59f338f6#code",
"safe_apps_smart": "No",
"networks": "Arbitrum, Avalanche, BNB, Ethereum, Gnosis Chain, Optimism, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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": "",
"team_contact": "https://discord.com/invite/coinshift",
"twitter": "https://twitter.com/0xCoinshift",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Collabland",
"description": "Automated community management tool that curates membership based on token ownership",
"project_scope": "Interface",
"primary_category": "",
"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",
"team_contact": "https://discord.com/invite/collabland",
"twitter": "https://twitter.com/Collab_Land_",
"primary_integration": "Transaction Service API",
"packages": "Unsure",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Connext",
"description": "Connext is a modular interoperability protocol that lets you build secure crosschain apps (xApps)",
"project_scope": "Interface",
"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",
"team_contact": "https://discord.com/invite/connext",
"twitter": "https://twitter.com/ConnextNetwork",
"primary_integration": "",
"packages": "",
"modules_guards": "https://github.com/gnosis/zodiac-module-connext/",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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/",
"team_contact": "https://discord.com/invite/cowprotocol",
"twitter": "https://twitter.com/CoWSwap",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Ethereum, Gnosis Chain",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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": "",
"team_contact": "",
"twitter": "https://twitter.com/cryptio_co",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "",
"twitter": "",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Arbitrum, Aurora, Avalanche, BNB, Ethereum, Gnosis Chain, Optimism, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://t.me/curvefi",
"twitter": "https://twitter.com/curvefinance",
"primary_integration": "Safe Apps SDK",
"packages": "web3-onboard",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "",
"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": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/daohaus",
"twitter": "https://twitter.com/nowdaoit",
"primary_integration": "",
"packages": "",
"modules_guards": "https://github.com/HausDAO/MinionSummonerV2/blob/main/contracts/SafeMinion.sol",
"safe_apps_smart": "No",
"networks": "Ethereum, Gnosis Chain, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/XGDJHhZ",
"twitter": "https://twitter.com/defisaver",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/rPEsPzShd7",
"twitter": "https://twitter.com/deworkxyz",
"primary_integration": "Transaction Service API",
"packages": "Unsure",
"modules_guards": "",
"safe_apps_smart": "",
"networks": "",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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": "",
"team_contact": "https://discord.com/invite/BAWTbRA",
"twitter": "https://twitter.com/dHedgeOrg",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "—",
"networks": "Ethereum, Optimism, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "https://discord.com/invite/tyKReUK",
"twitter": "https://twitter.com/BreederDodo",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "BNB, Ethereum, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "",
"twitter": "",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Arbitrum, Aurora, Avalanche, BNB, Ethereum, Gnosis Chain, Optimism, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "",
"twitter": "",
"primary_integration": "Safe Apps SDK",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "Batch transactions",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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": "",
"team_contact": "https://discord.com/invite/CjeeqMeAGc",
"twitter": "https://twitter.com/DustSweeperDAO",
"primary_integration": "Safe Apps SDK",
"packages": "web3-react",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"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",
"team_contact": "mailto:[email protected]",
"twitter": "https://twitter.com/ensdomains",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "Enzyme Finance",
"description": "Onchain asset management. Build, scale and monetize an investment strategy that suits your needs",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Dashboard",
"logo": "/logos/enzime.png",
"value_prop": "",
"project_website": "https://enzyme.finance/",
"github_dev_docs": "https://github.com/enzymefinance/protocol",
"team_contact": "https://discord.com/invite/UhGMCQYUAv",
"twitter": "https://twitter.com/enzymefinance",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Ethereum",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""
},
{
"project": "ETHA Lend",
"description": "The DeFi Yield Optimizer: Deposit liquidity and DCA your favorite digital assets",
"project_scope": "Safe Apps",
"primary_category": "DeFi",
"secondary_categories": "Yield",
"logo": "/logos/ethaland.png",
"value_prop": "",
"project_website": "https://www.ethalend.org/",
"github_dev_docs": "https://github.com/ethalend",
"team_contact": "https://discord.com/invite/Njwzw7b7F2",
"twitter": "https://twitter.com/ethalend",
"primary_integration": "",
"packages": "",
"modules_guards": "",
"safe_apps_smart": "No",
"networks": "Avalanche, Polygon",
"interface_can_you_create_a_safe": "",
"interface_can_you_import_an_existing_safe": ""