This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.json
13789 lines (13789 loc) · 718 KB
/
application.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
[
{
"applicantType": "PROJECT",
"websiteUrl": "https://impersonator.xyz",
"bio": "Log-in to dapps as any address via WalletConnect, iFrame or Browser Extension",
"contributionDescription": "Impersonator has benefitted the following Optimism users:\n- Traders: With impersonator they can log-in to dapps as whale wallets and study how they have setup their positions in detail.\n\n- Dapp users: They can access dapps on-the-go in view-only mode! They no longer have to keep their Metamask or Hardware wallet nearby just to visit the dapp dashboard. Impersonator works without private-keys.\n\n- Developers:\n- They can test how their dapp would respond for users with various token balances\n- Grab the transaction calldata being generated by dapps and simulate it via tenderly",
"contributionLinks": [
{
"type": "GITHUB_REPO",
"url": "https://github.com/impersonator-eth/impersonator",
"description": "Open-source github repo for the Impersonator UI"
},
{
"type": "GITHUB_REPO",
"url": "https://github.com/impersonator-eth/impersonator-extension",
"description": "Open-source github repo for the Impersonator Browser extension"
}
],
"impactCategory": [
"DEVELOPER_ECOSYSTEM",
"END_USER_EXPERIENCE_AND_ADOPTION"
],
"impactDescription": "Impersonator has helped developers in the debugging process for their applications, allowing them to test and verify how their dapps work for different categories of users that hold a particular token or NFTs. They can simulate the calldata for transactions on Tenderly or their local node.\n\nImpersonator has high retention of users that visit the website every day. The browser extension has received a significant number of downloads in the past few months. Exact metrics are shared below.",
"impactMetrics": [
{
"description": "Site Views (last 6 months)",
"number": 31000,
"url": "https://i.imgur.com/r5GEEuW.png"
},
{
"description": "Browser Extension Downloads",
"number": 2590,
"url": "https://i.imgur.com/AzUdhuG.png"
}
],
"fundingSources": [],
"payoutAddress": "0x63A556c75443b176b5A4078e929e38bEb37a1ff2",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "PROJECT",
"websiteUrl": "https://github.com/protocol/research-grants/blob/master/RFPs/rfp-014-private-retrieval-of-data.md",
"bio": "Accelerating R&D of interactive private communication mechanisms",
"contributionDescription": "In the last year, we completed a first iteration of a public goods funding structure targeting the advancement of private data transfer. \n* Set up an advisory committee and program structure\n* Disbursed 750k to research groups working on private information retrieval and homomorphic encryption.\n\nThis fund both advances a clear, narrow, mission and serves as a test case for the public goods funding discussion at protocol labs and more broadly around the funding the commons community.",
"contributionLinks": [
{
"type": "GITHUB_REPO",
"url": "https://github.com/protocol/research-grants/blob/master/RFPs/rfp-014-private-retrieval-of-data.md",
"description": "RFP for grant applications"
},
{
"type": "OTHER",
"url": "https://arcological.xyz/#private-retrieval-pool",
"description": "Legal structure coordinating logistics"
},
{
"type": "GITHUB_REPO",
"url": "https://github.com/willscott",
"description": "Personal github profile"
}
],
"impactCategory": ["OP_STACK"],
"impactDescription": "* Accelerated the availability of more private communication options. Supporting the transition of research to practice allows for more things like https://spiraldb.xyz/balances/ - Impact both through direct distribution of capital, and through regular talks (e.g https://speak.protocol.berlin/protocol-berg/talk/Y7HNG9/, ethCC, HCPP, etc) to bridge research results to the web3 community.",
"impactMetrics": [
{
"description": "Amount funded",
"number": 750000,
"url": "https://research.protocol.ai/blog/2023/private-retrieval-grant-2023-roundup/"
}
],
"fundingSources": [
{
"type": "OTHER",
"currency": "USD",
"amount": 1500000,
"description": "Protocol Labs initial funding"
}
],
"payoutAddress": "0xcB2E7F53F446AFA859192194Fc2E7eeCA20f6285",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "INDIVIDUAL",
"websiteUrl": "https://github.com/Synnott5",
"bio": "Cryptomania",
"contributionDescription": "I love the crypto actuality and everything that develops around it! I ear some podcast every day for to be up-to-date. I read on some official site. I invest, hodl and invest in DEFI. Have a nice day day community!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
"contributionLinks": [
{
"type": "GITHUB_REPO",
"url": "https://github.com/Synnott5",
"description": "my profil"
}
],
"impactCategory": [
"COLLECTIVE_GOVERNANCE",
"END_USER_EXPERIENCE_AND_ADOPTION",
"OP_STACK"
],
"impactDescription": "I will be a user who I will be a utulisateru who will be there when it is necessary.I will maintain my activity to be unêtre a good optimism. I will stay up to date to stay on the lookout for news and new regulations.We must stay up to date and do our duty in the field.",
"impactMetrics": [
{
"description": "Coigecko",
"number": 1,
"url": "https://www.coingecko.com/"
}
],
"fundingSources": [],
"payoutAddress": "0x44687D0f2878B22CE8F242f9B9a85cFC9d77B61B",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "PROJECT",
"websiteUrl": "https://zenbit.mx",
"bio": "Digital Laboratory building public goods for cities",
"contributionDescription": "Since 2020, zenbit.eth started a collaborative research and development process with 27 talents from around the globe with a wide range of expertise, encompassing 12 specialized skills applied across more than 25 Open Source Projects developed in public, mainly at ETH Global hackathons.\n\nThese projects have seven categories incorporating advanced ethereum technologies to address city transparency, efficiency, and coordination challenges. Our main contribution by building these projects is more than 60 solidity contracts deployed across multiple EVMs, where ≈28% of the contracts have been deployed and tested in optimism mainnet or op goerli networks. We have spent .116 ETH in OP gas fees, have bridged ≈10 eth to OP mainnet, and locked ≈4k USD until 2026 in 2 OP chains.",
"contributionLinks": [
{
"type": "GITHUB_REPO",
"url": "https://github.com/orgs/zenbitETH/repositories",
"description": "Zenbit.eth OSS repositories"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://goerli-optimism.etherscan.io/address/0x0a5f6f977e77b718c995f2924862aaa464fa7f19#code",
"description": "zengoDAO contract (Urban Governance)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://goerli-optimism.etherscan.io/address/0x2204a410be3085cba25b8a71017cb7870519d76d#code",
"description": "Faucet contract for onboarding events (Education)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://goerli-optimism.etherscan.io/address/0xd2D9De2c40D1A49f7247165284cea27a1BEAa272#code",
"description": "Quiz Contract for crosschain atestation (Education)"
},
{
"type": "OTHER",
"url": "https://optimism-goerli-bedrock.easscan.org/schema/view/0x0d6ecbd5000b1713c21e28296f6ed8bfa8e0e5f5d8ee4b354276ba65c8b2c188",
"description": "Crosschain attestation in Optimism Goerli (Education)"
},
{
"type": "OTHER",
"url": "https://ccip.chain.link/msg/0x9be2f2e094403fa1527e72cfaf651a1b3757890fb0bd0bdea3258ef7d7452ff3",
"description": "Chainlink CCIP for crosschain attestation (Education)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://goerli-optimism.etherscan.io/address/0x82ddff634B673136d9dB515E9aFA8B2F691e573c",
"description": "Decentralized Commerce Store NFT contract (Urban Gaming)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://goerli-optimism.etherscan.io/address/0x78abDA89cFaA7ebe9D27423B8aF6e3018f9a6A8D",
"description": "Decentralized Commerce Product NFT contract (Urban Gaming)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://goerli-optimism.etherscan.io/address/0xfa343b1755a7197b2164b8ca55cf425aee6c6efa",
"description": "Eneagon Project NFT for Retroactive Funding (DAO funding) "
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://goerli-optimism.etherscan.io/address/0x8d462aa25b12d7c3be7e3d5e13f579c914abee8b",
"description": "Soulbounded NFT for Retroactive Funding (DAO funding)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://optimistic.etherscan.io/address/0xBace7a1b6ee3FB476fc5fEb7E7bf3a60293bC3cb#code",
"description": "Punk Cities Contract (Urban Gaming)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://optimistic.etherscan.io/address/0xb3911d5F92181fF728C72F0a162e8D6f3BDD5b66#code",
"description": "Regens Accout NFT (Urban Gaming)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://optimistic.etherscan.io/address/0xa7dc76Ae4A98da6352F283874b4C6d3BFb817dC1#code",
"description": "Regens DAO contract (Urban Governance)"
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://etherscan.io/tx/0x70f3c9c8d2565165adb0bf7a1d89d5f094d7c48f83ff5f81054be84d1c0cf88d",
"description": "Value bridged to Optimism"
},
{
"type": "OTHER",
"url": "https://debank.com/profile/0xecb4c1245665e8a1f43826355aab0dd6bf336e05",
"description": "Locked value in OP chains"
},
{
"type": "OTHER",
"url": "https://zenbiteth.notion.site/7b78f741d22a45469326077e534865cc?v=33d54bf2e42949a7921541172fb897cf&pvs=4",
"description": "zenbit.eth projects details"
},
{
"type": "OTHER",
"url": "https://zenbiteth.notion.site/2f25b0f1e88c41abb6780242d4a1abc3?v=0acb684a9d2049ffa15174ea3f8455b0&pvs=4",
"description": "zenbit.eth talent details"
}
],
"impactCategory": [
"DEVELOPER_ECOSYSTEM",
"END_USER_EXPERIENCE_AND_ADOPTION"
],
"impactDescription": "1. Zenbit Report 1 in mirror (optimism mainnet) \n\n2. Zenbit.eth is now officially registered as a commercial entity in Mexico.\n\n3. Four IP projects have been registered as trademarks in Mexico.\n\n4. An article was published in the \"Transparent Mexico\" magazine describing the process of implementing a decentralized budget in Queretaro.\n\n4. Ciudades DAO received a Special Mention as an urban governance application tested in Queretaro City.\n\n5. During the Zengo presentation at the Innovation in Transparency Contents event from the National Institute of Transparency in Mexico, Optimism was mentioned as a testing network.\n\n6. In 2020, we participated in the PNUD entrepreneur ecosystem LATAM.\n\n7. In 2020, we participated in the \"Queretaro State Program for Technology Development.\"",
"impactMetrics": [
{
"description": "Zenbit Report in Mirror (spa & eng)",
"number": 2,
"url": "https://mirror.xyz/zenbit.eth"
},
{
"description": "Zenbit registered as commercial entity",
"number": 1,
"url": "https://rpc.economia.gob.mx/siger2/xhtml/login/login.xhtml"
},
{
"description": "IP projects registered as trademarks",
"number": 4,
"url": "https://acervomarcas.impi.gob.mx:8181/marcanet/vistas/common/home.pgi"
},
{
"description": "Article about decentralized budget",
"number": 1,
"url": "https://snt.org.mx/wp-content/uploads/formado-Mexico-transparente-no.2-diciembre-2021-final.pdf#page=107"
},
{
"description": "Special Mention of Ciudades DAO ",
"number": 1,
"url": "https://x.com/vinculasociedad/status/1592582849315581952?s=20"
},
{
"description": "Optimism Mention in CIT 2023",
"number": 1,
"url": "https://x.com/zenbitMX/status/1691265665296973824?s=20"
},
{
"description": "Active developers",
"number": 21,
"url": "https://discord.gg/njMDG5xUr"
}
],
"fundingSources": [
{
"type": "OTHER",
"currency": "USD",
"amount": 840,
"description": "CLR fund QF round 9"
},
{
"type": "OTHER",
"currency": "USD",
"amount": 478.75,
"description": "Gitcoin QF beta round: web3 OSS"
},
{
"type": "OTHER",
"currency": "USD",
"amount": 519.66,
"description": "Gitcoin QF beta round: metacrisis"
},
{
"type": "RETROPGF_2",
"currency": "OP",
"amount": 1535.52,
"description": "We applied with a single project: eneagon.eth"
},
{
"type": "OTHER",
"currency": "USD",
"amount": 38450,
"description": "CLR fund QF @ devcon 2022"
},
{
"type": "OTHER",
"currency": "USD",
"amount": 5000,
"description": "Filecoin Next Step Grant"
},
{
"type": "OTHER",
"currency": "USD",
"amount": 500,
"description": "Filecoin Impact Builders"
}
],
"payoutAddress": "0x111D456edA93461D831cEA8A1598293e12B98393",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "INDIVIDUAL",
"websiteUrl": "https://twitter.com/0xuknw",
"bio": "A fool with faith",
"contributionDescription": "contributions to Optimism would include conducting a thorough security audit to identify and patch vulnerabilities, developing an algorithm to optimize transaction validation, creating educational webinars and materials for community engagement, overhauling the project's documentation, coding for enhanced interoperability with other networks, and establishing key performance indicators to track and report the network's health. These contributions aim to improve both the technical aspects and community engagement around Optimism.",
"contributionLinks": [
{
"type": "CONTRACT_ADDRESS",
"url": "https://twitter.com/0xuknw",
"description": "Twitter"
}
],
"impactCategory": [
"COLLECTIVE_GOVERNANCE",
"DEVELOPER_ECOSYSTEM",
"END_USER_EXPERIENCE_AND_ADOPTION",
"OP_STACK"
],
"impactDescription": "contributions to Optimism would include conducting a thorough security audit to identify and patch vulnerabilities, developing an algorithm to optimize transaction validation, creating educational webinars and materials for community engagement, overhauling the project's documentation, coding for enhanced interoperability with other networks, and establishing key performance indicators to track and report the network's health. These contributions aim to improve both the technical aspects and community engagement around Optimism.",
"impactMetrics": [
{
"description": "Twitter",
"number": 420,
"url": "https://twitter.com/0xuknw"
}
],
"fundingSources": [],
"payoutAddress": "0x0Bc0A524ECd730be22A5d8f697efeC818FDE0E65",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "INDIVIDUAL",
"websiteUrl": "https://dune.com/atk",
"bio": "Wannabe Dev, Stay Optimistic! 🔴✨",
"contributionDescription": "I mostly analyze on Dune and on Twitter, such as writing interesting topics about optimism data. Building the Dune tool, analyzing things like optimism rankings\n\nI wrote a total of 6 threads about the optimism ecosystem and retroPGF3 on Twitter:\n\n1. Including 7 interesting information about OP Mainnet (Optimism)!!\n2. You may be missing out on opportunities worth xx,xxx$ and the chance to contribute to creating good things for the optimism community.\n3. Let's meet DefiLlama, the standout recipient of the RPGF2 award!\n4. Keep an eye on this one, gitcoin\n5. Introducing \"Fire\" - Your Best Buddy on Web3!\n6. HopProtocol: Bridging Blockchains!\n\nand made 3 Dune dashboards:\n\n1. Optimism Users Ranking\n2. Optimism Dashboard\n3. Optimism Analysis\n\nThe total engagement is more than 30000 views.",
"contributionLinks": [
{
"type": "OTHER",
"url": "https://x.com/atk0805/status/1677315139383566336?s=20",
"description": "Including 7 interesting information about OP Mainnet (Optimism)!!"
},
{
"type": "OTHER",
"url": "https://x.com/atk0805/status/1680945032109625344?s=20",
"description": " chance to contribute to creating good things for the optimism community."
},
{
"type": "OTHER",
"url": "https://x.com/atk0805/status/1687033189385293824?s=20",
"description": "Let's meet DefiLlama."
},
{
"type": "OTHER",
"url": "https://x.com/atk0805/status/1687124171179122688?s=20",
"description": "Keep an eye on this one, gitcoin"
},
{
"type": "OTHER",
"url": "https://x.com/atk0805/status/1687414371763556352?s=20",
"description": "Introducing \"Fire\" - Your Best Buddy on Web3!"
},
{
"type": "OTHER",
"url": "https://x.com/atk0805/status/1687387288589012992?s=20",
"description": "HopProtocol: Bridging Blockchains!"
},
{
"type": "OTHER",
"url": "https://dune.com/atk/optimism-users-ranking",
"description": "Optimism Users Ranking"
},
{
"type": "OTHER",
"url": "https://dune.com/atk/optimism-statistics-you-should-know",
"description": "Optimism Dashboard"
},
{
"type": "OTHER",
"url": "https://dune.com/atk/optimism-analysis",
"description": "Optimism Analysis"
}
],
"impactCategory": ["END_USER_EXPERIENCE_AND_ADOPTION"],
"impactDescription": "Every work that I do I hope to spread and share knowledge about the optimism ecosystem to other people who are new to the web3 world. Or even many people who are better than me. and from the total engagement amount in the tens of thousands It made me quite satisfied with the response that exceeded my expectations. At least there should be people who get to know a little more optimism than before. It would be good. In addition to having more knowledge I also hope that those people will continue to spread good things.",
"impactMetrics": [
{
"description": "Likes on dune",
"number": 58,
"url": "https://dune.com/atk/optimism-users-ranking"
},
{
"description": "Views on Twitter",
"number": 7800,
"url": "https://x.com/atk0805/status/1677315139383566336?s=20"
},
{
"description": "Views on Twitter",
"number": 10000,
"url": "https://x.com/atk0805/status/1687033189385293824?s=20"
},
{
"description": "Views on Twitter",
"number": 10000,
"url": "https://x.com/atk0805/status/1687387288589012992?s=20"
},
{
"description": "Views on Twitter",
"number": 2900,
"url": "https://x.com/atk0805/status/1687124171179122688?s=20"
},
{
"description": "Views on Twitter",
"number": 1700,
"url": "https://x.com/atk0805/status/1680945032109625344?s=20"
},
{
"description": "Views on Twitter",
"number": 2200,
"url": "https://x.com/atk0805/status/1687414371763556352?s=20"
}
],
"fundingSources": [
{
"type": "OTHER",
"currency": "USD",
"amount": 1,
"description": "I have never received any income from my contributions.(need to enter 1 to pass)"
}
],
"payoutAddress": "0x80f8eFb44b3bbC088B3360266c29DAcEFf1a8C3F",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "PROJECT",
"websiteUrl": "https://www.ayahq.com/",
"bio": "Driving Web3 Advancement in Africa through Talent Development & Tech Innovation.",
"contributionDescription": "We're dedicated to equipping African builders with skills and supporting their innovations to address challenges.\nTrained 66 professionals in product design, management, and smart contract engineering.\nThese professionals showcased their expertise in 10 global hackathons, securing over $17,000 in prizes.\nSince April, our community expanded to 1,312 Ethereum and L2-focused builders, actively collaborating and innovating.\nEngaged 254 Ghanaian computer science students with the Ethereum Campus Tour, introducing them to blockchain's core concepts.\nThe Ayathon at Web3Lagos in August 2023, focusing on L2s, featured 18 projects with 104 participants.\nOur model equips Africans with skills, fosters community growth, offers global opportunities, and supports innovations for continent-wide adoption.",
"contributionLinks": [
{
"type": "OTHER",
"url": "https://www.ayalab.xyz/hackathon/54cab916-277a-49a7-bba6-11fa9c3fdfd5",
"description": "Projects built during the Ayathon (28th September to 2nd of August)"
},
{
"type": "GITHUB_REPO",
"url": "https://github.com/Aya-labs",
"description": "AyaLabs"
},
{
"type": "OTHER",
"url": "https://drive.google.com/file/d/13mzebxFwCwXN1Ekn5dJq0HdigLYi2Hf0/view?usp=sharing",
"description": "Aya Talent Collective Challenge Report"
},
{
"type": "OTHER",
"url": "https://drive.google.com/file/d/1snVokywxP0bvZAAt-kM94OUeJNj6RFK-/view?usp=sharing",
"description": "Ayathon 1.0 Report"
}
],
"impactCategory": ["DEVELOPER_ECOSYSTEM"],
"impactDescription": "We have played a pivotal role in beginning to bridge the knowledge gap around Ethereum and L2s, including Optimism and Base, on the African continent. By cultivating a community of passionate builders, we have equipped a new wave of innovators with the tools and understanding they need to harness the power of blockchain technology. These projects confront diverse challenges, from preserving African heritage to introducing digital identity solutions. By also facilitating educational outreaches and deepening collaborations, we've expanded our influence. Regular feedback loops and mentorship programs further solidify our impact. We're wholeheartedly convinced that enabling African builders to solve local dilemmas will exponentially boost blockchain acceptance continent-wide.",
"impactMetrics": [
{
"description": "# of Community Builders",
"number": 1312,
"url": "https://discord.gg/6yZV78NRtx"
},
{
"description": "# of Students (EthDev Campus tour)",
"number": 254,
"url": "https://docs.google.com/document/d/1Vh8uFHJk1eqAr85P_ro_46CH2bbFqEpPsC_d97zhLcI/edit?usp=sharing"
},
{
"description": "# of Graduates of AyaVersity Cohort 1",
"number": 66,
"url": "https://drive.google.com/file/d/13mzebxFwCwXN1Ekn5dJq0HdigLYi2Hf0/view?usp=sharing"
}
],
"fundingSources": [
{
"type": "OTHER",
"currency": "USD",
"amount": 150000,
"description": "Coinbase Giving"
}
],
"payoutAddress": "0xf203D6C796B99d0F2f861d1B838074822dd64D7c",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "PROJECT",
"websiteUrl": "https://app.alphaday.com",
"bio": "Alphaday builds crypto experience dashboards.",
"contributionDescription": "We have built an Optimism Community Dashboard to serve the Community. By having all the latest Optimism-related social feeds, blogs, on-chain metrics and access to dapps themselves, community members can quickly stay informed and interact with the Optimism ecosystem.\nOur complete proposal was published on Optimism Grants here: https://app.charmverse.io/op-grants/page-13585052320942648\nWe were redirected to RPGF's through feedback.",
"contributionLinks": [
{
"type": "OTHER",
"url": "https://app.alphaday.com/b/optimism/",
"description": "We have built an Optimism Community Dashboard to serve the Community."
},
{
"type": "GITHUB_REPO",
"url": "https://github.com/AlphadayHQ",
"description": "Our application's github repo."
}
],
"impactCategory": ["END_USER_EXPERIENCE_AND_ADOPTION"],
"impactDescription": "We envision the Optimism dashboard being the go-to resource for community members since the entire Optimism ecosystem is aggregated into one UI on Alphaday. This makes it a very attractive on-boarding tool for new developers as the dashboard will contain beginner resource material, documentation, grants, bounties, open positions in community projects, on-chain tools and much more.",
"impactMetrics": [
{
"description": "MAU",
"number": 20000,
"url": "https://www.hotjar.com/"
},
{
"description": " Average session time per user (minutes)",
"number": 9,
"url": "https://www.hotjar.com/"
},
{
"description": "Retention rate 30 days (%)",
"number": 50,
"url": "https://www.hotjar.com/"
}
],
"fundingSources": [
{
"type": "OTHER",
"currency": "USD",
"amount": 1,
"description": "We have not received any funding from Optimism yet."
}
],
"payoutAddress": "0x48e239fa0b364cd92fc750a50045c9f9e04dd781",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "INDIVIDUAL",
"websiteUrl": "https://twitter.com/EthereumThaila1",
"bio": "a crypto educator for Thai people on Twitter with active followers of 35,000",
"contributionDescription": "I've been active on Crypto Twitter for 2 years. The content advocates to value investing in defi which I apply my financial degree to educate people to invest in defi in valued manner not degen. There are lots of thankful members who survived the crash of LUNA and its UST along with valueless defi projects as well as ghostchains like ADA. My stance is about making people aware of the true value of the protocols not only in defi but also the infrastructure of the chain and its rollups. Among thankful messages people wrote to me about helping them out of the crypto crisis in 2022, there are also those who got impact severely and felt sorry that they didn't follow my content early. This is the reason I will\ncontinue to raise awareness in a harsh manner to ensure no victim to crypto scammers.",
"contributionLinks": [
{
"type": "CONTRACT_ADDRESS",
"url": "https://twitter.com/EthereumThaila1",
"description": "My twitter account that keep educating ppl about value investing in crypto"
}
],
"impactCategory": ["END_USER_EXPERIENCE_AND_ADOPTION"],
"impactDescription": "promote the value investing in crypto to thai community. The commitment is to continue educating thai people about the tech stack of Optimism both in terms of infrastructure that gear toward decentralized sequencers with value accrual to OP stakers as well as the valuable ecosystems that connect dapps together and could make use of the full potential of OVM/EVM.",
"impactMetrics": [
{
"description": "followers",
"number": 35000,
"url": "https://twitter.com/EthereumThaila1"
},
{
"description": "active students",
"number": 841,
"url": "https://www.patreon.com/mahachai_defi"
},
{
"description": "Stader Collab ETH validator onboards",
"number": 100,
"url": "https://docs.google.com/forms/d/e/1FAIpQLSfDgx1iNqGB7tBTSkeKhM_GOlvSDEdWX0Eqhrz5O1BRGoXEoQ/viewform"
}
],
"fundingSources": [],
"payoutAddress": "0x5E014aa0649102E07c074f498845F01BCD520317",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "PROJECT",
"websiteUrl": "https://zora.co/collect/base:0xdf10f5274e52cb71a0bd5a9176ad271cdc38892c",
"bio": "XOXO is a collection of 5,555 women NFTs living on Base blockchain.",
"contributionDescription": "The Ideology Behind XOXO\nThe digital realm is vast, filled with countless creators and developers. Among them, women have been at the forefront, pushing boundaries, and redefining the landscape of web3. However, their contributions often go unnoticed or overshadowed. XOXO aims to change that narrative.",
"contributionLinks": [
{
"type": "OTHER",
"url": "https://zora.co/collect/base:0xdf10f5274e52cb71a0bd5a9176ad271cdc38892c",
"description": "XOXO celebrates the women in the web3 space."
}
],
"impactCategory": ["END_USER_EXPERIENCE_AND_ADOPTION"],
"impactDescription": "The Ideology Behind XOXO\nThe digital realm is vast, filled with countless creators and developers. Among them, women have been at the forefront, pushing boundaries, and redefining the landscape of web3. However, their contributions often go unnoticed or overshadowed. XOXO aims to change that narrative.",
"impactMetrics": [
{
"description": "Free Mint",
"number": 5555,
"url": "https://zora.co/collect/base:0xdf10f5274e52cb71a0bd5a9176ad271cdc38892c"
}
],
"fundingSources": [],
"payoutAddress": "0x1eF889562C00Fc984Cf9A5903C98fa11761142E9",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "INDIVIDUAL",
"websiteUrl": "https://bit.ly/zer0kn0wledge",
"bio": "Researcher & Content Creator focusing on modular scaling, rollups & zk tech!",
"contributionDescription": "As a researcher & content creator with a strong focus on rollups, modular scaling and zk tech, I have published a lot of educational resources to educate people on how rollups work, why they matter and what the benefits, drawbacks, differences & underlying trust assumptions of these systems are. \n\nWhile a lot of my content is aimed at a rather broad audience of users that can range from non-technical to tech-savvy, I also create more in-depth / technical content on modular blockchain architecture & zk tech. This kind of content, is slightly more geared towards a technical audience including builders and devs. The goal is to empower them to build out customized & optimized execution layers on top of Ethereum's battle-tested security guarantees that are more performant and secure.\n",
"contributionLinks": [
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1532284723183210496",
"description": "Twitter thread on Optimism Bedrock"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1706265085662920714",
"description": "Twitter post on OP-Stack and Superchain vision"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1691858018772701531",
"description": "Twitter post on Superchain and atomicity"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1678833185348816898",
"description": "Manta Network's OP-Stack based zk Execution Layer"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1684269204151881728",
"description": "Twitter thread providing comprehensive L2 overview (mentions OP)"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1527434609637478400",
"description": "Twitter thread on the broader rollup landscape (mentions OP)"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1702942883224129985",
"description": "Twitter thread on the rollup-centric ETH 2.0 roadmap"
},
{
"type": "OTHER",
"url": "https://zkmedia.substack.com/p/scaling-ethereum-on-rollups?utm_source=profile&utm_medium=reader2",
"description": "Long form article on scaling Ethereum on rollups (mentioning Optimism)"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1527419709616013313",
"description": "Twitter thread on scaling Ethereum on rollups (mentioning Optimism)"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1649125801735098370",
"description": "Twitter thread on rollup centralization risks"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1661666059190161409",
"description": "Twitter thread about types of app-specific rollups (mentioning Caldera)"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1696274817048330453",
"description": "Twitter thread on L2 / L3 tech stack comparison (mentioning Optimism)"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1532100096111824901",
"description": "Twitter thread on EIP-4844 (proto-danksharding)"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1660744845361827841",
"description": "Twitter thread on a trust framework for rollups"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1682359858119741443",
"description": "Twitter thread on taking the training wheels off rollups"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1702563747254960414",
"description": "Twitter post on EIP4844"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1701464308956230052",
"description": "Twitter post on the DA problem"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1661794274206445569",
"description": "Twitter thread on Ethereum call data costs for rollups"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1663213648121307141",
"description": "Thread on comparison of different DA layers that devs could work with"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1601534426592071681",
"description": "Collection of threads on modular blockchain architecture"
},
{
"type": "OTHER",
"url": "https://twitter.com/expctchaos/status/1689631858873733123",
"description": "Thread on zk-powered fraud proving for rollups"
},
{
"type": "OTHER",
"url": "https://twitter.com/zerokn0wledge_/status/1703716152441278744",
"description": "Thread on fast finality for rollups through EigenSettle"
},
{
"type": "OTHER",
"url": "https://bit.ly/zer0kn0wledge",
"description": "Link to Full Content Database on Notion"
}
],
"impactCategory": [
"DEVELOPER_ECOSYSTEM",
"END_USER_EXPERIENCE_AND_ADOPTION"
],
"impactDescription": "With my content I have educated users and thereby created turst/credibility. Furthermore, I have inspired new users to join the Collective. By familiarizing people with the technology & educating them about the trust assumptions that underly the networks, I contributed to growing the community, as is evidenced by the significant reach of my posts/threads (see google sheet linked below).\n\nAdditionally, my more technical content is empowering builders to design highly customized app-specific rollups on the OP-Stack & piece together the ideal network configs for their specific use cases, also through RaaS like Caldera. By educating builders about the advantages of modular execution layers, I help to grow the OP Stack's ecosystem of builders and subsequently chains in the Superchain vision.",
"impactMetrics": [
{
"description": "Total Views/Reach of above Content",
"number": 266897,
"url": "https://docs.google.com/spreadsheets/d/1_xfwqxO7--y0AzVKEbVKYAYh-3DGnx0W2MkCeVQ_Bug/edit?usp=sharing"
}
],
"fundingSources": [],
"payoutAddress": "0xCb31f0beCfc9D011676E7F84CbCD10fe4717f252",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "PROJECT",
"websiteUrl": "https://ethers.org",
"bio": "Ethers.js is a simple, compact and complete library for everything Ethereum.",
"contributionDescription": "Ethers.js is currently the most popular JavaScript library for Ethereum (and ilk) with over 1 million weekly npm installs (over 110 million, all time) and is in the top 500 NPM packages by dependents.\n\nEthers has worked closely with the OP team to collaborate on the custom OP extension package as well as integrate new plug-ins for tuning network performance (such as custom priority fees), which are all built-in and automatically used for OP-detected networks.\n\nEthers is also used by many of the other tools and projects which help enable Optimism, such as MetaMask, Uniswap and Hardhat.",
"contributionLinks": [
{
"type": "GITHUB_REPO",
"url": "https://github.com/ethers-io/ethers.js",
"description": "The Ethers.js project repository."
},
{
"type": "OTHER",
"url": "https://ethers.org",
"description": "The Ethers.js project website."
},
{
"type": "OTHER",
"url": "https://docs.ethers.org",
"description": "The Ethers.js documentation."
}
],
"impactCategory": ["DEVELOPER_ECOSYSTEM"],
"impactDescription": "The impact provided by Ethers has been a simple and popular developer library.\n\nMany aspects of Ethers favour simplicity and safety-by-default, such as \"garbage-in, fail loud\" (opposed to \"garbage-in, garbage-out\", which often results in unsafe or error prone behaviour) which has helped protect developers and end-users from innocent mistakes, which could be costly or dangerous in the the blockchain world. Making it difficult to build a foot-gun is a feature.\n\nBy being so widely used, it has also led to the development of many other projects on top of it, further expanding the ecosystem.",
"impactMetrics": [
{
"description": "Downloads",
"number": 111000,
"url": "https://npm-stat.com/charts.html?package=ethers&from=2018-01-01&to=2023-10-01"
},
{
"description": "GitHub Stars",
"number": 7100,
"url": "https://github.com/ethers-io/ethers.js"
},
{
"description": "GitHub Forks",
"number": 1700,
"url": "https://github.com/ethers-io/ethers.js"
}
],
"fundingSources": [
{
"type": "RETROPGF_2",
"currency": "OP",
"amount": 209140,
"description": ""
},
{
"type": "RETROPGF_1",
"currency": "USD",
"amount": 51345,
"description": ""
}
],
"payoutAddress": "0x8ba1f109551bD432803012645Ac136ddd64DBA72",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "PROJECT",
"websiteUrl": "https://app.openxswap.exchange/",
"bio": "We write smart contracts that facilitate the open exchange of ideas and value.",
"contributionDescription": "This submission is for our NFT Market. Its contracts allow for any ERC20 to be exchanged for any ERC721. To our knowledge there are no other contracts on Optimism, or on any chain, that allow this functionality. We addressed UI / UX issues voiced by Optimism users, particularly for veNFTs. The fee (1%) is the lowest among all NFT Markets on Optimism. ",
"contributionLinks": [
{
"type": "CONTRACT_ADDRESS",
"url": "https://optimistic.etherscan.io/address/0x7590c1aa03b6ac395e62b2a8b382272e4e1e823d",
"description": "NFT Market Contract (Etherscan)"
}
],
"impactCategory": ["END_USER_EXPERIENCE_AND_ADOPTION"],
"impactDescription": "Most NFTs are exchanged for ETH, a volatile currency. This volatility inhibits price discovery by inextricably tying the value of an NFT to the value of ETH. Vote-escrowed NFTs, which tokenize the value of a governance position in projects like Solidly and Velodrome, add an additional (often volatile) token to this equation. \n\nThe market struggled to evaluate these positions in ETH. By allowing listings in stables, sellers can fix a stable floor price; allowing listings in the underlying token, e.g., listings of veVELO for VELO, the seller creates a zero-slippage offer - if VELO's price moves, the price of veVELO necessarily follows as veVELO is VELO (albeit vote-escrowed). \n\nSince its launch, our NFT Market volume is several times the volume of all other NFT Markets on Optimism combined. ",
"impactMetrics": [
{
"description": "Total Volume on OP + BASE (in USD)",
"number": 500000,
"url": "https://optimistic.etherscan.io/address/0x7590c1aa03b6ac395e62b2a8b382272e4e1e823d"
}
],
"fundingSources": [
{
"type": "REVENUE",
"currency": "USD",
"amount": 5000,
"description": "Our fee goes toward operational costs. We've never received a grant."
}
],
"payoutAddress": "0x8C69330B0a40ef18f81832446D238311194FE8B8",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "INDIVIDUAL",
"websiteUrl": "HTTPS://www.nowhere.com",
"bio": "United we stand ",
"contributionDescription": "Telling clients and friend the benefits and reduce fee with high and infinite possibilities that this blockchain has un like other that 100X having a great product help but having something that facilitated and save gas plus all the other stuff untold be true ",
"contributionLinks": [
{
"type": "CONTRACT_ADDRESS",
"url": "Httpr:www.nowhere.com",
"description": "Urusto22 "
}
],
"impactCategory": ["OP_STACK"],
"impactDescription": "Having the opportunity to stack and save money with a Better opportunity of passive income without having to release o relay all your físicas or digital asset in one spot not such a big pp person but willing to contribute as much as I can for the greater future",
"impactMetrics": [
{ "description": "Metric", "number": 420, "url": "Http:Www.nowhere.com" }
],
"fundingSources": [
{
"type": "GOVERNANCE_FUND",
"currency": "OP",
"amount": 406,
"description": "Air drop"
}
],
"payoutAddress": "0xA527e8209E784a2DAC1c1c0C157B185711A06E4B",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "INDIVIDUAL",
"websiteUrl": "https://twitter.com/StabZer0",
"bio": "Web3 KOL .Skilled in community management, social media marketing",
"contributionDescription": "I'm Zero, a top KOL in crypto & Web3. I specialize in project promotion through my extensive social channels including Twitter, Discord & Telegram where I've built a large, engaged following. My tailored KOL marketing drives growth through regular project updates, previews & AMAs. I'm passionate about elevating promising Web3 projects through my social influence. Let's discuss collaborating to maximize your project's visibility. My KOL services amplify exposure.",
"contributionLinks": [
{
"type": "OTHER",
"url": "https://twitter.com/StabZer0",
"description": "https://twitter.com/StabZer0"
}
],
"impactCategory": ["END_USER_EXPERIENCE_AND_ADOPTION"],
"impactDescription": "As an influential KOL in Web3 space, I can leverage my extensive social reach and community to drive new user acquisition for Optimism Collective. Through tailored social campaigns and community activations, I will promote Optimism's benefits to decentralized finance users and attract new members. By hosting AMAs and creating educational content, I can clearly communicate Optimism's value propositions to onboard new users. With my experience managing communities, I can also engage existing users by fostering an inclusive environment and organizing impactful initiatives that demonstrate Optimism's possibilities. My KOL marketing expertise will raise Optimism's profile and build meaningful connections between the protocol and end users worldwide.",
"impactMetrics": [
{
"description": "Invite new user",
"number": 20000,
"url": "https://twitter.com/StabZer0"
}
],
"fundingSources": [
{
"type": "GOVERNANCE_FUND",
"currency": "OP",
"amount": 500,
"description": ""
}
],
"payoutAddress": "0x7B5E58994020Fc30836D8506bcD8739385fb5f38",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "PROJECT",
"websiteUrl": "https://copin.io",
"bio": "Explore, analyze and copy on-chain traders from the top of the perpetual DEX",
"contributionDescription": "About Copin\n- Copin enables users to explore, analyze, and copy on-chain traders from top perpetual DEXs like GMX, Kwenta, and more. \n- The platform is designed to serve both traders and investors in the crypto market. These users may have varying levels of knowledge about the market but lack the time for regular market monitoring and trading. They utilize Copin to discover and analyze suitable on-chain traders, begin tracking their activities, and copy their trades. This offers them a new investment channel, with passive income potential, while requiring minimal time commitment.\n- Copin began its development journey in April 2023, and it currently comprises a team of 15 members. The project has already introduced a private beta version for initial users. ",
"contributionLinks": [
{
"type": "OTHER",
"url": "https://app.copin.io",
"description": "Dapp Link (private beta version), all features are available for free."
},
{
"type": "OTHER",
"url": "https://app.copin.io/stats",
"description": "Copin's statistics after 2 months of launching the private beta version"
},
{
"type": "OTHER",
"url": "https://docs.copin.io",
"description": "Copin documents"
},
{
"type": "OTHER",
"url": "https://copin.substack.com/p/copin-analyzer-building-the-leading",
"description": "Copin blog's"
}
],
"impactCategory": ["END_USER_EXPERIENCE_AND_ADOPTION"],
"impactDescription": "The impacts are as follows:\n\n- Providing traders on perpetual DEX platforms like Synthetix (such as Kwenta, ...) with powerful tools to analyze their own behavior, performance, and the habits of other traders. This helps enhance their skills and improve their psychology when trading.\n- Driving trading volume on Synthetix's protocol through investor copy trading and trader trading volume.\n- Contributing to positioning and enhancing the brand of the Synthetix ecosystem, particularly its perpetual DEX products",
"impactMetrics": [
{
"description": "Total copiers",
"number": 270,
"url": "https://app.copin.io/stats"
},
{
"description": "Total volume",
"number": 3346567,
"url": "https://app.copin.io/stats"
}
],
"fundingSources": [],
"payoutAddress": "0x1A561e43f264952D7b4F25Fb4967122c87618Beb",
"understoodKYCRequirements": true,
"understoodFundClaimPeriod": true,
"certifiedNotDesignatedOrSanctionedOrBlocked": true,
"certifiedNotSponsoredByPoliticalFigureOrGovernmentEntity": true,
"certifiedNotBarredFromParticipating": true
},
{
"applicantType": "INDIVIDUAL",
"websiteUrl": "https://www.linkedin.com/in/giuliano-o/",
"bio": "Crypto Class '16 | Tech to Crypto Journey in Asia | Early BASE contributor ",
"contributionDescription": "As an early recipient of the OP Airdrop from my work with Constitution DAO, I believe I should be considered for the RetroPGF for the following reasons:\n\n+ I'm well-versed and passionate about the Superchain thesis and the OP Collective.\n+ With 14+ years as a tech builder in Asia, I can leverage my credibility to bridge the Web2 to Web3 transition and champion the OP Superchain thesis effectively.\n+ As an early BASE L2 contributor within Coinbase, I've been actively promoting the \"Superchain Thesis.\"\n+ I'm transitioning to an independent role outside of Coinbase, where I'll support the BASE Ecosystem and continue advocating for the OP-Stack & Superchain narrative.",
"contributionLinks": [
{
"type": "OTHER",
"url": "https://basescan.org/tx/0x272149ba8b3dded148cc49e7b91e37f601738b8f1ec1e079e3bbb93e71f3bcea",
"description": "OP Stack | Base early contributor "
},
{
"type": "CONTRACT_ADDRESS",
"url": "https://optimistic.etherscan.io/tx/0xd2a36689871f76bb32ca33fa1ad4574bd8470f12aecf64342f7cf0d01ae739b4",
"description": "Active governance for OP (through delegation)"
},