forked from bnb-chain/developer-tools-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
1791 lines (1791 loc) · 60.2 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
[
{
"category": "Analytics & Dashboards",
"name": "Dune",
"desc": "Blockchain ecosystem analytics by and for the community",
"website": "http://dune.com/",
"groupTitle": "",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Analytics & Dashboards",
"groupTitle": "",
"name": "YieldWatch",
"desc": "Track your Yield Farming and Liquidity Pool performance on BNB Chain",
"website": "https://www.yieldwatch.net/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Analytics & Dashboards",
"groupTitle": "",
"name": "Bitquery",
"desc": "GraphQL explorer of Binance Chain data",
"website": "https://bitquery.io/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Analytics & Dashboards",
"groupTitle": "",
"name": "DeBank",
"desc": "A multi-chain portfolio tracker that supports the largest number of DeFi protocols",
"website": "http://debank.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Analytics & Dashboards",
"groupTitle": "",
"name": "Bloxy",
"desc": "One stand data source for understanding Binance DEX",
"website": "http://bloxy.info/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Analytics & Dashboards",
"groupTitle": "",
"name": "Footprint Analytics",
"desc": "Blockchain analytics",
"website": "https://www.footprint.network/about",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Analytics & Dashboards",
"groupTitle": "",
"name": "Web3Go",
"desc": "Web3Go is an all-in-one open data analytics and service platform where everyone can grasp the value behind blockchain data",
"website": "https://web3go.xyz/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Block Explorers",
"name": "BscScan",
"desc": "Blockchain explorer of BNB Chain",
"website": "https://bscscan.com/",
"chains": "bsc,opbnb",
"tags": "Game,Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Block Explorers",
"name": "Binplorer",
"logo": "https://binplorer.com/images/binplorer/binplorer-icon-white-bg-40x40.png",
"desc": "Blockchain explorer for the BNB Chain. Historical balances in USD for any addresses, API where you can get all tokens at any address.",
"website": "https://binplorer.com",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "Blockchain Access",
"groupTitle": "Block Explorers",
"name": "BSCTrace",
"desc": "Blockchain explorer of BNB Chain from NodeReal",
"website": "https://bsctrace.com/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Block Explorers",
"name": "GreenfieldScan",
"desc": "",
"website": "https://greenfieldscan.com/",
"chains": "greenfield",
"tags": "AI,DeSoc"
},
{
"category": "Blockchain Access",
"groupTitle": "Block Explorers",
"name": "MINTSCAN",
"desc": "A fast explorer for the Beacon Chain",
"website": "https://binance.mintscan.io/",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "NodeReal",
"desc": "The ultimate and fastest Web3 infrastructure solution on BNB Chain, ETH, Polygon and Aptos",
"website": "https://nodereal.io/",
"chains": "bsc,opbnb,greenfield",
"tags": "Game,Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "Ankr",
"desc": "Ankr provides builders with streamlined access to a global network of nodes running on 18 different blockchains",
"website": "https://ankr.com/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "Chainstack",
"desc": "From startups to large enterprises, thousands of businesses of all sizes use Chainstack’s software and APIs to build, run, and scale blockchain applications",
"website": "https://chainstack.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "NowNodes",
"desc": "Get your crypto API for instant access to 40+ blockchain networks including BTC, ETH, and BSC which is over 1000 coins and tokens",
"website": "https://nownodes.io/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "QuickNode",
"desc": "They make it simple to build blockchain applications and scale up as you grow. From elastic APIs to powerful tools and analytics, all at your command through a simple control panel",
"website": "https://www.quicknode.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "BlockVision",
"desc": "BlockVision is a one-stop development platform and on-chain data retrieval portal for developers that boasts impressively low-latencies and high availability",
"website": "https://blockvision.org/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "Covalent",
"desc": "Covalent provides a unified API bringing visibility to billions of Web3 data points",
"website": "https://www.covalenthq.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "InfStones",
"desc": "InfStones' easy-to-use blockchain infrastructure.",
"website": "https://infstones.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "Moralis",
"desc": "Moralis provides APIs, SDKs and Data for building high performance dApps. Integrate Web3 into any tech stack",
"website": "http://moralis.io",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "Gomu",
"desc": "NFT API",
"website": "https://www.gomu.co/",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "Blockchain Access",
"groupTitle": "Node and Archive Services",
"name": "Bounce Finance",
"desc": "NFT API and Web3 marketplace",
"website": "https://bounce.finance/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "NFT Tools",
"name": "NFTScan",
"desc": "The NFTScan API helps developers build new experiences retrieving NFTs and data analysis. We provide a set of endpoints that enable you to fetch ERC721 and ERC1155 NFT assets as well as transactions, collections, marketplace statistics and more",
"website": "https://nftscan.com/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "Blockchain Access",
"groupTitle": "NFT Tools",
"name": "BlockVision",
"desc": "BlockVision synchronizes and integrates core NFT marketplace data such as OpenSea and LooksRare, just to let you save everything while developing NFT applications",
"website": "https://blockvision.org/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "NFT Tools",
"name": "Venly",
"desc": "Unity plugin, NFT to email, Shopify-app, NFT API, NFT analytics, NFT minter",
"website": "https://www.venly.io/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "Blockchain Access",
"groupTitle": "NFT Tools",
"name": "NFTrade",
"desc": "Aggreagator & shared orderbook SDK, ability to buy NFTs with other chain's native token",
"website": "https://nftrade.com/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "Blockchain Access",
"groupTitle": "Data Indexing",
"name": "PARSIQ",
"desc": "Raw onchain data indexing, monitoring and intelligence platform",
"website": "https://www.parsiq.net/",
"chains": "bsc,opbnb",
"tags": "Defi"
},
{
"category": "Blockchain Access",
"groupTitle": "Data Indexing",
"name": "Nakji",
"desc": "Data indexing protocol for BNB Chain, mainly for DeFi, NFTs soon",
"website": "https://nakji.network/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Cross-chain Bridges",
"groupTitle": "",
"name": "Celer cBridge",
"desc": "cBridge introduces the best-in-class cross-chain token bridging experience with deep liquidity for users, highly efficient and easy-to-use liquidity management for both cBridge node operators and Liquidity Providers who do not want to operate cBridge nodes, and new exciting developer-oriented features such as general message bridging for cases like cross-chain DEX and NFTs",
"website": "https://cbridge.celer.network/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Cross-chain Bridges",
"groupTitle": "",
"name": "LayerZero",
"desc": "LayerZero is an omnichain interoperability protocol designed for lightweight message passing across chains",
"website": "https://layerzero.network/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Cross-chain Bridges",
"groupTitle": "",
"name": "ChainHop",
"desc": "ChainHop is a composable multi-chain liquidity network that facilitates multi-chain-native dApps, such as cross-chain DEX, cross-chain lending, etc. Built with the advanced multi-chain interoperability protocols, ChainHop unifies segmented liquidity across different chain and provides users & developer with a truly streamlined multi-chain experience",
"website": "https://chainhop.exchange/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Cross-chain Bridges",
"groupTitle": "",
"name": "Ren Project",
"desc": "Ren is an open and community-driven protocol that enables the movement of value between blockchains",
"website": "https://github.com/renproject/ren/wiki/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Cross-chain Bridges",
"groupTitle": "",
"name": "HashFlow",
"desc": "Bridgeless cross-chain swaps",
"logo": "https://www.nodereal.io/static/nodereal/images/bnb-dev-tool/icons/HashFlow.png?v=3",
"website": "https://www.hashflow.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Browser",
"groupTitle": "",
"name": "Opera",
"desc": "Web3 dedicated browser for desktop and mobile",
"website": "https://www.opera.com/crypto/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "DAO Tools",
"groupTitle": "",
"name": "Tally",
"desc": "Tally is a DAO operations platform",
"website": "https://www.tally.xyz/",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "DAO Tools",
"groupTitle": "",
"name": "Collab.Land",
"desc": "Collab.Land leverages the power of identity through crypto currency to create a social space unique to a specific network of humans. Once you add the bot to your Telegram group or Discord guild, they will manage your people for you. Depending on their token holdings they will be allowed to join the community. If they sell, the bot boots them",
"website": "https://collab.land/",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "DAO Tools",
"groupTitle": "",
"name": "Coinshift",
"desc": "Coinshift simplifies treasury management by providing efficient multisig tooling to save time & money for crypto organisations",
"website": "https://coinshift.xyz/",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "DAO Tools",
"groupTitle": "",
"name": "Snapshot",
"desc": "Snapshot is a decentralized voting system",
"website": "https://snapshot.org/#/",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "DAO Tools",
"groupTitle": "",
"name": "HQ.xyz",
"desc": "Wallet aggregation and Zapier-like automation tools for DAOs",
"website": "https://www.hq.xyz/",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "dApp Store",
"groupTitle": "",
"name": "dApp Bay",
"desc": "",
"logo": "https://nodereal.io/static/ihs/images/dev-tool-logo/bbfaaa13-d441-494a-9cda-2d5c2829f197.png",
"website": "https://dappbay.bnbchain.org/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "dApp Store",
"groupTitle": "",
"name": "Magic Square",
"desc": "",
"website": "https://magicsquare.io/",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Solidity Code Quality",
"name": "Solhint",
"desc": "This is an open source project for linting Solidity code. This project provides both Security and Style Guide validations",
"website": "https://github.com/protofire/solhint",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Solidity Code Quality",
"name": "Ethlint",
"desc": "Ethlint (Formerly Solium) analyzes your Solidity code for style & security issues and fixes them",
"website": "https://github.com/duaraghav8/Ethlint",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Solidity Code Quality",
"name": "Manticore",
"desc": "Manticore is a symbolic execution tool for analysis of smart contracts and binaries",
"website": "https://github.com/trailofbits/manticore",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Solidity Code Quality",
"name": "Slither",
"desc": "Slither is a Solidity static analysis framework",
"website": "https://github.com/crytic/slither",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Solidity Code Quality",
"name": "Echidna",
"desc": "Echidna is a program designed for fuzzing/property-based testing of Ethereum smart contracts",
"website": "https://github.com/crytic/echidna",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Front-End Programming",
"name": "Web3.js",
"desc": "Access full node capabilities without running your own",
"website": "https://github.com/ethereum/web3.js/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Front-End Programming",
"name": "Ethers.js",
"desc": "Designed to make it easier to write client-side JavaScript based wallets, keeping the private key on the owner’s machine at all times",
"website": "https://docs.ethers.io/ethers.js/v3.0/html/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Back-End Programming",
"name": "Web3.py",
"desc": "A python interface for interacting with the Ethereum blockchain and ecosystem",
"website": "https://github.com/ethereum/web3.py",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Back-End Programming",
"name": "Web3.php",
"desc": "A php interface for interacting with the Ethereum blockchain and ecosystem. Native ABI parsing and smart contract interactions",
"website": "https://github.com/web3p/web3.php",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Back-End Programming",
"name": "Java Web3",
"desc": "Lightweight Java and Android library for integration with Ethereum clients",
"website": "https://github.com/web3j/web3j",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Back-End Programming",
"name": "Net Web3",
"desc": "Bringing the love of .NET to Ethereum An open source .NET integration library for blockchain",
"website": "https://nethereum.com/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Back-End Programming",
"name": "Ruby Web3",
"desc": "Ethereum library for the Ruby language",
"website": "https://github.com/EthWorks/ethereum.rb",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "IDE",
"name": "Remix",
"desc": "Remix IDE allows developing, deploying and administering smart contracts for Ethereum like blockchains",
"website": "https://remix.ethereum.org/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "IDE",
"name": "Intellij Solidity Plugin",
"desc": "Every aspect of IntelliJ IDEA has been designed to maximize developer productivity. Together, intelligent coding assistance and ergonomic design make development not only productive but also enjoyable",
"website": "https://jetbrains.com/idea/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "IDE",
"name": "ChainIDE",
"desc": "A Cloud-Based Multi-Chain IDE",
"website": "https://chainide.com/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Development Framework",
"name": "Truffle",
"desc": "A world class development environment, testing framework and asset pipeline for blockchains using the Ethereum Virtual Machine",
"website": "https://trufflesuite.com/boxes/BSC-Truffle-Starter-Box/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Development Framework",
"name": "Embark",
"desc": "Embark is a platform that enables easy development and deployment of decentralized applications",
"website": "https://github.com/embark-framework/embark",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Development Framework",
"name": "Waffle",
"desc": "The most advanced framework for testing smart contracts",
"website": "https://getwaffle.io/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Development Framework",
"name": "OpenZeppelin",
"desc": "OpenZeppelin provides security products to build, automate, and operate decentralized applications. We also protect leading organizations by performing security audits on their systems and products",
"website": "https://www.openzeppelin.com/defender",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Development Framework",
"name": "HardHat",
"desc": "Hardhat is a development environment for Ethereum software",
"website": "https://hardhat.org/",
"chains": "bsc,opbnb",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "Wallet SDK",
"name": "Venly",
"desc": "Wallet creation by social accounts",
"website": "https://www.venly.io/product-wallet",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Development",
"groupTitle": "Wallet SDK",
"name": "Sequence.app",
"desc": "Wallet creation by social accounts",
"website": "https://sequence.app/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Development",
"groupTitle": "Wallet SDK",
"name": "Web3Auth",
"desc": "Wallet creation by social accounts",
"website": "https://web3auth.io/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "Development",
"groupTitle": "Wallet SDK",
"name": "BSC Connector",
"desc": "This example demonstrates how to support the Binance Chain Wallet through a custom connector",
"website": "https://github.com/aragon/use-wallet/tree/master/examples",
"chains": "bsc",
"tags": "ALL"
},
{
"category": "Development",
"groupTitle": "MPC Wallets/Multisig",
"name": "Qredo",
"desc": "MPC Wallets increase overall security for key management and such solutions are critical for protocol/project treasury management",
"website": "https://www.qredo.com/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "Development",
"groupTitle": "MPC Wallets/Multisig",
"name": "Gnosis",
"desc": "The purpose of multisig wallets is to increase security by requiring multiple parties to agree on transactions before execution",
"website": "https://gnosis-safe.io/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "Development",
"groupTitle": "MPC Wallets/Multisig",
"name": "Particle Network",
"desc": "Particle Network is a mobile app data and development platform for Web3.0. Mobile-first, data driven, composable.",
"website": "https://particle.network/",
"chains": "bsc,opbnb",
"tags": "Game"
},
{
"category": "Development",
"groupTitle": "Development Framework",
"name": "Starton",
"desc": "Starton is the most powerful development suite to build and scale web3 applications. We are the bridge to enable web2 companies to embrace web3",
"website": "https://www.starton.io/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game Fairness and openness",
"name": "Binance Oracle VRF",
"desc": "A provably fair and verifiable random number generator (RNG) that enables smart contracts to access random values without compromising security or availability.",
"website": "https://oracle.binance.com/docs/category/vrf/",
"logo": "https://www.nodereal.io/static/nodereal/images/bnb-dev-tools/icons/BSC%20Connector.png?v=3",
"chains": "bsc,opbnb",
"tags": "Game,Defi"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game Fairness and openness",
"name": "Chainlink",
"logo": "https://assets-global.website-files.com/5f6b7190899f41fb70882d08/5f760a499b56c47b8fa74fbb_chainlink-logo.svg",
"desc": "A decentralized computing platform powering the verifiable web",
"website": "https://chain.link",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game Fairness and openness",
"name": "Pyth",
"desc": "Pyth delivers real-time market data for crypto, equities, FX, and commodities",
"website": "https://pyth.network/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Virtual Asset Storage",
"name": "BNB Greenfield",
"logo": "https://docs.bnbchain.org/greenfield-js-sdk/img/logo.svg",
"desc": "Store, exchange, and own data to create a new data economy",
"website": "https://greenfield.bnbchain.org/en",
"chains": "bsc,greenfield",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Virtual Asset Exchange/Market",
"name": "Element",
"logo": "https://element.market/build/img/logo-header-b718ad53.svg",
"desc": "Community-driven Aggregated Marketplace.",
"website": "https://element.market/opbnb?ref=bnbchain.ghost.io",
"chains": "bsc,opbnb",
"tags": "Game,Defi"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Virtual Asset Exchange/Market",
"name": "vulcanforged",
"logo": "https://cdn.vulcanforged.com/web/vulcanforged/images/vf-logo.svg",
"desc": "web3 gaming studio.",
"website": "https://vulcanforged.com/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Social Login",
"name": "Web3Auth",
"logo": "https://web3auth.io/images/web-3-auth-logo-dark.svg",
"desc": "Multi-Party Computation (MPC) and Account Abstraction.",
"website": "https://web3auth.io/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Social Login",
"name": "Trust Wallet",
"logo": "",
"desc": "Web3 wallet.",
"website": "https://trustwallet.com/",
"chains": "bsc,opbnb",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Social Login",
"name": "Particle Network",
"desc": "The Intent-Centric Modular Access Layer of Web3.",
"website": "https://particle.network/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Social Login",
"name": "CyberConnect",
"logo": "https://ccgateway.infura-ipfs.io/ipfs/Qmb5YRL6hjutLUF2dw5V5WGjQCip4e1WpRo8w3iFss4cWB",
"desc": "Web3's earliest and biggest decentralized social network.",
"website": "https://link3.to/cyberconnect",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Social Login",
"name": "Biconomy",
"logo": "",
"desc": "Full-stack AA toolkit.",
"website": "https://www.biconomy.io/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Social Login",
"name": "Stackup",
"logo": "https://assets-global.website-files.com/641a927b6f25b780e5303838/641a93ffff5924e14fa43df9_logotype_blue_white.png",
"desc": "Open-source platform for custom web3 experiences and smart contract wallets.",
"website": "https://www.stackup.sh/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Social Login",
"name": "Blockus",
"logo": "https://assets-global.website-files.com/640c077b84373ff0b2683495/6412229c5f854256743dbf7d_logo-website-light.svg",
"desc": "All-in-one ecosystem for Web3 gaming.",
"website": "https://www.blockus.gg/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Session Management",
"name": "Particle Network",
"desc": "The Intent-Centric Modular Access Layer of Web3.",
"website": "https://particle.network/",
"chains": "bsc"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Metaverse Framework",
"name": "Colyseus",
"logo": "https://colyseus.io/images/logos/logo-light.png",
"desc": "Own your authoritative game servers.",
"website": "https://colyseus.io/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Metaverse Framework",
"name": "May Social",
"logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAlCAMAAAAHvluBAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMA4eznHPtnGAb1oIX58NzMrotuNSzY1LeBekhEJiEQDMa7spiSfU9LOzGmdFtTQRPOwF1fA8PhSgAAAbBJREFUOMu1lNmSgkAMRW+zCO6guCuoKIq7Dv//bTOdhGVqquBpzoMdbgWTm3QBxolNW/kWfhHOTds8bKrS2cg0A6cqWi8SjXEprc2MGbgoGYqogkIaZDlzFLQKcViVhH7RpqNKNRFtkpUcIXwq4lCc8H916TDzLqf02LHpYD8din2woxWIgB1H/PqhUnmNEZ17EAdJCGwyTrMhaQs4FLQjSmQrKbAtarekMuBR1NJ5SwqnALj2AkBM0bJ4ZVf2fQUwpuiSL6Cnzbp9qr0BHINEGqpBoouIJ1Xx34X42pG4E69n8RomD5zYzlO28kF6srCg+IaEzpG7/fmRpXfYgELSztRzxZdAXng89HKKrYvTvR6CI7153ALNA64q81SIma4Fsmhwou1yIla9IvEGSZxR4zzaDgKZ7zHP82UKd9z0YwxcJ8YlBObGhO5Dt0clFnQzXn096fnEjCP8YePPvG6A/2Tzbk/PaCZSumcLTcgcWs2FebJ3NBDy+k0H9VjbjPhCPemU83ao5enL5pVVb9fOhDHquOZpxgm1vCXPTFGPx3n7xp2s6Mt6RzPjmVfp7huydXGQoDUE7gAAAABJRU5ErkJggg==",
"desc": "The next generation social experience.",
"website": "https://may.social/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Metaverse Framework",
"name": "Orbofi",
"logo": "https://www.orbofi.com/images/logo.png",
"desc": "Create and chat with useful, fun and personalized AI agents.",
"website": "https://www.orbofi.com/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game Marketplace",
"name": "Lifty",
"logo": "",
"desc": "A web3 gaming platform.",
"website": "https://lifty.io/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game Marketplace",
"name": "Web3Games",
"logo": "https://web3games.com/app-logo-white.svg",
"desc": "A decentralized crypto gaming ecosystem.",
"website": "https://web3games.com/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game Marketplace",
"name": "Dagora",
"logo": "https://dagora.xyz/_next/image?url=%2Fimages%2Flogos%2Fdagora-dark.png&w=256&q=75",
"desc": "Discover, collect and trade NFTs easily.",
"website": "https://dagora.xyz/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game DAO",
"name": "Snapshot",
"logo": "https://www.gitbook.com/cdn-cgi/image/width=36,dpr=2,height=36,fit=contain,format=auto/https%3A%2F%2F545909647-files.gitbook.io%2F~%2Ffiles%2Fv0%2Fb%2Fgitbook-legacy-files%2Fo%2Fspaces%252F-MG4Ulnnabb2Xz3Lei9_%252Favatar-1602311890000.png%3Fgeneration%3D1602311890284612%26alt%3Dmedia",
"desc": "An off-chain voting platform.",
"website": "https://snapshot.org/?ref=bnbchain.ghost.io#/?filter=networks&q=opbnb",
"chains": "opbnb",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game DAO",
"name": "Xdao",
"logo": "",
"desc": "An Expanding DAO Ecosystem Built for a Decentralized Future.",
"website": "https://www.xdao.app/204?ref=bnbchain.ghost.io",
"chains": "bsc",
"tags": "Game"
},
{
"category": "On-Chain Game Development",
"groupTitle": "Game DAO",
"name": "Merit Circle",
"logo": "",
"desc": "An ever-evolving digital ecosystem built by a global community to ensure the future of gaming.",
"website": "https://meritcircle.io/",
"chains": "bsc",
"tags": "Game"
},
{
"category": "DeFi Development",
"groupTitle": "On/Off Ramp",
"name": "MoonPay",
"desc": "Offers a fast and simple way to buy and sell cryptocurrencies..",
"website": "https://www.moonpay.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "On/Off Ramp",
"name": "Transak",
"logo": "https://assets.transak.com/images/website/transak-logo.svg",
"desc": "Offers a simple on ramps integration to allow users to buy cryptocurrencies with credit/debit cards.",
"website": "https://transak.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "On/Off Ramp",
"name": "Kado",
"logo": "",
"desc": "An ultimate solution for buying and selling crypto.",
"website": "https://kado.money/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "On/Off Ramp",
"name": "Okse",
"logo": "",
"desc": "An easy way to spend crypto assets globally.",
"website": "https://okse.io/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Oracle",
"name": "Binance Oracle",
"desc": "Binance Oracle, a decentralized Web3 Oracle, a data feed network that connects real-world data to blockchain smart contracts. Binance Oracle will enable smart contracts to run on real-world inputs and outputs, starting with the BNB Chain ecosystem.",
"website": "https://oracle.binance.com/",
"logo": "https://www.nodereal.io/static/nodereal/images/bnb-dev-tools/icons/BSC%20Connector.png?v=3",
"chains": "bsc,opbnb",
"tags": "Game,Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Oracle",
"name": "Band Protocol",
"logo": "https://www.bandprotocol.com/static/images/logo.svg",
"desc": "Band Protocol is a cross-chain data oracle platform that aggregates and connects real-world data and APIs to smart contracts",
"website": "https://bandprotocol.com/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Oracle",
"name": "Chainlink",
"logo": "https://assets-global.website-files.com/5f6b7190899f41fb70882d08/5f760a499b56c47b8fa74fbb_chainlink-logo.svg",
"desc": "Securely connect smart contracts with off-chain data and services Chainlink decentralized oracle networks provide tamper-proof inputs, outputs, and computations to support advanced smart contracts on any blockchain",
"website": "https://chain.link/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Oracle",
"name": "Pyth",
"desc": "Pyth delivers real-time on-chain market data",
"website": "https://pyth.network/",
"chains": "bsc",
"tags": "Game,Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Bridge",
"name": "Celer cBridge",
"logo": "https://cbridge.celer.network/static/media/cbridgeLogo.f390be1a84b83fd0de9766ac8ca7ff80.svg",
"desc": "cBridge introduces the best-in-class cross-chain token bridging experience with deep liquidity for users, highly efficient and easy-to-use liquidity management for both cBridge node operators and Liquidity Providers who do not want to operate cBridge nodes, and new exciting developer-oriented features such as general message bridging for cases like cross-chain DEX and NFTs",
"website": "https://cbridge.celer.network/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Bridge",
"name": "LayerZero",
"logo": "https://layerzero.network/static/logo.svg",
"desc": "LayerZero is an omnichain interoperability protocol designed for lightweight message passing across chains",
"website": "https://layerzero.network/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Bridge",
"name": "ChainHop",
"desc": "ChainHop is a composable multi-chain liquidity network that facilitates multi-chain-native dApps, such as cross-chain DEX, cross-chain lending, etc. Built with the advanced multi-chain interoperability protocols, ChainHop unifies segmented liquidity across different chain and provides users & developer with a truly streamlined multi-chain experience",
"website": "https://chainhop.exchange/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Bridge",
"name": "RhinoFi",
"logo": "https://rhino.fi/wp-content/uploads/2023/10/rhino-Logo.svg",
"desc": "Offers seamless self-custodial interoperability, providing control and accessibility.",
"website": "https://rhino.fi/",
"chains": "bsc,opbnb",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Bridge",
"name": "HashFlow",
"desc": "Bridgeless cross-chain swaps",
"logo": "https://www.nodereal.io/static/nodereal/images/bnb-dev-tool/icons/HashFlow.png?v=3",
"website": "https://www.hashflow.com/",
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",
"groupTitle": "Hardware Wallet",
"name": "Trezor",
"logo": "",
"desc": "The safest cold storage wallets for crypto security and financial independence",
"website": "https://wallet.trezor.io",
"isSupportStaking": false,
"chains": "bsc",
"tags": "Defi"
},
{
"category": "DeFi Development",