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
/
profiles.json
1412 lines (1412 loc) · 86.7 KB
/
profiles.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
[
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x63A556c75443b176b5A4078e929e38bEb37a1ff2.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x63A556c75443b176b5A4078e929e38bEb37a1ff2.png",
"websiteUrl": "https://apoorv.xyz/",
"bio": "Currently leading protocol development at NFTX to advance the NFT-fi space. I am a builder focusing on improving the dev-ex with my open-source tools."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xbd43CDeDaaF8CFCFeC0C6597edF748FE402F6F00.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xbd43CDeDaaF8CFCFeC0C6597edF748FE402F6F00.jpeg",
"websiteUrl": "https://wills.co.tt",
"bio": "I'm helping make a more resilient web. I currently work on privacy and data transfer protocols at Protocol Labs."
},
{
"bio": "I love the crypto actuality and everything that develops around it!"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x04cc6b487566B1C821bEa04d7ac0d23CEDe05cC9.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x04cc6b487566B1C821bEa04d7ac0d23CEDe05cC9.png",
"websiteUrl": "https://zenbit.mx"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x0Bc0A524ECd730be22A5d8f697efeC818FDE0E65.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x0Bc0A524ECd730be22A5d8f697efeC818FDE0E65.jpeg",
"websiteUrl": "https://www.starsarena.com/0xUKNW/",
"bio": "A fool with faith"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x80f8eFb44b3bbC088B3360266c29DAcEFf1a8C3F.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x80f8eFb44b3bbC088B3360266c29DAcEFf1a8C3F.jpeg",
"websiteUrl": "https://dune.com/atk",
"bio": "Wannabe Dev, Stay Optimistic! 🔴✨"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xf203D6C796B99d0F2f861d1B838074822dd64D7c.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xf203D6C796B99d0F2f861d1B838074822dd64D7c.jpeg",
"websiteUrl": "https://www.ayahq.com/",
"bio": "Building a talent infrastructure to drive the advancement of blockchain in Africa through talent development and tech innovation."
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x4C67a8bA135012B7ab124A323E08448a673bb8Dc.png",
"websiteUrl": "https://app.alphaday.com/b/optimism/",
"bio": "Alphaday is a powerful workflow aggregator that pulls in crypto news, on-chain data, social media, web3 services and much more into one customizable UI."
},
{},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1eF889562C00Fc984Cf9A5903C98fa11761142E9.png",
"websiteUrl": "https://zora.co/collect/base:0xdf10f5274e52cb71a0bd5a9176ad271cdc38892c",
"bio": "XOXO is a collection of 5,555 women NFTs living on Base blockchain. Your XOXO NFT is your access to the Minties Community and DAO"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xCb31f0beCfc9D011676E7F84CbCD10fe4717f252.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xCb31f0beCfc9D011676E7F84CbCD10fe4717f252.jpeg",
"websiteUrl": "https://bit.ly/zer0kn0wledge",
"bio": "Researcher / Content Creator focused on modular scaling, rollups & zk tech! Member of Castle Capital, Hunting Alpha, Homeless DAO and Chaos DAO."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x8ba1f109551bD432803012645Ac136ddd64DBA72.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x8ba1f109551bD432803012645Ac136ddd64DBA72.jpeg",
"websiteUrl": "https://www.ricmoo.com",
"bio": "A random Canadian developer, dedicating his time to a variety of open source projects, including ethers.js and Firefly. The future will be awesome. <3"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xb4a16728A270c0A9d57521926FBfb52dA28fb28D.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xb4a16728A270c0A9d57521926FBfb52dA28fb28D.jpeg",
"websiteUrl": "https://app.openxswap.exchange/",
"bio": "Documentation, research, and development for the Open X Project."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xA527e8209E784a2DAC1c1c0C157B185711A06E4B.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xA527e8209E784a2DAC1c1c0C157B185711A06E4B.jpeg",
"websiteUrl": "HTTPS://Www.nowhere.com",
"bio": "I just want to be part of something bigger then me ."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x7B5E58994020Fc30836D8506bcD8739385fb5f38.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x7B5E58994020Fc30836D8506bcD8739385fb5f38.jpeg",
"bio": "Web3 KOL with experience operating and growing communities. Skilled in community management, social media marketing, and organizing events to engage users"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x1A561e43f264952D7b4F25Fb4967122c87618Beb.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1A561e43f264952D7b4F25Fb4967122c87618Beb.jpeg",
"websiteUrl": "https://copin.io",
"bio": "Copin allows you to explore, analyze, and copy on-chain traders from the top of the perpetual DEX (like GMX, Kwenta, …)"
},
{},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x807338C1EE3c87A19eEbf5351341A2638dc167c5.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xd35C826BF2bEd9a6a448A184026199B500D60514.png",
"websiteUrl": "https://t.me/mirror_curator_dao",
"bio": "Mirror Curator DAO is a DAO for curating high quality Web3 related contents including Mirror articles, tweets, blogs and spreading with our telegram channel."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x11Db6D0fe96667D6Ff46fEbB1226a7538D33B592.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x11Db6D0fe96667D6Ff46fEbB1226a7538D33B592.jpeg",
"websiteUrl": "https://link3.to/fortran",
"bio": "~ Crypto Enthusiast ~ \n~ Take All Opportunities ~"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x3c28CAEF950AE11973A007440929d0689d8eaD8D.jpeg",
"websiteUrl": "https://x.com/mamsky8619?s=21",
"bio": "keep building in good projects of optimism"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xdef45E63561DdED007fB7a406F3E5490CBB48eA6.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xdef45E63561DdED007fB7a406F3E5490CBB48eA6.png",
"websiteUrl": "https://layer2.news/",
"bio": "Layer2News is an analytics and research website about scaling and modular ecosystems, we are committed to educating users so that they can get started quickly."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xaDbc604e3d03e9a1Cc42Bc6Bd6055cAB15304dA2.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xaDbc604e3d03e9a1Cc42Bc6Bd6055cAB15304dA2.jpeg",
"websiteUrl": "https://instagram.com/chardkac/",
"bio": "Dreamer and artist, envisioning life with a twin flame in a cabin, exploring crypto for hope in a new earth, a creative, open community."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x0d3bd71c76046Ab93E8D8e9BDa58879040cB13d0.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x0d3bd71c76046Ab93E8D8e9BDa58879040cB13d0.png"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x50593C113fb168117a30823034E660A830FAefB4.jpeg",
"websiteUrl": "https://leslchas.cloudflareaccess.com",
"bio": "你好,世界!!!"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xFdFC6E1BbEc01288447222fC8F1AEE55a7C72b7B.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xFdFC6E1BbEc01288447222fC8F1AEE55a7C72b7B.jpeg",
"websiteUrl": "https://vote.optimism.io/",
"bio": "Builder @Agora. \n\nPrev. built in fintech/Clearco and AI. Passionate about governance, love data, optimistic about solving the coordination problem."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xE240CaE95866BEE29a0d94B2030096B6Fe0446E0.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xE240CaE95866BEE29a0d94B2030096B6Fe0446E0.png",
"websiteUrl": "https://opensea.io/collection/888vigilantes",
"bio": "NFT artist and collector"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xd3814dc9CE28F8388e6254aA48429a8f9BC08b95.jpeg",
"bio": "Hi I'm Oplion, a crypto enthusiast and Optimism Ambassador. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xb5B069370Ef24BC67F114e185D185063CE3479f8.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xb5B069370Ef24BC67F114e185D185063CE3479f8.jpeg",
"websiteUrl": "https://twitter.com/0xfrisson",
"bio": "VP of Growth at Tally. Onchain governance advocate and DAO founder (Content Guild and DAO NYC). "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xfc1436EAb5943F90A4cae9fd1aD6ba66408cDe9B.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xfc1436EAb5943F90A4cae9fd1aD6ba66408cDe9B.png",
"websiteUrl": "https://tecommons.org/",
"bio": "The TEC enables the creation of ethical, safe, resilient and diverse economic systems to benefit societies around the world."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x12E37f963c000a807F8634aBEb7059541cDD19Ef.jpeg",
"websiteUrl": "https://youtube.com/@jockytran?si=KK4nxIbCasfynQJm",
"bio": "24 Year old artist and visionary from Canada!"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xe1581C10EE235F0DEbb655EA365100bCBD84BAD2.png",
"websiteUrl": "https://dackieswap.xyz/",
"bio": "Native DEX and Launchpad on Base"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x95e9ffc26Cb33FA701A56862cd6E2b4c96Cb444e.jpeg",
"websiteUrl": "https://twitter.com/TrustNow3",
"bio": "Love Crypto"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xF82EF19932F5297655EF69774dE2a2AbadefDe9d.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xFF141bFc450c57Ad84eBaFbD09ffa94A268a7aaE.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xFF141bFc450c57Ad84eBaFbD09ffa94A268a7aaE.jpeg",
"websiteUrl": "https://twitter.com/Xofee3",
"bio": "I am Xofee, a mechanical artist driven by the blockchain narrative. My creations merge the digital and physical, embodying significant blockchain milestones."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xa47dCC127BD2487B01477D8e381dCEd5de5e5033.jpeg",
"websiteUrl": "https://twitter.com/illia_kovalenko",
"bio": "Doctor of Philosophy in Law•••Lawyer•••Founder Billions Team"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xE4369BE6dF50Aa406DB8212Ae00CF81917C848ea.jpeg",
"bio": "Here to support optimistic rollups for the blockchain ecosystem"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xFF43aa03358E3623F992B40363B064C3Cf878751.png",
"bio": "Im a good guy ."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xd47315929C1A1757782453B776ada2cbEfacEFfB.jpeg",
"websiteUrl": "https://twitter.com/ExcelHigh3",
"bio": "I'm a crypto cat, trying to promote crypto all around the net/world"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x363cDaA139E1Fc64d308aa2129852745676bA680.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x363cDaA139E1Fc64d308aa2129852745676bA680.jpeg",
"websiteUrl": "https://andino.gitbook.io/andino/",
"bio": "Andino is an ecosystem of educational opportunities for developers and creators in emerging technologies such as blockchain, web3 and artificial intelligence.\n"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x25030765Ba9c22D96094B7E67793A189259Ce38D.png",
"websiteUrl": "https://r72.fi"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x097f53E27C122917f5fBDBFBD657b5B3E1040e86.jpeg",
"bio": "Crypto Blogger with huge experience in Nfts , Memecoins and Gaming Projects."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x302E2A0D4291ac14Aa1160504cA45A0A1F2E7a5c.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x302E2A0D4291ac14Aa1160504cA45A0A1F2E7a5c.jpeg",
"websiteUrl": "https://www.refimedellin.org/",
"bio": "Our goal is to promote community conversations about innovative regenerative solutions enabled by Web3 technology."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x5dC70A9b884f78Ee030a8c6ad3b3b7dc10Bbe7f4.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x5dC70A9b884f78Ee030a8c6ad3b3b7dc10Bbe7f4.jpeg",
"websiteUrl": "https://unlock-protocol.com/",
"bio": "Building Unlock Protocol"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x5D05d05e8811865C32B0dD726939BeA795B975fF.png",
"websiteUrl": "https://x.com/Zozo29291?t=RpTzPV6icg61N5MMoF3ihg&s=09",
"bio": "Crypto enthusiast"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x701E37643DADa13DE79e66A74E7d6187FC48faD2.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x701E37643DADa13DE79e66A74E7d6187FC48faD2.png",
"websiteUrl": "https://0xkofi.com/",
"bio": "- Onchain Data Scientist\n- Contributing @ Alchemy and DefiLlama\n- 2,200+ Stars on Dune (https://dune.com/niftytable)"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xf52a30397151C77E732fA5DeFB9347359C52A141.jpeg",
"websiteUrl": "https://thedefisaint.substack.com/",
"bio": "Independent L2 Educator"
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xb3397A6FeEdff2b9fCe9Ca1086CB1Bdd617c16Bf.jpeg",
"websiteUrl": "https://kristo.ph",
"bio": "Music producer."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xF1D11d037344B14629fbCF094eA652ADe9f37A4a.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xF1D11d037344B14629fbCF094eA652ADe9f37A4a.jpeg",
"websiteUrl": "https://twitter.com/R0meji",
"bio": "I'm passionate about crypto-currencies and decentralized finance, I like to follow and contribute to the technological evolution of this sector. "
},
{ "bio": "Blockchain, web3 builder and enthusiast.\nFor Tech" },
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x29FF795B015652EdFB9883bB83B3E9bE3c207e62.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x29FF795B015652EdFB9883bB83B3E9bE3c207e62.jpeg",
"websiteUrl": "https://www.jordanmmck.com/",
"bio": "Hi, I'm Jordan! I make YouTube videos trying to explain Ethereum, L2s, and the big World Computer vision. I create cool diagrams to help explain these concepts."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x6fd96a881b72CAD783B0741309B57Cb7d0Bde18a.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x6fd96a881b72CAD783B0741309B57Cb7d0Bde18a.jpeg",
"websiteUrl": "https://www.lemon.me/en",
"bio": "Lemon streamlines the onboarding of retail users to Web 3 and crypto through it's user-friendly app\n"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x8bD9cd843CD604c4b4484312DeD00985219f6F7C.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x8bD9cd843CD604c4b4484312DeD00985219f6F7C.png",
"bio": "The collection of 5000 onchain pixel collectible avatars ."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xd3cedfC7b4cd9b5aa63AAFcD0287C85fBFc188aB.png",
"websiteUrl": "https://fugu.works",
"bio": "Web3 product studio, contributing to the Optimism Superchain"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x4444d38c385d0969C64c4C8f996D7536d16c28B9.jpeg",
"websiteUrl": "https://twitter.com/0xAlex_",
"bio": "Software engineer with extensive experience building in web3. Currently building a web3 product studio, fugu.works."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xD00Dbbe03D11144177C609682b66073f62da9f89.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x00409fC839a2Ec2e6d12305423d37Cd011279C09.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x00409fC839a2Ec2e6d12305423d37Cd011279C09.png",
"websiteUrl": "https://mirror.xyz/thesleeper.eth",
"bio": "I'm Hanee from Thailand. I have been contributing to OP by creating original content and artwork about OP's vision, tech stuff and RPGF since June 2022."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x064299010cb690Cb1C370784cc67F8504f0479eE.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x604B516Cd0Fee16f1E6552275eA3C7AA00C9a174.jpeg",
"bio": "Men"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x8fBFD3faBD443334B6f413b5931477d4DeBEAFa9.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xe94ECbe410Dc32E8753347ef7DaDF2103811cF74.jpeg",
"websiteUrl": "https://twitter.com/DarkWillow1997",
"bio": "Poor man just wanna change alive keep spirit!"
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x7626fbA64DEB1683a364c32F30370215f05C1F09.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x7626fbA64DEB1683a364c32F30370215f05C1F09.png",
"websiteUrl": "https://mp.weixin.qq.com/s/z6qV1J3FarjrXS_aus-NPg",
"bio": "share OP latest information to my 27k Chinese community."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x92347362ACc955A6f3Dc7F9D34945AAaC944FFBF.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x92347362ACc955A6f3Dc7F9D34945AAaC944FFBF.png",
"websiteUrl": "https://sourcify.dev",
"bio": "Sourcify is a decentralized and open-sourced Solidity contract source code verification service"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x570c048fc76473752c7830dE574444FCfC4CA8b3.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x570c048fc76473752c7830dE574444FCfC4CA8b3.jpeg",
"websiteUrl": "https://twitter.com/lytvyn1uk",
"bio": "Why are you reading this?"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x74727b3843c498e41CC1A93c26c8F700B966aB9b.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x74727b3843c498e41CC1A93c26c8F700B966aB9b.jpeg",
"websiteUrl": "https://www.amazon.com/MyCrypto-Manual-Guide-Crypto-Space-ebook/dp/B07W76GT8W",
"bio": "Billion Dollar Baby"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x1b37B1EC6B7faaCbB9AddCCA4043824F36Fb88D8.png"
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x92bf7D200b62ea43CFE26BDAbc1779E2dC076D67.png",
"bio": "Building TGID\n\nEvery village needs gourmet bites, lets us cook!"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x4F4a595bdc00ACF85eFb90b1f2171d475F1a63B7.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x4F4a595bdc00ACF85eFb90b1f2171d475F1a63B7.png",
"websiteUrl": "https://eesee.io/",
"bio": "Next-gen gamified NFTFi & SocialFi platform and Marketplace that accelerates sales, provides additional liquidity and facilitates the community growth."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xFA20426E6eE6072b0cC2049038c9E021d2010EB0.jpeg",
"bio": "OpenEthereum client developer.\nCowswap backend developer."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xe6C96653847653102471Cd84135dEc131B2622f3.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xe6C96653847653102471Cd84135dEc131B2622f3.png",
"websiteUrl": "https://twitter.com/GoktugClkl",
"bio": "good"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x47fac95efEF39c7cE44E9870cede1894666dF166.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x47fac95efEF39c7cE44E9870cede1894666dF166.png",
"websiteUrl": "https://www.sound.xyz/user/0x47fac95efef39c7ce44e9870cede1894666df166/collection",
"bio": "Hello World!!!\n\nI am a member of \"Camel\" community, on a mission to bring the musics NFT to the moon"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xf9C11707D1f5Fe2B7F4c82b2772543f2c4ef165A.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x12481822efb3c546AC945C17c8EC54a63Bc95B5C.jpeg",
"bio": "I am a defi user, poker player, crypto enjoyer, birb."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x22a8D39eF6B62B76A8Eb8F16116F57AC061a4c97.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x22a8D39eF6B62B76A8Eb8F16116F57AC061a4c97.jpeg",
"websiteUrl": "https://twitter.com/laoren9_z/",
"bio": "a dreamer"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x9531C059098e3d194fF87FebB587aB07B30B1306.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x9531C059098e3d194fF87FebB587aB07B30B1306.png",
"websiteUrl": "https://rotki.com/",
"bio": "Rotki: Local first, open-source crypto & tradfi portfolio manager giving you a bird's eye view over your holdings. Track, analyze, and manage assets securely."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xBb13C0560C8A8354E6A914f1f2b873CEfE0dF9F7.png",
"websiteUrl": "https://twitter.com/AlphaminerETH",
"bio": "🏡 Exploring #web3 real estate opportunities | Earn while you hold. | NFT-backed investing | Join the future of #RealEstate | Founder - \n@Alphaminereth"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x84D36eA4044161232803c216BF1D103469713943.png"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x543Dea2479Bb8527C71bf4E52802B017212589e6.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x543Dea2479Bb8527C71bf4E52802B017212589e6.jpeg",
"websiteUrl": "https://cryptoast.fr/",
"bio": "Since 2017, Cryptoast has been the 1st French-language media dedicated to cryptocurrencies, educating and informing an audience of several million readers."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x07bF3CDA34aA78d92949bbDce31520714AB5b228.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x07bF3CDA34aA78d92949bbDce31520714AB5b228.jpeg",
"websiteUrl": "https://pcaversaccio.com",
"bio": "👋 Hi I'm Pascal, a passionate security engineer, builder & entrepreneur working at the intersection of cryptography, distributed systems, and smart contracts."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x3A5B12814b03C517FDAB62d8781c22f3406aeef4.png",
"websiteUrl": "https://yoki.finance/",
"bio": "Marketing Director Yoki Finance"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x3A5B12814b03C517FDAB62d8781c22f3406aeef4.png",
"websiteUrl": "https://yoki.finance/",
"bio": "Marketing Director Yoki Finance"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xfb74103029aB113E00Df470c42CAfEd4c8aBe86E.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xfb74103029aB113E00Df470c42CAfEd4c8aBe86E.png",
"websiteUrl": "https://github.com/miguelmota/go-ethereum-hdwallet",
"bio": "Ethereum HD Wallet derivation library in Go."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xF7942c3F2847958B2F4f1cA561D45a3546E6C957.jpeg",
"bio": "No"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xB279B279fc88d53390eC63B8c9c29c642d568491.jpeg",
"websiteUrl": "https://twitter.com/CryptoPasc",
"bio": "Crypto Enthusiat"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x5fC34D03cFdf145Db5f3c5B5558e39a4164AAa30.png",
"websiteUrl": "https://protofire.io/",
"bio": "At Protofire DAO we create teams focused on solving problems of DAOs, Networks and Protocols by maximizing user growth, developer adoption and TVL growth."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xf96040c42b7FdaD04402eD39579b7763A7159a49.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xf96040c42b7FdaD04402eD39579b7763A7159a49.jpeg",
"websiteUrl": "https://x.com/0xb0b9",
"bio": "I’m a developer with expertise in the field of cryptocurrency. My work likely involves creating, maintaining, or improving blockchain-based applications"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xb7D6937F3aa9E09817C045b7d5b5Fb5064370671.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xb7D6937F3aa9E09817C045b7d5b5Fb5064370671.png",
"websiteUrl": "https://infinitywallet.io/",
"bio": "An all-in-one non-custodial wallet and first-of-its-kind web3 browser, delivering a seamless one-stop experience for all users’ crypto, DeFi, and Web3 needs."
},
{
"websiteUrl": "https://app.optimism.io/profile/edit",
"bio": "kjnwkjadnkjawnd"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x72365e20475Ca0Ac6423F71b5Da97dbEB8Bb6c20.jpeg",
"bio": "I’m a musician, car salesman and peddler/entrepreneur. Looking to make a space in Web three and become the bridge between web 2 function and web 3 protocol. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x66Ba4988156aBEF92Aa6Ef2f0E66776b826c5eF8.png",
"bio": "work to earn"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x85BD6874CE656b3ab058DF04d1b64f30b15d350d.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x85BD6874CE656b3ab058DF04d1b64f30b15d350d.png",
"websiteUrl": "https://vraig.com/",
"bio": "As a Binance Feed Content Creator and Blogger, I specialize in dissecting the crypto landscape. I analyze the latest news / trends offering insightful reviews."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x2374646285D252abA3a25A06A38a7194BA4254ce.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x2374646285D252abA3a25A06A38a7194BA4254ce.jpeg",
"websiteUrl": "https://link3.to/anandamoymaity",
"bio": "anand \nfrom india\ncrypto influencer since 2015\njoined with optimism since 2022"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xB3350C168Cc9B62bd099c1732830B6Bc09bF3343.jpeg",
"websiteUrl": "https://github.com/0xJepsen",
"bio": "I’m a research engineer passionate about high-impact technology. My interests lie at the intersection of mathematics, computer science, and philosophy."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xeC220Edb5B28C091981a113462dc801adFC58095.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xeC220Edb5B28C091981a113462dc801adFC58095.jpeg",
"websiteUrl": "https://artistryx.org",
"bio": "We are SunRay Energy Initiatives, LLC; a non-profit lender for green energy projects. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x052eadC0D585fa12607801610f4c18101F0C0ffC.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x052eadC0D585fa12607801610f4c18101F0C0ffC.png",
"bio": "I’m a dev/youtuber and also very active on Twitter and have been helper in a lot of nft projects."
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x648aA14e4424e0825A5cE739C8C68610e143FB79.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x648aA14e4424e0825A5cE739C8C68610e143FB79.jpeg",
"websiteUrl": "https://www.youtube.com/c/TheDailyGwei",
"bio": "Independent Ethereum educator, angel investor and advisor. \n\nFounder of The Daily Gwei."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x5F33bB9707eb984C1044Eb84b04C4a024e8D7677.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x5F33bB9707eb984C1044Eb84b04C4a024e8D7677.png",
"websiteUrl": "https://www.soulplusmind.com/",
"bio": "Soulplusmind explores a landscape from Pop to EDM and Hip-Hop. His genre bending abilities and musical vision is diverse, with a bold and confident sound."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xe53113cc7A30154FFc5Cb9B3004817dD1de9A515.png",
"websiteUrl": "https://twitter.com/nikos_koukos18",
"bio": "Lambo needed"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1FE95940c8a44aD3a27720A94c1ecC4c33e9480F.jpeg"
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xE393FB40b5C70F83eF20aB49c8f0ba2c6DB47827.jpeg",
"websiteUrl": "https://www.mygreenbucks.online",
"bio": "I was able to delegate to a validator during optimism 1st airdrop and have choosen from the list of delegators for governance and used optimism for low txn fees"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x6b31B3487eBC37e4c6c730cD1E1f9b45afEF5D0F.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x6b31B3487eBC37e4c6c730cD1E1f9b45afEF5D0F.jpeg",
"websiteUrl": "https://twitter.com/MoonDolphinn",
"bio": "Crypto Enthusiast from Indonesia"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x70D5808d656A505A66E77C6e7178E44a305f0f8E.png"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x7533E4f6110E12b685801352049Fb3E5222D1cc8.png",
"websiteUrl": "https://theworldbest.eth"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x43075f64faF7D910bD4fc644c12F2fffBBb8c536.png",
"bio": "I quickly drawn to the qualities of blockchain and became passionate about this world. I have a twitter account that allows me to share my knowledge. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xb9839Deed4862C1C0b5DD5C946ae87A81D7b4aE2.png",
"websiteUrl": "https://twitter.com/bonyairdrop",
"bio": "Airdrop Hunter"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x52a267Ad797be3ea4eB0B11DbF5fe535B761DA6E.jpeg",
"websiteUrl": "https://app.optimism.io/profile/edit",
"bio": "hello"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1Fe38ABa75d5Eb1a9B4BeF00613ad225d8092D18.png",
"websiteUrl": "https://mall.jurnal6b.com/",
"bio": "Young!"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xB60f585E23173c546E40231C3D55afd029009333.png",
"websiteUrl": "https://github.com/buildooor",
"bio": "Hi! I'm an open source contributor to the Optimism ecosystem!"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x28ECb498b2f34Dd717AEE529de358005E88669e5.jpeg",
"websiteUrl": "https://medium.com/@thanchanon.srifah"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x17fE5F37E24bD76272DA9364e4B2b7D186a562f7.jpeg",
"websiteUrl": "https://twitter.com/JulioPe27734345",
"bio": "I have been part of the crypto family since 2019\nThis world fascinates me.\nthe more united we are, the further we will go"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xceA9F9e08954c2696058c327feDae2ac0Ec0DDae.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xceA9F9e08954c2696058c327feDae2ac0Ec0DDae.png",
"websiteUrl": "https://opensea.io/collection/psychoticrobots",
"bio": "We're some creative friends. We've been in nft space for two years. This project hasn't attracted attention on os but we think it'll be great on the optimism!"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xa48c718AE6dE6599c5A46Fd6caBff54Def39473a.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xa48c718AE6dE6599c5A46Fd6caBff54Def39473a.png",
"websiteUrl": "https://numtel.github.io",
"bio": "Hello, I'm an independent developer building dApps."
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xc7FE1135Ba71e03a7a6b9E1dDB8f653f143bdCF9.jpeg",
"websiteUrl": "https://github.com/0xJepsen",
"bio": "My name is Waylon Jepsen. I am a software engineering in the rust ethereum ecosystem. I am passionate about high impact technology, Math and Philosophy. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x9600e2eE6377DAdad7299B120026661c336A5e6d.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x9600e2eE6377DAdad7299B120026661c336A5e6d.jpeg",
"websiteUrl": "https://www.linkedin.com/in/theazeemkhan/",
"bio": "Azeem Khan is the Head of Impact at Gitcoin, a leading DAO that has distributed over $60 million in grants."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xd4726114bEB61a0239d9C0CD935De170BddbbB7E.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x45C3707c25eCe1e4705a5d708685f0a77Dc18cD1.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x45C3707c25eCe1e4705a5d708685f0a77Dc18cD1.jpeg",
"websiteUrl": "https://twitter.com/Dubstagz",
"bio": "Crypto enthusiast\nModerator of a community crypto server"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x1609f039A96ce10756f5C6D403a80400DC081a02.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1609f039A96ce10756f5C6D403a80400DC081a02.png",
"websiteUrl": "https://www.youtube.com/c/cryptomage",
"bio": "French Crypto YouTuber"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x7853Eabb6cFa980eBfD27e3F77e69590EA53c0b7.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x7853Eabb6cFa980eBfD27e3F77e69590EA53c0b7.jpeg",
"websiteUrl": "https://www.bspeak.xyz/",
"bio": "I run a free and public educational newsletter in Japanese. Launched in 2017, it has been published every single week and now has over 12,000 subscribers."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x6CADb247fAd36CF94a9e261EF809FdEb390C8418.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x6CADb247fAd36CF94a9e261EF809FdEb390C8418.png",
"bio": "Web3 researcher and analyst."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x5Dcecb56dE00BE7803Fa199E9ad44F2dEd5D949a.jpeg",
"bio": "Bitcoin Could Change Our life\n Crypto Update , Technical Anylsis #NFT #Harmonic #Web3 #Defi #LENS \n#Lenstube #ETH #BTC #ARB #DEFI #UNSTOPPPABLE_DOMAIN"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xB7A31346433430D92846f0181C55Fc506B9b22d8.png",
"bio": "Marketing and brand at Yearn and Smol."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x81F10d99464d604EA1E9242DC71733a506E95b4e.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x81F10d99464d604EA1E9242DC71733a506E95b4e.jpeg",
"websiteUrl": "https://twitter.com/mc_verhelst"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x2354A17dA6D086AC1f550c79A84aD9B152E893c2.jpeg",
"websiteUrl": "https://app.optimism.io/governance",
"bio": "Trader holder "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x66ec901E8eD387d48535C953F79fF6e7cCCDCC53.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x1F27b0482ace1B82cf7A4f0c55dfc2A05dfCfD75.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1F27b0482ace1B82cf7A4f0c55dfc2A05dfCfD75.png",
"websiteUrl": "https://twitter.com/PriewPeter",
"bio": "I'm a Teacher, and I'm passionate about Blockchain Technology, especially Ethereum and Layer 2 Solution. I share my knowledge about Optimism with everyone."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xCBAE3416e965D138B000452048495D010A971840.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xCBAE3416e965D138B000452048495D010A971840.jpeg",
"bio": "EQSS"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x6FC7e76309CfAD199FeffF7177f8b5E5b869B98B.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x6FC7e76309CfAD199FeffF7177f8b5E5b869B98B.jpeg",
"websiteUrl": "https://www.wizkidayo.com",
"bio": "Young Boy giving my all to cryptocurrency, and I’ll surely be useful to Optimism Collection."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x6FC7e76309CfAD199FeffF7177f8b5E5b869B98B.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x6FC7e76309CfAD199FeffF7177f8b5E5b869B98B.jpeg",
"websiteUrl": "https://www.wizkidayo.com",
"bio": "Young Boy giving my all to cryptocurrency, and I’ll surely be useful to Optimism Collection."
},
{},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x3207446dD7fDefa5Dd9F66e89F0F49070afc5731.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x3207446dD7fDefa5Dd9F66e89F0F49070afc5731.jpeg",
"websiteUrl": "https://vi.m.wikipedia.org/wiki/Gray_(ca_s%C4%A9)",
"bio": "Ilove Optimism"
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x960371173BDb7963F881b13123999Bcc537e2BEB.jpeg",
"websiteUrl": "https://www.sound.xyz/user/0x960371173bdb7963f881b13123999bcc537e2beb",
"bio": "A trader love music nfts"
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xef4c8055bFa5b4476deFc1051850698463B9f8A1.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xef4c8055bFa5b4476deFc1051850698463B9f8A1.jpeg",
"websiteUrl": "https://twitter.com/artsybarber",
"bio": "Born artist thats also cuts hair 🫡"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xb8d3B75EF1719A0D4f20224686F7e314Ccb3315C.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xb8d3B75EF1719A0D4f20224686F7e314Ccb3315C.jpeg",
"websiteUrl": "https://250389.eth",
"bio": "Let's join forces to spread positivity and inspire a brighter future together! 🌟 #OptimismCollective #PositiveChange 💪"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xB06428aF321598ea54Cb34E14C9df3D3b09FE625.jpeg",
"websiteUrl": "https://drp-service.com.ua/",
"bio": "hi.my name is Ruslan"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xcCA02de5372cB0CaAc425543487789eEF5d17fB5.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xcCA02de5372cB0CaAc425543487789eEF5d17fB5.png",
"websiteUrl": "https://getclave.io",
"bio": "Marketing & Growth @ Clave (formerly Opclave)"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xe08d3d0334aB089DAaF0C620989959Ba5d4aA04C.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xe08d3d0334aB089DAaF0C620989959Ba5d4aA04C.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xEB40A065854bd90126A4E697aeA0976BA51b2eE7.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xEB40A065854bd90126A4E697aeA0976BA51b2eE7.png",
"websiteUrl": "https://ethdaily.io/tag/optimism/",
"bio": "An Ethereum news roundup podcast and newsletter."
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xB0abAEfc47e5b244638BFE474Fb15FC33e6A1d6A.png",
"websiteUrl": "https://www.sum.pictures/",
"bio": "WhiteRabbit is an independent film producer building a web 3 platform to facilitate the production process."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xEB40A065854bd90126A4E697aeA0976BA51b2eE7.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xEB40A065854bd90126A4E697aeA0976BA51b2eE7.png",
"websiteUrl": "https://ethdaily.io/tag/optimism/",
"bio": "An Ethereum news roundup podcast and newsletter."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xe60aC07Be8bD7f7f33d446e1399c329928Ba8114.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xe60aC07Be8bD7f7f33d446e1399c329928Ba8114.png",
"websiteUrl": "https://mirror.xyz/",
"bio": "Built on web3 for web3, Mirror’s publishing platform pushes the boundaries of writing online. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x5913c6862f3d6641cfDF16a974245f47E58d4BE2.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x5913c6862f3d6641cfDF16a974245f47E58d4BE2.png",
"websiteUrl": "https://shazow.net/",
"bio": "A doodler and computerer. I like permissive/permissionless open source, smart contracts, p2p systems, room-scale VR, and NixOS."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x39485bE2B0b994B7F7696984187c130041deD1B5.jpeg",
"websiteUrl": "https://ipfs.io/ipfs/QmSPD2LBYgQWCQRPNE1Lfoo3YgtTEyse7BBFx5fTc2wPnD/",
"bio": "Media Production Studio EGOSYS-RECORDS"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x8Bac937c3727B89F273dAbE81898227A0e3Afe6F.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x8Bac937c3727B89F273dAbE81898227A0e3Afe6F.png",
"websiteUrl": "https://www.missionspubliques.com",
"bio": "20+ years of experience in designing and implementing deliberative governance. Also deeply involved in Web3. Next frontier: bring sortition to Web3. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x5fC34D03cFdf145Db5f3c5B5558e39a4164AAa30.png",
"websiteUrl": "https://protofire.io/",
"bio": "At Protofire DAO we create teams focused on solving problems of DAOs, Networks and Protocols by maximizing user growth, developer adoption and TVL growth."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x865422A83e3138EcE7cf6b7C792e4174079ad169.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x865422A83e3138EcE7cf6b7C792e4174079ad169.png",
"websiteUrl": "https://magically.gg/airdrop-2",
"bio": "love me"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x1827741B58403F031A9D65E3AA628f9E9564a5A6.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1827741B58403F031A9D65E3AA628f9E9564a5A6.jpeg",
"websiteUrl": "https://youtube.com/@MASTER_5758?si=zrUiLTEq7xsfC6e8",
"bio": "Ronald\n\nI am an influencer from Indonesia\nI have youtube & telegram\nI have 15K followers\nI often provide educational videos for OPTIMISM\n"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x2Ee6EDf2F5f5C8550CBf99628AA26b71FC23039e.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x2Ee6EDf2F5f5C8550CBf99628AA26b71FC23039e.png",
"websiteUrl": "https://www.youtube.com/@patrickalphac",
"bio": "🐸 Blockend Engineer & Advocate 🥑 \n🔑 cyfrin.io. 🗝️ \n🦅 codehawks.com 🦅\n🟪 solodit.xyz 🟪\n🐸 web3education.dev 🎓\n🌲 linktr.ee/PatrickAlphaC 🌴"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xBdB14cfFC78B901299Dc878adD11273C621fF5B8.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xBdB14cfFC78B901299Dc878adD11273C621fF5B8.jpeg",
"websiteUrl": "https://raiden-dev.xyz/",
"bio": "Lone developer that likes to learn and contribute to OSS. Currently focused on typescript and solidity. Learning zig in the meantime :P"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xa87EC1DbBdbcD8b18902DCBC694A9ee58999c16f.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xa87EC1DbBdbcD8b18902DCBC694A9ee58999c16f.jpeg",
"websiteUrl": "https://crowdin.com/profile/roifnaufal21",
"bio": "Hi introduce my name is roif from Indonesia I joined the optimism ecosystem as a contributor article translator and crowdin"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x0A8738a060987F61d2feA461b02ee074F3483651.jpeg",
"websiteUrl": "https://www.linkedin.com/in/andersongalecki/"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x7a48A728d9Fd2d5a55c545c4378E5bA909349E90.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x7a48A728d9Fd2d5a55c545c4378E5bA909349E90.png",
"websiteUrl": "https://twitter.com/bitsplaining",
"bio": "Hello! 👋 I'm an Engineering Manager at Infura, previously a lead engineer at Truffle. In my free time I write the \"Layer 2 Landscape\" Twitter thread. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x34Eb88EAD486A09CAcD8DaBe013682Dc5F1DC41D.png",
"websiteUrl": "https://github.com/picodes/",
"bio": "cofounder and CTO at Angle Labs \nwarden and judge @code4rena\ncontributor @AngleProtocol"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xf9AF17d897707aafE856b76a582cC1a25933F87F.jpeg",
"bio": "Technology enthusiast and defi adopter"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x97A8Eb04be6A16d3aC8A55b12Abc98668A4a0bCD.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xc7FE1135Ba71e03a7a6b9E1dDB8f653f143bdCF9.jpeg",
"websiteUrl": "https://github.com/0xJepsen",
"bio": "My name is Waylon Jepsen. I am a software engineering in the rust ethereum ecosystem. I am passionate about high impact technology, Math and Philosophy. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x170D992F289b750F8e064793FdCF5E1d250Aa551.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x170D992F289b750F8e064793FdCF5E1d250Aa551.png",
"websiteUrl": "https://opensea.io/0x170D992F289b750F8e064793FdCF5E1d250Aa551",
"bio": "NFT"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x36e6b91707B913E1304ca405E9cf96d440A67755.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x36e6b91707B913E1304ca405E9cf96d440A67755.jpeg",
"bio": "im the best"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xD923dE646D3f0BB9Eb7f9169f259C79C3edE2188.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xD923dE646D3f0BB9Eb7f9169f259C79C3edE2188.jpeg",
"websiteUrl": "https://www.lensfrens.xyz/flyinghigh.lens",
"bio": "CryptoAdventure"
},
{},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x2D815240A61731c75Fa01b2793E1D3eD09F289d0.png",
"websiteUrl": "https://uniswap-interface-5458tghkb-sangare.vercel.app/",
"bio": "Uniswap claim ugp\nClaim uniswap UGP ,member of Uniswap governance, just as we have been in the Compound community"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x4d85e4F760fb58E380f02657AE5Aafb8bd010601.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x4d85e4F760fb58E380f02657AE5Aafb8bd010601.png",
"websiteUrl": "https://thumbsup.mirror.xyz",
"bio": "I'm a passionate writer who loves to explore new technologies and ideas. I write deep-dive content for my blog and commentary for my newsletter. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x0755A2c4C1808Ca14CC2928d0D727b16a1C467Bd.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xEc10Ac0784B5DE2Fad69332e5a90B46eebba70aF.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xEc10Ac0784B5DE2Fad69332e5a90B46eebba70aF.jpeg",
"websiteUrl": "https://webacy.com/",
"bio": "CEO of Webacy"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x0ca34B96F8c33fF40dCB463a6e976697B6ff7010.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x0ca34B96F8c33fF40dCB463a6e976697B6ff7010.jpeg",
"bio": "Physician and Crypto Enthusiast"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xAC4DDaf8FBfFba0f1e8c7619720335FD4f03EaCD.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xAC4DDaf8FBfFba0f1e8c7619720335FD4f03EaCD.jpeg",
"websiteUrl": "https://www.irruptionlab.com/",
"bio": "Irruption Lab builds applications for Web3 democratization.\nOur goal is to make this technology and its potential accessible to everyone."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xc509ae016D87DefBB6240807FE9f9BfC256EF3eA.jpeg",
"websiteUrl": "https://x.com/abkkumo67?t=0N8d9-V-2fgeYTfLFDv3rw&s=09",
"bio": "Abubakar Haruna Kumo"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xD2A333009E5cEEF7EDfD6f82489005d1DC6ae9E8.png",
"bio": "Hey, Nicole from NYC. Cofounded SIZE. Building on Optimism. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xD2A333009E5cEEF7EDfD6f82489005d1DC6ae9E8.png",
"bio": "Hey, Nicole from NYC. Cofounded SIZE. Building on Optimism. "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x4644A9Afe25B01405B9099c32FBf123F919d4838.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x4644A9Afe25B01405B9099c32FBf123F919d4838.jpeg",
"websiteUrl": "https://squirtle0x.dev/",
"bio": "I'm Squirtle0x, a frontend developer and crypto enthusiast since 2020. Constantly working on web3 projects be the bull or bear."
},
{
"websiteUrl": "https://utkuomer.on.fleek.co/",
"bio": "Hi, this is Utku, since early 2022 I have been developing for Blockchains. Since then I joined 5 hackathons and won 3 finalist badges. I've built for OP too!"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x8d99F8b2710e6A3B94d9bf465A98E5273069aCBd.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x8d99F8b2710e6A3B94d9bf465A98E5273069aCBd.jpeg",
"bio": "Pure Mathematician working in backend Ethereum application engineering primarily related to maximally decentralized, permissionless exchange mechanisms."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x54836b01Fa251B41Aa15b1Fad8Ec3B76Ac3a53ad.jpeg",
"bio": "learning before earning\nearning and still learning"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x1C277bD41A276F87D3E92bccD50c7364aa2FFc69.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1C277bD41A276F87D3E92bccD50c7364aa2FFc69.png",
"websiteUrl": "https://apeworx.io",
"bio": "Contributor to Ape, Vyper, and Yearn"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xCb94B70cf011c3Ee99357499d060345daD585C6d.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xCb94B70cf011c3Ee99357499d060345daD585C6d.png",
"websiteUrl": "https://builder.gitcoin.co/#/chains/10/rounds/0x4ec3cf21e9a67f8b6bc8906c0a78407a9db9b5be",
"bio": "Hello, I'm a Dapp Dev on Ethereum, traveling and hacking around the globe. Recently I started this idea to help the development of new projects in Próspera"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xcfBf34d385EA2d5Eb947063b67eA226dcDA3DC38.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xcfBf34d385EA2d5Eb947063b67eA226dcDA3DC38.png",
"websiteUrl": "https://www.onchainmagic.xyz/",
"bio": "I am the dev for onchain music.\n\nI help musicians get paid onchain.\n\nbuilding tools on Optimism including\n- https://onchainmagic.xyz\n- https://6551.studio"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x46642e15d77BbE0bDfcfbf348C38b06153D16049.png",
"bio": "musician\n"
},
{
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xC744785D6cCAa01805a6995136Eb24f84a088Dcb.png",
"websiteUrl": "https://twitter.com/ZahkAV",
"bio": "I am a trader and a teacher in both the @Alpha__Ventures and @ZZZMoneyClub community. I work with other Finance and DeFi experts to teach others."
},
{
"websiteUrl": "https://app.optimism.io/profile/edit",
"bio": "kjnwkjadnkjawnd"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x4A74232c96AEFa239DCee6da120Ec31dB56ff17E.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x4A74232c96AEFa239DCee6da120Ec31dB56ff17E.jpeg",
"websiteUrl": "https://kepler.homes/",
"bio": "KeplerHomes is an MMORPG designed for players to discover their second livable homes. Explore the boundless possibilities of the Kepler galaxy."
},
{
"websiteUrl": "https://twitter.com/Timur34936393",
"bio": "I am an early crypto follower, I am an active user of the optimism network, I believe in a bright, innovative future, optimism and the entire crypto industry."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xF0854C4dC9d3f1EBD4f0e44eb91587F7fc5Bd518.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xF0854C4dC9d3f1EBD4f0e44eb91587F7fc5Bd518.jpeg",
"websiteUrl": "https://www.artespraticas.com",
"bio": "I'm a Portuguese graphics designer and web 3 learner."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x7d3F21bcb6C547737812A3213Ea105192f9e151f.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x7d3F21bcb6C547737812A3213Ea105192f9e151f.jpeg",
"websiteUrl": "https://www.rollup.codes/",
"bio": "R&D lead at LimeChain - a blockchain development company building infra & apps since 2017."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xf9551c66995eD3Ff9bb05C9Fd7ff148Bd75dc99a.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xf9551c66995eD3Ff9bb05C9Fd7ff148Bd75dc99a.jpeg",
"websiteUrl": "https://snapshot.org/#/",
"bio": "Snapshot is a voting platform that allows DAOs, DeFi protocols, or NFT communities to vote easily and without gas fees."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x96f5771eecAA02314bbb98C5F301ceCEFDfe111f.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x96f5771eecAA02314bbb98C5F301ceCEFDfe111f.png",
"websiteUrl": "https://twitter.com/berryy_nft",
"bio": "Am try to do my best with contribute in optimism environment."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x38189D98110A395A1366F1c95875f81fD458a6C3.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x38189D98110A395A1366F1c95875f81fD458a6C3.png",
"websiteUrl": "https://proofivy.com",
"bio": "Internet ledger of truth"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xa3f13c688d8E124c774fafE73920D47f457F8c8c.jpeg",
"websiteUrl": "https://twitter.com/LingzhiBangkok",
"bio": "Full-time investor."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x054Becf10c79aFa4e60F75B187837bE9Fb83867D.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x054Becf10c79aFa4e60F75B187837bE9Fb83867D.jpeg",
"websiteUrl": "https://www.facebook.com/CoinRuay",
"bio": "CoinRuay is a Thai blockchain club passionate about Optimism. We educate the Thai community through content to help Optimism grow and make a positive impact."
},
{ "bio": "#btc #eth #avax" },
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x9C4e57db42c9d8C5Ef233c74FB37bABA630b88d3.jpeg",
"bio": "I'm crypto enthusiast"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x156DEC0C2C1F714c70Ad55258E92c681Dd68119E.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x156DEC0C2C1F714c70Ad55258E92c681Dd68119E.jpeg",
"bio": "I am an Airdropper Hunter, I joined retropgf because Optimism is the most advanced block chain at the moment and provides rewards that impressed me."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x1F5D295778796a8b9f29600A585Ab73D452AcB1c.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x1F5D295778796a8b9f29600A585Ab73D452AcB1c.png",
"websiteUrl": "https://solady.org",
"bio": "Protocol lead: sound.xyz\n\nMaintainer: solady.org, erc721a.org"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x48F88d0e26704363eA72EEF6dCBF198E1F32d4D4.jpeg"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x08DC8489c7CB11010210Ffe7acA543e2DB18DEaf.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x08DC8489c7CB11010210Ffe7acA543e2DB18DEaf.jpeg",
"bio": "Apple Network "
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xfaED2693Bbfd56142ba43b02606A66701De0E41E.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xfaED2693Bbfd56142ba43b02606A66701De0E41E.jpeg",
"websiteUrl": "https://zkmini.nfts2.me/",
"bio": "influences people more optimistic"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xdc4C44943bFBC9f87D0f1FE11d69a4b814D3608c.jpeg",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xdc4C44943bFBC9f87D0f1FE11d69a4b814D3608c.jpeg",
"bio": "Hardcore Crypto Believer"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0xd98656735E2BA24aA705b41d026eA64069231E20.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0xd98656735E2BA24aA705b41d026eA64069231E20.jpeg",
"bio": "Im tester"
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x65EbaF17EbB138d926dd514664a6718c5cB9D07c.png",
"bannerImageUrl": "https://content.optimism.io/profile/v0/banner-image/10/0x65EbaF17EbB138d926dd514664a6718c5cB9D07c.png",
"websiteUrl": "https://www.Artislamic.com",
"bio": "Online digital art gallery since 1999. We have been in the NFT market for over 2 years. We plan to showcase our artworks in the NFT space in the future."
},
{
"profileImageUrl": "https://content.optimism.io/profile/v0/profile-image/10/0x7bfa88D2E83d910adAd4C6bc149e35DF864D9Df3.jpeg",