-
Notifications
You must be signed in to change notification settings - Fork 0
/
pass2-1.csv
We can't make this file beautiful and searchable because it's too large.
executable file
·1706 lines (1706 loc) · 674 KB
/
pass2-1.csv
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
"RecodeId","RecodeTime","Address","Email","TweetUrl","Account","Followers","TweetCount","UserName","Description","Text","Error"
"1","6/6/2024","0xC8e73A6B90B07B84afaD96EB56297c6F00F0Ed2D","[email protected]","https://x.com/_Mo6ix/status/1798618048246759610?t=4_tHbHov1lqOQxwJ41AJ9A&s=19","_Mo6ix","6173","40611","6ix❁","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC8e73A6B90B07B84afaD96EB56297c6F00F0Ed2D"
"2","6/6/2024","0xa6942690dc510e083cc0208289890663F11d7c13","[email protected]","https://x.com/TKatugwa/status/1798618377436725589?t=37KCeE3VuskERHTROeHHlA&s=19","TKatugwa","22858","28310","Fortizo","Wǒ xīwàng nǐ fācái || @monad_xyz Contributor || @VelarBTC Mod || Bullish on @PontemNetwork || #Ton OG","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa6942690dc510e083cc0208289890663F11d7c13 @EthStorage"
"4","6/6/2024","0xee2094f32c67B540CFB55C58D38D04718c9fea5B","[email protected]","https://x.com/Opeyemi76443014/status/1798618350211436851?s=19","Opeyemi76443014","101","1065","Opeyemi","Send @tipzcoin (TIPZ) to @Opeyemi76443014 #ISLM_MAXI @fullforce_io","I am applying to participate in the EthStorage public testnet, and my miner address is 0xee2094f32c67B540CFB55C58D38D04718c9fea5B@EthStorage"
"5","6/6/2024","0x7A74Ac8b6A0cDE0098a877D8c21b2062A9E8A254","[email protected]","https://x.com/uchesboi/status/1798618338522001457?s=46","uchesboi","11294","67780","𝙲𝙷𝙰𝙾𝚂 𝙺𝙸𝙽𝙶 ᛤ","ᛤ ☆ ☞ ᴀʀɪᴇꜱ ʙ๏ʀɴ ♈ ☆ ꜰᴜᴛᴜʀᴇ ᴡᴇʙ ᴀɴᴅ ꜱ๏ꜰᴛᴡᴀʀᴇ ᴇɴɢɪɴᴇᴇʀ 💻 ☆ ɪɴɴ๏ᴠᴀᴛɪᴠᴇ ʙᴜꜱɪɴᴇꜱꜱᴍᴀɴ 💵 ☆ 💱 ☆ ʙ๏ʀɴ ᴛ๏ ʀᴇɪɢɴ 👑 ☆ #ʀᴇᴅᴅᴇᴠɪʟꜱ ♦️ ☜ ☆ ᛤ","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7a74ac8b6a0cde0098a877d8c21b2062a9e8a254@EthStorage"
"6","6/6/2024","0x03FF0CA69F53dD4b5b54b58ae3d05cC821AD5933","[email protected]","https://x.com/Ismi_Mubaraq10/status/1798618471133274496?t=Gae-NUuU3sqQyUeMab0zPg&s=19","Ismi_Mubaraq10","398","2956","Mubaraq - 🧱/🌿.fuel","Experienced moderator/CM, Nft enthusiast, content writer. DC: Mubaraq.Moai","I am applying to participate in the EthStorage public testnet, and my miner address is 0x03FF0CA69F53dD4b5b54b58ae3d05cC821AD5933 @EthStorage"
"7","6/6/2024","0xd76Cc636D7B79723b9A5A8ec53c9e8F61658AA25","[email protected]","https://x.com/maxxx_eth/status/1798618427877462392?s=46&t=0GmOVXWdD8xftJm0-hHIlA","maxxx_eth","238","5722","max","web3 |","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd76Cc636D7B79723b9A5A8ec53c9e8F61658AA25"
"8","6/6/2024","0x632124133049fAdCAfFBA5fFA2b2B2F210c9E958","[email protected]","https://x.com/DavidMadubuchi/status/1798618627580780928?s=19","DavidMadubuchi","117","21943","David OwO 💯","https://t.co/RooxfDhdCR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x632124133049fAdCAfFBA5fFA2b2B2F210c9E958"
"9","6/6/2024","0x8CcAb9F19ED24BaF6A1df60e4e331b80BB0A5086","[email protected]","https://twitter.com/ChideraIloka/status/1798618567606407260?t=J9lsVsmpnmjwVI6U4m8-FQ&s=19","ChideraIloka","268","3319","Chidera Iloka🤭","@playsomo | $SOMO","I am applying to participate in the eth storage public testnet,and my miner address is 0x8CcAb9F19ED24BaF6A1df60e4e331b80BB0A5086"
"10","6/6/2024","0x54F8b9516d0b1B28D2DB1Bcd0b7fB8D8bA3e3D38","[email protected]","https://x.com/davycodz/status/1798617748798632242?t=wAVQ8Huu0D_b0umsArXitQ&s=19","davycodz","724","797","Davycodz","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x54F8b9516d0b1B28D2DB1Bcd0b7fB8D8bA3e3D38@EthStorage"
"12","6/6/2024","0x9A573aA141C1Cc0845837c250Cdc7379C7Da69fd","[email protected]","https://x.com/warith_eth/status/1798617718633230684?s=46","Warith_eth","235","3102","W₳rith.Ξth 🦇🔊 🟧 Tab","BOB @work 👷🏽♂️🛠️ Moderator || Community Manager || Graphics Designer","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9A573aA141C1Cc0845837c250Cdc7379C7Da69fd"
"13","6/6/2024","0xf99c8f789ffe0779076E170a9026f2f6A3673a9A","[email protected]","https://x.com/Itz_Hakeem1/status/1798618536014954854","Itz_Hakeem1","316","3226","Hakeem 🌍","Entrepreneur| A Manchester United fan| NFT! NFT!! NFT!!!","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf99c8f789ffe0779076E170a9026f2f6A3673a9A @EthStorage"
"15","6/6/2024","0x5E52a7C2Da01b851801B2A1455c030f5306da1ff","[email protected]","https://x.com/Setelity/status/1798618797370392711?t=aZowMXk-sY3g35nexpUyFQ&s=19","Setelity","372","13365","Cold Mav","Crypto Literate, Gifted Writer, Talented Musician, Collab Manager @CseersDao Knowledge is Power; But I choose Money.","am applying to participate in the EthStorage public testnet, and my miner address is 0x5E52a7C2Da01b851801B2A1455c030f5306da1ff@EthStorage"
"16","6/6/2024","0x8E1A5b6EB085d448F16f4A693d2695B7bE4421a3","[email protected]","https://x.com/billy22461206/status/1798618705628405877?s=61","Billy22461206","344","10315","BIG_Billy","crypto is the future💯contributor: @scroll_ZKP, Degen King,research analyst,diamond hand,full time trader,I.T guy,web3.0 everything……..i live in my world","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8E1A5b6EB085d448F16f4A693d2695B7bE4421a3 @EthStorage"
"17","6/6/2024","0x35f778d2B1f5219c446EEC073aae99b7126d2570","[email protected]","https://x.com/badd_mus/status/1798618815842099477","badd_mus","621","840","Baddmus","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x35f778d2B1f5219c446EEC073aae99b7126d2570 @EthStorage"
"18","6/6/2024","0x8Fb78c6d9009c6D9cB7473bAfCFafF94fbe0aE40","[email protected]","https://x.com/dex4980/status/1798618706370822423?s=46&t=UT7-kYQfB_laWtlJngJGow","Dex4980","149","1278","Dex.fuel.NYAN🔫😼Tabi 🟧$MOJO$XTER","Bruhh @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8Fb78c6d9009c6D9cB7473bAfCFafF94fbe0aE40@EthStorage"
"19","6/6/2024","0x9788BAB5dF5BE3bb6c99De322Ba99Fd998866baC","[email protected]","https://x.com/m_mmorgs/status/1798618448861511991?t=myd4xBD_zaKahwTlQzWRFA&s=19","m_mmorgs","849","1797","MmorgsMorgan ♣️ 👾","all tings web3 @Laika_Layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9788BAB5dF5BE3bb6c99De322Ba99Fd998866baC"
"21","6/6/2024","0xc11098E261cF77704616a84E7B0D28673639f8e7","[email protected]","https://x.com/PoTheOnlyPanda/status/1798618906741125630","PoTheOnlyPanda","500","3013","Po🦍🛡♦thepanda.lens(L3, ❄️) Tabi 🟧(🎮,🟢).plena","⚙️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc11098E261cF77704616a84E7B0D28673639f8e7"
"22","6/6/2024","0xc7640913d277E505b7b763444540dA3DD1BF1cFb","[email protected]","https://twitter.com/TelixGoldens/status/1798618889124982914?t=gTPSGBu-ytdInK1oXlVNAQ&s=19","TelixGoldens","665","10057","Telixgoldens.fuel🐉 $MON 🫧🫧🫧","Data Analyst. Learning FrontEnd...........","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc7640913d277E505b7b763444540dA3DD1BF1cFb"
"24","6/6/2024","0x13f445b3045056F7Ae5D5D50b510043193499b18","[email protected]","https://x.com/IrunguVicc/status/1798618940777840763?t=802wqIx120vPJzkXW2zgHg&s=19","IrunguVicc","186","1268","caffè.ETH","legit airdrops","I am applying to participate in the EthStorage public testnet, and my miner address is 0x13f445b3045056F7Ae5D5D50b510043193499b18@EthStorage"
"25","6/6/2024","0x0F3645B6Ce08e7B8EfE087741a859E4cA774D51f","[email protected]","https://x.com/deg3nfren/status/1798619006183825801","deg3nfren","254","2142","degen fren 🉐🕉️🦥","Just another pleb throwing money at shit and hoping it sticks, coping the hard way.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0f3645b6ce08e7b8efe087741a859e4ca774d51f"
"26","6/6/2024","0x87cD289B2358f88bE6DEBb6A48b046D5eC00D8c9","[email protected]","https://x.com/TOMFK12/status/1798618740965412868?t=SbA6ojHKJWNSixva06mNTw&s=19","TOMFK12","911","5433","TOMFK12.plena⚡🐐🛡️⚙️🐰🟣 Unblocked ❤️ $XTER","An aspiring software engineer. @FocusOnVaissel #byebyebirdie Left to Phaver","I love it when it comes this way. Happy for the win 0x87cD289B2358f88bE6DEBb6A48b046D5eC00D8c9 https://t.co/kK6SwpxzOV"
"27","6/6/2024","0xE7e5008532A2B463113cAf0a6faeF4C4927efC56","[email protected]","https://twitter.com/To_roh7/status/1798618960902136255?s=19","To_roh7","148","1774","Adetoro","Technical analyst 🍦🔥//crypto & indices trader 💯🌹// Blockchain researcher @bchainunilorin //👁️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE7e5008532A2B463113cAf0a6faeF4C4927efC56 @EthStorage"
"30","6/6/2024","0x00f09ffc30F94Cf9F8009aC7Ec028e0505a78479","[email protected]","https://x.com/anonymouwritter/status/1798616518596628502?s=46","Anonymouwritter","337","4013","Hironakamura.💙 De.Fi Army","web3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x00f09ffc30F94Cf9F8009aC7Ec028e0505a78479"
"31","6/6/2024","0x9D48Bcb9b8FBe33Df1C70FAd8cE89f41417b9392","[email protected]","https://x.com/theduef/status/1798618729015828964?t=YqMuAnTqU2KXG4eEn65KnA&s=19","theduef","235","4960","Ogheneworo $ARCA 🐞 $GAME $AEG","A simple student 👨🏿🔧🧑🏿💻..","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9D48Bcb9b8FBe33Df1C70FAd8cE89f41417b9392"
"32","6/6/2024","0x588c4198fa5875FD9D7016eb112191B73cC08583","[email protected]","https://x.com/Ellanda121/status/1798619235557793840?t=m9Qz20Ha2jTsYDpFdhFoIA&s=19","Ellanda121","196","4299","Elker.ETH","elker.eth|elker.starkhttps://t.co/YqZpG2Pmg3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x588c4198fa5875fd9d7016eb112191b73cc08583 @EthStorage"
"34","6/6/2024","0x4a8f3bb23531140F81A15736e40CA6cCfb815275","[email protected]","https://x.com/Manshod1/status/1798619337802322080?t=4gLuB9W_IXgo8fAaBq3uqw&s=19","Manshod1","630","13621","manshod.eth","crypto maqs","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4a8f3bb23531140F81A15736e40CA6cCfb815275 @EthStorage"
"37","6/6/2024","0x0797FD258aeD9755d302df227A837aB5a544282a","[email protected]","https://x.com/0x_kalifa/status/1798619340398531040?s=46","0x_kalifa","585","3071","Kalifa 🐐","Crypto 🪙 || Trader 📉 || Researcher || Web3 enthusiast || @QuintessDao","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0797fd258aed9755d302df227a837ab5a544282a@EthStorage"
"38","6/6/2024","0x8277797098283eC719B0f40561f087E11eE1306e","[email protected]","https://x.com/lflairs/status/1798619468219998564","lflairs","229","16462","yesus","❤️$WELL","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8277797098283eC719B0f40561f087E11eE1306e"
"39","6/6/2024","0xC6d38Dced4cC4D020611b2AeC5D4f7228c919d21","[email protected]","https://x.com/0x4008/status/1798619431813496985","0x4008","2209","6769","0x4008 🎒","Blockchain Enthusiast • Degen 🦧 🚀🌙 • Community Builder @namada • Member @babylon_chain Coordination Group","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC6d38Dced4cC4D020611b2AeC5D4f7228c919d21"
"40","6/6/2024","0x06fAb26F217e2Eaaad891a9eA20F67E20376d51C","[email protected]","https://x.com/la_brujah/status/1798619486670688258","la_brujah","127","1843","chum ♥️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x06fAb26F217e2Eaaad891a9eA20F67E20376d51C @EthStorage"
"41","6/6/2024","0x1c93fDfc8aCb46522d5d5a68b5026a7cab2BE59a","[email protected]","https://x.com/ngonadi_amaka/status/1798619653687939501","ngonadi_amaka","433","1893","A.fuel 🐉$MON ❤️ .NYAN🔫😼.plenaTabi 🟧$MOJO","🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is <0x1c93fdfc8acb46522d5d5a68b5026a7cab2be59a>@EthStorage"
"42","6/6/2024","0xd515434C8F1B74a5B389A92c74E8EfbB09C2Ab48","[email protected]","https://x.com/wf_olamoore/status/1798619580270780572?s=46","wf_olamOOre","233","2023","balogunoflagos 🛹🛹","","*I am applying to participate in the EthStorage public testnet, and my miner address is* 0xd515434C8F1B74a5B389A92c74E8EfbB09C2Ab48"
"44","6/6/2024","0x1F958CD030C8C4dB4281Bd0FD9d93ab9c4C1A8D7","[email protected]","https://x.com/WMikdo/status/1798618914144067941?t=vijVdHzWQyK2nQ4kXgsHzA&s=19","WMikdo","144","3984","Stillbull","Remote Control $XTER @cv_exchange@Plenafinance & #PlenaArmy","I am applying to participate in the EthStorage public testnet, and miner address is 0x1F958CD030C8C4dB4281Bd0FD9d93ab9c4C1A8D7@EthStorage"
"47","6/6/2024","0xB8e97Da197da0C19e6c93519FAdd5D3E692Cb924","[email protected]","https://twitter.com/Abdulkhanoba/status/1798619607554752766?t=fIsiRLOEtCw9QGmEYQqSJg&s=19","Abdulkhanoba","204","7206","SeniorSon","From Edo Based in Katsina.CryptoFreak and aFootball Enthusiast.@chimpexchange Ambassador.@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB8e97Da197da0C19e6c93519FAdd5D3E692Cb924"
"48","6/6/2024","0xa53a49Fa314a437D3039133e43770d4ba45d4C3f","[email protected]","https://x.com/manlikenas99/status/1798619869367419254?t=p4IWevbnpAUMBRcrNDl5qA&s=19","manlikenas99","422","13762","Naasir👷🏿♂️","Death so random, might be gone while you think I'm offline. #NFTs #Crypto #Web3 @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa53a49Fa314a437D3039133e43770d4ba45d4C3f @EthStorage"
"49","6/6/2024","0x32AEd78b9a98B9e67eDace01cc9C87444117C9D1","[email protected]","https://x.com/AptTech_/status/1798619494040076671","AptTech_","144","861","Idris Idris 🟧 ⛈️ 🟣","Gadgets || Crypto || Football... Laika_layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0x32AEd78b9a98B9e67eDace01cc9C87444117C9D1"
"50","6/6/2024","0x1902AA10bd31998cE69BDaeA999282DBC39F0adf","[email protected]","https://twitter.com/Da2xStorm/status/1798619884357894449?t=vjo4K9ociOIA0BDf4N7J8Q&s=19","Da2xStorm","206","977","Storm2k9??","Maxed in. DeFI.精度が鍵です","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1902aa10bd31998ce69bdaea999282dbc39f0adf@EthStorage"
"52","6/6/2024","0x7F32386B9B596d75c70F357B87210866E2551d24","[email protected]","https://x.com/_paps__/status/1798619620456517769?s=46&t=QB0eeKEiY0iIrHayqFvXKQ","_Paps__","580","18957","Paps","GIS/Remote sensing analyst. Full-time on Web3 just busy farming. Administrator","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7F32386B9B596d75c70F357B87210866E2551d24"
"54","6/6/2024","0xc33c1560ff81f6A57c7DaC79e1c2d327d63b0479","[email protected]","https://x.com/Rjmahmad/status/1798620066281672931?t=AC5KkxtlIMyXl4vjtQeLeA&s=19","Rjmahmad","232","3396","Rajmahmad.eth(L3,❄️🌊)","#Bitcoin","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc33c1560ff81f6A57c7DaC79e1c2d327d63b0479"
"56","6/6/2024","0xCa77AF4DCE734eEF3E8fBF66C4Be3Ae70CDb109F","[email protected]","https://twitter.com/Okiemute020/status/1798619529213612244?s=19","Okiemute020","286","819","Okiemute🚀 🎒🎒","A web 3 enthusiastCrypto educator","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCa77AF4DCE734eEF3E8fBF66C4Be3Ae70CDb109F@EthStorage"
"57","6/6/2024","0x103ed903c8D0E77abC6B8CA6B73Ef064196aD849","[email protected]","https://x.com/0x_mazdoor/status/1798620276265300343","0x_mazdoor","269","6190","MazDoor","Exploring the Web3 | Hunting Alphas | Futures Trader | Testing dApps and Defi protocols - Mission to 1m 🚀Addicted to Airdropshttps://t.co/fyl0GjPQWF","I am applying to participate in the EthStorage public testnet, and my miner address is 0x103ed903c8D0E77abC6B8CA6B73Ef064196aD849"
"58","6/6/2024","0x928422Cc9d124545C79062B7cb16C2398b232033","[email protected]","https://twitter.com/Stonebahubali/status/1798620238680080560?t=1dqz-8SLBLPfW7yfYvNbjA&s=19","Stonebahubali","356","9799","Stonebahubali.plena","BSc. Marketing Holder! Crypto Enthusiast| Die hard Chelsea fan💙|","I am applying to participate in the EthStorage public testnet, and my miner address is 0x928422Cc9d124545C79062B7cb16C2398b232033"
"59","6/6/2024","0xe38B3806517671C470c2F2c389715f0442a36295","[email protected]","https://x.com/mvrhov1/status/1798620278056276403","mvrhov1","1667","26795","mvrhov1.fuel🐐 👁️ 🟣 $LOL Tabi 🟧 $ARCA $XTER 🅧","https://t.co/JUh8RJ50pt @IntractAmbassador #HippoSwap 💙 https://t.co/tPlEKhRXV2 Army @Mint_Blockchain | Fuelet 👁️@Plenafinance #PlenaArmy @cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe38B3806517671C470c2F2c389715f0442a36295"
"61","6/6/2024","0xdF5Cd4e1f199a3d48D22CF7a5DbA5B35F4E8a42F","[email protected]","https://x.com/edo_real/status/1798620061726658734","edo_real","325","6013","Middleton 🐕🌖","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdF5Cd4e1f199a3d48D22CF7a5DbA5B35F4E8a42F @EthStorage"
"62","6/6/2024","0x31419b5468636DEC13C186D75541379715333010","[email protected]","https://x.com/Fayychuk/status/1798620317264527697?t=5V0hqJtuJtNhyKzjK9UKeA&s=19","Fayychuk","161","1789","Emms","Blockchain Researcher| Web3 | Ambassador @HavilahacademyNode validator @Tanssinetwork, @JUNEO_official, @Titannet_daoLover of Yeshua","I am applying to participate in the EthStorage public testnet, and my miner address is 0x31419b5468636DEC13C186D75541379715333010@EthStorage"
"63","6/6/2024","0xC58cb30C5F7B0EB426d5F5D3D676ee80552144b6","[email protected]","https://x.com/Rommyjae/status/1798620338051543124?t=uZzvEDEWyOK1LFOGEPOs9g&s=19","Rommyjae","116","2480","RommyjaeFx","Financial market Enthusiast ||Technical analyst 🔋⚡️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC58cb30C5F7B0EB426d5F5D3D676ee80552144b6"
"65","6/6/2024","0x252c9C7025fB35cA0eDa8f5C4dc3c036cBCD8611","[email protected]","https://twitter.com/Paveway4NFT/status/1798619808055091378?s=19","Paveway4NFT","632","1067","Paveway4NFTs🤍","Blessed 🕊️ Building @Orpheushall Art collectors, NFT degen || @DrillClubNFT","I am applying to participate in the EthStorage public testnet, and my miner address is 0x252c9C7025fB35cA0eDa8f5C4dc3c036cBCD8611 @EthStorage"
"66","6/6/2024","0xB4B3ca58e6CC698d150233374B636A2C445f399F","[email protected]","https://x.com/kelv880/status/1798620364215656817?t=46jdxzHO1fHdaR5klu_QWw&s=19","kelv880","132","4534","kelvin 🟣 $LOL Utgardians ⚔️ Tabi 🟧 OwO","#plena @Laika_Layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB4B3ca58e6CC698d150233374B636A2C445f399F"
"68","6/6/2024","0x781ed6f2834d692Fd75002C7f2f406C5ED1c6996","[email protected]","https://x.com/outslider_/status/1798620383958196391","outslider_","227","8065","outsider.fuel","outside, touching some grass. Trader","I am applying to participate in the EthStorage public testnet, and my miner address is 0x781ed6f2834d692Fd75002C7f2f406C5ED1c6996@EthStorage"
"69","6/6/2024","0xFa543fa99ad08009025F6F046c4C72713B47Dd87","[email protected]","https://x.com/Hademola91/status/1798618720790839474","Hademola91","105","2491","Hademola Tabi 🟧","entrepreneurweb3🔮 Wiz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xfa543fa99ad08009025f6f046c4c72713b47dd87@EthStorage"
"70","6/6/2024","0xf8F9442626D3C1ddC827D7c6dFFfD6517083f849","[email protected]","https://x.com/t72318/status/1798620168882737624","t72318","229","3126","pene🐉 $MON♦️🛸🐐🛡️🟣,🟣|@Mint_Blockchain.plena","Omniscient Order @Interswap_io #zkApes@Mint_Blockchain | @tapioca_dao pearl club memberB4B-06323","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf8F9442626D3C1ddC827D7c6dFFfD6517083f849"
"71","6/6/2024","0xb6c04E0B91219e07dDc2f0aFE10cF85d7da9B9eb","[email protected]","https://x.com/FightFor041/status/1798620199434019153?s=19","FightFor041","178","3529","Q🫨","Q🫨","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb6c04E0B91219e07dDc2f0aFE10cF85d7da9B9eb"
"72","6/6/2024","0xca007ACb9e8E4Dc7AcFC44214479fBFF692C8b03","[email protected]","https://x.com/asulah56/status/1798619270290784449?t=iX2DIBZUXXvrUnOjOiljzA&s=19","asulah56","211","2629","𝖆𝖘𝖚𝖑𝖆𝖍56","|| All Cryptocurrency & NFTs Enthusiast ||","I am applying to participate in the EthStorage public testnet, and miner address is 0xca007ACb9e8E4Dc7AcFC44214479fBFF692C8b03@EthStorage"
"73","6/6/2024","0x015E1f04f4ecb282Cc0235F74dAC00c01BF71884","[email protected]","https://x.com/DesireIgweze/status/1798619922890920058?t=h2BtYd2J7-uwNRFcEsQVEQ&s=19","DesireIgweze","1758","12447","Desire Igweze","DeFi ~ Web3 | 👀 next 1000x gem | #Airdrop 🪂","I am applying to participate in the EthStorage public testnet, and my miner address is 0x015E1f04f4ecb282Cc0235F74dAC00c01BF71884@EthStorage"
"74","6/6/2024","0x6F38bf8541a33392532D0De0Ca3e79BCF61C7a95","[email protected]","https://x.com/OLAtherealone/status/1798620549960307034?t=zKz7rK3Wa1DQfPi1sp9okA&s=19","OLAtherealone","314","666","The Deserted Loner","Data Analyst | Blue 💙 | Peace ☮️","I am applying to participate in the EthStorage public testnet, and my miner address is <0x6F38bf8541a33392532D0De0Ca3e79BCF61C7a95>"
"75","6/6/2024","0x56398436C1e56fE1849aFE9eAE85667d50A12971","[email protected]","https://x.com/owanireserves/status/1798620536102420480?t=XinaWtLl6HRCEb1PNtryOA&s=09","owanireserves","327","279","owanireserves.eth","crypto enthusiast, airdrop hunter, node runner. educative content writer.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x56398436C1e56fE1849aFE9eAE85667d50A12971"
"77","6/6/2024","0x77DFAc39546116c70d616460Fd7BC38Ff4c97ecC","[email protected]","https://x.com/fqmighty/status/1798620641262014628","fqmighty","209","12631","тoᴘʙoʏ","existing🚶🏿♂️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x77DFAc39546116c70d616460Fd7BC38Ff4c97ecC@EthStorage"
"78","6/6/2024","0x91e5dB234452180CbB57EF62fb0bF4fa44cd0124","[email protected]","https://x.com/bookiescompiler/status/1798620750402003285?s=46","BookiesCompiler","350","3582","Dr.Lovedoctor ❤️","Sports Analyst | @playsomo | $SOMO | Airdrop farmer 💰| Web 3 trader","I am applying to participate in the EthStorage public testnet, and my miner address is <0x91e5dB234452180CbB57EF62fb0bF4fa44cd0124>"
"81","6/6/2024","0xbCD8b21A7b12c81913238e0274e5628dCdB83Ba4","[email protected]","https://x.com/alyabu85/status/1798620594256380329?t=XhYl4Ts2GZpdAP7KpzzYpw&s=19","alyabu85","358","4308","Ali Funtua 🇳🇬🇳🇬","Crypto Airdrop hunter.Graduate of UDUS and ABU.Regional Area manager at Passolar.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xbCD8b21A7b12c81913238e0274e5628dCdB83Ba4@EthStorage"
"83","6/6/2024","0xb7cB2b6eA34a6972dd88745dbB70d49234A3853d","[email protected]","https://twitter.com/0xBoanerge/status/1798620787496439815?t=XVCnUN0jengDUeBOGZyGrw&s=19","0xBoanerge","125","1853","Nerge","Play only the Real game, Life || Blockchain Dev. 💎🤝🏼 ||@Lingocoins || #MCFC 💙","I am applying to participate in the EthStorage public testnet, and my miner address is <0xb7cB2b6eA34a6972dd88745dbB70d49234A3853d>@EthStorage"
"84","6/6/2024","0xC549bFa187CF38cBf6FBF50f6cBE2514e131C01b","[email protected]","https://x.com/HARMONY__FX/status/1798620198238670970?t=HAFUINhcL1i31eM4Dg6_ew&s=19","HARMONY__FX","1209","11950","HARMONY","FOREX TRADER \MEME CREATOR JNR","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC549bFa187CF38cBf6FBF50f6cBE2514e131C01b @EthStorage https://t.co/eZD2AjUepJ"
"85","6/6/2024","0x6Db96ea4FB5E94b095C0fa8762A5Bce714E14b9a","[email protected]","https://x.com/Kenechu23969841/status/1798620207440941550","Kenechu23969841","226","5263","jojopose🐉 $MON❤️$BLOCK.FUEL","co founder of NFTfrens community @NFTfrenss || Content writer || Graphic designer 💙 https://t.co/12973dg1Wp Army","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6Db96ea4FB5E94b095C0fa8762A5Bce714E14b9a@EthStorage"
"87","6/6/2024","0xEbCC3792B435FB8cBF0Ad5D9C3939B829dF0c617","[email protected]","https://x.com/emmanuelolakojo/status/1798620440224817532?s=46","EmmanuelOlakojo","118","2974","Ola","Pharmacist in making😎 #ISLM_MAXI @fullforce_io","I am applying to participate in the EthStorage public testnet, and my miner address is 0xEbCC3792B435FB8cBF0Ad5D9C3939B829dF0c617"
"89","6/6/2024","0x7D3C66efDAD7Cb141299E8434988437118020Af5","[email protected]","https://x.com/Web3aces/status/1798620472013414553?t=qC16EUEI8JvySdNXf47JVg&s=19","Web3aces","134","385","Web3aces","Web3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7d3c66efdad7cb141299e8434988437118020af5"
"90","6/6/2024","0x9e0DbFb802287fC0203A58bAB1F4Df4f1282de78","[email protected]","https://x.com/adahosk/status/1798621128682061827","adahosk","226","6960","Non Blank Tabi 🟧","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9e0DbFb802287fC0203A58bAB1F4Df4f1282de78"
"92","6/6/2024","0xC1635015038Dd11df5729d39D434A639CA796761","[email protected]","https://x.com/BamigbolaMercy/status/1798621258676117709?t=O8v9HVrdt9Id96IskLFvUA&s=19","BamigbolaMercy","274","2146","BAMIGBOLA KEHINDE MERCY ♦️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC1635015038Dd11df5729d39D434A639CA796761"
"94","6/6/2024","0xD8ebFE6ff3fDed03E0307af1950A2501c49d1279","[email protected]","https://x.com/OgbeniAdegunwa1/status/1798620137953935569?t=tGABEKcxOg0t8HHSWLTMPA&s=19 ","OgbeniAdegunwa1","2692","22279","Ogbeniadegunwa1.eth| ♥POPCAT","Urban Planner|Real Estate Developer|Crypto Enthusiast|NFTs collector.Follow me for all about crypto4beginners. $Fuel","I am applying to participate in the EthStorage public testnet, and my miner address is <0xD8ebFE6ff3fDed03E0307af1950A2501c49d1279>@EthStorage"
"97","6/6/2024","0x13a1b203b3324a4763FfF8EfF27CD82ce9357122","[email protected]","https://x.com/Excellencermw/status/1798620404405399761?t=mrur1CM_jih19B2hVJoxeA&s=19","Excellencermw","246","16994","helium (Q ,Q)","Web3, 4life#quaiExcelrmw.eth/paradigm.base#Airdropsalpha hunterlow liquid trader all opinion are mineweb3 games researcher","I am applying to participate in the EthStorage public testnet, and my miner address is 0x13a1b203b3324a4763FfF8EfF27CD82ce9357122@EthStorage"
"100","6/6/2024","0x95fD81588177fEdbF10EDfB920B9d46Cc2F22157","[email protected]","https://x.com/igit003/status/1798621565338460590?s=46","igit003","143","3219","Martins♣️","#Replyguy 24/7|| #Web3 enthusiast||Nft Collector||Airdrop hunter|| Scholar #Defi enthusiast || Moderator || Community Manager 🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0x95fd81588177fedbf10edfb920b9d46cc2f22157"
"101","6/6/2024","0x753FaAa66a70d4C18D97567518C42290E6C3f491","[email protected]","https://x.com/nn_ceasar/status/1798621113028919588","nn_ceasar","438","2811","NICHOLAS","am alive to live. ☝️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x753FaAa66a70d4C18D97567518C42290E6C3f491@EthStorage"
"103","6/6/2024","0x7B1F6f39FFae7afF5072494810E0780f142d9D5C","[email protected]","https://x.com/solapad/status/1798621659500515742","solapad","3782","808","SOLAPAD $BUBBLE | PIXIZ $XTER","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7B1F6f39FFae7afF5072494810E0780f142d9D5C"
"104","6/6/2024","0xcD561204fe8F68452f1a093b2f7A283f2FE24aB0","[email protected]","https://x.com/mealgoprime/status/1798620994673983975?s=46","MealgoPrime","315","9546","WEB³K¡D•SoL| 🚀MATR1XCoin","Crypto Maxi || ⛩️ NAMASTE ⛩️ || Web3 𝕏 L³ @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcd561204fe8f68452f1a093b2f7a283f2fe24ab0"
"106","6/6/2024","0xC5ADCD4834Dd0e16a4122f5213996CfdeeAC8ce8","[email protected]","https://x.com/blisthoms/status/1798621842988741075","blisthoms","434","1665","blisthomas || Tabi 🟧|| 🟧 ⛈️ 🟣","Crypto currency || Nursing || Web3 || NFTs || @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC5ADCD4834Dd0e16a4122f5213996CfdeeAC8ce8@EthStorage"
"107","6/6/2024","0x17dD2545c28CfDaE92684b3b9bdE2f1639162A03","[email protected]","https://x.com/stridefingers01/status/1798621686876840368?t=xri4UDpPw9vUvMUwS0cPDw&s=19","stridefingers01","220","2232","STRIDE.ETH 👣","Live long learner📚 | Jazz musician🎶 | Cryptonia 📈 | Serial Investor | BUIDL🛠️ |","I am applying to participate in the EthStorage public testnet, and my miner address is 0x17dD2545c28CfDaE92684b3b9bdE2f1639162A03 @EthStorage"
"109","6/6/2024","0xD52840646A467F05fA2d1EDF181e29E092056F1D","[email protected]","https://x.com/NFTs_and_crypt/status/1798621864719458436?t=JV0xXIruWbwIPjc0uyIfqA&s=19","NFTs_and_crypt","130","243","JOΞ","マネジャー @cseersDao 自業自得","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd52840646a467f05fa2d1edf181e29e092056f1d"
"110","6/6/2024","0x46484fE5dcf9d21df087aca797e801E63Da94008","[email protected]","https://x.com/Dimsweb3/status/1798621751859196117","Dimsweb3","180","6360","𝖣𝖺𝗁𝗆𝗈𝗁𝗅𝖺","𝑺𝒘𝒆 - 𝗧𝗲𝗰𝗵𝗕𝗿𝗼","I am applying to participate in the EthStorage public testnet, and my miner address is 0x46484fE5dcf9d21df087aca797e801E63Da94008 @EthStorage"
"112","6/6/2024","0xCC90F4E6f740fFC6181071dced45667288F39d12","[email protected]","https://x.com/Ooniichhan/status/1798621977231692246?t=bEnrb6GD42j8usCq_0tHBg&s=19","Ooniichhan","125","2657","Oniichhan $ARCA","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCC90F4E6f740fFC6181071dced45667288F39d12"
"113","6/6/2024","0xDe27255208277E7Bca851e5278661FA00799ddCD","[email protected]","https://twitter.com/Miklos_Pelumi/status/1798622046316081502?t=YCE20WPo9S1MnYSokFhzlg&s=19","Miklos_Pelumi","592","7543","Beryl 🟧⛈️🟣 🐉$MON TAP🚰)🐳 $BLUAI","@playsomo | $SOMO","am applying to participate in the EthStorage public testnet, and my miner address is 0xDe27255208277E7Bca851e5278661FA00799ddCD"
"114","6/6/2024","0x1594a824fddd367c8e8743fE94537e9aD2B0Ba89","[email protected]","https://x.com/eribodavid/status/1798622009393623377","eribodavid","183","1397","David","Data Analyst 📊 Content Writer 📖","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1594a824fddd367c8e8743fe94537e9ad2b0ba89 @EthStorage"
"115","6/6/2024","0x8F4CBFF7B882fFD1C97717cab305d09ff9577ae9","[email protected]","https://x.com/nostoryboss/status/1798622222204166465?t=zCEBBXPi1KL23PCzdVVYsw&s=19","nostoryboss","1766","15676","Nostory | Runes Chain 🟧","keeping the community clean@aann_ai Ambassador","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8F4CBFF7B882fFD1C97717cab305d09ff9577ae9"
"116","6/6/2024","0x10184B20E7E1F30ee3D2285efE138dfb54FCb10B","[email protected]","https://x.com/man_in_transit/status/1798621809124012452?s=46","Man_in_transit","189","5021","Man in Transit","I’m not of this world, i’m just passing by","I am applying to participate in the EthStorage public testnet, and my miner address is <0x10184b20e7e1f30ee3d2285efe138dfb54fcb10b>"
"117","6/6/2024","0x6CFf836559e5aF7dCA1528dCb23E2692C4094A76","[email protected]","https://x.com/up_yayu/status/1798617997508247687?t=Dfz-4bmZ0fyqwVJkcPl6HA&s=19","up_yayu","376","6708","Goals 🟧⛈️🟣","☪️ #byebyebirdie left to phaver l⏳DBA📍Defi researcher 📍 Community Moderator 📌 You must be the change you wish to see in the world -Ghandi$FAR ♣️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6CFf836559e5aF7dCA1528dCb23E2692C4094A76@EthStorage"
"118","6/6/2024","0xE34501A0800fbc3181C56C094eA8795642F0AA73","[email protected]","https://x.com/Abdoyoussef2017/status/1798622326327804214","Abdoyoussef2017","147","3261","Bodda | 🐞 $GAME","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE34501A0800fbc3181C56C094eA8795642F0AA73 @EthStorage"
"119","6/6/2024","0x6Cf1E4dfA2Eb98bD7496ed241891850E4231c96F","[email protected]","https://x.com/raviyadav75222/status/1798622348725391847","raviyadav75222","175","1137","Smoothy🐐","🐐","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6Cf1E4dfA2Eb98bD7496ed241891850E4231c96F @EthStorage"
"121","6/6/2024","0x7669c82b2Fc6e117d7f0bf97381734d91E89889e","[email protected]","https://x.com/Jogzi_/status/1798622266546409589?t=2qiSieK1MvKQELXZ85nGsQ&s=19","Jogzi_","274","2830","Badman Jogzi","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7669c82b2fc6e117d7f0bf97381734d91e89889e@EthStorage"
"122","6/6/2024","0x3e9b39D716B345C8820C36D6C470A72c84c838A9","[email protected]","https://x.com/0xfemi/status/1798622427217551702","0xfemi","1469","19430","Femifemo","Founder @cryptocribhq + @femxtechltd | Community contributor @celestiaOrg | Cloud 📚","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3e9b39D716B345C8820C36D6C470A72c84c838A9@EthStorage"
"123","6/6/2024","0xc0372a9940AE9a61286977C47b3fD6528d529c64","[email protected]","https://x.com/DivineNmer14089/status/1798619578253361414","DivineNmer14089","101","861","Divine Nmerisinachi ❤️ Memecoin","wagmi","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc0372a9940AE9a61286977C47b3fD6528d529c64 @EthStorage"
"125","6/6/2024","0xcf142E25A6e9d9b2F0C0fD347575a9494327B684","[email protected]","https://x.com/kanomjeebzz/status/1798622761692353000","kanomjeebzz","164","611","Kanomjeeb 🐡(⬜️, ⬛️)⚔️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcf142E25A6e9d9b2F0C0fD347575a9494327B684 @ETHStorage"
"128","6/6/2024","0x4B5e5Ef29a7af6312E557fF10dEDa75d78f0bc8f","[email protected]","https://x.com/yusufmu54401695/status/1798622762770337806?s=46","Yusufmu54401695","244","1643","Yusufmuhammed.style 🔫starmech","Praying for grace🙏🙏🙏🙏","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4B5e5Ef29a7af6312E557fF10dEDa75d78f0bc8f@realFFK @BGI_Genomics @ericbailly24"
"129","6/6/2024","0xf2CF3800DA57a1f3478d1844B58F24c35583a0c4","[email protected]","https://x.com/Debbiiewilly/status/1798622867330056420","Debbiiewilly","606","15222","Debbiiewilly","Hello👋 I love NFT's | Fuelet | essex.isme","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0xf2CF3800DA57a1f3478d1844B58F24c35583a0c4 @EthStorage"
"132","6/6/2024","0x96847FBc942699cA79F17F89b9d679A443800dCF","[email protected]","https://x.com/BinanceNo1/status/1798622833523998822","BinanceNo1","169","4131","Rasel khan Tabi 🟧","$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x96847FBc942699cA79F17F89b9d679A443800dCF@EthStorage"
"133","6/6/2024","0xe073c070bc0bE2986b98228e88026638f0fF17E4","[email protected]","https://twitter.com/splendid0123/status/1798622589847499120?t=Eyw9IYNwRZfMrOw4HKNlDA&s=19","splendid0123","243","1738","Splendid (♟,♟,♣️)","Crypto & DeFi Enthusiast | Blockchain Advocate | Exploring the Future of Finance 🚀 | Prof. Community Manager and Moderator |Degen Trader | #Eth#DeFi #Web3","I am applying to participate in the EthStorage public testnet, and my miner address 0xe073c070bc0bE2986b98228e88026638f0fF17E4@EthStorage"
"134","6/6/2024","0xFF5c6d98b4F7098e1C84D88C249C55c76c02b3C2","[email protected]","https://twitter.com/Olaofcrypto_/status/1798623050147229764?t=XCXO1xw5Fb0G7PMi2TWNuQ&s=19","Olaofcrypto_","1174","20656","Ola of Crypto 📊","Big Wiz🦅 || Moderator || Community Manager#SomniaNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is 0xff5c6d98b4f7098e1c84d88c249c55c76c02b3c2@EthStorage"
"135","6/6/2024","0xC708A2F1261847370cD1793fF85c3056751DDf72","[email protected]","https://x.com/actual_jes/status/1798623169684890080","actual_jes","186","1222","$JΞΖ (💚,🌙)","Crypto | Open to learning","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC708A2F1261847370cD1793fF85c3056751DDf72. @EthStorage"
"137","6/6/2024","0x62ee3E4F839e8a5e10CdCD5Ae0144C22Ff08e6fC","[email protected]","https://twitter.com/Designated_OP/status/1798623193433079887?t=S6QutoRQYbHg3-dypl4SYg&s=19","Designated_OP","534","9689","MENT..IT","On God,life is not easy,but at least I do by best.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x62ee3E4F839e8a5e10CdCD5Ae0144C22Ff08e6fC"
"138","6/6/2024","0x92101F629655837D890425a3143321f747096F6d","[email protected]","https://x.com/mattermatter023/status/1798622993423499297","mattermatter023","721","4333","matter (evm/acc) (egg/acc) 🐡(⬜️, ⬛️)⚔️","I love photography |I ❤ Jake the dog Pew Pew Pew |I'm not a Developer just a Learner and User","I am applying to participate in the EthStorage public testnet, and my miner address is 0x92101F629655837D890425a3143321f747096F6d @ETHStorage"
"139","6/6/2024","0x296f1a84D99179CF44D155B9bDa087B7859292fc","[email protected]","https://x.com/mrfreshzz/status/1798622728888672330?s=19","mrfreshzz","136","932","Blessing 💚","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x296f1a84D99179CF44D155B9bDa087B7859292fc"
"140","6/6/2024","0x2C20FeA99E5e3C5AA95294Ed9b4d6cd9FB4426F4","[email protected]","https://x.com/dcee_kay/status/1798623311842419195?s=46","Dcee_kay","287","7706","Dcee❤️","learner in web3. Creative writer. Kol @Superexet Amb @tonfish_tg Amb @TonStars_ #Tonwood STON ton wallet UQDj8PulOkHoW6eTL0THvkERzA7HYooo-PPRpTkBqzQ6jaY","I am applying to participate in the EthStorage public testnet, and my miner address is <0x2C20FeA99E5e3C5AA95294Ed9b4d6cd9FB4426F4>"
"141","6/6/2024","0xb47c06b4f2D1F59dDE75362b878d8E265f1ab8dC","[email protected]","https://x.com/chelxxxs/status/1798623345174524057?s=46&t=VIAnGZggnzx1Xog4bJgWEA","chelxxxs","957","3369","chelsbytheway","Front-End Dev👨💻 || Surviving ||| Chelsea only💙","am applying to participate in the EthStorage public testnet, and my miner address is 0xb47c06b4f2D1F59dDE75362b878d8E265f1ab8dC"
"142","6/6/2024","0xE6e2D3F60edaFE5E60B1e7E7644d7e4382e4FF97","[email protected]","https://x.com/w3irdalpha/status/1798623472652083690","w3irdalpha","116","859","W3ird.Plena 🐉 🎵 $MON $AAX 🕹️ $RCADE Tabi 🟧","💀🚬💨@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE6e2D3F60edaFE5E60B1e7E7644d7e4382e4FF97@EthStorage"
"143","6/6/2024","0x9A301590553E427D09912dF050079f3C0Ca2b665","[email protected]","https://twitter.com/youngdreezzy/status/1798623340900561360?s=46&t=IDu5mdA0-V6NP_wrz26mug","Youngdreezzy","549","5348","PublicAI|🟣 $LOL |💪🏻 XPLUS|$XTER| Tabi 🟧|OwO","Data Engineer | 1x AWS Certified Cloud Practitioner(CCP) | Crypto Enthusiast 💥","I’m applying to participate in the EthStorage public testnet, and my miner address is 0x9A301590553E427D09912dF050079f3C0Ca2b665@EthStorage"
"147","6/6/2024","0xddF2B6aF70c82C83b016367290E211A07144685e","[email protected]","https://x.com/AminuMasho44477/status/1798623474858242174?s=19","AminuMasho44477","105","1578","WHITE COIN 🟧⛈️🟣","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xddF2B6aF70c82C83b016367290E211A07144685e"
"148","6/6/2024","0xCec9ff6a4982aBc515361B40d25C38afb6a1f2C7","[email protected]","https://x.com/0xkazukii/status/1798623531179430106","0xkazukii","632","3984","Kazuki📊","Degen | I love Jpegs! | 💙 https://t.co/gWtTfKJ1Lb Army | Building…","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCec9ff6a4982aBc515361B40d25C38afb6a1f2C7"
"152","6/6/2024","0x44969dA71599507b2782108B52Be403BFC813809","[email protected]","https://x.com/omoajayi_91/status/1798623398471581963","omoajayi_91","408","2518","Dimeji TAP🚰","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x44969dA71599507b2782108B52Be403BFC813809@EthStorage"
"154","6/6/2024","0x6570936A81b6EC90725269e854a1dc3816064274","[email protected]","https://x.com/Alanine1123/status/1798623529187074070","Alanine1123","147","1068","Alanine1123 Tabi 🟧","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6570936A81b6EC90725269e854a1dc3816064274@EthStorage"
"155","6/6/2024","0xA3ab95e5157024684791EC75BEC1Fbf1A64416b5","[email protected]","https://x.com/SAdizetu/status/1798623492570833190?t=VXNU9nUfSUKG28ldtDsLiw&s=19","SAdizetu","212","1682","Isah ⚡️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA3ab95e5157024684791EC75BEC1Fbf1A64416b5"
"156","6/6/2024","0x5734E000CC03388B88134AACC6b15F8bf1c18D1C","[email protected]","https://x.com/TraderNue/status/1798623735433642447","TraderNue","160","4840","NUEL♦️.plena","DEeFy @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is <0x5734E000CC03388B88134AACC6b15F8bf1c18D1C>"
"157","6/6/2024","0xF65Fd73c481F307c8E162069E7F032E21Bc1d717","[email protected]","https://twitter.com/Kor_Ceeezer/status/1798623587693441500","Kor_Ceeezer","487","1695","Bin🔶","life is modular 💎🔥💯","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF65Fd73c481F307c8E162069E7F032E21Bc1d717 @EthStorage"
"158","6/6/2024","0xE62dcD174Ba6E51612Be9C04B9CCfD9280841a90","[email protected]","https://twitter.com/KuyikSwiss/status/1798623616999055736?t=nn7vmwrRs9tzEO4WcH9YzQ&s=19","KuyikSwiss","119","3233","Kuyik Swiss.fuel Tabi 🟧","","U am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address> 0xE62dcD174Ba6E51612Be9C04B9CCfD9280841a90"
"159","6/6/2024","0xf836072A2Eb56364EC40b686180f68F085251CE3","[email protected]","https://x.com/RaOne50742922/status/1798623949464674783","RaOne50742922","195","259","the_ghost","Web3 Wanderer...","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf836072A2Eb56364EC40b686180f68F085251CE3@EthStorage"
"160","6/6/2024","0x336E0f624CCf287Ebf71be2dc8C18FB5296c80CE","[email protected]","https://x.com/0xFred_/status/1798624082768089222?t=zbpEbtDlf7sQh0xAV4kmyQ&s=19","0xFred_","255","745","Fred💰","#livefornow #ISLM_MAXI Left to Phaver #byebyebirdie @fullforce_io @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x336E0f624CCf287Ebf71be2dc8C18FB5296c80CE"
"161","6/6/2024","0x481F5ef4B833f1e4ed72Bb3cEdaF8D10c5C1dD2f","[email protected]","https://x.com/OfficialFlokiy/status/1798624036123246962","OfficialFlokiy","3356","34332","Harrison☘ 🎵 LINGO .fuel","bullish on @Everreachlabs ☘","I am applying to participate in the EthStorage public testnet, and my miner address is 0x481F5ef4B833f1e4ed72Bb3cEdaF8D10c5C1dD2f"
"163","6/6/2024","0x243C502bd7D635C7F9562F80D25b5954EF644e25","[email protected]","https://x.com/Nnaemek5713657/status/1798624141446443327?t=cc4YLTR31IQ_hQSA04hGKw&s=19","Nnaemek5713657","497","6481","Nnaemeka ♥️ WELL3 🟣 $LOL🐐 Tabi 🟧","#crypto_hunter#Airdrops#investor#cryptotester🍷🍷🍷https://t.co/Z21HIh1zZV🍷🍷🍷https://t.co/oycZtsUtV4","I am applying to participate in the EthStorage public testnet, and my miner address is 0x243C502bd7D635C7F9562F80D25b5954EF644e25@EthStorage"
"164","6/6/2024","0xD25b4AEe754792c3fa6059fdEdc1adED34a5bCAe","[email protected]","https://x.com/Mallamabdsemiu/status/1798624059204460901?t=uufIsKKaooW3oPcSz7AmAg&s=19","Mallamabdsemiu","475","8627","Mallam Abdsemiu.ton💎 🐉 $MON","crypto expert || IT Technician || $TONamb@tonfish","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD25b4AEe754792c3fa6059fdEdc1adED34a5bCAe @EthStorage"
"165","6/6/2024","0x15Be63d32d4CFEB0bb489B9c24fEb169E1dc8F69","[email protected]","https://x.com/Charlexy04/status/1798623392247193781","Charlexy04","173","1443","Charles.xyz 🛸","• WEB3 Enthusiast • AIRDROP Farmer • HTML • Grace Personified | born hungry for success","I am applying to participate in the EthStorage public testnet, and my miner address is 0x15Be63d32d4CFEB0bb489B9c24fEb169E1dc8F69@EthStorage"
"166","6/6/2024","0x726BC96995C0Af9fc27954c37001633Bc459A7c5","[email protected]","https://x.com/MainaWaithatu/status/1798624133192020128","MainaWaithatu","8111","2659","Maina Tabi 🟧","Hebrews 12:14 || Follow=Follow || Prepare The Way The Messiah Is Coming","I am applying to participate in the EthStorage public testnet, and my miner address is 0x726BC96995C0Af9fc27954c37001633Bc459A7c5"
"167","6/6/2024","0x67d0DA084c51FBADa614da98882aAe977d1f5994","[email protected]","https://x.com/Moonnboi_/status/1798623946373476742?t=5pYBuf57hmIpG9sPm3bUdQ&s=19","Moonnboi_","156","5718","ford","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x67d0DA084c51FBADa614da98882aAe977d1f5994@EthStorage"
"168","6/6/2024","0x171C67cE5F0d05dc9DeDBb80d4496A604B93731e","[email protected]","https://x.com/RaheemMuiz2/status/1798624264092016948?t=lMm7_LGr4rZn6bwNzeuK0w&s=19","RaheemMuiz2","515","4211","cryptMuix Full Force .fuel ♣️","Full stack web 3 grinder🦾🦿| Nft And Crypto🧾| AMBASSADOR : @TanssiNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is 0x171c67ce5f0d05dc9dedbb80d4496a604b93731e @EthStorage"
"169","6/6/2024","0xFF774ec595dC3D2bC5159aaB1c270E671E2Ee700","[email protected]","https://x.com/JustAirdrop24/status/1798624330995384670","JustAirdrop24","209","5622","Justairdrop24.eth 🛡️🐉 $MON💚 🌙$XC 👁️","Content moderator @Uhivesocial @HoudiniFinance#byebyebirdie#Left to Phav#ISLM_MAXI💙 https://t.co/wURsfiUbQu Army#CloudBase is a multi-functional DEX on #BASE.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFF774ec595dC3D2bC5159aaB1c270E671E2Ee700@EthStorage"
"170","6/6/2024","0x3E443CF1936FaD86A55791Ee435f0e0110Df2Ae3","[email protected]","https://x.com/ShoiveMd/status/1798624092054237623","ShoiveMd","230","8662","Md Shoive 🐉 $MON Tabi 🟧 🕹️ $RCADE ♣️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3E443CF1936FaD86A55791Ee435f0e0110Df2Ae3@EthStorage"
"171","6/6/2024","0x787D55630b0b81F4F3497B55a3ac334033B83616","[email protected]","https://x.com/Dukemantle/status/1798624139928105157?t=YGb-dUb4xnw79RkokHvFeg&s=19","Dukemantle","35518","656","Duke.eth","Manners Maketh Man.","I am applying to participate in the EthStorage public testnet and my miner address is this 0x787D55630b0b81F4F3497B55a3ac334033B83616 @EthStorage"
"172","6/6/2024","0x683e21E319242F3a552537adc1B922B3084b0814","[email protected]","https://x.com/kishorekumarRK1/status/1798624473094230236","kishorekumarRK1","232","4913","kis.plena 🐉 $MON🕹️$RCADE❤️♦️♣","Caught in Web3 🕸• Expert Community Mod♻️ •Collab Manager🤝•DM 📥 let's make that Community thrive!","I am applying to participate in the EthStorage public testnet, and my miner address is 0x683e21E319242F3a552537adc1B922B3084b0814 @EthStorage"
"177","6/6/2024","0x617cA4556eBb9369Feb6880bed01ab5fF612ae05","[email protected]","https://x.com/mechakc14/status/1798624751797301644","mechakc14","208","1300","yami🟧 ⛈️ 🟣","","@EthStorage @EthPrague @MetaMask @LineaBuild @0xMantle @1inch @zkLink_Official @qc_qizhou I am applying to participate in the EthStorage public testnet, and my miner address is 0x617cA4556eBb9369Feb6880bed01ab5fF612ae05"
"178","6/6/2024","0x39148eC5157271e93796D098Fb1B62Dd4DfD04db","[email protected]","https://x.com/osaz_pedro/status/1798624915832352927?t=Z3UwV80s8t_jbIWHIdUUJA&s=19","osaz_pedro","565","1207","Iruobe Osazogie","God Over Everything 💙Chelsea FC|Tech|Developer|Photographer|Engineer","I am applying to participate in the EthStorage public testnet, and my miner address is 0x39148eC5157271e93796D098Fb1B62Dd4DfD04db@EthStorage"
"179","6/6/2024","0x7b46A6f8fA248431aD447afeF2fFB5a1fabc86C2","[email protected]","https://x.com/kryptokulfon/status/1798625011248537743","kryptokulfon","224","1257","kryptokulfon fuel ♣️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7b46A6f8fA248431aD447afeF2fFB5a1fabc86C2@EthStorage"
"181","6/6/2024","0x73D43dd9Ac2C0Fd004286F7a13F51bec163efB2C","[email protected]","https://x.com/zakkycrypt/status/1798624944995360861?t=QgnaWPEM8Oxk8yj4ExPP5A&s=19","zakkycrypt","465","1349","zakkycrypt.uni.eth 🐞 $GAME | LINGO","Blockchain development student || Blockchain enthusiast || meme poster || smart contract security learner @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x73d43dd9ac2c0fd004286f7a13f51bec163efb2c"
"182","6/6/2024","0x82f13C83D770491b875948F8068fd0c4355990c4","[email protected]","https://twitter.com/Bravehill180/status/1798624847595278818?t=h4m-vebp2hHXbXORtCLj3g&s=19","Bravehill180","111","1433","Bravehill | ZAP Chain ⚡️ Tabi 🟧","","I am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address 0x82f13C83D770491b875948F8068fd0c4355990c4"
"183","6/6/2024","0x0b6dc09FB789bE81a1eFF32ceF3C504B7033CeBC","[email protected]","https://x.com/awoyefao/status/1798624671912570954?s=46&t=VBgIjZ01Q-3pO4oVx_1gUA","AwoyefaO","304","13103","Freeman_ore(evm/acc)","❤️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0b6dc09FB789bE81a1eFF32ceF3C504B7033CeBC @EthStorage"
"184","6/6/2024","0x3df12b5a34fEceeD2a2F9072550FcC3965779B55","[email protected]","https://x.com/Defiwithabdul/status/1798625101078040762","Defiwithabdul","243","1430","Abdulrahman","","I am applying to participate in the EthStroge public testnet, and my miner address is 0x3df12b5a34fEceeD2a2F9072550FcC3965779B55 @EthStorage"
"185","6/6/2024","0x6818C4101FCd6C80DD33504C68Ce899C05a88D38","[email protected]","https://x.com/Dawn1000Dawn/status/1798625090990751788","Dawn1000Dawn","258","999","yahuze.eth |🐉 $MON 🟧 🕹️ $RCADE .fuel","@Mint_Blockchain 😼 $MOJO#CILBuyBack @fullforce_io","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6818C4101FCd6C80DD33504C68Ce899C05a88D38"
"186","6/6/2024","0x8cF1186c00FeBb60D8eD571a074fd08BfaAB7B7B","[email protected]","https://x.com/SAMoblitz/status/1798625343991165047?t=55O9n3t_QDnd-NyYEOQzTw&s=19","SAMoblitz","333","3575","Biyoola 🟧 Tabi","👉😑 NFT enthusiast|| Web3 Content Writer || Threadoor, #Ordinals Enjoyooorrrr 🟧🟠@playsomo | $SOMO #SomniaNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8cF1186c00FeBb60D8eD571a074fd08BfaAB7B7B"
"189","6/6/2024","0xCF53Df4b7AA00563AA80F004629F7168d3B518CA","[email protected]","https://x.com/that_kogi_boy/status/1798624925579874474","that_kogi_boy","4046","8943","Unemi UX🥷🏾♦️ .plena","Product Designer | UI/UX Designer | No-Code Dev","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCF53Df4b7AA00563AA80F004629F7168d3B518CA @EthStorage"
"191","6/6/2024","0x4b715bd44662B774Eb95e55fE943e78b78e3D047","[email protected]","https://x.com/kid_lamarr/status/1798625621234561395?s=46","kid_lamarr","330","1703","K:(","WEB3 WORKER| NFTS | AIRDROPS","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4b715bd44662B774Eb95e55fE943e78b78e3D047"
"192","6/6/2024","0x0fcAB00173BB82d3329B0e9ac244E94d6DE06085","[email protected]","https://x.com/cryptorando2/status/1798625706295066702?t=SaWNnvv3WLgPVB10LkOsRg&s=19","cryptorando2","374","3530","rando_boy","🕊️ 🌊 @playsomo | $SOMO Undeads","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0fcab00173bb82d3329b0e9ac244e94d6de06085"
"199","6/6/2024","0xaffE15eEc45b68835cc9E5B4Ab85dD5deaE8e70b","[email protected]","https://twitter.com/Achinnys1/status/1798625402199617696?t=UIw3xi5wQYdg_UBHVm_d4g&s=19","Achinnys1","165","5262","Chinelo 🐻⛓️ ♣️ fuel plena Tabi 🟧 🟧 ⛈️ 🟣","Welcome to my page, '💎 $FYN crypto enthusiast, threador, airdrop and a trader @binance. 🔮 Wiz @AvalonFinance_","I am applying to participate in the ETHSTORAGE public testnet, and my miner address is 0xaffE15eEc45b68835cc9E5B4Ab85dD5deaE8e70b @EthStorage"
"202","6/6/2024","0x4f2C4bd03dF730B86291251bb4C88D66f7528F86","[email protected]","https://x.com/joyhomies/status/1798626058318823870","joyhomies","107","2980","James john Tabi 🟧| Runes Chain 🟧 🐞 $GAME 🧡 Ord","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4f2c4bd03df730b86291251bb4c88d66f7528f86 @EthStorage"
"204","6/6/2024","0x0561e974CAA5324fE69736352B7aB740415E3B7C","[email protected]","https://x.com/mac_KMV/status/1798626052480311335?t=frWDeB0IHV01o7hoZh0kkg&s=19","mac_KMV","903","9973","KC lingo","Think always|| EVT members only🐍|| .fuel Goal: Unbelievable liquidity||","I'm applying to participate for Ethstorage testnet and my miner address is: 0x0561e974caa5324fe69736352b7ab740415e3b7c. @EthStorage"
"205","6/6/2024","0x2ab594D646CEE127DDbe9A06479Dd82F6Ef99bC7","[email protected]","https://x.com/SeRaph5436/status/1798626413958074695","SeRaph5436","162","983","Raph___$FAR(⬜️, ⬛️)(🐉 $MON)","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2ab594D646CEE127DDbe9A06479Dd82F6Ef99bC7 @EthStorage"
"206","6/6/2024","0xC51FBF27F5D4344Bc0402706dEF681068D9e7c91","[email protected]","https://twitter.com/har_legbe/status/1798624637418623327?t=n-gmZ2dnDAJQyQnearFbsA&s=19","har_legbe","261","1245","mance ryder👑 🟣 $MOJO $BUBBLE 🫧🫧🫧","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC51FBF27F5D4344Bc0402706dEF681068D9e7c91 @EthStorage"
"208","6/6/2024","0x8d68BFBbc79602923c45aB56B3715399aCb2822b","[email protected]","https://x.com/Made_prince05/status/1798626349068009565","Made_prince05","595","67571","readthisplease.plena 💛 Tabi 🟧⛈️🟣 🐉 $MON $UNIO","Product Designer| @IntractAmbassador @Mint_Blockchain (🎮,🟢)","I am applying to participate in the ETHStorage public testnet, and my miner address is 0x8d68BFBbc79602923c45aB56B3715399aCb2822b @EthStorage"
"209","6/6/2024","0x73Eeb4FAb93C5437dc12ec08b296fBf65DF5aa68","[email protected]","https://x.com/yully_crypto/status/1798626425156874658","yully_crypto","159","1047","21st Monolith, 🐞 $GAME, 🌏 🇰🇷","015b, Dream theatre, #Bitcoin","I'm applying to participate in the EthStorage public testnets, and my miner add is 0x73Eeb4FAb93C5437dc12ec08b296fBf65DF5aa68 @EthStorage"
"210","6/6/2024","0x7b44b970a7bB11140C3fbEE96273044FE203b2d9","[email protected]","https://x.com/MusarafImol56/status/1798626319183515975?t=g8voJ4GMFYlAcqm0GGC0yA&s=19","MusarafImol56","229","6701","Mohammed musaraf 🥷Tabi 🟧","Blockchain lover | trader | Top-notch Content Creator 💎 $FYN","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7b44b970a7bB11140C3fbEE96273044FE203b2d9@EthStorage"
"211","6/6/2024","0xfA2230441f3A2FdFB39D1c2149CEd10Ec8bF6463","[email protected]","https://x.com/Lizzy06876158/status/1798625606730723532?t=Zmsvf-cw4sMTYD6bOddwbA&s=19","Lizzy06876158","108","1408","Ⱡłⱬ฿ʉ₦💙","Data Analyst✍🏻 || Crypto enthusiast📈📉|| Airdrop hunter || Moderator || ฿ŁⱠⱠŁØ₦₳ŁⱤɆ Ł₦ ₮ⱧɆ ₥₳₭Ł₦₲.🅂🄴🅅🄴🄽 🄵🄸🄶🅄🅁🄴 🅃🄰🅁🄶🄴🅃🥰.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xfA2230441f3A2FdFB39D1c2149CEd10Ec8bF6463@EthStorage"
"212","6/6/2024","0x4D029f0Ed5603Cf2944A243330D59e37EA1751b4","[email protected]","https://x.com/justbrunoc/status/1798626477912797467?t=yVxmndMRzqbTz_10iy6KeA&s=19","justbrunoc","1687","10975","Bruno🥷","So the intention is nothing but greatness@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4D029f0Ed5603Cf2944A243330D59e37EA1751b4 @EthStorage."
"213","6/6/2024","0xD6E8d12B350b6EbDD77285fc0AA0994Ce62C343d","[email protected]","https://x.com/lordgood745/status/1798626686512316813","lordgood745","503","889","Good Lord","God is good ⚙️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD6E8d12B350b6EbDD77285fc0AA0994Ce62C343d@EthStorage"
"214","6/6/2024","0x2F052ed40c2796c61662B5a605E3F3545Ce7C276","[email protected]","https://twitter.com/isabelking04/status/1798626705902620992?t=Luod5PAWvj1VlaSmHFyJ6g&s=19","isabelking04","443","4027","KinG 👑 🚀MATR1XCoin 🐕🌖","Main acct got suspended: @rotrking| @Laika_Layer2 | Bitflow 🌊🏄♂️ | @Bitflow_Finance | Arsenal❤️💯 | Web3 Product Tester | Agbafian","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2F052ed40c2796c61662B5a605E3F3545Ce7C276"
"215","6/6/2024","0x4Be9C3D9CF689e6339BC3c33aB04A27b98ccC61B","[email protected]","https://x.com/bosss_here/status/1798617880436887578?t=paFrgEjmBFhIVrMiAc96XA&s=19","bosss_here","111","1204","bosshere | DIN⏳","Core GODin @din_lol_ DIN⏳Love to play with Graphics & AI bots.Connect to know more.....","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4Be9C3D9CF689e6339BC3c33aB04A27b98ccC61B @EthStorage"
"216","6/6/2024","0x6157bfaB673b086782E17e5936B419352bB0e88a","[email protected]","https://x.com/GloriaOjih/status/1798626319972094128","GloriaOjih","153","1402","Chiflor 🧡 Ordzaar","We are in to catering and pastry 🎂🍰 services.@playsomo | $SOMO@playsomo | $SOMO@playsomo | $SOMO@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6157bfaB673b086782E17e5936B419352bB0e88a@EthStorage Thank you 🙏"
"218","6/6/2024","0x1304bDF42BE43382e2E53a05cA51dD6C85f41E3B","[email protected]","https://x.com/joeljk275/status/1798626738353930731?s=46&t=3_LZU6vVAEnfqY7llyMyMg","Joeljk275","185","613","Joel","trying everything to make it out 📈","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1304bdf42be43382e2e53a05ca51dd6c85f41e3b@EthStorage"
"220","6/6/2024","0x7CECF403B46D3D51c7780dDf18c209460fCe1B57","[email protected]","https://x.com/yusuff4u2c/status/1798626845359051232","yusuff4u2c","336","1167","Yusuff","Memento mori, amor fati.🎶:Olamide, Smith and Thell, Hozier.⚽:Newcastle United.@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7CECF403B46D3D51c7780dDf18c209460fCe1B57"
"223","6/6/2024","0x07Fc5F621C13D339C08C68DF39779986Afa5cf2B","[email protected]","https://x.com/0xHumpaul/status/1798627299849609475?t=dO3523LwNrZEpKiTFSp7Pw&s=19","0xHumpaul","486","6858","WΞB3 ØTAKU ❁ 𓃵","Profit Maxi | NFTs Left to Phaver | #byebyebirdiehttps://t.co/ph4z9LZPYn ⚙$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x07fc5f621c13d339c08c68df39779986afa5cf2b@EthStorage"
"224","6/6/2024","0xE6C5a73BEd45D800F7Eb2b0856d170Ed97218BeA","[email protected]","https://x.com/EdeOtsonu/status/1798627477251854399?t=t2oGhr3paaDsQCm4vIO8Hg&s=19","EdeOtsonu","137","7410","King Maker","@playsomo | $SOMO | ZAP Chain ⚡️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE6C5a73BEd45D800F7Eb2b0856d170Ed97218BeA"
"225","6/6/2024","0xD6804905152b30CE4D9a0cCb6aAD7E06b8f02212","[email protected]","https://x.com/mankey0x/status/1798627251728363935?t=PM0jEpr7Vn7A8JXvxc0UaQ&s=19","mankey0x","244","2338","Mankey","art 🎨","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD6804905152b30CE4D9a0cCb6aAD7E06b8f02212 @EthStorage"
"227","6/6/2024","0xF48Df5d1FE5844198d5A570c760903C7C85b712c","[email protected]","https://x.com/azeez_kowiyu/status/1798627442623701462?t=K1YnC-0XP1kblB5L6zVxgQ&s=19","azeez_kowiyu","584","12286","horlarz","crypto trader #ISLM_MAXI@tonnel_network💎 $FYN","I am applying to participate in the EthStorage public testnet, and my miner address is. 0xF48Df5d1FE5844198d5A570c760903C7C85b712c"
"228","6/6/2024","0xC84AEAFF3dCa1c8F90CF1AEEcEf6439E36a6128F","[email protected]","https://x.com/sunilbugalia7/status/1798627649755242594","sunilbugalia7","749","6672","bugalia.plena 🐉 $MON 🧡 Ordzaar","Money is made by sitting, not trading. 🇮🇳 crypto lover ! #NFT #BNB #Bitcoin #ETH @Mint_Blockchain, #mintblockchain #SomniaNetwork #Voiagers @cvex_xyz ZKM","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC84AEAFF3dCa1c8F90CF1AEEcEf6439E36a6128F @EthStorage"
"230","6/6/2024","0x9740341142532b3c3b334384f6C978a9a80b9c45","[email protected]","https://x.com/ffllegion/status/1798627769150308423?t=2hscDXLAhz7xmzJT_k3bKw&s=19","ffllegion","4173","13398","Tolu 🦉","","I am applying to participate in the EthStorage public testnet, and this is my miner address 0x9740341142532b3c3b334384f6C978a9a80b9c45@EthStorage"
"231","6/6/2024","0x33aF61DC04d693D53eb25B0835DB0B6A8ec7421e","[email protected]","https://x.com/adetifa_pr37233/status/1798627593937395790","adetifa_pr37233","151","975","Eugenekrabs","💙","EthStorage 2nd Public Testnet Campaign Applicationverification of my wallet address0x33aF61DC04d693D53eb25B0835DB0B6A8ec7421e"
"232","6/6/2024","0x8E4E3660836b373c63baF05ec92BE6Ff776032ef","[email protected]","https://x.com/nftsway6/status/1798627784195215829?s=46&t=jPoK7tq1u35Hw2elDJxmaA","NFTsWay6","523","8653","DuDü🤎✧ 🐕🌖","Graphic Designer||NFTs Enthusiast||BofabDao|| @Laika_Layer2 || @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8E4E3660836b373c63baF05ec92BE6Ff776032ef @EthStorage"
"233","6/6/2024","0xB597f282Cc827535fc6Ab6AFda11aEC90A8A8673","[email protected]","https://twitter.com/mid21id/status/1798627797176598799?t=Sv1RNydV4UuXVWzVxGaZvQ&s=19","mid21id","799","8630","chickpotato 🐞 $GAME 💜AILayer","WTF AM I DOING HERE!!!!!!","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB597f282Cc827535fc6Ab6AFda11aEC90A8A8673"
"234","6/6/2024","0xdd2A4dBf3fdc4ae3B34a11797f51350A4306F1bb","[email protected]","https://x.com/itsphoenix_eth/status/1798627896053166156","itsphoenix_eth","124","904","itsphoenix.eth","a crypto, tech and astronomy enthusiast","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdd2A4dBf3fdc4ae3B34a11797f51350A4306F1bb"
"235","6/6/2024","0x567695439F8bEEf47C8B07c7ba4508A820884Ee7","[email protected]","https://x.com/keehinde/status/1798627835575488602","keehinde","111","1011","Kyotosensei ⚡. $ARCA| $BEYOND| $XTER| Tabi 🟧","I'm allergic to bullshit...#JINArmy","I am applying to participate in the EthStorage public testnet, and my miner address is 0x567695439F8bEEf47C8B07c7ba4508A820884Ee7 @EthS"
"236","6/6/2024","0x896EadDE7d17121EabAd7B5019BEF242f37aE1A1","[email protected]","https://x.com/tecomoney/status/1798628162605400428?t=nK17mIrOw9v18m0FsXk-YA&s=19","tecomoney","260","51","TECO","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x896EadDE7d17121EabAd7B5019BEF242f37aE1A1@EthStorage"
"237","6/6/2024","0xBb41c02e14a7c035136ccA612b30F5700449CFc0","[email protected]","https://x.com/0xHardLuck/status/1798627845218210202?t=Abgg_4TVtPOjINY9ZRg9Rw&s=19","0xHardLuck","292","906","Hard Luck 🤞 | ❤️ memecoin | 🐉 $MON","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xbb41c02e14a7c035136cca612b30f5700449cfc0"
"238","6/6/2024","0x49AF384a373e57C5b536A5c9458F65757Dbc3F13","[email protected]","https://x.com/Kingz_chuks/status/1798628071068905562?t=FZOuNY3Cdj4koEl3OrOl7g&s=19","Kingz_chuks","109","1265","Kingz $BUBBLE | ZAP Chain ⚡️","#ISLM_MAXI","I am applying to participate in the EthStorage public testnet, and my miner address is 0x49af384a373e57c5b536a5c9458f65757dbc3f13"
"240","6/6/2024","0x9743D8C8C4482752F6aD92BB45EF75276e646123","[email protected]","https://x.com/keymowyse1/status/1798628225087861171?t=LuCFKYCTGqxW_VbqH6rlMA&s=19","keymowyse1","1186","3984","Wyse| Ultiverse⚡️🐑","Servant of Allah☪️ Agric&crypto farmer 🧑🌾 Your legendary community moderator @cypher_deploy | connect with me https://t.co/XCqkbVjZDC #BuildingTheFuture","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9743D8C8C4482752F6aD92BB45EF75276e646123@EthStorage"
"242","6/6/2024","0x60552d4685252e4c6AF6cebd8298bA2eEB0ead5b","[email protected]","https://x.com/kingthedoer/status/1798628127142457652","kingthedoer","103","280","🐕🌖 The Doer","Crypto Enthusiast | Airdrops | Arsenal | @Laika_Layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0x60552d4685252e4c6AF6cebd8298bA2eEB0ead5b"
"244","6/6/2024","0x14C5Ac9173c25bC93d3D0224F9b0e4AFfd839970","[email protected]","https://x.com/chidera_godswil/status/1798628651363381500?t=uF0BpIsHf8Tv7YLzxTG3yg&s=19","chidera_godswil","265","5805","Chidera 🔑Superfans","let's bubble","I am applying to participate in the EthStorage public testnet, and my miner address is 0x14C5Ac9173c25bC93d3D0224F9b0e4AFfd839970 @EthStorage"
"245","6/6/2024","0xe67A2c1b9424a1e22E155755E0DCa7B9e9b6da30","[email protected]","https://x.com/notgibup/status/1798623465551036774","notgibup","1099","1412","notgibup.plena","web3 to the moon","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe67A2c1b9424a1e22E155755E0DCa7B9e9b6da30@EthStorage"
"246","6/6/2024","0x2be02074a9eD989d9Eb0e3c54CFEF56234C32347","[email protected]","https://x.com/Niyiboy_iam/status/1798628749912793565","Niyiboy_iam","251","3408","Bigdon🦅","NFT collector... I love you forever but I pray we don't end up together ❤️....Time seeker @MetaDos","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2be02074a9eD989d9Eb0e3c54CFEF56234C32347"
"248","6/6/2024","0xe771f9202A002e4E3D791D08b75E94708cF85621","[email protected]","https://x.com/omoiyaonirobo/status/1798628497159823866?t=VJ7gkAx5D1jBdfIc_i880g&s=19","omoiyaonirobo","2349","10464","Afolabi🐉$MON $XTER $BLUAI $LINGO $BVR","http $beyond","I am applying to participate in the EthStorage public testnet, and my miner address is. 0xe771f9202A002e4E3D791D08b75E94708cF85621"
"249","6/6/2024","0xd7a77D3f3bc772fFd5e26d4ac15Ce0461dd2F88B","[email protected]","https://twitter.com/Cryptonicetrade/status/1798628759458955590?t=EXmhJWwV3jXEdrkI653hQA&s=19","Cryptonicetrade","1138","6965","Cryptonice 🥷","❓","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd7a77d3f3bc772ffd5e26d4ac15ce0461dd2f88b@EthStorage"
"251","6/6/2024","0x9688E63Dca465a6497676CC9cE3dce06D2Ff42Ec","[email protected]","https://x.com/KINGots7/status/1798627513897558427?t=cZyoPFjcitfD4KtnQ7sO6w&s=19","KINGots7","208","3543","K 👑","Passionate crypto enthusiast, cultivating both digital assets and the land. Influencing change one blockchain at a time. Let's grow together! 🌱💰 #CryptoFarmer","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9688E63Dca465a6497676CC9cE3dce06D2Ff42Ec"
"252","6/6/2024","0xA076730b83c14DB559aEE49633ade3fAFF344FaB","[email protected]","https://x.com/chiemerie_64131/status/1798628803406966861?t=pa-ims14FuoV1_tGKTyb7w&s=19","chiemerie_64131","189","1452","Joel Carv","everything crypto 🚀💥#JINArmy$JIN","I am applying to participate in the EthStorage public testnet, and my miner address is <0xA076730b83c14DB559aEE49633ade3fAFF344FaB>"
"253","6/6/2024","0xffb4d851facAC04Cd14fc62C3031A4ee2f116b63","[email protected]","https://x.com/emyusdik/status/1798628208151322903","emyusdik","184","1913","Emyusdik.. $EVOX","Sini atuh.... I Full Force@fullforce_io","I am applying to participate in the EthStorage public testnet, and my miner address is 0xffb4d851facAC04Cd14fc62C3031A4ee2f116b63@EthStorage"
"255","6/6/2024","0xDD4A24700BECFaC81DD22AFB74BDC61809BD24D6","[email protected]","https://x.com/HenreeC/status/1798628568798462129?t=Q9rk1fSvvZT2WImA5_YNIg&s=19","HenreeC","143","845","Henry","Courage in adversity. Not everything is OK. we must stand up without fear. # #EnoughIsEnough@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xDD4A24700BECFaC81DD22AFB74BDC61809BD24D6@EthStorage"
"257","6/6/2024","0xa48Daa1eD6785dA280CfDC08902Af5D8b215B811","[email protected]","https://x.com/j3tbrainz/status/1798629135658733942","j3tbrainz","370","6127","Node","Expressjs","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa48Daa1eD6785dA280CfDC08902Af5D8b215B811@EthStorage"
"258","6/6/2024","0x21678bcEaFb4E83fBd85d39EcA5fD55fA86d7476","[email protected]","https://x.com/crypto_light01/status/1798629571581129134","crypto_light01","159","1324","Cyb3r_Light","Cybersecurity | #CRYPTO | DEFI | Web3 |","I am applying to participate in the EthStorage public testnet, and my miner address is 0x21678bcEaFb4E83fBd85d39EcA5fD55fA86d7476@EthStorage"
"259","6/6/2024","0xaBc7A083519258BEa1375F73eC9752F7cA3d6ad8","[email protected]","https://x.com/GreatOvie224/status/1798629284124533113?t=LTAlXN_bgo2hfkpeEgOV8Q&s=19","GreatOvie224","111","282","Great♣️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xaBc7A083519258BEa1375F73eC9752F7cA3d6ad8 @EthStorage"
"260","6/6/2024","0x87e2f52AfDedDb7c8269e1f8774903C97e5EdD56","[email protected]","https://twitter.com/RealCulture100/status/1798628810411442532?s=19","RealCulture100","214","1823","Culture","#Crypto Enthusiast, Web3Live Love laugh 🥇@playsomo | $SOMOIFB💯","I am applying to participate in the EthStorage public testnet, and my miner address is 0x87e2f52AfDedDb7c8269e1f8774903C97e5EdD56"
"261","6/6/2024","0xAd38Ae28aa9E9d3DC6Aca67689cdcaeDec552891","[email protected]","https://x.com/ozi_anavami/status/1798629773205524683","ozi_anavami","643","37580","OBA of CANADA 🇨🇦","CM, - https://t.co/4NQt7VlAVm… @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xad38ae28aa9e9d3dc6aca67689cdcaedec552891"
"262","6/6/2024","0x454656E398a75A6819D637574e07b05182BD5d5E","[email protected]","https://twitter.com/Hezee01/status/1798629678804312368?t=UqWDB0UiPIQs46fboJNnQQ&s=19","Hezee01","209","1022","Hezee","🛸","I am applying to participate in the EthStorage public testnet, and my miner address is 0x454656E398a75A6819D637574e07b05182BD5d5E"
"263","6/6/2024","0xab8aFc98cd929967686234bc95Ed685C8fb01F20","[email protected]","https://x.com/JUDE_20003/status/1798629916013167025","JUDE_20003","367","3825","JODEZ_ 🐉 $MON 💜AINNLayer2 $BEYOND","Crypto and Nft InvestorSolana sensei number 1 fan","I am applying to participate in the EthStorage public testnet, and my miner address is 0xab8aFc98cd929967686234bc95Ed685C8fb01F20 @EthStorage"
"264","6/6/2024","0x29A2e3De2C1f108AefEb76179491B087d14D4bAE","[email protected]","https://x.com/MOG_only/status/1798629586198200771?t=CvCDwQfqnFwQwrsLlSkEDg&s=19","MOG_only","1205","25161","The Only MOG 🌐 𝕏","Chelsea 💙| Web3 | Sol Degen @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x29A2e3De2C1f108AefEb76179491B087d14D4bAE @EthStorage"
"265","6/6/2024","0xa57d39FcE38B7cE658e7309C8BF588fa80AFDba6","[email protected]","https://x.com/ayo_ylx/status/1798629626534859138?t=afdtT3ciqyPYU6WxguYoHQ&s=19","ayo_ylx","726","43004","ylx","profit maxi.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa57d39FcE38B7cE658e7309C8BF588fa80AFDba6 @EthStorage"
"267","6/6/2024","0x995CDdc13aE12c1FF226675BD85c0619E16c12fa","[email protected]","https://x.com/official_pato7/status/1798629527759052810","official_pato7","131","1193","➰P🔜",".","I am applying to participate in the EthStorage public testnet, and my miner address is 0x995CDdc13aE12c1FF226675BD85c0619E16c12fa @EthStorage"
"268","6/6/2024","0x03736a90Bc1a17df20C49AB365E6D9a7522eCfd5","[email protected]","https://x.com/No_limit_Saint/status/1798630138529431983","No_limit_Saint","238","3295","👤","Lowlife…upping ▶️highlife 🔝| Fuelet","I am applying to participate in the EthStorage public testnet, and my miner address is 0x03736a90Bc1a17df20C49AB365E6D9a7522eCfd5 @EthStorage"
"269","6/6/2024","0x5ce48BF40Aaa8E9DA4cA40743360C15A98B3a54B","[email protected]","https://x.com/Whitemandis/status/1798630062167863318?s=19","Whitemandis","5691","6917","Whitemandis","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5ce48BF40Aaa8E9DA4cA40743360C15A98B3a54B@EthStorage"
"270","6/6/2024","0x992a02C63b7b5d374C3660176ad7Baa30222a003","[email protected]","https://x.com/SumitSi57362104/status/1798630434303266837","SumitSi57362104","464","7546","dexterg.bit | 🐉 $MON","❤️🔥#Crypto Enthusiast🐂#Airdrop Hunter🥂Trader 💸 Web3 Believer | dexterg.apt |","I am applying to participate in the EthStorage public testnet, and my miner address is 0x992a02C63b7b5d374C3660176ad7Baa30222a003"
"275","6/6/2024","0x1d816A7083C8D17DcCe41F2Bfa8C373c7Affe34b","[email protected]","https://x.com/WhaleAndreww/status/1798630472752439577?t=PW_4GEzOEkJJCVXmmc-uTA&s=19","WhaleAndreww","211","894","Whale Andrew","I will lend to nations and will not borrow 🤲2X bear market survival-in crypto since 2014","I am applying to participate in the EthStorage public testnet, and my miner address is: 0x1d816A7083C8D17DcCe41F2Bfa8C373c7Affe34b @EthStorage '"
"276","6/6/2024","0x1B5009FF7d8B536f35CBe08E247E6dceeEcd85d1","[email protected]","https://x.com/sendusd/status/1798631112346079423","sendusd","131","773","sendusd.sats🛸🐐","bounty chaser @aptoslabs | trustandobey.apt","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1B5009FF7d8B536f35CBe08E247E6dceeEcd85d1@EthStorage"
"278","6/6/2024","0x130B92914a1f470Ab27Ba00957aEa9b9Bc98A70f","[email protected]","https://twitter.com/FelixRim/status/1798631377493201399?t=eHcI2fMj4q6udsrpt6IxiQ&s=19","FelixRim","213","8368","❤ $SG | ZAP Chain ⚡️$STYLE","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is <0x130B92914a1f470Ab27Ba00957aEa9b9Bc98A70f> @EthStorage"
"281","6/6/2024","0x8e11ad6f38f0cd2a960cf6a30F3d6adaBba42804","[email protected]","https://x.com/Chibuike350/status/1798631718238425206","Chibuike350","317","11252","Chibuikem","Music carrier , Music 🎶 freaks .. game lover💕 ..joker♥️♥️.I WILL FIND FAVOUR IN THE HANDS OF GOD AND MAN.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8e11ad6f38f0cd2a960cf6a30F3d6adaBba42804"
"283","6/6/2024","0x37a51D1E920F3Cc9cA750EB870086AB4b9f1527d","[email protected]","https://twitter.com/FavourEzeatu/status/1798631240444281142?s=19","FavourEzeatu","364","6354","🦇","NEXT BULL RUN MILLIONAIRE 🚀🐐🔝🔥 BROTHER OF @heymma7","I am applying to participate in the EthStorage public testnet, and my miner address is 0x37a51D1E920F3Cc9cA750EB870086AB4b9f1527d"
"287","6/6/2024","0x9f98520b367a96C79F06B6E33e30d438Cb62900E","[email protected]","https://twitter.com/UniqueM23/status/1798632099483967902?t=ucw4fbONdNcsf8mEItp35w&s=19","UniqueM23","1186","38290","Uniquem23. Fuel .Plena ❤️ $BLOCK .","just someone who's in love with the Web3 crypto community. Tech Fanatic 💻⌨️🖱️👁️ @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9f98520b367a96C79F06B6E33e30d438Cb62900E"
"288","6/6/2024","0x7F4FA39C102458e6E8530e33794B836f2077F6C5","[email protected]","https://x.com/Ekanem_10/status/1798632081683255793?t=j1lIl3tQ5XrMH5KzEV7U0Q&s=19","Ekanem_10","142","2606","ndifreke 🔫 StarMech 🐞 $GAME","PROUD $MAHA PATRON🟡","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7F4FA39C102458e6E8530e33794B836f2077F6C5"
"289","6/6/2024","0xF83d6e973Ac503F1E432A669a0f841910bdB3D64","[email protected]","https://x.com/rose_cobham/status/1798632279318868193","rose_cobham","569","2111","Rose Cobham .fuel 🐉 Tabi 🟧 .NYAN🔫😼 plena","Interested in learning and understanding the basics of CRYPTO CURRENCY? You are welcome.Making crypto knowledge accessible, one lesson at a time.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF83d6e973Ac503F1E432A669a0f841910bdB3D64 @EthStorage"
"291","6/6/2024","0xF3500628bF0a405cBa5934C3542bE6a1403Cf9DF","[email protected]","https://x.com/Alyssafoxee/status/1798632340597645673?t=tABDzRJ2R1MWJJARgEe88w&s=19","Alyssafoxee","150","879","Akinlabi Sodiq Akindeji","Man of discipline","I am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address>0xF3500628bF0a405cBa5934C3542bE6a1403Cf9DF"
"293","6/6/2024","0xc69494DF1367Ff3a8D37111e2FDF6647D5Bc9E88","[email protected]","https://x.com/reus_asr14/status/1798632343495954709?s=19","reus_asr14","156","268","Shiroo ✨ 🟧 ⛈️ 🟣","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc69494DF1367Ff3a8D37111e2FDF6647D5Bc9E88"
"294","6/6/2024","0xf4D7530423289622Cb99833a0a169B216e3Bb49E","[email protected]","https://x.com/str_oll/status/1798632563025867078?s=46","Str_oll","232","2198","Toby","oh ye of little faith","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf4D7530423289622Cb99833a0a169B216e3Bb49E@EthStorage"
"295","6/6/2024","0xCB1b320D9baf1b7DA051ac8aB1B3cf1f5B61a250","[email protected]","https://x.com/diva0431/status/1798632372088520782","diva0431","269","1381","Stacy 👑| 🐉$MON | $SOMO","Money minded friends only 💯|@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCB1b320D9baf1b7DA051ac8aB1B3cf1f5B61a250"
"296","6/6/2024","0xE8BD131f466d1b7e60dB89883D6eb891170fd065","[email protected]","https://x.com/YuniNelson/status/1798632331974152448","YuniNelson","103","2333","yuni nelson⚔️⚔️","Collab Manager|| Collector Civil Engr @monad_xyz @MadLads holder@nillionnetworkUnder 24Web2 and 3Life humbles me everyday 😪","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE8BD131f466d1b7e60dB89883D6eb891170fd065@EthStorage"
"297","6/6/2024","0xAD0c9a493605B3058B84dEe3cc0647CD71827aE5","[email protected]","https://twitter.com/nuel_thefirst/status/1798633182419681696?t=R2dSBoO-SMnu56VWOcMtag&s=19","nuel_thefirst","235","2245","Nuel🤓🐞$GAME","Manchester united ❤️ || puns","I am applying to participate in the EthStorage public testnet, and my miner address is 0xAD0c9a493605B3058B84dEe3cc0647CD71827aE5"
"300","6/6/2024","0x7d18ea8C87796Abd43a2F8F275FB17625ee0fC88","[email protected]","https://x.com/Tekzeb/status/1798633004728000543?t=6SASCajZtPuZ-O_5r0VUdg&s=19","Tekzeb","342","2667","TEKGUY 🥷💜","𝐃𝐞𝐟𝐢! 𝐈 𝐰𝐫𝐢𝐭𝐞 ! 𝐈 𝐦𝐚𝐫𝐤𝐞𝐭! 𝐌𝐨𝐭𝐢𝐨𝐧 𝐠𝐫𝐚𝐩𝐡𝐢𝐜𝐬! 𝐂𝐌","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7d18ea8C87796Abd43a2F8F275FB17625ee0fC88"
"301","6/6/2024","0x0a8b02129e3961C4c92919e783e957c8d4585b53","[email protected]","https://twitter.com/daramaxicon/status/1798633219426001300?t=QvZ7MQSJRLuhYoeJKjdXSg&s=19","daramaxicon","176","2585","Daramax TAP🚰 $GAME","🔥I hunt airdrop💯🔥","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0a8b02129e3961C4c92919e783e957c8d4585b53"
"303","6/6/2024","0xA37F5BA45110D2548bB4a1BE87BA20484F82fefc","[email protected]","https://x.com/musteethegreat/status/1798633327689429403?t=zsQ6Y6TqShrFhm9d0ZvpRQ&s=19","musteethegreat","262","3283","Mustee","","I am applying to participate in the EthStorage public testnet, and miner address is 0xA37F5BA45110D2548bB4a1BE87BA20484F82fefc. @EthStorage"
"304","6/6/2024","0x4e984ae0A638865a1EA7AF2840F466450CC9FD38","[email protected]","https://x.com/_burna_v/status/1798633907929367018?t=SdyYIDFKZJfgl2GtPoX4DQ&s=19","_burna_v","264","1305","Burna","let love lead PH City🏙","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4e984ae0A638865a1EA7AF2840F466450CC9FD38"
"305","6/6/2024","0x3cC13FfC17A487cf6a126a249829a0cd1CB36342","[email protected]","https://x.com/lil_psalmy/status/1798633894159491144?t=So6qcmr9vBak0pTX-mO5Ww&s=19","lil_psalmy","377","8618","Psalmy 💜🌐(🏴☠️,🌐)🎵","Web3 | crypto | NFTs | Trading | @Aptos_Africa | @aptos 🌐| @monad_xyz 💜","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3cC13FfC17A487cf6a126a249829a0cd1CB36342@EthStorage"
"306","6/6/2024","0xAbCE569a9ec65B94319BfB9f1B7FbD6dfAD7593A","[email protected]","https://x.com/0xstudstill/status/1798633415287394341","0xstudstill","948","8258","StudStill","Web3 Marketer👍 || DeFi Man👌 || Web3 Content Writer✍️ || ✉️DM for More Enquiries || All tweets are mine NFA.","'I am applying to participate in the EthStorage public testnet, and my miner address is 0xAbCE569a9ec65B94319BfB9f1B7FbD6dfAD7593A@EthStorage'"
"307","6/6/2024","0x039f58c69008d637B4E6c9B6f457f0e3d70B0CC7","[email protected]","https://twitter.com/UsmanShazili/status/1798634057443803237?s=19","UsmanShazili","110","2231","Usman shazili Olaitan","Purely optimistic!","I am applying to participate in the EthStorage public testnet, and my miner address is 0x039f58c69008d637B4E6c9B6f457f0e3d70B0CC7@EthStorage"
"309","6/6/2024","0xb998d193AC166b00551414Aa01378FcDd6cDBc35","[email protected]","https://x.com/illos_reel/status/1798634291762802798","illos_reel","195","5250","Illos $LOL","Gamer🎮|| NFTs|| Crypto|| Ethereum|| Solana|| @Treasure_DAO $MAGIC|| I believe in Magic! 💫|| #ISLM_MAXI","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb998d193AC166b00551414Aa01378FcDd6cDBc35"
"310","6/6/2024","0x05C1b7359647Ae222d7c5a387b995ae7dD0e9737","[email protected]","https://x.com/OyedokunAbiodu8/status/1798633970579681500","OyedokunAbiodu8","256","2016","AB! Abtrader","#Cryptocurrency trader, Procurement agent and ui/ux designer 🇦🇪 patience yields good result","I am applying to participate in the EthStorage public testnet, and my miner address is 0x05C1b7359647Ae222d7c5a387b995ae7dD0e9737@EthStorage"
"312","6/6/2024","0x90A4Cf1949528DAE2b63b812793f5AA5bd55d772","[email protected]","https://twitter.com/lhardest6/status/1798634255008088147?s=19","lhardest6","264","1457","diamond Cyril⚡","follow for followcrypto deals📈📉📊ambassador programs 🥇","I am applying to participate in the EthStorage public testnet, and my miner address is 0x90A4Cf1949528DAE2b63b812793f5AA5bd55d772"
"314","6/6/2024","0x6f058a08D2AFbF146c7f5f0E42841dc90Bf0C5Db","[email protected]","https://x.com/AirdropParrot/status/1798633682506547634?t=zzc4tYMPXWTpfaG_GoGkEg&s=19","AirdropParrot","310","2050","Huanter","Blockchain maxist || Crypto Trader || Airdrops || Defi || Web3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6f058a08D2AFbF146c7f5f0E42841dc90Bf0C5Db"
"315","6/6/2024","0x40528926203C52F3cF6bA7747aBc58D6157F2aD4","[email protected]","https://twitter.com/toluwalashe02/status/1798634784627077149?t=wtLbIcpIUPCdNXDi6MOJVA&s=19","toluwalashe02","118","1028","Ojo Jacob Toluwalase","","@ethstorage I am applying to participate in the EthStorage public testnet, I am looking forward to participate in your amazing project and my miner address is 0x40528926203C52F3cF6bA7747aBc58D6157F2aD4."
"318","6/6/2024","0xc95bB75edaEBa9329777E07CF84d4FC84EB85578","[email protected]","https://x.com/iamhumidity/status/1798634807515288049","iamhumidity","493","9364","HUMIDITY👍","@tapioca_dao pearl club member","I am applying to participate in the EthStorage public testnet,and my miner address is 0xc95bb75edaeba9329777e07cf84d4fc84eb85578@EthStorage"
"320","6/6/2024","0x86Ae33E8Ff7a7f780D60347DCA4f2BEA0191E4e0","[email protected]","https://x.com/succicaca/status/1798635141524594873","succicaca","151","1648","succica(🐶,🐶)(.lens)🌸, 🌿,🐡","#MintSquare⏳@t2wrld#zkApes","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0x86Ae33E8Ff7a7f780D60347DCA4f2BEA0191E4e0. @EthStorage."
"321","6/6/2024","0x79fA0385e7C3d5083b003a830ef3D88C75183A3F","[email protected]","https://x.com/OBAMOH09/status/1798634381961269609","OBAMOH09","715","7523","ObaMoh","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x79fA0385e7C3d5083b003a830ef3D88C75183A3F@EthStorage"
"322","6/6/2024","0x7d005818ef3b44c785c804fc07662261D1557996","[email protected]","https://x.com/oyindarr/status/1798635340229648439","oyindarr","600","6300","B💕","standing on business/@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7d005818ef3b44c785c804fc07662261D1557996 @EthStorage"
"324","6/6/2024","0x4309f29e40ad69c990167B1b0dd51643a3Bb0f4b","[email protected]","https://x.com/cryptopruf/status/1798634847814262930","cryptopruf","189","3148","Cryptopruf🐉 $MON","","'I am applying to participate in the EthStorage public testnet, and my miner address is 0x4309f29e40ad69c990167B1b0dd51643a3Bb0f4b@EthStorage'"
"326","6/6/2024","0xF655FD87CEC9FE311eB7935d9ceeCD80a3dfd2dC","[email protected]","https://x.com/pho_nix71/status/1798635832334839893","pho_nix71","343","1698","Alabi Seyi Emmanuel.","JESUS IS LORD||Tech lifestyle||πthon-Javaskript-Solidity||Self-Taugt||Blockchain Development ||🕸3||Airdrop Hunter🚀🚀","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0xF655FD87CEC9FE311eB7935d9ceeCD80a3dfd2dC. @EthStorage."
"327","6/6/2024","0x75B174a8cc44636596084fEfddB1A0c1797A1D5f","[email protected]","https://x.com/olofintila_1/status/1798635615195717817?s=46","Olofintila_1","975","34414","TØMMY","MOD | REPLY GUY | BASED ON BELIEVE | I WILL WIN 🥇| #FreeCZ","I am applying to participate in the EthStorage public testnet, and my miner address is 0x75B174a8cc44636596084fEfddB1A0c1797A1D5f @EthStorage"
"329","6/6/2024","0xF8404f74B9174e679269905B080670b39597B4B9","[email protected]","https://twitter.com/gweje_c/status/1798635601039921344?t=QcVX5C1-nJ0cDpBEC668JQ&s=19","gweje_c","257","4563","Gweje","Exploring #Web3 |🌐🆕 New Era 🌑|@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF8404f74B9174e679269905B080670b39597B4B9"
"330","6/6/2024","0x03Da191e45f6ed437130bCEECeF33771A5122487","[email protected]","https://x.com/xsniper09/status/1798620794773463106?s=46&t=dX3DG0MMaPANjD9-aeykPA","Xsniper09","185","3674","SNIPER🥷","talk2sultan.apt || Web3.0 || researcher","I am applying to participate in the EthStorage public testnet, and my miner address is 0x03Da191e45f6ed437130bCEECeF33771A5122487 @EthStorage"
"331","6/6/2024","0xbae7945433DbC166E214a54054B3eD432d564586","[email protected]","https://x.com/adetola_007/status/1798634934493663689?t=gu--zgMjJrbykXuXsedDzg&s=19","adetola_007","154","1377","adetola.TAP🚰","It doesn't need to be crystal clear, it just need to be clear enough. I follow back. LFG.","I am applying to participate in the EthStorage public testnet, and my miner address is:0xbae7945433DbC166E214a54054B3eD432d564586"
"332","6/6/2024","0x49a658EfC3d86D7020E61F96e4675aeDe4481cD3","[email protected]","https://x.com/lion_nde/status/1798636001113645482","lion_nde","109","3497","Hidan⛓","Nobody pass the Almighty.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x49a658EfC3d86D7020E61F96e4675aeDe4481cD3@EthStorage"
"333","6/6/2024","0x2a03dEEE278b6E21F1a009d0CB6d5F639Fa3929d","[email protected]","https://x.com/Mike41823251/status/1798636145972260933?t=cNcws2hpHI-W8-7hPPBjiw&s=19","Mike41823251","406","16878","Mike Coder ♥ Block","","am applying to participate in the EthStorage public testnet, and my miner address is 0x2a03dEEE278b6E21F1a009d0CB6d5F639Fa3929d"
"334","6/6/2024","0xA7DE363F03EAF1f6a778532f3Af099bEE06bA78e","[email protected]","https://x.com/0xShalen/status/1798636012878635181?t=pW0IZhWpZOVlgeJ3eHhyIg&s=19","0xShalen","224","5011","Shalen","Web3 | Degenerate | NFTs | Crypto enthusiastBuilding the decentralized future!Knowledge first...@GlocksDao","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA7DE363F03EAF1f6a778532f3Af099bEE06bA78e@EthStorage"
"337","6/6/2024","0x4cf00Fd1a5626Bb3C138d67516C610780513f5e2","[email protected]","https://x.com/0xvalid_/status/1798636554623340798?s=46&t=hi70M6kSgCflmeoUSx3ZKg","0xValid_","276","750","VALID |","NFA…I’m so special you don’t even care to see me.🤌🏻","I am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address 0x4cf00Fd1a5626Bb3C138d67516C610780513f5e2"
"338","6/6/2024","0x4844f4f04748EBdf17946fF16895fa69aE66860a","[email protected]","https://x.com/tajuju11/status/1798636940667076921","tajuju11","336","9579","bagol","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4844f4f04748EBdf17946fF16895fa69aE66860a @EthStorage"
"339","6/6/2024","0xAF618a8898ab5f8401c95f4C976Ddc9d9429f928","[email protected]","https://x.com/313Ghuraba/status/1798636985223168158","313Ghuraba","177","5394","theghuraba ❤️ Xally","Always Speak Truth, No matter what the consequences will be.Free Palestine","I am applying to participate in the EthStorage public testnet, and my miner address is 0xAF618a8898ab5f8401c95f4C976Ddc9d9429f928"
"340","6/6/2024","0x80CEf7A498aD143608FD90213487ec980e188372","[email protected]","https://x.com/stanhenry4/status/1798635390548787212?t=VDwrhUDJXjgsSurYJooB7g&s=19","stanhenry4","166","198","Henry","Believe the process | Stay Consistent | Keep pushing | Learn new things","I am applying to participate in the EthStorage public testnet, and my miner address is 0x80CEf7A498aD143608FD90213487ec980e188372@EthStorage"
"341","6/6/2024","0x1320A6c4c2B1Df5392dCAB1728aaE232A65482C9","[email protected]","https://x.com/kevinke09861405/status/1798637180321231247","babe13_sol","349","5032","SOL.babe","Trader | Crypto | Stocks | NFT | Collab Manager@_SecretAlphaX @metararity @MetaAlpha_🎯Ultimate Place For All #NFT, $APT, $SOL & $ETH @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1320A6c4c2B1Df5392dCAB1728aaE232A65482C9 @EthStorage"
"342","6/6/2024","0xb1e92C424840b04039BC0Eb1dfF602341D5ffDf6","[email protected]","https://x.com/staz_sh/status/1798637243713884588","staz_sh","248","1130","kavpro.fuel 🐐 ♣️ 🐲 ♦️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb1e92C424840b04039BC0Eb1dfF602341D5ffDf6 @EthStorage"
"343","6/6/2024","0xA9C2c8640dc321f73F23b01AA085Ad489B3Db056","[email protected]","https://x.com/PaulBako06/status/1798637331056119833","PaulBako06","149","1972","Paul Bako 💜AILayer","I am me 🤨Crypto Enthusiast || MUFC🔴 @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA9C2c8640dc321f73F23b01AA085Ad489B3Db056@EthStorage"
"345","6/6/2024","0x57A06Ee36138882d18c183976a08adb7C53B195D","[email protected]","https://x.com/Fauzzeyah/status/1798637281936654724?t=bbis6X9ub7v1PlqNCYlWEA&s=19","Fauzzeyah","278","828","Fauzzeyah | Lingo | $ARIA","@Mint_Blockchain$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x57A06Ee36138882d18c183976a08adb7C53B195D@EthStorage"
"346","6/6/2024","0x0f8b678048BE65cE48B7593aE012b5f571baE879","[email protected]","https://x.com/0xjoun/status/1798637557078782091","0xjoun","761","1172","0xjoun.Dev","Base DevSolana - Zksync - Meme Acmilan Junta.","I am applying to participate in the EthStorage public testnet, and my miner address is <0x0f8b678048BE65cE48B7593aE012b5f571baE879>@EthStorage"
"347","6/6/2024","0x410a99B4eEe05b9bdB7E18C4F03a88c3aB0E0b19","[email protected]","https://x.com/CryptoJeremy01/status/1798637730798428355?t=G578Lpnm9eMiYILpLViNCQ&s=19","CryptoJeremy01","2571","3847","Crypto J. |❤️ Memecoin 🟧","Blockchain Enthusiast//Brand Ambassador//Community Manager//Content Creator//Crypto Hangout 🥳//Advocate of Web3, 🟧","I am applying to participate in the EthStorage public testnet, and my miner address is 0x410a99B4eEe05b9bdB7E18C4F03a88c3aB0E0b19@EthStorage"
"348","6/6/2024","0x4bd9bAD5B03f5e8BD0f9b58CF3fd76149f227055","[email protected]","https://x.com/hally2501130398/status/1798637827280019602","hally2501130398","241","2740","hally🌐","💧💧","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4bd9bAD5B03f5e8BD0f9b58CF3fd76149f227055@EthStorage"
"349","6/6/2024","0x92d64edfdC5A88FBc33Ebdd618166cf34314b48B","[email protected]","https://x.com/0xAsta/status/1798638031739715872","0xAsta","235","2586","Zenin.bnb | .NYAN🔫😼 | ⚗️🧪 | MONAD","bitSmiley :) | @TheWardensGC | https://t.co/6aWeme061m SOL DEGEN","I am applying to participate in the EthStorage public testnet, and my miner address is 0x92d64edfdC5A88FBc33Ebdd618166cf34314b48B @EthStorage"
"350","6/6/2024","0x7C8c8eF20a48901372775618330B294ab937C934","[email protected]","https://x.com/kevinnft_id/status/1798638239877939415","kevinnft_id","447","7324","Kevin NFT","Promoter , trader | Building community on web3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7c8c8ef20a48901372775618330b294ab937c934"
"352","6/6/2024","0x22A385582A4e20d89b625a643B5FF1947E4Ee16C","[email protected]","https://x.com/nguyenhavy91/status/1798638205207773311","nguyenhavy91","101","341","Nguyen Ha Vy","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x22A385582A4e20d89b625a643B5FF1947E4Ee16C @EthStorage"
"354","6/6/2024","0xe7647be0E9Da4FEEb5b34ad7b2109393034de4f8","[email protected]","https://x.com/Victorolajr/status/1798638384400969741?t=h0N94aqUuYdWMbqnCsuqmw&s=19","Victorolajr","128","1129","OVD_JR 🐻⛓️","GOE","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe7647be0E9Da4FEEb5b34ad7b2109393034de4f8 @EthStorage"
"356","6/6/2024","0xba4d2203756cEA835CE45f5A5294812217814b68","[email protected]","https://twitter.com/0xTchiizie/status/1798622625360712106?t=hEuJI1SC5kZeS_JB9spAxg&s=19","0xTchiizie","203","3770","tch'z.ola 🪢🦴","@initiaFDN fanboy, early-stage project hunter, @solana believer, #SpotlightWithTchiizie","I am applying to participate in the EthStorage public testnet, and my miner address is 0xba4d2203756cEA835CE45f5A5294812217814b68@EthStorage"
"357","6/6/2024","0x5a7070d79814164693e8Cda006543B0BF7C0b512","[email protected]","https://twitter.com/Olabamijioluw20/status/1798638691369484778?t=yr992l_fPQs9SP_NuTMSGg&s=19","Olabamijioluw20","345","3815","The rich will make more money ❤Sorai","NFT lovers|| Airdrop hunters🏹promoters /shillers || researcher || community manager||DEV advisor||moderator/collab manager.👽 $ELS $FAR 💎 $FYN","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5a7070d79814164693e8Cda006543B0BF7C0b512"
"359","6/6/2024","0x3dAa598Ab8ee4BC927A329f0d4c8019c4aA7617f","[email protected]","https://x.com/ubiqland/status/1798638888820658412","ubiqland","560","8402","ʊ₿ī¶ .fuel","moniker initia ubiq :)","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3dAa598Ab8ee4BC927A329f0d4c8019c4aA7617f @EthStorage"
"360","6/6/2024","0x3176941056d50917293D6167885Bc0B55FBf6ba0","[email protected]","https://x.com/sucre2703/status/1798639008551256378","sucre2703","101","1671","Mayank Parmar🟣 $LOL Tabi 🟧","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3176941056d50917293D6167885Bc0B55FBf6ba0"
"361","6/6/2024","0x5c67561ff44aD159eAaDf12Be36198D9e209ce06","[email protected]","https://x.com/kamerlomar1/status/1798638280910782816?s=46","kamerlOmar1","641","8131","Kamal Umar","We Rise By Lifting Others","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5c67561ff44ad159eaadf12be36198d9e209ce06@EthStorage"
"362","6/6/2024","0xbd1fe221E32c0d7fE5B87c7fd2D807D252f71fb9","[email protected]","https://x.com/D3jisneh/status/1798639477944143910","D3jisneh","1406","50746","D3JI³🤕","GTFO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xbd1fe221e32c0d7fe5b87c7fd2d807d252f71fb9"
"363","6/6/2024","0xDf3146346f8585a11CE3f9eFaa88f25A50BD4D8B","[email protected]","https://twitter.com/enyinnayapedro1/status/1798639540510576868?s=19","enyinnayapedro1","154","1754","p£dro 🟧 ⛈️ 🟣 — | Hasbiland Tabi 🟧 $RVV","Crypto Enthusiast","I am applying to participate in the EthStorage public testnet, and my miner address is 0xDf3146346f8585a11CE3f9eFaa88f25A50BD4D8B"
"364","6/6/2024","0x1c0AF5E25CBCF7dcF1f23f4c86896D9749b6F7D1","[email protected]","https://x.com/ogpulpy/status/1798639611771764972","ogpulpy","113","486","PULPYOG","King of swing 𝕏","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1c0AF5E25CBCF7dcF1f23f4c86896D9749b6F7D1@EthStorage"
"366","6/6/2024","0x28f1DD1c0322Ab37FC92445c80CDE829ad69A2aD","[email protected]","https://x.com/mukesh_aham/status/1798639792336646374","mukesh_aham","186","240","Mukesh pandey","Reavling soon","I am applying to participate in the EthStorage public testnet, and my miner address is 0x28f1DD1c0322Ab37FC92445c80CDE829ad69A2aD @EthStorage"
"369","6/6/2024","0xf884d64d38554D03BA533Caf86497FDA62a3FDB9","[email protected]","https://x.com/CaptainHidee1/status/1798639850712891544","CaptainHidee1","180","1527","CaptainHidee $BEYOND❤️ $WELL 🐉$MON","FUTURE TECH BRO, UIdesign, Airdrop farmer, Web3, KOL, TextAnimation, @cvex_xyz","@Ziko_olatunji 0xf884d64d38554D03BA533Caf86497FDA62a3FDB9"
"370","6/6/2024","0x2e7002F33E0608336a09D13E046449EA060bD209","[email protected]","https://x.com/mytrinitygmb/status/1798639941926416474?t=j5Wq6KlB_B8Qp9japWzWjQ&s=19","mytrinitygmb","849","15060","TRINITY (💙,🧡) 🔥🌌💚🌙","NFt enthusiast/ prudent community manager/AIRDROPS #Sol #ETH #MAGIC","@EthStorage Tweet this:I am applying to participate in the EthStorage public testnet, and my miner address is <0x2e7002F33E0608336a09D13E046449EA060bD209>"
"371","6/6/2024","0xCFB63CfB39e76163439196b6751E3EBfc6e8D66d","[email protected]","https://x.com/cybernerd2077/status/1798640252850221403","cybernerd2077","276","1830","Rahul R | $UNIO","Cyber security Enthusiast | Food Fanatic | Simplicity admirer | #SomniaNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcfb63cfb39e76163439196b6751e3ebfc6e8d66d@EthStorage"
"372","6/6/2024","0x3d93b2e0b23025602e5Ed25eF7a1A28dAc83B17F","[email protected]","https://x.com/Delven18/status/1798639942446542920","Delven18","459","10295","ebuka 🎓🐞$GAME","full stack developer,brand owner","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3d93b2e0b23025602e5Ed25eF7a1A28dAc83B17F@EthStorage"
"373","6/6/2024","0x66D5DdD3B8ceFFB4733b097514695FAbED6F7B0F","[email protected]","https://x.com/Papii_chii/status/1798638531042328813","Papii_chii","182","4612","Gboffy.bit🦾🦾♣️","DINERODAO, @playsomo | $SOMO","@EthStorage I am applying to participate in the EthStorage public testnet, and my miner address is 0x66D5DdD3B8ceFFB4733b097514695FAbED6F7B0F"
"374","6/6/2024","0xe3969F366654008f6c2b5218ACBf53d0C731a037","[email protected]","https://x.com/DeraCrypt1/status/1798639839501590686","DeraCrypt1","217","5423","Dera ❤️ Xally Tabi 🟧","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe3969F366654008f6c2b5218ACBf53d0C731a037"
"375","6/6/2024","0x47Cf2Cb54b38DF615690cf41343dE8A927B34395","[email protected]","https://twitter.com/dsscbthhjyy/status/1798640352137719965?t=NIheHmdeFgUPhev-fYCTTA&s=19","dsscbthhjyy","170","3315","ydheyejeusijybn|♦️|","Nitty-gritty boy@Mint_Blockchain","I am applying to participate in the EthStorage public testnet, and my miner address is <0x47cf2cb54b38df615690cf41343de8a927b34395>"
"377","6/6/2024","0x972598d1C8dACbcbaB69d432da3a7b9bcE5C8411","[email protected]","https://x.com/rapgmac/status/1798640631503601909","rapgmac","272","7669","0xseeder.fuel 🔥","The collectoorCommunity: #zkLink #layer3 $ZKL","I am applying to participate in the EthStorage public testnet, and my miner address is 0x972598d1C8dACbcbaB69d432da3a7b9bcE5C8411@EthStorage"
"378","6/6/2024","0xE21C1a1E6976ca9bDb555F8734f55005Df540C6B","[email protected]","https://x.com/LintonAyebale/status/1798640855227769118","LintonAyebale","805","20597","Bigpal.eth ⚡","Am living for the betterNeed God| Fuelet#Defi #NFTs #Realestate#BTC","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE21C1a1E6976ca9bDb555F8734f55005Df540C6B"
"379","6/6/2024","0xcd807653f50a27723a2F403d4BF879D042e202e6","[email protected]","https://x.com/72friend/status/1798640705512104209","72friend","188","1566","0xcaesar","T•A junkie • currency pairs • Financial Analyst •Alpha Calls • Airdrops 🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcd807653f50a27723a2F403d4BF879D042e202e6@EthStorage"
"381","6/6/2024","0xfa7c56E130666d78D5CFC5804E2Bf98b545548bC","[email protected]","https://x.com/early6898/status/1798640804107522178","early6898","400","9041","early 🟧 ⛈️ 🟣 $ARCA Tabi 🟧","COMMUNITY MODERATOR/MANAGER#CNFT maxi","I am applying to participate in the EthStorage public testnet, and my miner address is 0xfa7c56E130666d78D5CFC5804E2Bf98b545548bC"
"384","6/6/2024","0xdbcE521b215327201A6DE7b2834FE5488E15dE66","[email protected]","https://x.com/affm68290133/status/1798641033506640040?s=46","AfFm68290133","140","1862","Raphaelz ❤️ Memecoin $DIAM","Crypto kid, https://t.co/wF4OICSUNZ","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdbcE521b215327201A6DE7b2834FE5488E15dE66 @EthStorage"
"385","6/6/2024","0x7dbC8dBF4c7664950c03704b4975D9E96e1932b6","[email protected]","https://x.com/annihilator_18/status/1798641127689699462","annihilator_18","259","7307","Squall (∎, ∆)","$ETH $SEI $SOL jpeg trader. from HBDC","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7dbC8dBF4c7664950c03704b4975D9E96e1932b6 @EthStorage"
"386","6/6/2024","0xa052BfC6158021ffC3Ddb1FDdb254B549F50E4A8","[email protected]","https://x.com/Sunny_Thrive/status/1798640381107785968","Sunny_Thrive","281","7741","Sunny Thrive 💚🌙| NYM 🛸❤ Memecoin 💛 DROP 🔫","Advocate of web3// Project Ambassador// Community Manager// @IntractAmbassador , #ThisIsSparta, @Plenafinance & #PlenaArmy","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa052BfC6158021ffC3Ddb1FDdb254B549F50E4A8@EthStorage"
"388","6/6/2024","0x9D03a4dC4EbD4af3267B4B672894e19F147729b4","[email protected]","https://x.com/yomah_gram1/status/1798637292720111713?t=-NKB-tbvxrypjWqzuQnjcQ&s=19","yomah_gram1","160","1620","Gbenga","You can’t broke-shame someone that never claimed to be rich. #FreeCZ","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9D03a4dC4EbD4af3267B4B672894e19F147729b4 @EthStorage"
"389","6/6/2024","0x858c0a6EC06Bc036ca97Fb6F51d188015a573fd0","[email protected]","https://x.com/Wazirinbusu/status/1798641193494118637?t=MB8iXAiTqwDi-FhoHUNu_Q&s=19","Wazirinbusu","300","2196","Dodondawa","Very gentle, generous and dedicative@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x858c0a6EC06Bc036ca97Fb6F51d188015a573fd0"
"390","6/6/2024","0x0e740712B00c3E0c283C657346635375497857DB","[email protected]","https://x.com/Anitaijeoma2/status/1798641281272627589?t=tuqCkyHsxntPbWh356_CPw&s=19","Anitaijeoma2","552","11329","syANITAIJEOMA2.plena 🟢📜🟣 $LOL","I am all about productivity @0xHashstack Contributor #Kreatorland @cvex_xyz","I am applying for @EthStorage public testnet and my mine address is 0x0e740712B00c3E0c283C657346635375497857DB"
"395","6/6/2024","0xD35dB3F88b7123d755a43C32F315eC6914aFa05d","[email protected]","https://x.com/olaw62120/status/1798642029100175392?s=46&t=5ZgGMs_lVnKKdKGHCz-05Q","olaw62120","438","2069","Olawale","Which of His mercy will I deny of course none Alhamdulilah robil’alamin","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD35dB3F88b7123d755a43C32F315eC6914aFa05d"
"399","6/6/2024","0x47F714b1d846B0Bf4af5204263186889e98E62C6","[email protected]","https://x.com/CapSpaceRidah/status/1798642571465613599","CapSpaceRidah","809","5256","Fazao","When all is said and done, make sure more is done than said.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x47F714b1d846B0Bf4af5204263186889e98E62C6@EthStorage"
"402","6/6/2024","0xdAde4144A25da656ffd50cAf4842e72826643aB8","[email protected]","https://twitter.com/77th_r/status/1798642993546817595?t=UItiH9bEHJJt6WIm4qM-dA&s=19","77th_r","1745","14743","77thESO🪓","Afrobeats & hippop musical ACT. #landersonlyCommunity #LANDERSONLY Helping Build @anovadao multi blockchain engager.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdAde4144A25da656ffd50cAf4842e72826643aB8@EthStorage"
"403","6/6/2024","0x33d875a3b4B8d146dD080BBaDf7FB28aB03F63Fd","[email protected]","https://x.com/kelvinmid/status/1798638925986341330?s=46&t=nWVveF0uPnFh7I1EbIiYaw","KelvinMid","300","9892","Kelvin mid night♦️","Am baba yaga| Elosys Army ❤️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x33d875a3b4B8d146dD080BBaDf7FB28aB03F63Fd"
"404","6/6/2024","0x8e47ffc63439c4280C96d054b4167b7d022958eD","[email protected]","https://x.com/JoelDann2/status/1798641674757001611?t=1f9vCal6m155HfuFtY11Mg&s=19","JoelDann2","1663","14236","𝕵𝖔𝖊𝖑 ☘","A Vᴇᴛ| Aɴ Iɢʙᴏ Bᴏʏ| Cʜᴇʟsᴇᴀ FC💙","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8e47ffc63439c4280C96d054b4167b7d022958eD @EthStorage"
"405","6/6/2024","0x2d7C61Cb51eb6D90b52fa23Bc126fD935Dd04c9F","[email protected]","https://x.com/techsway_1/status/1798642758816862708","techsway_1","241","3596","tech§ŵaÿ🧑🏾💻♎️⛓️","Ai🤖||Web3🌍||Testnet User|| Airdrop Farmer 👨🌾 ||Community Builder⚒️🪚🔨🪛||Gamer🎮||Explorer 🧑🏾🚀||Researcher🧑🏾💻","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2d7C61Cb51eb6D90b52fa23Bc126fD935Dd04c9F"
"407","6/6/2024","0x4C3dbD2f2D98f6C28ed2F7FF211dF68517CC70b7","[email protected]","https://twitter.com/Hustle_kidoo/status/1798643507261059393?t=7-3vh6UdzRUzJtW4Q6wRXQ&s=19","Hustle_kidoo","134","2716","Hustle Kiddo☠️📸💰","Lambo🤑 Always⚡🎙️ @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4C3dbD2f2D98f6C28ed2F7FF211dF68517CC70b7"
"408","6/6/2024","0x5A3fDC21b8bb23794cbe0fe86a324049835090cE","[email protected]","https://x.com/Aall_Izz_Well01/status/1798643460746191329","Aall_Izz_Well01","114","5871","Web3_Hunter 🔑 SuperFans 🐉 $MON","I'm always looking out for those gems in the Cryptospace😀|| Social media Promoter || Crypto Shiller || Community Moderator || Business Promotion. @cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5A3fDC21b8bb23794cbe0fe86a324049835090cE@EthStorage"
"409","6/6/2024","0xc034B995C40A01DC736052E626613fca4fe00229","[email protected]","https://x.com/Surfacer29/status/1798643923784765664","Surfacer29","275","12333","surfacer🐉","Embrace your struggles","I am applying to participate in the EthStorage public testnet, and my miner address is <0xc034B995C40A01DC736052E626613fca4fe00229>"
"411","6/6/2024","0x624908A9f2a687645b3c88fedDeC588fcc22af2f","[email protected]","https://x.com/OyewesoJ61539/status/1798643256215154851","OyewesoJ61539","171","1730","jumix","🔥","I am applying to participate in the EthStorage public testnet, and my miner address is 0x624908A9f2a687645b3c88fedDeC588fcc22af2f@EthStorage"
"412","6/6/2024","0x0417BC139197e5AabE32B65E004d8E847bDe5233","[email protected]","https://x.com/A_W_W_A_L/status/1798644574522618000?t=DDwTZ8o1YiTsdmDk7hkfEw&s=19","A_W_W_A_L","730","11785","Cyborgzz $AAX 🎓🤖⛓️","Building Engineer , @honrxchangge Suspended New acct hereBuilding ......","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0417BC139197e5AabE32B65E004d8E847bDe5233. @EthStorage"
"413","6/6/2024","0x1972E1213eF270B6ec5DbfE23a7395D70FEBA22b","[email protected]","https://twitter.com/Ramcee20/status/1798644275338686810?s=19","Ramcee20","289","3698","Ramcee🕊️","Crypto Trader | Crypto / Airdrop Farmer⛏️⚒️ | Lover Of Crypto | Crypto made it easy 📊","0x1972E1213eF270B6ec5DbfE23a7395D70FEBA22b"
"414","6/6/2024","0xc83B40D4bF7bEeD0F7ed984071C78FeC4c994089","[email protected]","https://x.com/Theowise19/status/1798644624329990640?t=eaNJc4Kq1wTzGZeb-te8rA&s=19","Theowise19","539","5652","Tife 🐉 $MON","@fullforce_io","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc83B40D4bF7bEeD0F7ed984071C78FeC4c994089"
"416","6/6/2024","0x51227dA1D5F0fF2E90F9b8a5375074D954180250","[email protected]","https://twitter.com/kokomillionz/status/1798644947937271943?t=N-Rrnb7KwqXhksZhQxz_ng&s=19","kokomillionz","119","2793","ForeverRich","God | Money | Music","I am applying to participate in the EthStorage public testnet, and my miner address is 0x51227dA1D5F0fF2E90F9b8a5375074D954180250"
"417","6/6/2024","0x2F686d9274c76E1A41e1613d8069162776f6757C","[email protected]","https://x.com/cryptoman318/status/1798645346719125670?s=19","cryptoman318","115","1905","🚰 🐞 $GAME ♣️ $UNIO Tabi 🟧 ⛈️ 🟣ZEEK OwO","@cvex_xyz","I am applying to participate in the Eth storage public Testnet, and my miner address is 0x2F686d9274c76E1A41e1613d8069162776f6757C@EthStorage"
"418","6/6/2024","0xbaa202b2c3DbA5e4EAC53C7674Fe230D9aE99eD6","[email protected]","https://x.com/aarrhhrr/status/1798645356227625092?s=46","aarrhhrr","539","11747",".","abstract! | mod @dogwifnunchucks","I am applying to participate in the EthStorage public testnet, and my miner address is 0xbaa202b2c3DbA5e4EAC53C7674Fe230D9aE99eD6"
"421","6/6/2024","0xb8Dc7c969717Cb6B3f8AC3aFA7AA9a5A4c003FfA","[email protected]","https://twitter.com/KINGBUZZA_SADIQ/status/1798645069123289583?t=p9dhJxPh9GDikkvDrpT7CA&s=19","KINGBUZZA_SADIQ","391","7434","👑 Kingbuzza 👑| 🔶 #MUSCAT #PARAM","I believe in ALLAH#Bluemove #MOVErs#ACMilan🏍️","I am applying to participate in the EthStorage public testnet, and my miner address is<0xb8Dc7c969717Cb6B3f8AC3aFA7AA9a5A4c003FfA"
"422","6/6/2024","0x0257A5dDCe9456a3820260c56cda9B6046132579","[email protected]","https://x.com/Mista_Mack_/status/1798645860013846653?t=REstB_HprtG5Plup4SOEFA&s=19","Mista_Mack_","963","10981","Augustine Mgbakogu","Web3 Interactoor 🌐 |Community Manager 👥 |Content creator 📺 |Ex: @joystick_labsTrader 📉 |Biorenewable energy guy⚡⚡","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0257A5dDCe9456a3820260c56cda9B6046132579 @EthStorage"
"423","6/6/2024","0x2bA3834b9a2D072ee66439495051e34635D265D8","[email protected]","https://x.com/princewizdy/status/1798646082374934838","princewizdy","202","2115","0xID | $XTER","CM Ankh Alpha NFTs Enthusiast| crypto player📈📊| https://t.co/ekic4ovOxX@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2bA3834b9a2D072ee66439495051e34635D265D8"
"424","6/6/2024","0xBEe22B1Da0F896B0451Bd721A685ce40Db507eE7","[email protected]","https://twitter.com/mahmadol/status/1798646192370516088?t=TRVcKUSs9UVz4_j1FZzPbA&s=19","mahmadol","147","2441","Mahmadol.plena","I'm me||Airdrop Hunter#eth #sol","I am applying to participate in the EthStorage public testnet, and my miner address is 0xBEe22B1Da0F896B0451Bd721A685ce40Db507eE7@EthStorage"
"425","6/6/2024","0xFea4EF94aD50c2310A52C8d7c4dF9F9888F7f0b5","[email protected]","https://x.com/mamitech9/status/1798646531714851230?s=46&t=AOm4wueC9vpKXgTq-PwOPQ","Mamitech9","2130","29921","Big Mami 🫵🏾","God, Big Mami,Forex money 🎉🥂","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFea4EF94aD50c2310A52C8d7c4dF9F9888F7f0b5@EthStorage"
"426","6/6/2024","0x7008E1045284b4B8b4E85f5bAe864F95EdA4f27b","[email protected]","https://x.com/spypunkie/status/1798646529093476593?s=19","spypunkie","108","1299","mubarakade.plena 🔫 StarMech🐕🌖","$FAR💙 https://t.co/cahE9AKvav Army @Plenafinance & #PlenaArmy@Laika_Layer2 @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is (0x7008E1045284b4B8b4E85f5bAe864F95EdA4f27b)"
"428","6/6/2024","0x8DfbFfa3F2aDc7E5B71e945b682986C8E5277c08","[email protected]","https://twitter.com/pharm_Gaga/status/1798646739249078414?t=QSvfivE7zp5WK_JTIzLa5g&s=19","pharm_Gaga","267","2547","Gaga .NYAN🔫😼 $BUBBLE $BEYOND","Degen Farmer 👨🏿🌾👨🏿🌾","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8DfbFfa3F2aDc7E5B71e945b682986C8E5277c08"
"429","6/6/2024","0xA308C8B2A5465A59ddC89C69AAd59B397e1EE48b","[email protected]","https://x.com/yomiplaydi0814/status/1798646817644851313?s=46","yomiplaydi0814","181","5520","Yomiplaydirty Tabi 🟧","•degen •gambler •airdrop •NFTs • @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA308C8B2A5465A59ddC89C69AAd59B397e1EE48b@EthStorage"
"430","6/6/2024","0x229E568d15D437b83319cd18FBb4232007e8f029","[email protected]","https://twitter.com/Jasmuel01/status/1798646744487756067?t=W-7PNARWLo5uwcL-RYn_kQ&s=19","Jasmuel01","431","15093","Muel.fuel🐉$MON$BEYOND $AAX ❤️$SG.NYAN🔫😺","it flows or it goes - no forcing it.","I am applying to participate in the EthStorage public testnet, and my miner address is < 0x229E568d15D437b83319cd18FBb4232007e8f029 >"
"431","6/6/2024","0xb4E8Bc1061F3d57ae980FF48196ac5EA58bCe141","[email protected]","https://x.com/TimileskiPro/status/1798647165482598518","TimileskiPro","222","2674","TimileskiProTabi 🟧 .fuel👁️ | ⚡️ | Hasbiland","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb4E8Bc1061F3d57ae980FF48196ac5EA58bCe141 @EthStorage"
"432","6/6/2024","0xF825C91eE69D5d0432bC08B125C6c6Be637f4943","[email protected]","https://x.com/jeffrysanjaya38/status/1798644671616557504","jeffrysanjaya38","188","5171","Biras | $L7L .plena Tabi 🐞 $GAME TAP🚰","@IntractAmbassador| FueletMemeland Captainz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF825C91eE69D5d0432bC08B125C6c6Be637f4943 @EthStorage"
"435","6/6/2024","0x1849953CFF79DAF20d1b71356124B1DfAD0D46EE","[email protected]","https://x.com/ShineCryptic/status/1798647368059158875","ShineCryptic","534","3029","kryptogem ♦️","Entrepreneur | Developer | Crypto & NFT enthusiast 🚀Join me in exploring the endless possibilities of the decentralized world.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1849953CFF79DAF20d1b71356124B1DfAD0D46EE @EthStorage"
"436","6/6/2024","0x1e244Ea00D64a30F6609D60Ca56EA8a673bb27cA","[email protected]","https://x.com/liqueedice/status/1798623854237290933?t=zQ2rgUrmLfN8iMZQrv-Irg&s=19","liqueedice","220","560","Flawless Imperfections ⚡$GOD 🕹️ $RCADE","Animé lover, amongst other things...⚙️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1e244Ea00D64a30F6609D60Ca56EA8a673bb27cA"
"438","6/6/2024","0x8c4a5E2185800EC53314e4406EeF9b37Cfc8ec83","[email protected]","https://x.com/Otumba79/status/1798647633474678872?t=BN3l-DjpVo4oRKeAOa-Jcw&s=19","Otumba79","176","1121","nichol@s - Tabi 🟧🐞 $GAME","Never to let go#ETH #BNB #SOL #ARB ❣️🏦 @cvex_xyz","I am applying to participate in the EthStorage public testnet, and myminer address is 0x8c4a5E2185800EC53314e4406EeF9b37Cfc8ec83@EthStorage"
"439","6/6/2024","0x2939D49a761983f6cc228Af56173d10A17578160","[email protected]","https://x.com/Charlieeboy001/status/1798647682183086447","Charlieeboy001","106","3527","Charlie $LINGO","NFT/CRYPTO/BLOCKCHAINCHASING THE BAG @Lingocoins","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2939D49a761983f6cc228Af56173d10A17578160"
"441","6/6/2024","0x297e48361bcE62684f0fD309ed45a76C8c86d4ac","[email protected]","https://twitter.com/Ayotx2/status/1798647802849063353?t=0PtIFIzUrlaY6kuQ6nSm1g&s=19","Ayotx2","148","1243","ONI AYODEJI SAMUEL","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x297e48361bcE62684f0fD309ed45a76C8c86d4ac"
"444","6/6/2024","0x5b6C8415ea268aAdB821aD61D02530737cdCb04B","[email protected]","https://x.com/Obliquesin/status/1798647860713672894","Obliquesin","150","2517","Oblique Tabi 🟧 ♥POPCAT","if it's not money,do not disturb my peaceundeads","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5b6C8415ea268aAdB821aD61D02530737cdCb04B @EthStorage"
"445","6/6/2024","0x194d2Ff0394E9bea4554Fc4D171f5A92145d2D2D","[email protected]","https://x.com/AlienBiatch/status/1798648428177899661?t=1pSs4w-hCLZ1AU4iwR9bwQ&s=19","AlienBiatch","337","2903","AlienBiatch👽⚡️","Sol Maxi| Muslimah| Anime junkie|","I am applying to participate in the EthStorage public testnet, and my miner address is 0x194d2Ff0394E9bea4554Fc4D171f5A92145d2D2D"
"446","6/6/2024","0xBc402e0B7A7fc5082a3716095935B676cA21B3AB","[email protected]","https://x.com/iamphantasm0/status/1798648634818662634","iamphantasm0","299","7044","Zero","slowly my eyes looking asian","I am applying to participate in the EthStorage public testnet, and my miner address is0xBc402e0B7A7fc5082a3716095935B676cA21B3AB"
"447","6/6/2024","0xCC24787c8E6BcB54b24682Fd58bc65553A236d0e","[email protected]","https://x.com/michyyy404/status/1798646928164659593?t=Q6JeaBVTx91V_8SQ_w0a0A&s=19","michyyy404","211","7603","Michyyy","God is the greatest","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCC24787c8E6BcB54b24682Fd58bc65553A236d0e @EthStorage"
"449","6/6/2024","0x6713Ab800d031E2edd5D760d7a5039A239f6Aa64","[email protected]","https://x.com/XteemXchange/status/1798646927128657923?t=iqMYy6we2VXQ0cfxmHqxfQ&s=19","XteemXchange","392","2529","Agroxteem.eth || (🌸, 🌿) .Plena","#Crypto Enthusiast || Technical Analyst || Marketer & Presenter || BOUNTY HUNTER || TRAINER || Web3🦄","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6713Ab800d031E2edd5D760d7a5039A239f6Aa64@EthStorage"
"450","6/6/2024","0xA26c8A5ed18C2abEb46D95BbE2c7FEb216C80BFf","[email protected]","https://x.com/VwarakB/status/1798647848923545841","VwarakB","381","15659","midoriya.near.stark","19y/o. a degen, maybe? or a dev one day?____Soon to see:)Recent developments make me like apt and near","I am applying to participate in the EthStorage public testnet, and my miner address is <0xA26c8A5ed18C2abEb46D95BbE2c7FEb216C80BFf>"
"452","6/6/2024","0xF54b1Ac243187EcB34b7e37d2264598764d92aEE","[email protected]","https://x.com/dankur905/status/1798648895788188104","dankur905","214","1246","rocky","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF54b1Ac243187EcB34b7e37d2264598764d92aEE @EthStorage"
"454","6/6/2024","0x52e3c75e1C83EAdF1462BCf64d2bD96e2492D392","[email protected]","https://x.com/LummyWeb3/status/1798646718550127067","LummyWeb3","119","852","Lummy Web3 || 💪🏻 XPLUS || 🔫 StarMech","Core Team: @GMersNft || @DOGameSolWeb3 Enthusiast || Cryto/Degen trader || NFT Flipper & Collector || Airdrop Hunter.Fud is FOOD & God is GOOD","I am applying to participate in the EthStorage public testnet, and my miner address is 0x52e3c75e1c83eadf1462bcf64d2bd96e2492d392 @EthStorage"
"456","6/6/2024","0xCA94F9f18B5013207e0c40D966480A99c987dD72","[email protected]","https://twitter.com/RICKSOL001/status/1798649420395036826?t=Vujzx4XoVn0eLV4T29PDhg&s=19","RICKSOL001","230","1308","Ricks 🀄","ai is fake 💀","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCA94F9f18B5013207e0c40D966480A99c987dD72@EthStorage"
"457","6/6/2024","0xDBB49Cac30c883C2a80882451A845098dE615bAB","[email protected]","https://x.com/flavvless_flaws/status/1798624505885249607?t=zQ2rgUrmLfN8iMZQrv-Irg&s=19","flavvless_flaws","331","622","Flawless ~imperfections~ ⚡$GOD 🕹️ $RCADE","Content creator, Creative writer, project manager, tech enthusiast and more, waiting to make your acquaintance... Yoroshiku :)","I am applying to participate in the EthStorage public testnet, and my miner address is 0xDBB49Cac30c883C2a80882451A845098dE615bAB"
"459","6/6/2024","0x663C4eA82669250fd6fBeDC49a932988D00BC4B4","[email protected]","https://x.com/Nft_Mosquito/status/1798649350232621393","Nft_Mosquito","277","2229","Crypto Believer","SM Manager || Brand Promoter || Community Manager& Moderator|","I am applying to participate in the EthStorage public testnet, and my miner address is 0x663C4eA82669250fd6fBeDC49a932988D00BC4B4@EthStorage"
"461","6/6/2024","0x41B8233969D872C37744780382226f3735b62bAD","[email protected]","https://x.com/Foe70298586/status/1798650736441446459","Foe70298586","350","780","Foe @ZetaMarkets 🟣 $LOL 🟧 ⛈️ 🟣","Meta3.0","I am applying to participate in the EthStorage public testnet, and my miner address is 0x41B8233969D872C37744780382226f3735b62bAD"
"464","6/6/2024","0xB45C84bA9C8431a17C40C21c093EA9B8fF512827","[email protected]","https://x.com/emmalexis2020/status/1798651216513393085","emmalexis2020","1049","10992","emmalexis2020.,💫❤️💙 .fuel $BUBBLE $BEYOND .plena","#Bitcoin, Crypto-Enthusiast, Transhumancoin supporter, nfts, metaverse@cv_exchange @playsomo | $SOMOLeft to Phaver","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB45C84bA9C8431a17C40C21c093EA9B8fF512827"
"465","6/6/2024","0x877902134b4503aa0A5a29259961Fa536A14f01a","[email protected]","https://x.com/Motion72014466/status/1798651029237715183","Motion72014466","691","15877","Motion🔺. 🟧 ⛈️ 🟣","web3 nft enthusiasts #AVAX #AVAXNft #AVAX #optimismEth #Arbitrum #ISLM_MAXI @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x877902134b4503aa0A5a29259961Fa536A14f01a"
"467","6/6/2024","0x2f5E8455d007F1432601A65C51EC5BBd8f33370F","[email protected]","https://x.com/Ola_dotman/status/1798651110229729367","Ola_dotman","105","424","Omo_Arifayan.Tabi","A cool young man in search of the doe #XWORLD","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2f5E8455d007F1432601A65C51EC5BBd8f33370F"
"468","6/6/2024","0x01274F1F49913a912515Ff8Cf5D5755D0544176a","[email protected]","https://x.com/BLhackHat/status/1798651815652700614?s=19","BLhackHat","502","5885","sudo","🐍 | calm","I am applying to participate in the EthStorage public testnet, and my miner address is 0x01274F1F49913a912515Ff8Cf5D5755D0544176a"
"469","6/6/2024","0x4e0afc0F7b804E7fa6FB2681B778D7A4e8E0ff0E","[email protected]","https://x.com/0x__black/status/1798642764567163344","0x__black","430","4614","0xblack.linea ♦️❤️ Memecoin Mint Blockchain","It is what it is💯🎁 #MintSquare #zkApes 🌐 Left to Phaver #byebyebirdie .bit @FocusOnVaissel ❤️ Memecoin @Mint_Blockchain","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4e0afc0f7b804e7fa6fb2681b778d7a4e8e0ff0e"
"472","6/6/2024","0x64F67b2C79ecd2390d1E1A2cEEA578A6B91311fE","[email protected]","https://x.com/theonlyAdvocat/status/1798652584359784571","theonlyAdvocat","1929","296","Advocate.","bite","I am applying to participate in the EthStorage public testnet, and my miner address is 0x64F67b2C79ecd2390d1E1A2cEEA578A6B91311fE@EthStorage"
"473","6/6/2024","0x2e8a4d0a86218C3feA106660c57888F3C7AD6A4E","[email protected]","https://x.com/cryptolifeonly/status/1798652684335271974","cryptolifeonly","217","4584","smartnft.bnb","https://t.co/jYz8x66sCT #BlueMove and #MOVErs, @Carbonable_io #Bitcoin ⏳@t2wrld #Metatime ⚙️ #HippoSwap","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2e8a4d0a86218C3feA106660c57888F3C7AD6A4E"
"474","6/6/2024","0x5f1405ea7E027568E5B21Ec746e787963B26725C","[email protected]","https://x.com/MichaelSethBasi/status/1798652809153290618","MichaelSethBasi","1406","12544","MSB","C.F.O for GalxeStrats/MSB Consulting | Technical researcher | Business Guru | Advisor/Contributor for WEB3 & Blockchain Projects. Talk: [email protected]","I am applying to participate in the EthStorage public testnet, and my miner address is <0x5f1405ea7E027568E5B21Ec746e787963B26725C>@EthStorage"
"475","6/6/2024","0x6a597109B62605f4D6a466be25EF38B9F86a5038","[email protected]","https://twitter.com/titilopeakeem1/status/1798652937314373837?t=OfKC39i9nWoe_C1JUu7OSQ&s=19","titilopeakeem1","258","1028","Sodex.bnb ⚙️ | 🐉 $MON | .del | UDao","Simplicity | Fuelet | @playsomo | $SOMO@AmnisFinance Contributor Join Amnis mainnet: https://t.co/YxGrffS5eK","I am applying to participate in the EthStorage public testnet, and my miner address is (0x6a597109B62605f4D6a466be25EF38B9F86a5038)"
"476","6/6/2024","0xE70dBFb2Be389aD845F25382f73c23040b9Ff170","[email protected]","https://twitter.com/Whizzy_feelz/status/1798652865793368193?t=V6xN8ByL5vT-ECqnOBYrfw&s=19","Whizzy_feelz","140","1075","whizzy_feelz","FX and crypto trader, airdrop Hunter","I am applying to participate in the EthStorage public testnet, and my miner address is the 0xE70dBFb2Be389aD845F25382f73c23040b9Ff170@EthStorage"
"477","6/6/2024","0xc873C38cb34dF8886D3cd08103Ea98d0CDED3e36","[email protected]","https://twitter.com/yung_baedoo/status/1798653496021131512?t=Zo9Cgi0MG__HQ84ku0lPEQ&s=19","yung_baedoo","257","708","Ýung_ßaedoo $XTER","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc873C38cb34dF8886D3cd08103Ea98d0CDED3e36"
"478","6/6/2024","0x94824dcA6A5f3f5E57fbE471844839c77f536805","[email protected]","https://x.com/AkamiroIsreal/status/1798652087468998855","AkamiroIsreal","110","2099","OLUEBUBE ISREAL AKAMIRO 💀 $ELS 🎵 🐉 $MON Tabi 🟧","I am a wonderful person","I am applying to participate in the EthStorage public testnet, and my miner address is 0x94824dcA6A5f3f5E57fbE471844839c77f536805@EthStorage"
"479","6/6/2024","0x1d47DA85d4BC9DbDC80c706F1e2337674EA98061","[email protected]","https://x.com/chiavivecitizen/status/1798653632256110598?s=46","chiAviveCitizen","215","1520","Jerry™️💈👁 .fuel .plena","Defi 👁 || Crypto || Cats. From 🪐. The future is definitely Modular @Mint_Blockchain @intuition 👁 🔮 Wiz @AvalonFinance_ @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1d47DA85d4BC9DbDC80c706F1e2337674EA98061"
"481","6/6/2024","0xd62de028Ba5B1B62Cd5C9D29000e2E8f05b5d320","[email protected]","https://x.com/Iamchristez2/status/1798654487512617125?t=Xao8gU3_9cwj6TT-K34PIw&s=19","Iamchristez2","188","5186","Chrizcrypt","#HBAR MAXI","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd62de028Ba5B1B62Cd5C9D29000e2E8f05b5d320"
"483","6/6/2024","0xB04079bCD3187eE95826d14f42C87e027Cb2192C","[email protected]","https://x.com/___Mo2000/status/1798654754916335865?t=pGYFw0VdA7SV7fcl12uScg&s=19","___Mo2000","21245","2303","guylingal.eth🦋","🫰Degen |🧵 Thread Guy | 🤝 Collabs: @intocircledao | 🪩 Discord: guylingal | Dev","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0xB04079bCD3187eE95826d14f42C87e027Cb2192C @EthStorage."
"484","6/6/2024","0x18D60A81a01FB694D943640ab41be40177C71158","[email protected]","https://x.com/emmydepoju/status/1798654840194625803","emmydepoju","114","1083","web3nftmetaverse(💙,🧡).Tabi 🟧 .fuel .plena","#Bitcoin, unstoppable.nftLeft to Phaver#byebyebirdie #ISLM_MAXI @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x18D60A81a01FB694D943640ab41be40177C71158"
"485","6/6/2024","0x4B9DFAA66E0cB6965931310CaA131c4Aa5bB6Dd5","[email protected]","https://x.com/IfeoluwaOl53674/status/1798653977992814951?t=0z0V7XTsoxbie3A33pCZog&s=19","IfeoluwaOl53674","106","1091","Ifeoluwa Olawale#TONY 💎FYN","","I'm applying to participate in the Etherostorage public testnet.and my miner address is 0x4B9DFAA66E0cB6965931310CaA131c4Aa5bB6Dd5@Ethstorage"
"487","6/6/2024","0x50241feb3b9d0eA53629c4055636Ab5a86a51a07","[email protected]","https://x.com/perpz_apt/status/1798655054993564108?s=46","perpz_apt","3312","1486","Perpetual | Hasbiland","Full time Crypto and NFT Maxi","I am applying to participate in the EthStorage public testnet, and my miner address is 0x50241feb3b9d0ea53629c4055636ab5a86a51a07 @EthStorage"
"489","6/6/2024","0x8F23f9a34b7158DCd59136f4B15964687a8Bb444","[email protected]","https://twitter.com/iam_sirjoe24/status/1798655530787074076?t=SScCY5zqW7llQXVKXTQOWg&s=19","iam_sirjoe24","148","2003","SIR JOE $PARAM","Be YOU!iamsirjoe_24","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8F23f9a34b7158DCd59136f4B15964687a8Bb444"
"490","6/6/2024","0x53418ea6ECd19817C60240Dc29c43879663eb625","[email protected]","https://x.com/Shalamandez/status/1798655359764365732","Shalamandez","857","11600","Gas Lighter","Don't take life too seriously none of us is making it out alive. Strong beliver @Laika_Layer2 @cvex_xyz @Lingocoins","I am applying to participate in the EthStorage public testnet, and my miner address is 0x53418ea6ECd19817C60240Dc29c43879663eb625@EthStorage"
"491","6/6/2024","0x226ffe8915707b38BB4c7d31EA05111EAAdDc4F1","[email protected]","https://x.com/GeniusDashHub/status/1798655834525990915?t=BCVL_Jeorjn9m2yie4Z1hQ&s=19","GeniusDashHub","647","2326","Blessing.plena","Up only @ArtZero_io#GM $AZERO #AZERO Fam#AzeroNfts #NFTGiveaways@Aleph__Zero #AZERO #NFTGiveaways","I am applying to participate in the EthStorage public testnet, and my miner address is 0x226ffe8915707b38BB4c7d31EA05111EAAdDc4F1"
"493","6/6/2024","0x99b83e876894F191e6D27c183FdD83FDd854ef51","[email protected]","https://x.com/AlgoCherry/status/1798656122213335166?t=w1UR0T9uHnEU60PUwNgNhg&s=19","AlgoCherry","523","5211","c","Don't take my tweet serious","I am applying to participate in the EthStorage public testnet, and my miner address is 0x99b83e876894f191e6d27c183fdd83fdd854ef51"
"495","6/6/2024","0x66eb9DD2029866e3fEc04571Cf413C893703118C","[email protected]","https://x.com/IAmisraelokon/status/1798656272130343064","IAmisraelokon","1109","15571","Israel","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x66eb9DD2029866e3fEc04571Cf413C893703118C"
"496","6/6/2024","0x502337f9efbd91194DF1ACb1a64c2Ee9f1FF1007","[email protected]","https://x.com/MohNas__/status/1798656092865781899","MohNas__","269","5014","bsshnt","💙 https://t.co/AOWromwpLR Army","I am applying to participate in the EthStorage public testnet, and my miner address is <0x502337f9efbd91194DF1ACb1a64c2Ee9f1FF1007>"
"497","6/6/2024","0x9A87ceA42980B46492F0ab85e79F35876D9E3c7d","[email protected]","https://x.com/jappeey/status/1798656202378813643","jappeey","463","4917","Nnamah Augustine WEB3 Top Voice Tabi 🟧","Solana Allstars Ambassador. Witnessed 2024 BTC Halving Event📈WEB3 INFLUENCER Marketer. Crypto & Blockchain and Educator.Be the best you can!💎ICPUNK!❣️","I am applying to be a participant in the EthStorage Public Testnet, and my beta test address is 0x9A87ceA42980B46492F0ab85e79F35876D9E3c7d @EthStorage"
"498","6/6/2024","0x79A6A7f6Cf505b05f3C95A7bDa623B8C34749FE4","[email protected]","https://x.com/anujnegi22/status/1798656426275152220","anujnegi22","110","1709","Portal farm Tabi 🟧","$Portal go to moon🌘🌚","I am applying to participate in the EthStorage public testnet, and my miner address is 0x79A6A7f6Cf505b05f3C95A7bDa623B8C34749FE4"
"499","6/6/2024","0x028cFDd623498A42207899dea80341E7Acc95A0e","[email protected]","https://x.com/RMchandravanshi/status/1798656610312798608","RMchandravanshi","106","1467","Ramchandra","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x028cFDd623498A42207899dea80341E7Acc95A0e"
"500","6/6/2024","0xa5A4Ac3be80B2b34c7117c2eA2cca04D6CCa5059","[email protected]","https://x.com/ajinahmoh/status/1798655387932991730","ajinahmoh","107","755","Crypto Hunter .fuel | Fuelet 💚🌙","Easy and Plain Dude 👁Left to Phaver#byebyebirdie @Plenafinance #PlenaArmy | Fuelet","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa5A4Ac3be80B2b34c7117c2eA2cca04D6CCa5059@EthStorage"
"502","6/6/2024","0x7AE61beba95D57F5B72761795F15B519d371f263","[email protected]","https://x.com/mysticgoke/status/1798657461328716232?s=46&t=wHAdE64fXVJCQcFXrfXNhw","MysticGoke","146","1202","Lazy Hero","👾","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7AE61beba95D57F5B72761795F15B519d371f263 @EthStorage"
"503","6/6/2024","0x94113a092ED40eEBC7243ddb73201e905E4909fb","[email protected]","https://x.com/crazysadboi/status/1798657665666883838","crazysadboi","1375","14216","max.","cybersecurity 👨💻","I am applying to participate in the EthStorage public testnet, and my miner address is 0x94113a092ED40eEBC7243ddb73201e905E4909fb @EthStorage"
"505","6/6/2024","0xffe2e27D7D190376755cC06A172813231A21c7d4","[email protected]","https://x.com/toyyib__/status/1798657760286179544?s=46&t=hPDbXYWGEHQmkPwLkN_5-A","toyyib__","643","3252","Muhammad 🐉 $MON @playsomo | $SOMO $XTER $DROIDS","Worry ends where faith begins.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xffe2e27d7d190376755cc06a172813231a21c7d4@EthStorage"
"506","6/6/2024","0xb03b1624ceE4293ec89599071788c856889b61de","[email protected]","https://x.com/jideayeyemi/status/1798658226323669350?s=46&t=O6kNv6NIeosCwrd0L-0PWw","jideayeyemi","200","3329","KJ || SUS.h$bubble$XTER$BEYONDNYAN🔫😼🐉$MON$RCADE","web3 nft enthusiasts #AVAX #AVAXNft #AVAX #optimismEth #Arbitrum @SusHashToken @playsomo | $SOMO#","1 am applying to participate in the EthStorage public testnet, and my miner address is 0xb03b1624ceE4293ec89599071788c856889b61de@EthStorage"
"508","6/6/2024","0x9a1FADA0390b3188B683f5E1356B54029eAC54b2","[email protected]","https://x.com/GlascManuel/status/1798658431986909195","GlascManuel","190","3830","🐉 $MON| Tabi 🟧 | 🧡 Ordzaar | | 🟧 ⛈️ 🟣","@aptosnames $FAR @cvex_xyz👁️ 🟨@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9a1FADA0390b3188B683f5E1356B54029eAC54b2@EthStorage"
"510","6/6/2024","0x6d49205Ce349FF0dA21C23215606791ca4Bc1740","[email protected]","https://twitter.com/officialabdulak/status/1798658429550014601?t=-dau8TWYyF5Hp3pMZV0qZw&s=19","officialabdulak","696","7033","𝙸'𝚖 ⭕𝚏𝚏𝚒𝚌𝚒𝚊𝚕 𝙰𝚋𝚍𝚘𝚞𝚕","|| 𝙳𝙴𝙵𝙸 || 𝚗𝚊𝚟𝚒𝚐𝚊𝚝𝚒𝚗𝚐 𝚋𝚕𝚘𝚌𝚔𝚌𝚑𝚊𝚒𝚗'𝚜 𝚎𝚟𝚘𝚕𝚟𝚒𝚗𝚐 𝚕𝚊𝚗𝚍𝚜𝚌𝚊𝚙𝚎 || #web3 #DEFI 𝚘𝚗𝚎 𝚋𝚕𝚘𝚌𝚔𝚌𝚑𝚊𝚒𝚗 𝚊𝚝 𝚊 𝚝𝚒𝚖𝚎 ||","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6d49205Ce349FF0dA21C23215606791ca4Bc1740"
"513","6/6/2024","0xA95bF700068E5c85d2781EdC10eC24A5c63a468c","[email protected]","https://x.com/Xdaidaididi/status/1798659180540408280","Xdaidaididi","7389","193","dustine ( 互fo)","#互fo,#btc #bnb #ltc #eos#followbackhi,there is my mail3 address [email protected] me","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0xA95bF700068E5c85d2781EdC10eC24A5c63a468c. @EthStorage."
"514","6/6/2024","0x12781aFD4F94272398A246874AE45D6AC7668EB3","[email protected]","https://x.com/UsmanOmoto75512/status/1798659521658896420","UsmanOmoto75512","157","716","Olateju Usman","Be nice.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x12781aFD4F94272398A246874AE45D6AC7668EB3"
"515","6/6/2024","0xEC371f12Fc8EdF72cBe7583e5CC659F7D1911980","[email protected]","https://x.com/chiamaka_asogwa/status/1798659415396294984?s=46&t=eIilidy-k2ZQMKGlghnzrA","chiamaka_asogwa","203","3129","kella TAP🚰","@Laika_Layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0xEC371f12Fc8EdF72cBe7583e5CC659F7D1911980@EthStorage"
"516","6/6/2024","0x8a18a07e85333E815E289d33d5E3ECFe657F8e67","[email protected]","https://x.com/dee_bhosale/status/1798654249057820993","dee_bhosale","131","1828","deepak","Tabi 🟧 ♣️$XTER #SomniaNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8a18a07e85333E815E289d33d5E3ECFe657F8e67 @EthStorage"
"518","6/6/2024","0xA27Fc604ed4dd60922dE0b56a34bd5F8133b5508","[email protected]","https://x.com/muhamme27554837/status/1798659289583595956?s=46&t=hPDbXYWGEHQmkPwLkN_5-A","MUHAMME27554837","139","3147","Muhammad | 🐉 $MON .plena $BUBBLE 🫧 🫧 🫧","Worry ends where faith begins | Web3 | NFT | @NgnArewaWeb3","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa27fc604ed4dd60922de0b56a34bd5f8133b5508@EthStorage"
"519","6/6/2024","0xea786c14703BadDF899f9aBDA17F10Aa55243AC5","[email protected]","https://x.com/iamaliyu44/status/1798659805340479946?s=46","iamAliyu44","1451","32076","captaincold💸","| 𝔀𝓮𝓫 3.0 | 𝓣𝓐 📊 | 𝕻𝖗𝖔𝖏𝖊𝖈𝖙 𝖒𝖆𝖓𝖆𝖌𝖊𝖒𝖊𝖓𝖙 | @layerzero_labs 𝓮𝓷𝓳𝓸𝔂𝓸𝓸𝓻","I am applying to participate in the EthStorage public testnet, and my miner address is 0xea786c14703baddf899f9abda17f10aa55243ac5"
"520","6/6/2024","0x3b17B2508250510981B8ebecC7a2b3c5ecf10ecd","[email protected]","https://x.com/cryptrt1/status/1798660072702390362","cryptrt1","979","4058","Punkforever.eth 🛸 🟥 🐐 🔥 Tabi 🟧 STONE🐦⬛🪨","https://t.co/MyQngoW5B1MediaX.sats, crypto lover #cryptopunks #clonefollowclone #bayc @V2X_GG ⚙️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3b17B2508250510981B8ebecC7a2b3c5ecf10ecd @EthStorage"
"522","6/6/2024","0xB5559F02f8547F73fd4F42d6B8F21Fd306DAB1aA","[email protected]","https://x.com/Snowden_0123/status/1798660477893185676?t=GJGZ-l1ZoylhwEcjJS1GIA&s=19","Snowden_0123","404","5069","⛩️ Ibraheem ⛩️ 🐺 🤪IQ50","New account needs follower, following back immediately ❤️🔥","I am applying to participate in the @EthStorage public testnet, and my miner address is 0xB5559F02f8547F73fd4F42d6B8F21Fd306DAB1aA"
"523","6/6/2024","0x0d30071DB9Be2Fb7089DDbDC144bBA12949E1F10","[email protected]","https://x.com/_Opeyimika/status/1798660281830461717","_Opeyimika","425","29507","WHO ART IN HEAVEN!📿❄️","God| Family| Nfts| Music|","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0d30071DB9Be2Fb7089DDbDC144bBA12949E1F10 @EthStorage"
"524","6/6/2024","0x88F6AD1DfD424Cecf1a684be936D3837563f1862","[email protected]","https://x.com/Jaydeennoni/status/1798657324908953957","Jaydeennoni","365","3895","Ogechee.eth | Bitflow 🌊🏄♂️TAP🚰","Jesus Addict | Airdrop Hunter | Female Trader | Web3 Curator| Jarlath's Wife | Mother of 3 Champions | Leverage Queen | Team Leader | Aggressive Team Builder","I am applying to participate in the EthStorage public testnet, and my miner address is 0x88F6AD1DfD424Cecf1a684be936D3837563f1862@EthStorage"
"525","6/6/2024","0x95E8eAe0f3dB2EE60d4Be3bB01Df40be8B00E735","[email protected]","https://x.com/Messy1_D_Great/status/1798660621388460208?t=VN4wyZrUMJo9ruvWtNvGdw&s=19","Messy1_D_Great","111","1102","Messy1","","I am applying to participate in the Eth storage public testnet, and my miner address is 0x95E8eAe0f3dB2EE60d4Be3bB01Df40be8B00E735@EthStorage"
"526","6/6/2024","0x0eAc74933fd5519a8B482C03cA6BcB3284ecA04D","[email protected]","https://x.com/AutoSueno/status/1798661046925922492","AutoSueno","296","2913","rogue.","FX | Dealership | Crypto ⚙️ @playsomo | $SOMO","I am excitedly applying to participate in the EthStorage public testnet and my address that will be used to deploy the dApp for the campaign is;0x0eAc74933fd5519a8B482C03cA6BcB3284ecA04D"
"527","6/6/2024","0xfbA27d3C96e6Bde641e4B016fDE680815f04127A","[email protected]","https://x.com/Boyles_fx/status/1798660862414061695","Boyles_fx","118","3493","Boyles","Everything forex 📈📈📉","I am applying to participate in the EthStorage public testnet, and my miner address is 0xfbA27d3C96e6Bde641e4B016fDE680815f04127A"
"528","6/6/2024","0xA0231FD51CB3c275C5420FEEaC33Ad6af6837Ac1","[email protected]","https://x.com/NgQuckh03550660/status/1798661011316289783?t=DTE1GALwujBgaUUDd7JzCQ&s=19","NgQuckh03550660","120","5428","2K Network OwO","","@EthStorage Applying to participate in ethstprage testnet with address: 0xA0231FD51CB3c275C5420FEEaC33Ad6af6837Ac1"
"531","6/6/2024","0xAb4416AB38702905244cfe868d1D218Bd4Dcb8a2","[email protected]","https://x.com/makiaveli_jr/status/1798661699639415056","makiaveli_jr","3095","8509","kvnta Fx Tabi 🟧","Creative Junkie!!! When life gives me Samples, I make Bangers. #Web3 #Music","I am applying to participate in the EthStorage public testnet, and my miner address is 0xAb4416AB38702905244cfe868d1D218Bd4Dcb8a2 @EthStorage"
"533","6/6/2024","0xc379c43c0D2F4728B3071a680e7497efe72DDDAF","[email protected]","https://x.com/Emilynus243/status/1798661851250909528","Emilynus243","118","1029","Emily $BUBBLE 🫧🫧🫧 🕹️ $RCADE $XTER","I’m A Magnet 🧲 for Greatness. I attract Positive Things The World Has to offer 😊 @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc379c43c0D2F4728B3071a680e7497efe72DDDAF"
"536","6/6/2024","0x10DbF82A8bb191bd1c082de5Ef915E998Aa5CCD7","[email protected]","https://x.com/ChrisEmmanuelK1/status/1798662270240833560?s=19","ChrisEmmanuelK1","422","2361","Khellveen.eth","Simple and sweet 😋","I am applying to participate in the EthStorage public testnet, and my miner address is 0x10DbF82A8bb191bd1c082de5Ef915E998Aa5CCD7@EthStorage"
"538","6/6/2024","0x551064320a3D824002d4b4DB02Bc2c3cD3117275","[email protected]","https://x.com/Isaac81109061/status/1798662215702286364","Isaac81109061","213","3367","Bidmine","$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x551064320a3D824002d4b4DB02Bc2c3cD3117275@EthStorage"
"539","6/6/2024","0x3a1633556C9BfC6d89B2d00a1d73fBfA7E1ee236","[email protected]","https://x.com/DanyCoota/status/1798662614563901600","DanyCoota","1101","7295","Dany_coota.plena","🔮 Wiz @AvalonFinance_ @playsomo | $SOMO @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3a1633556C9BfC6d89B2d00a1d73fBfA7E1ee236@EthStorage"
"540","6/6/2024","0x56A17b239C7F50BD0E4c2EE464668604d72cedfc","[email protected]","https://x.com/JoshuaRules2/status/1798662853328585117","JoshuaRules2","268","5181","Joshua Rules 🐉","#ScriptNetwork「OAU」","I am applying to participate in the EthStorage public testnet, and my miner address is 0x56a17b239c7f50bd0e4c2ee464668604d72cedfc@EthStorage"
"544","6/6/2024","0xdC9C92A5a7D0A86f2d8e8381060D190a7fff59b5","[email protected]","https://x.com/EkenechukwuAle1/status/1798664250300542982","EkenechukwuAle1","138","2636","$BUBBLE 🫧🫧🫧|.fuel| Min| Blockch Tabi 🟧| $XTER","@IntractAmbassador @Mint_Blockchain @playsomo | $SOMO 💙 https://t.co/46VjavUmvy Army","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdC9C92A5a7D0A86f2d8e8381060D190a7fff59b5@EthStorage"
"546","6/6/2024","0x56010a30e25773025acD8aB416c1F73B1529502D","[email protected]","https://x.com/charming_tife/status/1798664524498890807","charming_tife","128","213","Charming 🐉 $MON","🔮 Wiz @AvalonFinance_ 🎵","I am applying to participate in the EthStorage public testnet, and my miner address is 0x56010a30e25773025acD8aB416c1F73B1529502D@EthStorage"
"547","6/6/2024","0xe4c8aA8B257b5e1FE9f930bD32a593030C779939","[email protected]","https://x.com/david_rhahor/status/1798664623282905508","david_rhahor","1002","26368","Xampler","あなたが制御できないものについて心配しないでください","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe4c8aA8B257b5e1FE9f930bD32a593030C779939@EthStorage"
"549","6/6/2024","0xC517cD89eee8115928BBd09F2Ad265aE98c37A1B","[email protected]","https://x.com/Prevail_007/status/1798664535102091684?t=NhjJKysyrhE5cErx100IeA&s=19","Prevail_007","193","1500","itz-prevail007.ton 💜🌽,🌾📜","Seeking peace and quiet🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC517cD89eee8115928BBd09F2Ad265aE98c37A1B @EthStorage '"
"551","6/6/2024","0x94377102c7AE9cB229B380Bb5b85F63d5d508c65","[email protected]","https://x.com/mj75829/status/1798664739406422110?s=19","mj75829","179","1680","MUJEEB**","computer science✌️✌️. professional locksmith... @arsenal @realmadrid.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x94377102c7AE9cB229B380Bb5b85F63d5d508c65"
"554","6/6/2024","0xd16D52B5Ee8C8eF65275Fd88C1b06540a072db7F","[email protected]","https://x.com/Salman53189747/status/1798665526400717115","Salman53189747","157","289","salmanhere.Tabi 🟧","Engineer who took crypto seriouslyCrypto\ StockWeb3\ Nft","I am applying to participate in the EthStorage public testnet, and my miner address is <0xd16D52B5Ee8C8eF65275Fd88C1b06540a072db7F>"
"555","6/6/2024","0x1bf74Fc7740ad909967Cd3863f591A8C750c381C","[email protected]","https://x.com/PromiseGod78/status/1798665525284979091","PromiseGod78","504","265","God promise","| Runes Chain 🟧 🐒 MALOU","@EthStorage 0x1bf74Fc7740ad909967Cd3863f591A8C750c381Cwonderful project"
"556","6/6/2024","0x323daaf02383e27E1220845fE8fCeB1deadF73cD","[email protected]","https://x.com/Swaggguy7/status/1798665572584165857","Swaggguy7","111","587","Swaggguy","Am a cool headed guy","I am applying to participate in the EthStorage public testnet, and my miner address is 0x323daaf02383e27E1220845fE8fCeB1deadF73cD@EthStorage"
"558","6/6/2024","0x70664b09451649e99073722De15F3B5b40F995F5","[email protected]","https://x.com/IbrahimEmm16090/status/1798665445152788763","IbrahimEmm16090","127","170","Emmanuel Ibrahim","Crypto enthusiast💹🇳🇬(Kaduna)(Manchester united ❤️)$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x70664b09451649e99073722De15F3B5b40F995F5@EthStorage"
"560","6/6/2024","0x6855B23D93f57851d30a324B00f17f9baf34Ac02","[email protected]","https://x.com/crytpoway/status/1798666063061962756","crytpoway","888","7408","Anthony $XTER $SOMO","Crypto NFT GAMEFI | $BGB HODL|Building Vibrant Communities","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6855b23d93f57851d30a324b00f17f9baf34ac02"
"565","6/6/2024","0x7608E72C0b803A0e6D4714792405D269B6bcf407","[email protected]","https://x.com/Syntax_lord/status/1798667428794393060","Syntax_lord","139","2247","bronze_dee🟧⛈️🟣","🎮 Tech enthusiast by day, gamer by night 🕹️ | Data Science explorer 📊 | Constantly leveling up in the digital world 🚀 | Let's code, conquer, and analyze to","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7608E72C0b803A0e6D4714792405D269B6bcf407"
"567","6/6/2024","0x757eAD883bcF9bd3D6503a735B8dec2c1ae99E35","[email protected]","https://x.com/pheranmyh77/status/1798668247795200122","pheranmyh77","4438","9259","Mayorofweb3","Airdrop Hunter || Web3 Tutor || Defi || NFT @FierceDao team member MUFC 🔴 Join me here 👇 https://t.co/jDuS3GYI3t","I am applying to participate in the EthStorage public testnet, and my miner address is 0x757eAD883bcF9bd3D6503a735B8dec2c1ae99E35"
"571","6/6/2024","0xB4B58A06cF092B09330f0eeC2dC86752E51B1fDA","[email protected]","https://twitter.com/OfomataMichael/status/1798668331773460561?t=190ldf-GRQIuR9pnrzj_Iw&s=19","OfomataMichael","196","880","Ofomata Michael🧑🎄","⚙️","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is<0xB4B58A06cF092B09330f0eeC2dC86752E51B1fDA>"
"572","6/6/2024","0x897713903b7BF6c1590b09A13F3fe677E75Ae650","[email protected]","https://x.com/d__eth/status/1798668758657200434?s=46&t=2vSHC2QB43Bt9eaDkiNFxw","d__eth","104","1745","0x650👨🏾🌾","DeFi farmer • $ETH","I am applying to participate in the EthStorage public testnet, and my miner address is 0x897713903b7BF6c1590b09A13F3fe677E75Ae650 @EthStorage"
"573","6/6/2024","0x57EF5Dc38769Eb4cEB1B17F1fBd4aA8efA6F63E3","[email protected]","https://x.com/hylanmcxbhg/status/1798534473719730408","hylanmcxbhg","159","37","hylanmcxbhg","","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0x57EF5Dc38769Eb4cEB1B17F1fBd4aA8efA6F63E3@EthStorage https://t.co/nvgKQWXrex"
"574","6/6/2024","0xaE6D28aA68096CFD12a71beCbBEb9B0e56c873E6","[email protected]","https://x.com/andybee_os/status/1798617655311822874?t=JWL9lOrMpBQhwuXxIMmUbg&s=19","andybee_os","611","18201","Beelieve💎","Treasure Hunter in Web 3|| Evm/Acc (@monad_xyz) || Shitposter 💎 Club || MUFC","I am applying to participate in the EthStorage public testnet, and my miner address is 0xae6d28aa68096cfd12a71becbbeb9b0e56c873e6 @EthStorage"
"576","6/6/2024","0xEebcBf641fE6e9564516e7b3c45158D2CDfc5135","[email protected]","https://x.com/ini_figmababy/status/1798670412316029193","ini_figmababy","242","2614","Ini.Figmababy","Tech Baby. User interface and User experience Designer, Web3 enthusiast NAMASTE","I am applying to participate in the EthStorage public testnet, and my miner address is 0xEebcBf641fE6e9564516e7b3c45158D2CDfc5135"
"578","6/6/2024","0xF1B911235b37eC41134fD022AF527894A2D2A50f","[email protected]","https://x.com/Lee04584274/status/1798671476180279426","Lee04584274","137","298","Pega lee-Pega🌘","https://t.co/eqQylRLNhK","I am applying to participate in the EthStorage public testnet, and my miner address is <0xF1B911235b37eC41134fD022AF527894A2D2A50f>@EthStorage"
"579","6/6/2024","0x79D26BbdF03dD196f70A807e0bF84C4b2f10FAb1","[email protected]","https://x.com/cryptofrance__/status/1798671878888038501","cryptofrance__","1558","3882","Crypto-France.fuel ⚔️🐐","@cvex_xyz lover","I am applying to participate in the EthStorage public testnet, and my miner address is 0x79D26BbdF03dD196f70A807e0bF84C4b2f10FAb1@EthStorage"
"580","6/6/2024","0xA71b0E85C74138149efeF0909754ffa632d1B52C","[email protected]","https://x.com/alluarjun654/status/1798671733484126365","alluarjun654","117","270","hunter350.eth Tabi 🟧","Crypto Aspirant#byebyebirdieLeft to Phaver","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA71b0E85C74138149efeF0909754ffa632d1B52C@EthStorage"
"581","6/6/2024","0x33F35C805124218b270C8c1FCCeEA238f0F3b9D4","[email protected]","https://x.com/bertc33/status/1798671638160122367","bertc33","156","47","bertc","No","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address 0x33f35c805124218b270c8c1fcceea238f0f3b9d4.@EthStorage"
"582","6/6/2024","0xCF69f375D482bAdb4D62BEB73dBAB7B98e4274cB","[email protected]","https://x.com/tarlysman/status/1798666759865876675?s=46&t=OSit1zo43dd4Es-l5676TQ","tarlysman","2186","8968","tarlysman","@ChelseaFC | …. WAGMI || ⚙️🔮 Wiz @AvalonFinance_ @cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCF69f375D482bAdb4D62BEB73dBAB7B98e4274cB"
"586","6/6/2024","0x22995D056C5b0271f31F6Ce028e9830b4781c4A3","[email protected]","https://x.com/abdkita1/status/1798666249783967960","abdkita1","176","446","Kita Tabi 🟧 🕵️ 🎓 $ARIA 🐞 $GAME 🟧 ⛈️ 🟣","@playsomo | $SOMO Army $BEYOND🛹🛹 Rider","I am applying to participate in the EthStorage public testnet, and my miner address is 0x22995D056C5b0271f31F6Ce028e9830b4781c4A3@EthStorage"
"587","6/6/2024","0x36E0aE1bC0Eb563e17f8851Cc965Ab3708E3528a","[email protected]","https://x.com/segmaan/status/1798672839362613607","segmaan","249","5255","Bojuro Oluwasegun","Mathematicians||DeFi||Airdrop||Proud Crypto farmer","I am applying to participate in the EthStorage public testnet, and my miner address is <0x36E0aE1bC0Eb563e17f8851Cc965Ab3708E3528a>"
"588","6/6/2024","0x6F5B9da137D9B5Ff6c5428cc9664eCb8be828387","[email protected]","https://x.com/sir_walter_9006/status/1798672684185714709?t=j-K_7TNTAZXrrkx7_9X2ug&s=19","sir_walter_9006","1448","33532","Sir_Walter🛸","Make your move: Once you make it,you have to fight to keep your spot.📌Commercially-Aware🛃Loyal🤝 and driven💪","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6F5B9da137D9B5Ff6c5428cc9664eCb8be828387 @EthStorage"
"591","6/6/2024","0xdbe59131f73864F41c830cFC3d6E1583b233CFB6","[email protected]","https://x.com/hecksflakes/status/1798673301323305338?t=kgZmrLRDXp0pdquFv9RDXA&s=19","hecksflakes","437","6674","Hecks.eth.fuel(🌸, 🌿).plena","A young man from a small town #cryptobrothers #cryptohub https://t.co/QK4nie8Kfh…","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdbe59131f73864F41c830cFC3d6E1583b233CFB6@EthStorage"
"592","6/6/2024","0x9ffeB2a75E8FAd479d978B4c9f9CFb41b8327c14","[email protected]","https://x.com/enezito_/status/1798673642286399792","enezito_","299","4487","Jinchūriki - $XTER $BUBBLE 🫧🫧🫧","Arsenal ⭕️ || CODM🪖|| Humble #Defi analyst || Researcher and content creator || web3 $SEF","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9ffeB2a75E8FAd479d978B4c9f9CFb41b8327c14"
"594","6/6/2024","0x202D2Be2C23B09F12485eA8E8b6e4f10F1D8a457","[email protected]","https://x.com/fvruqh/status/1798673864605749282?s=46&t=joDgpu8cvgxREb9-qPUVlg","Fvruqh","397","1784","TOPBOY $BUBBLE $BEYOND 💎$FYN @ricyofficial","TRANSCENDING @ricyofficial https://t.co/pCDQq6GY7I","I am applying to participate in the EthStorage public testnet, and my miner address is<0x202d2be2c23b09f12485ea8e8b6e4f10f1d8a457>@EthStorage"
"595","6/6/2024","0x78e0C876B3432B251994DA7F67C37831943D0809","[email protected]","https://x.com/M2___16/status/1798674024857268354","M2___16","309","8366","Dreamers👻🦾","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x78e0C876B3432B251994DA7F67C37831943D0809"
"596","6/6/2024","0xF67499Ab99b62e9758977B37754C6846Ea503627","[email protected]","https://x.com/devmillian/status/1798673042778067291?s=19","devmillian","304","3541","| Runes Chain 🟧@cvex_xyz | 🕷","All things Crypto @Atleta_Network","I am applying to participate in EthStorage public testnet, and my miner address is 0xF67499Ab99b62e9758977B37754C6846Ea503627"
"597","6/6/2024","0x6Eaf6b0821447B4c57824eCaCE432b4Df25EAF91","[email protected]","https://x.com/DangerousSpy/status/1798674140351562211","DangerousSpy","574","3789","Willing| 👁️ plena","Crypto lover, Full time rekt!","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6Eaf6b0821447B4c57824eCaCE432b4Df25EAF91"
"598","6/6/2024","0xC70a7cdb77695EaC422E3BE99C0f847Cee70AB23","[email protected]","https://twitter.com/Aj_pablo01/status/1798674680762765785?s=19","Aj_pablo01","201","2536","City woman 💙Tabi 🟧 .plena","Don't fade anything!!Remember talk is cheap.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC70a7cdb77695EaC422E3BE99C0f847Cee70AB23"
"599","6/6/2024","0x4573A6ed8E52dC920C002E678a888b81E6Bf99a8","[email protected]","https://x.com/Emahdaniel123/status/1798674894080880664","Emahdaniel123","3313","10087","Emahdee👁️","Crypto Enthusiast | AI Artist | Fuelet 👁️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4573A6ed8E52dC920C002E678a888b81E6Bf99a8@EthStorage"
"600","6/6/2024","0x9d468747935D0fB4bCcEbb72FFC346a444828E5D","[email protected]","https://x.com/epsilon_dev1/status/1798675309719363633","epsilon_dev1","431","5546","Phasmod 𝕏","👁️ Moderator || Collab / WL hunter || Airdrop Hunter || Phygitals Dm Open || 📥 https://t.co/gC2JwtqTbs","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9d468747935D0fB4bCcEbb72FFC346a444828E5D"
"606","6/6/2024","0xC668d4e0776501f2D464AA6E568ff61033514A49","[email protected]","https://twitter.com/peperium_ai/status/1798676250547933678?t=TVcL0IPndsB6K0JK3Lj1vQ&s=19","peperium_ai","669","423","peluman.eth 🐉 $MON $BUBBLE 🫧🫧🫧","on $XRP $FAR @cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is <0xC668d4e0776501f2D464AA6E568ff61033514A49>"
"608","6/6/2024","0xa0dfCA1B6cC9726AbF6a4C09a4628F8211025acE","[email protected]","https://x.com/DivineAnthony12/status/1798676779542159615","DivineAnthony12","279","5807","Divine Anthony ⚡️Joltify 🐳 $BLUAI Tabi 🟧","LOVE FOR WEB 3, CRYPTO, FOREX TRADINGCHAT ENGANGER MODERATOR@Laika_Layer2GRAPHIC DESIGNER@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa0dfCA1B6cC9726AbF6a4C09a4628F8211025acE"
"610","6/6/2024","0x5d32bbf7ba978EdE24017d7e215a0c36e2242B13","[email protected]","https://x.com/Telvintim/status/1798676823858934252","Telvintim","325","5818","Telvin Tim💙","Let's explore. Oasis $Rose enthusiast.NFT lover, Airdrop hunterrr💰#CreateWithoutLimits","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5d32bbf7ba978EdE24017d7e215a0c36e2242B13"
"611","6/6/2024","0xEE2190D17cd2Bc75a7af9c589834fC4f4B6CC003","[email protected]","https://x.com/Davisman02/status/1798677058249241087","Davisman02","111","1695","Davis🦾","Nft/Gamer @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xEE2190D17cd2Bc75a7af9c589834fC4f4B6CC003 @EthStorage"
"613","6/6/2024","0xb8A1B61E541bd76DD32cBDb235c9d6a489Af110C","[email protected]","https://twitter.com/Urbashi32/status/1798677182484766890?t=CA0VKevC8hwQB9xbZZH5_Q&s=19","Urbashi32","224","4049","Urbashi (⛩ , 🚢) Tabi 🟧 ⚡️Joltify","#CloudBase is a multi-functional DEX on #BASE.https://t.co/9p6OS0bmWv#PiraFinance","I am applying to participate in the EthStorage public testnet, and my miner address is <0xb8A1B61E541bd76DD32cBDb235c9d6a489Af110C>"
"614","6/6/2024","0xD1Ee3596C46964b6eDe471cEf8afcFa6d6C3A2da","[email protected]","https://x.com/trappothegod/status/1798677461716361336?s=46&t=eegFBRwOYlJsUJ20YkZp_A","Trappothegod","461","14149","Trappothegod","|🇳🇬| Artist• NFT• Degen• @Crest_XD","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD1Ee3596C46964b6eDe471cEf8afcFa6d6C3A2da@EthStorage"
"615","6/6/2024","0xacD562CE910874912DBA7865B8430B565DAE1cBc","[email protected]","https://x.com/Wittyant22/status/1798677643711463886","Wittyant22","1006","11263","Anthony 🥇","Physiotherapist | Chelsea FC 💙 | Clothier 💦 $ALGO | @Plenafinance & #PlenaArmy","I am applying to participate in the EthStorage public testnet, and my miner address is 0xacD562CE910874912DBA7865B8430B565DAE1cBc"
"616","6/6/2024","0x464a72Ab743ae4D70B7233f17C65f2c3eeC36D11","[email protected]","https://x.com/Crypto_antik/status/1798677739492331842","Crypto_antik","178","1368","Quad Tabi 🟧⛈️🟣","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x464a72Ab743ae4D70B7233f17C65f2c3eeC36D11"
"617","6/6/2024","0xd23658F80294Fd316A1e2968eEEeB0b10714B91a","[email protected]","https://x.com/Abhishe72955081/status/1798677494062821471","Abhishe72955081","221","2983","Abhishek Mondal $STYLE⚡️Joltify","@OxyaOrigin","I am applying to participate in the EthStorage public testnet, and my miner address is <0xd23658F80294Fd316A1e2968eEEeB0b10714B91a>"
"620","6/6/2024","0x45C4b718C6D9512387220d679E51c376A487591B","[email protected]","https://x.com/lilicutie23/status/1798677916886221078?t=UKXhJHC0u8aBOO8J7KBjRA&s=19","lilicutie23","249","3125","FAVORITE DAUGHTER ❤️ TABI😇","Web3 Trader, Web3 Enthusiast|| Airdrop Hunter 🤠","I am applying to participate in the EthStorage public testnet, and my miner address is 0x45C4b718C6D9512387220d679E51c376A487591B"
"621","6/6/2024","0x565fC31A12C7F36d072d0B68493B7072655136d3","[email protected]","https://x.com/Muhamma51581455/status/1798678510690877689","Muhamma51581455","185","4634","Muhammadshamir.lens,🎮🐉 $MON🚀MATR1XCoin,$PARAM","#CloudBase is a multi-functional DEX on #BASE.@SuiPadxyz #SuiPadxyz @zk_apes #zkApes$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x565fC31A12C7F36d072d0B68493B7072655136d3"
"622","6/6/2024","0x96002BF883A866bEEEE5125AE274C444209f0C22","[email protected]","https://x.com/xplanxplanet/status/1798678647936631109?s=46&t=8e_IpjUP9GEtdSowvBv45Q","XplanXplanet","1277","8016","Xplanet","Rug Survivor, Risk Taker, $1m Dream 💭 Here For The Art 🖼 computer scientist 👨🔬 #ALX #APTECH @playsomo | $SOMO | ZAP Chain ⚡️ | Bitflow 🌊🏄♂️ @cvex_xyz","I am applying to participate in the ETHStorage public testnet , and my miner address is 0x96002BF883A866bEEEE5125AE274C444209f0C22 @EthStorage"
"624","6/6/2024","0x302421308211FEeEBd6E7c21451C557D024Fe9c4","[email protected]","https://x.com/harbhidem/status/1798678780300742974?s=19","harbhidem","126","1608","Bidex-Tech 🐉 $MON 🕹️ $RCADE 🐳 $BLUAI","Data Engineer| Data scientistelectrical/Electronicsanimated moviessolar installationsoftware engineerweb designerI am Blessed","I am applying to participate in the EthStorage public testnet, and my miner address is (0x302421308211FEeEBd6E7c21451C557D024Fe9c4)"
"625","6/6/2024","0xC7b3D40f62Acdc46b5E37D812e0b038F66AA84FD","[email protected]","https://x.com/Oluwasina18/status/1798677584735314165","Oluwasina18","209","8547","Husky $RVV 🟣 $LOL","No bio","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC7b3D40f62Acdc46b5E37D812e0b038F66AA84FD @EthStorage"
"626","6/6/2024","0xB34A79fE34fED37eA3CA3DCF86AFF3d226915149","[email protected]","https://x.com/Bravekitteen/status/1798679729207427564?t=UpSXS_YXQ48H1XxpBH1qQA&s=19","Bravekitteen","1352","5821","Milesz.sol....🚀MATR1XCOIN 🔮 @cvex_xyz .fuel","Civil Engineer | Crypto Enthusiast💯 #Solana #Avax......","I am applying to participate in the EthStorage public testnet, and my miner address is <0xB34A79fE34fED37eA3CA3DCF86AFF3d226915149>"
"627","6/6/2024","0x71368c5A3314F1b6AB701cf826C9AF47D097D5Fb","[email protected]","https://x.com/danny_sxn/status/1798679800330227768","danny_sxn","242","551","Pride is the Devil","Available for Enjoyment🥰","I am applying to participate in the EthStorage public testnet, and my miner address is 0x71368c5A3314F1b6AB701cf826C9AF47D097D5Fb"
"628","6/6/2024","0x279938D416158Ab2F6fd4f690F1D9c6DbAE86606","[email protected]","https://x.com/itxaamir7/status/1798679983524889011?s=19","itxaamir7","113","1646","itxaamir7 | $Lingo","Be your own reason for your happiness ❤️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x279938D416158Ab2F6fd4f690F1D9c6DbAE86606@EthStorage"
"630","6/6/2024","0x04088000A5F3fF745C30C58c57cC23Ee9672340a","[email protected]","https://x.com/EmrxOf77488/status/1798679573837791235","EmrxOf77488","311","3243","Emrx of africa","indispensableweb 3farmer","I am applying to participate in the EthStorage public testnet, and my miner address is 0x04088000A5F3fF745C30C58c57cC23Ee9672340a@EthStorage"
"631","6/6/2024","0x59228b601EF6694C1f1a75Ad2E20d91874E56641","[email protected]","https://twitter.com/BlessHoluwatayo/status/1798670986151375016?t=GBdmg9kJBA_Hf_XoedhDgg&s=19","BlessHoluwatayo","126","4088","Comfytee, grindery_io","Chelsea 💙 | ETH | SOL | #AmeerUnit @SeaSwapSui","'I am applying to participate in the EthStorage public testnet, and my miner address is 0x59228b601EF6694C1f1a75Ad2E20d91874E56641 @EthStorage '"
"632","6/6/2024","0xCdada021Ad2749B29E4718EFAe853465bbb6820D","[email protected]","https://x.com/GolikAgata/status/1798680483704029407","GolikAgata","208","5037","GoldenBEE.eth Tabi 🟧","Supporter of Ethereum solutions. || Member of ZK Success || scroll contributor ||Follow me on Farcaster: https://t.co/OiNDimyrML","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCdada021Ad2749B29E4718EFAe853465bbb6820D@EthStorage"
"633","6/6/2024","0x9c5e766f3c2112828DfBcfCE18a4385cA0fEB762","[email protected]","https://x.com/AphiaBaby/status/1798626552894435688","AphiaBaby","220","11570","Iyohwo Aphia","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9c5e766f3c2112828DfBcfCE18a4385cA0fEB762"
"635","6/6/2024","0xD472d167E61E551182fc58cF839d9Ad773260E39","[email protected]","https://x.com/notbot_oo7/status/1798681505751007670","notbot_oo7","271","6455","NotBot_oo7🍊","@WORKING FOR WEB3 24/7 #HODL","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD472d167E61E551182fc58cF839d9Ad773260E39 @EthStorage"
"636","6/6/2024","0x58d2c12C63D5284Ce01c8540165990051f76cA88","[email protected]","https://x.com/kxydj22439393/status/1798681337253241124","kxydj22439393","181","34","Pamela Terrell","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x58d2c12C63D5284Ce01c8540165990051f76cA88@EthStorage"
"637","6/6/2024","0xA6B3dc52E5F16c71F0aEe479A1081f1e41AF4FdC","[email protected]","https://x.com/alcantara70257/status/1798681424893194659?s=46&t=Wihr8zZnhTc0gjdqk_mWyg","Alcantara70257","493","10140","Alcantara","@Holders_Dao MOD|Haughty mummies alpha hunter| blueboysnft captain| #nfts @hypecatuniverse alpha hunter| Dm if you need a mod","am applying to participate in the EthStorage public testnet, and my miner address is 0xA6B3dc52E5F16c71F0aEe479A1081f1e41AF4FdC"
"638","6/6/2024","0xD56072F82453c3EC89dB44eC3C8d5E7ff7EC17dC","[email protected]","https://x.com/mryoungdon/status/1798681886212215116","mryoungdon","679","6281","DON BABA","full time airdrop farmer#zksync lover","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD56072F82453c3EC89dB44eC3C8d5E7ff7EC17dC"
"639","6/6/2024","0x247e28766F336a12E10430FeA23e3ef110513f71","[email protected]","https://x.com/P2EPathfinder/status/1798681406127948064?t=CdfnkliONYr71FD-PVoUxA&s=19","P2EPathfinder","4519","26473","𝙏𝙤𝙡𝙪 💜AILayer","Web3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x247e28766F336a12E10430FeA23e3ef110513f71"
"640","6/6/2024","0x0edc73392Ac0F5C555D89502dbd6E773aa8836dC","[email protected]","https://x.com/_okiki09/status/1798682234817323018","_okiki09","632","10471","OKIKIJESU🔸🃏","Paso Corto, Vistal Larga ➡️ Short Steps, Long Vision","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0edc73392Ac0F5C555D89502dbd6E773aa8836dC"
"641","6/6/2024","0xB9bdA87ae32Be631fe1f0aBa0A91ca2184A8bB55","[email protected]","https://x.com/Buike_Ferdinand/status/1798682350374490414","Buike_Ferdinand","452","9719","Jasper $PIXIZ 👨💻","💻JavaScript Dev.📱💻🔜 React Native [email protected]||Available for gigs","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB9bdA87ae32Be631fe1f0aBa0A91ca2184A8bB55"
"642","6/6/2024","0x3A5A105aFF5fCa24da07ec485d6fA015CBB2D0bE","[email protected]","https://x.com/Oxleryy/status/1798681968974114825?t=xhN_OsIPgKcoyBoQyHbFow&s=19","Oxleryy","106","649","leryy_stay .Fuel🌊 💙","OT8 💙🌊#stray_kids 🤞","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3A5A105aFF5fCa24da07ec485d6fA015CBB2D0bE"
"643","6/6/2024","0x8Ac691935f392369123430738f0E18b676f0C3F0","[email protected]","https://x.com/LawalSo234/status/1798680782992793783","LawalSo234","114","396","Sodex💪🏻 XPLUS |$BLOCK| $PARAM | 🐉$MON |♥POPCAT","","0x8Ac691935f392369123430738f0E18b676f0C3F0"
"644","6/6/2024","0xf9F617e4C4FEcf98859397BB94Ab5c6DA6EcFF9c","[email protected]","https://x.com/KawaiFarm/status/1798682091045216317","KawaiFarm","7509","53933","Kawaifarm","Passionate Crypto Trader & NFT Holder|ETH + SOL💓| Dm For Collabs ✉️ & Promo 🫡💜","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf9F617e4C4FEcf98859397BB94Ab5c6DA6EcFF9c"
"646","6/6/2024","0xC99a668EE4A8DC5c39a8096253b56a2F7808743a","[email protected]","https://x.com/InvestorCrack/status/1798682666033627610","InvestorCrack","430","5099","Vincentcrack","#Web3 Town Crier | Team @ventory_gg | partner @WEEX_Official | building @Cracked_Dao | DM Open for collab only 📤","I am applying to participate in the ETHStorage public testnet, and my miner address is 0xC99a668EE4A8DC5c39a8096253b56a2F7808743a @EthStorage"
"647","6/6/2024","0x35CE6CB4908A1F4F8f87181589bd6970823FA096","[email protected]","https://x.com/Ruthana_7/status/1798682688989397425?t=D_LXOzhCgDWtJ20ipyvMWQ&s=19","Ruthana_7","237","2651","Ruthana","DeFi | NFT | Community Manager | Collab Manager | #Airdrops Alphas","I am applying to participate in the EthStorage public testnet, and my miner address is 0x35CE6CB4908A1F4F8f87181589bd6970823FA096"
"648","6/6/2024","0xcA91781d5aBdF073c6bA192C1347ED869181F1aD","[email protected]","https://x.com/MrBukky_/status/1798681974334251163?t=9yNz7Zh9_YrFgatuzQ2yNg&s=19","MrBukky_","477","5526","wagmi2020.eth ♦️(💙,🧡)🛸💪,💪💚🌙 ❤️Memecoin","@intract Ambassador","am applying to participate in the EthStorage public testnet, and my miner address is 0xcA91781d5aBdF073c6bA192C1347ED869181F1aD@EthStorage"
"653","6/6/2024","0x296e2b3e1498D0D49c8277eE02444E8b49A57d94","[email protected]","https://x.com/Goalspire/status/1798683675120243024","Goalspire","328","5885","Goalspire @cv_exchange💎🤲🏿🕊️","A crypto enthusiast 🤳 & educator, political scientist 💼.sports lover⚽🎾🏌️⛹️🏈social media manager skilled in moderating ✍️ https://t.co/FlQTmYhLD3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x296e2b3e1498D0D49c8277eE02444E8b49A57d94@EthStorage"
"654","6/6/2024","0x595A718Ac3a985f0078FED08534e5f67e1c7Fd1B","[email protected]","https://x.com/0xfemoralnelson/status/1798683496170279297?s=46","0xfemoralnelson","1857","4943","0xFemoralnelson.eth","WEB3 Content Writer|| Community manager || WEB 3 || DEFI ||📈📉 || GAMER 🎮 || Manchester United Fan ❤️ FULL TIME NODE RUNNER","I am applying to participate in the EthStorage public testnet, and my miner address is 0x595A718Ac3a985f0078FED08534e5f67e1c7Fd1B@EthStorage"
"655","6/6/2024","0x19C02BDA13051EA9B3157BE2b711A83f4D46650c","[email protected]","https://x.com/jamesdoylecfc/status/1798683788236775636?s=46","JamesdoyleCFC","122","4017","TBS $UNIO","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x19C02BDA13051EA9B3157BE2b711A83f4D46650c @EthStorage"
"658","6/6/2024","0x43fAF76d8Ae9AB79060fdeD09ac9AcE0BA1BdC31","[email protected]","https://x.com/ObitoOlaoluwa/status/1798684567190265968","ObitoOlaoluwa","168","6651","ObitoOlaoluwa.bnb","God made me Exceptional and blessed","I am applying to participate in the EthStorage public testnet, and my miner address is 0x43fAF76d8Ae9AB79060fdeD09ac9AcE0BA1BdC31 @EthStorage"
"659","6/6/2024","0x9833C824Ae529bF0886Dc5f67a4B3c9859f619E5","[email protected]","https://x.com/ikefrancis_dod/status/1798684507794784762?s=46","Ikefrancis_DoD","671","8553","DoD.plena🛸🌽🐐 ♦️ ⚔️ Tabi 🟧 🟧 ⛈️ 🟣","Ikedod.apt | Co Founder Decrypt Hub | Community Manager | Collab Manager capable of many web3 assistance #CRO #APT $FAR @orivium @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9833C824Ae529bF0886Dc5f67a4B3c9859f619E5 @EthStorage"
"660","6/6/2024","0x7F9202981A118B95587cE2D515E1BE33fC7572fD","[email protected]","https://x.com/yugi_ga/status/1798684672337023400","yugi_ga","1430","6318","yugi","javascript!","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7F9202981A118B95587cE2D515E1BE33fC7572fD@EthStorage"
"661","6/6/2024","0x1Be45553C3CFfe9c11A3f0c35b23C365b59b31CE","[email protected]","https://x.com/UncleSoft/status/1798684736996749559?t=FdqA-f2h404k6r43QLSmow&s=19","UncleSoft","580","5997","AkinTheWay","GRACE|| God will make a way, he has no limitations 🕊️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1Be45553C3CFfe9c11A3f0c35b23C365b59b31CE"
"662","6/6/2024","0x54d520265aAbf3f5f51E486432C6738a7e71A537","[email protected]","https://x.com/0xaurSkyo/status/1798685444001214945","0xaurSkyo","7461","8297","0xAur (🌸, 🌿) (🦇, 🔊)🍭👁️","⚡️撸猫 深耕,善于挖掘,善于分享,做好自己,保持联系。一起迎接滚烫的明天🌞 #Binance #BeWorthy #byebyebirdie #Web3 💥@My3amclub | @WanziCrypto 🍡 | @DuoShouDAO | @0xIntuition - 👁️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x54d520265aAbf3f5f51E486432C6738a7e71A537@EthStorage"
"663","6/6/2024","0x70A0d11712A6DaBb820d8B1FbB87ebA4983f7265","[email protected]","https://x.com/rhoda_adek14568/status/1798685483494428807?t=o5u-Fgyot48maZIFdtQTIg&s=19","rhoda_adek14568","141","595","Adekola Rhoda♥️⚡Joltify","NFT enthusiast 💎💎#Airdrops🚀🚀Lover of music and art🎵","I am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address 0x70A0d11712A6DaBb820d8B1FbB87ebA4983f7265 https://t.co/TbgJkF1mFf"
"664","6/6/2024","0xF5dba7fB1389f8A300f1bD93a52759121Bf0FE55","[email protected]","https://x.com/mrerudite2k/status/1798685770674266480?s=46","MrErudite2k","574","1411","Peter D'Erudite 💊💊","#Pharmacist 👨⚕️ 💊 💊 💉 #OOUite 🔥🔥 #ChelseaFan 💙💙💯💯 #23rdPANSOOUPresident","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF5dba7fB1389f8A300f1bD93a52759121Bf0FE55 @EthStorage"
"666","6/6/2024","0x23d0e3a5d170E1a7800e5A088F100Ec033a2863c","[email protected]","https://x.com/Kumbaayyaaa/status/1798686827471319114","Kumbaayyaaa","214","2232","Sean Bolu Uche","Web 3👀⚽","I am applying to participate in the EthStorage public testnet, and my miner address is 0x23d0e3a5d170E1a7800e5A088F100Ec033a2863c"
"667","6/6/2024","0x677615b1242a5442fB949579E044a5c839a86123","[email protected]","https://x.com/farhanazizan92/status/1798687289662427218","farhanazizan92","118","1589","farhan.fuel $MOJO $well♦️🐉$MON Tabi 🟧 $BUBBLE 🫧","crypto enthusiast Testnet Thunder ⚡","I am applying to participate in the EthStorage public testnet, and my miner address is 0x677615b1242a5442fb949579e044a5c839a86123 @EthStorage"
"670","6/6/2024","0x093FbF799c557126CE266834f9Dd740447c882bA","[email protected]","https://twitter.com/PraizeRoman/status/1798687850487021795?t=OKbGwypygvCzVN6k0btakg&s=19","PraizeRoman","250","6354","Achara ike🎍💪","unapologetic obidient|| ICT @cv_exchange","I am applying to participate in the Ethstorage public Testnet, and my miner address is 0x093FbF799c557126CE266834f9Dd740447c882bA @EthStorage"
"671","6/6/2024","0x7d8861B55091C91513d2a8525F8d8786F7D636b2","[email protected]","https://x.com/GAS00T/status/1798688217413361910","GAS00T","1168","486","Gas.py 🚀MATR1XCoin","Data analyst| Crypto Trader","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7d8861b55091c91513d2a8525f8d8786f7d636b2 @EthStorage"
"672","6/6/2024","0xE06Df4e1bB13C8940545A75047b4AF10FF459351","[email protected]","https://x.com/ct_geek/status/1798688168419479604","ct_geek","168","2967","Div1n3","@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is <0xE06Df4e1bB13C8940545A75047b4AF10FF459351>"
"676","6/6/2024","0x6d64aA0bb1A69735F7EbbeFb2c2F9aDF8251Ec83","[email protected]","https://x.com/CelisDach54109/status/1798688193962979444","CelisDach54109","180","987","Dachie🕹️ $RCADE 💀 $ELS $RVV","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6d64aA0bb1A69735F7EbbeFb2c2F9aDF8251Ec83 @EthStorage"
"677","6/6/2024","0xb7B8dc7c1A0C51F96E56Ff54b7Ff998d386Bc32a","[email protected]","https://x.com/VictorEkari/status/1798688350913822735","VictorEkari","148","3064","Ekari Victor ⚡","😏 A pro noob designer 🤫 🏳Infinite years of experience 🥇👽UI/UX enthusiast 🤖 Alien on future Mars trip 🌍","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb7B8dc7c1A0C51F96E56Ff54b7Ff998d386Bc32a@EthStorage"
"678","6/6/2024","0x3084d35Ef5b84e4edc6685Cd57aA85A0D8678321","[email protected]","https://x.com/malcomX99539102/status/1798688234362511826","malcomX99539102","115","739","malcom_X♣️🫧🫧🫧","@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3084d35Ef5b84e4edc6685Cd57aA85A0D8678321@EthStorage"
"679","6/6/2024","0x3c061a449d36FeE7dAccC6978CEB14Fe5b61B628","[email protected]","https://twitter.com/_Zubby_/status/1798688793450414290?t=nFO-IGM5YbxRh3KBnK5KLg&s=19","_Zubby_","193","759","ZÙBBY-Crypt♟️,♟️","//CRYPTO TRADER//💙 https://t.co/PKH7TVPaHt Army","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3c061a449d36FeE7dAccC6978CEB14Fe5b61B628"
"681","6/6/2024","0xE1aBA557419fAB3F87497BD241E7835dd73F2f32","[email protected]","https://twitter.com/eric_obes/status/1798689069892866429?s=46&t=KYr1UycuG9NKV81W5xhZRg","eric_obes","230","13975","Ericmannie|⚡$GOD|🐦⬛🪨.plena.Tabi 🟨|TAP🚰","cryptographer hodler farmer hunter trader. just point me to a crypto idea. 🔮 Wiz @AvalonFinance_ | 👁️ 🟨 @cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE1aBA557419fAB3F87497BD241E7835dd73F2f32"
"684","6/6/2024","0x9f97d2830800C40705A40a7Fd1Fc3CD4F418e7a6","[email protected]","https://x.com/TripTheChosen/status/1798689421639995586?t=--ddH0O4_Gy930jP5fZPaA&s=19","TripTheChosen","580","25416","Tippy❤️","ManUnited. @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9f97d2830800c40705a40a7fd1fc3cd4f418e7a6@EthStorage"
"685","6/6/2024","0xf1860783A726cae21cCfAaf249126011de2Bb6De","[email protected]","https://x.com/Hayqiumba1/status/1798689845885432062?t=836rYBCENulagqnKHFy-aQ&s=19","Hayqiumba1","264","2564","HayqiuM🅱️🅰️🇱🇺","Pharmacist || Defi researcher || Airdrop hunter || Community manager || Smart contract developer || @thecircleacad || $THChttps://t.co/WgKddnXjYb","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf1860783A726cae21cCfAaf249126011de2Bb6De"
"686","6/6/2024","0x32D805efaA0542790DF5e368af0805b0dF7A9798","[email protected]","https://x.com/CR_Pal0/status/1769692675845112011","CR_Pal0","239","5051","Altair 🌠 📜","Scientist somewhere 👾 | Full time REKT |","I am applying to participate in the Ethstorage public testnet, and my miner address is [0x32D805efaA0542790DF5e368af0805b0dF7A9798] @EthStorage"
"687","6/6/2024","0x2Df7325f0B52d270e6af7D262EC23c13B4E6a4b2","[email protected]","https://x.com/kanon_kanny/status/1798690187570188324","kanon_kanny","450","5130","Kanny🟣$LOL Tabi 🟧@cv_exchange","I am a Data Scientist, Crypto enthusiast, copywriter and SEO specialist.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2Df7325f0B52d270e6af7D262EC23c13B4E6a4b2 @EthStorage"
"689","6/6/2024","0xf9189F344fe0675C6bAEaBDec3ecc44Ffaa757e1","[email protected]","https://x.com/Muthuharini3/status/1798689923240984897","Muthuharini3","172","1768","Muthu Tabi 🟧 .plena💜 $BLOCK 🟣 $LOL .NYAN🔫😼","💙 https://t.co/a9cjwT81Kl Army ⚙️ https://t.co/9rkC1RhbuK Excited about @fxdxdex $FAR 🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf9189F344fe0675C6bAEaBDec3ecc44Ffaa757e1 @EthStorage"
"691","6/6/2024","0xd022efC6f708391cFa31F9Ce9e205A575637823b","[email protected]","https://x.com/Horlar2273/status/1798691088288661527?t=eR0988n46f82P2OmFZj0GA&s=19","Horlar2273","487","5128","Horlarenwaju'🚀MATR1XCoin $MOJO $BUBBLE","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd022efC6f708391cFa31F9Ce9e205A575637823b"
"692","6/6/2024","0xf33eafA1F8DfEa209bED265fF1816cD848866A0d","[email protected]","https://x.com/onlyonetoby/status/1798691631824338984?s=46","onlyoneToby","159","1560","Nightwalker","Thread ✍️ ■NFT & Crypto Enthusiast📈 Anime Lover ■ アニメ愛好家 ■Computer engineer💻","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf33eafA1F8DfEa209bED265fF1816cD848866A0d@EthStorage"
"695","6/6/2024","0x557a0819b08d7bf12429F2A420D0984a3E64430F","[email protected]","https://x.com/Simon45708990/status/1798691848007160213","Simon45708990","215","1655","Simon from Austria | Bitmap Emporium 🟧 TAP🚰","NATCATS - Defi - WWG - Enjoying my time in crypto! #notyourDOTnotyourDE","I am applying to participate in the EthStorage public testnet, and my miner address is 0x557a0819b08d7bf12429F2A420D0984a3E64430F"
"697","6/6/2024","0x8a6bA017B9e03063258775B0e9367B87Bcb5FD12","[email protected]","https://x.com/zerofuku777/status/1798692012449058893","zerofuku777","114","1639","sultan♣️$XTER","just trying to be that guy","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8a6bA017B9e03063258775B0e9367B87Bcb5FD12 @EthStorage"
"698","6/6/2024","0xA47963097CFb4eCb07A0776c491816E78f05d9D7","[email protected]","https://x.com/a4101341013/status/1798692487684624791","a4101341013","319","698","rchill⚡️Joltify","","@EthStorage 0xa47963097cfb4ecb07a0776c491816e78f05d9d7"
"699","6/6/2024","0x9b1e23aAd6Bd708B2e0785B3008d575e58480c76","[email protected]","https://x.com/t0mcr0wn/status/1798692528700723616","t0mcr0wn","288","3521","TMS","YOLO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9b1e23aAd6Bd708B2e0785B3008d575e58480c76"
"701","6/6/2024","0x36FB626F7bbaa2E75D48Eb7700E7935087cA9413","[email protected]","https://x.com/Omoluabiiiii/status/1798692632539062479","Omoluabiiiii","178","2084","Uncleluabiiii","","0x36FB626F7bbaa2E75D48Eb7700E7935087cA9413"
"706","6/6/2024","0x6aF13e34d8C1171f6578f1e243C88542bC29b1FA","[email protected]","https://twitter.com/Yooxy4U/status/1798693317825396770?t=KYHTpbs2YP6Dm_9XQhAgvQ&s=19","Yooxy4U","134","2132","Yooxy","| Building| ♎️🏆🔝 Bitflow 🌊🏄♂️","0x6aF13e34d8C1171f6578f1e243C88542bC29b1FA"
"708","6/6/2024","0xDB0841387c56839A765E240cefB40d48270A051d","[email protected]","https://x.com/0xmico/status/1798693062165807388","0xmico","1045","29651","✞","Having fun. 🦇🔊 Upcoming Reply Guy 💭Wizkid FC 🦅","I am applying to participate in the EthStorage public testnet, and my miner address is0xdb0841387c56839a765e240cefb40d48270a051d @EthStorage"
"709","6/6/2024","0x872530D289b6A5739A19A99cBfe05A14387083dE","[email protected]","https://x.com/0xsoftie18_0/status/1798693778250961072?t=XApEvzctUJMaMUL1c-cM9w&s=19","0xsoftie18_0","379","7008","ABDULLAHI.Plena","Web3.0 Stoics ¶ 楽観主義者 📉","I am applying to participate in the EthStorage public testnet, and my miner address is 0x872530D289b6A5739A19A99cBfe05A14387083dE @EthStorage"
"711","6/6/2024","0xC23A4f58fbb5c092307950B409A423726ED7f878","[email protected]","https://x.com/ObaDeborah5/status/1798693513779204355","ObaDeborah5","102","1636","Oba Deborah","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC23A4f58fbb5c092307950B409A423726ED7f878 @ethstorage"
"712","6/6/2024","0xfE87E06aC8DF906384731766f5e8CCA39E9817C4","[email protected]","https://x.com/Web3FrstSon/status/1798694772837929128?t=ooIsmdvE4RCwkfJQgAZADQ&s=19","Web3FrstSon","143","537","Muh'd 💫(🎮)","Just going with the flow 🧘♂️🌊","Tweet this:I am applying to participate in the EthStorage public testnet, and my miner address is 0xfE87E06aC8DF906384731766f5e8CCA39E9817C4"
"713","6/6/2024","0xA777C420742697aDe342a18e3Ad02be54278040B","[email protected]","https://x.com/OxIsrafil/status/1798695533617553429?s=19","OxIsrafil","286","304","Israfil Rahman 🧡 Ordzaar","Crypto Airdroper & Panic Seller 🙂#SomniaNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA777C420742697aDe342a18e3Ad02be54278040B"
"717","6/6/2024","0xCCC0b1147718AaEDa72BBfC6fa10Ef4deD3cCF64","[email protected]","https://twitter.com/Sunmite0/status/1798696415012745546?t=eGa3wMINYQdmBl1Gb7v33g&s=19","Sunmite0","372","2399","Sunmite .plena| ❤️ Xally","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCCC0b1147718AaEDa72BBfC6fa10Ef4deD3cCF64"
"719","6/6/2024","0xa4C46F5a2CF2C37c18AECA4838a5EbB4394b491b","[email protected]","https://x.com/Manasss24014378/status/1798696676632494468","Manasss24014378","198","2495","Manasss.plena🟧🐉$MON","#back_end_engineer #alpha_finder#crypto_trader #community_maneger","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa4C46F5a2CF2C37c18AECA4838a5EbB4394b491b"
"720","6/6/2024","0xE8C224eE761E1806A8a6eD4008C4491c7d027085","[email protected]","https://x.com/Manmoon371818/status/1798697255610073186?t=Gyx9lZBK9SPhvgVFnZvwzw&s=19","Manmoon371818","185","1833","Manmoon ⚡$GOD","@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE8C224eE761E1806A8a6eD4008C4491c7d027085"
"721","6/6/2024","0x165c135B7aE5081321BfA475C01560efE728966F","[email protected]","https://x.com/ZasionNFT/status/1798697356365529368","ZasionNFT","241","4628","Eels. joltify.ola_Tabi 🟧_STONE🐦⬛🪨TAP🚰","Undeads #mintBase $FAR💙 https://t.co/gwRLvPq2c3 ArmyJoin Inspect 2.0 - https://t.co/ejKTTgknHDhttps://t.co/3Apml7nJCjhttps://t.co/CsIuhWqj5P","I am applying to participate in the EthStorage public testnet, and my miner address is 0x165c135b7ae5081321bfa475c01560efe728966f@EthStorage"
"722","6/6/2024","0x467EFe43020d9D6636b75198Cd826B9d724A254B","[email protected]","https://x.com/Isah_Suiswap/status/1798697237163524109","Isah_Suiswap","204","4570","Isah Abdullahi Tabi 🟧","https://t.co/HB8TsqWRmg","I am applying to participate in the EthStorage public testnet, and my miner address is <0x467EFe43020d9D6636b75198Cd826B9d724A254B>@ethsto"
"723","6/6/2024","0x7E97fac36B688C0Af9a243A1Af5A065cC296A2dF","[email protected]","https://x.com/geewin_edekhe/status/1798697364078866435?s=46","Geewin_Edekhe","1011","4220","GEEWIN🤴","GRACE FILLED INDIVIDUAL || DROP HUNTER|| LIFE PHILOSOPHY ||CHEMICAL ENGINEER ||LOVER OF CRYPTO|| ...Art of Life @johnnydrille fan","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7E97fac36B688C0Af9a243A1Af5A065cC296A2dF"
"724","6/6/2024","0xe2004007C61C5D8acBcF621c060dE90c9E259C6a","[email protected]","https://x.com/robert_zini/status/1798697618702577909","robert_zini","1289","13283","Robert-zini𓃵 🐉 $MON🟣 $LOL (Avalon🔮,🧙)","🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe2004007C61C5D8acBcF621c060dE90c9E259C6a"
"725","6/6/2024","0xC59E52326CD827f4d2963064a55b716a0859c51f","[email protected]","https://x.com/juxtpete/status/1798697589505954049?t=DRRZIB-99U5BBKGTrA3-jg&s=19","juxtpete","226","1045","Just Pete ☀️","Privacy-focused and always on the lookout for the next big thing in crypto|Animal lovers,||follow and I follow back|","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC59E52326CD827f4d2963064a55b716a0859c51f"
"726","6/6/2024","0x614a0D24CCf76d1A2eEFE211fE653076Ddb1B08D","[email protected]","https://x.com/Vik_bankz/status/1798697727288816007","Vik_bankz","1366","14391","CJ 🐉 $MON","Impossible is a Funny Word ⚙️ it’s only crazy until it’s not. @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x614a0d24ccf76d1a2eefe211fe653076ddb1b08d"
"727","6/6/2024","0xff1D25C5299932fbc690b113b14fb84CEDED75C2","[email protected]","https://x.com/Carina8919/status/1798695536650064057","Carina8919","126","3077","Carina $GAME","Riding the decentralized wave | Exploring the future of finance | Embracing the blockchain revolution 🌐💎 @fullforce_ioModerator @AptinLabs","I am applying to participate in the EthStorage public testnet, and my miner address is 0xff1D25C5299932fbc690b113b14fb84CEDED75C2 @EthStorage"
"728","6/6/2024","0x189a4E84e74862aE1d6DddDF31890C758D15213d","[email protected]","https://x.com/aryanx35/status/1798630160490709440?t=s1kWgiBA0J_bxHoTLVuu9A&s=19","aryanx35","426","2698","Aryan|| $XTER || $BEYOND || .plena || ♦️","I am walking on the never-ending path of success. ||","I am applying to participate in the EthStorage public testnet, and my miner address is 0x189a4E84e74862aE1d6DddDF31890C758D15213d"
"730","6/6/2024","0xF7765B972F61BB2DF4eD9af27A760E3FEFDC8346","[email protected]","https://x.com/iHenrify/status/1798698443151667316","iHenrify","117","552","Henrify | SynonAI👾","#Web3 | #UI/UX designer | #Solidity dev | #EnterprEARNure | #Blog SEO Expert | Currently building @currentfaqs 🍬 ☮️🀄👨💻","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF7765B972F61BB2DF4eD9af27A760E3FEFDC8346 @EthStorage"
"731","6/6/2024","0xBE0BE0fD29f657dA3d4e723156F2C25Cf8d1Ca18","[email protected]","https://x.com/Nwoye_Stan/status/1798699002822857205","Nwoye_Stan","4320","22680","KING STAN 👑","Crypto ‘21• Angel • NFT degen•","I am applying to participate in the EthStorage public testnet, and my miner address is 0xBE0BE0fD29f657dA3d4e723156F2C25Cf8d1Ca18"
"732","6/6/2024","0x6C5946bFF8B3d62F498592478d0C47b23C083012","[email protected]","https://x.com/itz_tentebo/status/1798699371330232759","itz_tentebo","151","1391","oracle100.eth 🐉 $MON 🐐 .plena","~~• web3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6C5946bFF8B3d62F498592478d0C47b23C083012"
"733","6/6/2024","0xb986F421803bDd192C253BADe9320Ef64352bA52","[email protected]","https://x.com/Larrizle_no1/status/1798699665317302333?t=sn8nmzRlNaPN9c-jt8JXeQ&s=19","Larrizle_no1","890","6165","LanrewajuCrypto♦️🥷 Lingo","Airdrop Hunter🥷 // Optimist🌟 // Crypto📊💰 // Biochemist🧬⚗","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb986F421803bDd192C253BADe9320Ef64352bA52@EthStorage"
"735","6/6/2024","0x7A77EEf0C5aA686CfC27A2619CD4C46faB269feD","[email protected]","https://x.com/Bodartgfx/status/1798699720795419044?t=qYnYrgm7qjpLtUa5xMtqZQ&s=19","Bodartgfx","981","5794","BOD DESIGNS","Graphics & Website Designer | Web Developer | Soil | Agronomist | Solving problems through designPortfolio: https://t.co/qD000kzeyi","@mztacat 0x7A77EEf0C5aA686CfC27A2619CD4C46faB269feD"
"736","6/6/2024","0x623B0A9ada80ac677Da5691901E9eE2f20886037","[email protected]","https://x.com/TroddH/status/1798699689354903757","TroddH","496","420","trodd HIGHZIK","CM || Marketer || Consultations || Loves #Alpha || ex @BitcoinBearsOrd || team @xei_official || Hunt & Rt Alpha. || #Crypto #nft #aidrops #Web3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x623B0A9ada80ac677Da5691901E9eE2f20886037@EthStorage"
"737","6/6/2024","0xC1fADaEB9B9A1d77CCC4685822987C01bd41e80c","[email protected]","https://x.com/__ay_o/status/1798699312593191306","__ay_o","333","4420","ジョン・ポール .fuel 🧑🏿💻","Ambassador for @DComm_Official | UX Designer | YNWA | Medical Student | 21 Savage's Stan | BULLISH ON MYSELF | Check out my Behance profile","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC1fADaEB9B9A1d77CCC4685822987C01bd41e80c @EthStorage"
"738","6/6/2024","0x4d28cC6D12E64B64dCbB17e588D0a725BF5c861E","[email protected]","https://x.com/Joyous_Joy_/status/1798699880577458684?t=OcGPgOEZCmxmL1mSVFWzKA&s=19","Joyous_Joy_","164","1220","jayfiy.apt 👁️🍏🐳","I belief in what I do👁️❤️@cvex_xyz #Counselling.Cryptocurreny. Content Creation. Technical Analyst. | jayfiy.apt🌹","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4d28cc6d12e64b64dcbb17e588d0a725bf5c861e@EthStorage"
"741","6/6/2024","0xF676c096D3fBe37Ce5b4f7e1E2C20B62BfB80740","[email protected]","https://x.com/anchau_aminu/status/1798700937395241203","anchau_aminu","167","862","Ahmad Aminu Anchau $BUBBLE SynonAI👾","I'm Ahmad Aminu Anchau","I am applying to participate in the EthStorage public testnet, and my miner address is <0xF676c096D3fBe37Ce5b4f7e1E2C20B62BfB80740>"
"742","6/6/2024","0x75E572c707e09be590580CBA3CdCAb1C377D72Dd","[email protected]","https://x.com/pick_jet/status/1798701336483315837","pick_jet","102","3362","pickjet $XTER 🧬$EVOX","@cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0x75E572c707e09be590580CBA3CdCAb1C377D72Dd @EthStorage"
"743","6/6/2024","0x23383C81c7685B61810d6bD22DD4fa661c733CBc","[email protected]","https://twitter.com/Abdulaf001/status/1798701344959926341?t=qa9Y5uvL4HroXvNG_BC4Rw&s=19","Abdulaf001","382","3177","ShinaCrypto 💚🌙 Lfg || Tabi 🟧","#ISLM_MAXI @fullforce_io $FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x23383C81c7685B61810d6bD22DD4fa661c733CBc@EthStorage"
"745","6/6/2024","0x71A974f7988d812e909972388404FbBaEd4611e9","[email protected]","https://x.com/olamilekanxx9/status/1798701608504807562","olamilekanxx9","138","888","olamilekan 🟧 ⛈️ 🟣","🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0x71A974f7988d812e909972388404FbBaEd4611e9"
"746","6/6/2024","0x9c0dF017180a74FA133077e2f8a69142B1742cC0","[email protected]","https://x.com/benj_ay/status/1769500118930120738","benj_ay","140","4422","benjaý","big on making value | ⚙️one piece |","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9c0dF017180a74FA133077e2f8a69142B1742cC0. @EthStorage"
"748","6/6/2024","0x296BAf85da0feC9E2093A4B241c97b1B7BfD7387","[email protected]","https://x.com/kvng6ix/status/1798701853582283132","kvng6ix","223","3129","☘️","𝒾𝓉𝓈 𝒶𝓁𝓌𝒶𝓎𝓈 𝒷ℯ𝓉𝓌ℯℯ𝓃 𝓉𝒽ℯ 𝒹ℯ𝓋𝒾𝓁 𝒶𝓃𝒹 𝓉𝒽ℯ 𝒹ℯℯ𝓅 𝒷𝓁𝓊ℯ 𝓈ℯ𝒶 𝓘𝓷 𝔀𝓮𝓫3","I am applying to participate in the EthStorage public testnet, and my miner address is 0x296BAf85da0feC9E2093A4B241c97b1B7BfD7387"
"750","6/6/2024","0xb52F68422406F912cF5DEc923423B0bf6A7dd962","[email protected]","https://x.com/sultsavvy/status/1798701800796860826","sultsavvy","687","2273","sultana🥷","sultsavy.aptلا حَوْلَ وَلا قُوَّةَ إِلا بِالله","i am applying to participate in the Ethstorage public testnet, and my miner address is 0xb52F68422406F912cF5DEc923423B0bf6A7dd962"
"754","6/6/2024","0x475606d141047A655aEfFd2055448E4B7Ac2Cc58","[email protected]","https://x.com/0xNuri_/status/1798702797179002996?t=ezzQKJbZAJUxC25g_r8bbA&s=19","0xNuri_","167","2387","0xNuri.eth ♦️","1/1 Legendary || DeFi degen || @WaveAlpha__1/{222} ¦ 1/WA","I am applying to participate in the EthStorage public testnet, and my miner address is 0x475606d141047A655aEfFd2055448E4B7Ac2Cc58 @EthStorage"
"755","6/6/2024","0x59A064b7a015eDc4aa7f820c95a901e74242FB08","[email protected]","https://x.com/Crypto_Suresh_/status/1798702466042851837","Crypto_Suresh_","3878","3320","CryptoSuresh.eth 🧡 Ordzaar","NFT Promoter | Host Daily Giveaways | 100% Real & TrustedEarly Investor & NFT CollectorLeft to Phaver #byebyebirdieDM for Inquiries 📩","I am applying to participate in the EthStorage public testnet, and my miner address is 0x59A064b7a015eDc4aa7f820c95a901e74242FB08@EthStorage"
"756","6/6/2024","0x204BB7E7760826FB1175a5dbb9A1D417c577111e","[email protected]","https://x.com/_ibrahimalabi/status/1798703191359713739?s=46&t=fbFb1s6UZuZV3uhqClYWEA","_ibrahimalabi","187","7551","KWARAblockchain| 🟣 $LOL⚡$MON 🐕🌖 Tabi 🟧 🧬$EVOX","Web3 Enthusiast 💙 https://t.co/J6PqBOXdRU Army Maxi @karatecombat @Laika_Layer2 🟧 ⛈️ 🟣","This is my EVM address 0x204BB7E7760826FB1175a5dbb9A1D417c577111e"
"758","6/6/2024","0x9629D9a5cb7DA9dccf38D12aA022cD9DDf3d617e","[email protected]","https://x.com/HiPrinceNirvana/status/1798702076765331504","HiPrinceNirvana","339","9523","The Prince of Nirvana ♦ (💙,🧡)","Fully strapped and loaded 🧢Collab manager||Social media Manager||WEB 3 Marketer Evolve or Die","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9629D9a5cb7DA9dccf38D12aA022cD9DDf3d617e"
"759","6/6/2024","0xEAcbEBc9De1E8A31562013d4a7A5DD96C5e957c1","[email protected]","https://x.com/KiksGrace/status/1798703040322756619","KiksGrace","133","1508","kiksGrace 🎵","lets organize and share information","I am applying to participate in the EthStorage public testnet, and my miner address is < 0xEAcbEBc9De1E8A31562013d4a7A5DD96C5e957c1>"
"760","6/6/2024","0xAb5D64d2D9Ad9eFFB6738B753fFb65C7bDe96310","[email protected]","https://twitter.com/Phunmex94/status/1798703426727264704?t=lsg2uyfazWVwp5vmpPuZVQ&s=19","Phunmex94","140","879","Phunmex | HANA |🐉 $MON | 🟧 ⛈️ 🟣","$HANA | Artela🔼","I am applying to participate in the EthStorage public testnet, and my miner address is 0xAb5D64d2D9Ad9eFFB6738B753fFb65C7bDe96310@EthStorage"
"761","6/6/2024","0xcB531ab479BdBf414D32Ce42EB111C1563AAec93","[email protected]","https://x.com/adamishola98/status/1798703422168023274?t=DjqHpRFWpLsYKo5YNIDQpA&s=19","adamishola98","1166","9253","Adam .M 🐺/Add Tabi 🟧","member @bofab //gang of ilorin😛🥰/ $WAGMI// @LaMbO//interior & exterior decor ♥ 👌// Arsenal fan 🤫//💙http://💙 https://t.co/0JvJ30pN6K Army/@tonnel-network","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcB531ab479BdBf414D32Ce42EB111C1563AAec93 @EthStorage"
"762","6/6/2024","0x260288C67f000aC9bD1080b0496eECC3814CD482","[email protected]","https://x.com/Dupsssss1/status/1798703989510570046","Dupsssss1","157","9042","Worldbestjo $BUBBLE 🫧🫧🫧🕹️ $RCADE","what God can not do does not exist. Discord ID: jojoo#1039.$SOMO @playsomo","I am applying to participate in the EthStorage public testnet and my miner address is 0x260288C67f000aC9bD1080b0496eECC3814CD482 @EthStorage"
"763","6/6/2024","0x42895Ae0aBeeDb1e5f36E9a304344901AeF25894","[email protected]","https://x.com/hanzoyj/status/1798703774950662590?s=46","hanzoyj","224","932","Cika.eth","The Greater Fool🧧|| Ambassador @Joinzo","I am applying to participate in the EthStorage public testnet, and my miner address is 0x42895Ae0aBeeDb1e5f36E9a304344901AeF25894@EthStorage"
"764","6/6/2024","0x4494b8E26F88A196cf9Cd9F0A55E04c98BacaC46","[email protected]","https://x.com/_afeezolalekan/status/1798699769977839824?t=wiDef7JjML8sPLBuXLGX0A&s=19","_afeezolalekan","317","5205","Afeez Olalekan💚🌙$XTER","$FAR 💙 https://t.co/bcn31nsfJt Army","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4494b8E26F88A196cf9Cd9F0A55E04c98BacaC46@EthStorage"
"771","6/6/2024","0xfA79403489FAe035440e3d0cb56AB2eA5B5B0B72","[email protected]","https://x.com/0xjanie/status/1798704666475425931","0xjanie","115","614","Jane🟧","","I am applying to participate in the EthStorage public testnet, and my miner address is <0xfA79403489FAe035440e3d0cb56AB2eA5B5B0B72>"
"772","6/6/2024","0x043979cB6571DEBf12167a812923553eA2615A92","[email protected]","https://x.com/chris_kuzon/status/1798704482144186668?s=46&t=FCsWNKgA6K-HVLi81NVfhQ","chris_kuzon","679","2716","chrisjason🆒 🟧 ⛈️ 🟣","⚜️ strength 🏋️ Fitness 💸 Finance # Caption will entertain or inspire you! ❗❗❗‼️ 🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0x043979cB6571DEBf12167a812923553eA2615A92 @EthStorage"
"773","6/6/2024","0xcf5c7B23c9d547F0FF8A9C155755fABB70871E28","[email protected]","https://twitter.com/Kman0x/status/1798704677942428119?t=gRJZXMSK1ap6mepBUMgqTQ&s=19","Kman0x","166","431","Kman 🟣 $LOL 🧡 Ordzaar","CRYPTO | Low-key Ashawo👀Let's Have some Fun😉 I always follow back🙃","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcf5c7B23c9d547F0FF8A9C155755fABB70871E28"
"774","6/6/2024","0xE82370680B0A305C3b288d9eE71CF09CAFfE02F5","[email protected]","https://x.com/bigisi7/status/1798705096857194917?s=46","bigisi7","138","1097","Bigisi","$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE82370680B0A305C3b288d9eE71CF09CAFfE02F5@EthStorage"
"775","6/6/2024","0xaDa90711645a10cB38c7305Ec11cA853F1AFc68e","[email protected]","https://x.com/PrinceEffect/status/1798704171316887641","PrinceEffect","463","856","PrinceEffect🎮🛸","WEB 2- WEB 3 GURU.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xaDa90711645a10cB38c7305Ec11cA853F1AFc68e"
"776","6/6/2024","0x8B9F0fDe18904d3BB1286d395d3D09a450D9F52F","[email protected]","https://x.com/Noblemann01/status/1798705195901391197","Noblemann01","147","1150","Noble Trader 🚀","Learning Stage🔮 Wiz @AvalonFinance_ @cvex_xyzAllah first 🙏|Forex Trader| Airdrop Farmer| Real Estate| Eager to learn new things.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8B9F0fDe18904d3BB1286d395d3D09a450D9F52F @EthStorage"
"777","6/6/2024","0xf9cD8a3b03aBA5bE8e9e17D0752ba9A9d7807092","[email protected]","https://x.com/Brigtkele/status/1798705577025286249","Brigtkele","771","3612","Youngestknight","Cryptoworld🤍","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf9cD8a3b03aBA5bE8e9e17D0752ba9A9d7807092"
"779","6/6/2024","0x9e73d83b6c1DA0ddD85A0De7354194cdF432B78C","[email protected]","https://x.com/ICaleb1/status/1798705851903189230","ICaleb1","103","1732","Relativity.plena♣️@IntractAmbassador","💙","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9e73d83b6c1da0ddd85a0de7354194cdf432b78c"
"780","6/6/2024","0x8FaC3eab8aA97BE4E29BB08c0628C98B0d6BB04a","[email protected]","https://x.com/OluwaDanny0/status/1798705988188688729?s=19","OluwaDanny0","711","4989","Son of the Soil ❣","Who reads this anyways? I Follow Back Very fast with all energy ♈Boxer🥊 🖥 Programmer, web-developer 👨💻,AirdropHunter","I am applying to participate in the EthStorage public testnet, and my miner address is <0x8fac3eab8aa97be4e29bb08c0628c98b0d6bb04a>@EthStorage"
"782","6/6/2024","0x7Be6C7F5bCcbe43E1Dd3D8275292a79243d6f2c0","[email protected]","https://x.com/tolulop3e/status/1798706245844832326?s=46","tolulop3e","743","6512","TOLULOPE","Crypto Enthusiast | Nft Collector | Manchester United ⚽️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7Be6C7F5bCcbe43E1Dd3D8275292a79243d6f2c0"
"783","6/6/2024","0xd3574D63Ea96b9B6B08b014c67dbe2973c2059A8","[email protected]","https://x.com/hykelauncher/status/1798706259660771703","hykelauncher","1714","9982","hyke $RCADE XPLUS | Runes Chain 🟧 | Fuelet","Injecting your feed with a dose of joy! Get ready for a fun, lighthearted ride filled with humor and positivity. 💎 $FYN @ricyofficial #Voiagers | Fuelet","I'm ready for @plumenetwork testnet!https://t.co/5OV19JWJwrhttps://t.co/FibHG9Gobe 0xd3574D63Ea96b9B6B08b014c67dbe2973c2059A8"
"784","6/6/2024","0x9c0dF017180a74FA133077e2f8a69142B1742cC0","[email protected]","https://x.com/ben_ohg/status/1798702392680251556?t=BO4c6DIZvWx-ZHnqP7E9_w&s=19","ben_ohg","4855","10457","22","I design buildings and a bunch of other things","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9c0dF017180a74FA133077e2f8a69142B1742cC0.@EthStorage"
"785","6/6/2024","0x42b8881e500A7Cf296150f103f44B4246f506384","[email protected]","https://x.com/Damos20820110/status/1798706781327409341","Damos20820110","523","13277","DAMOS","FaCing mY sHit AlonE 😴😥🤲📈📉 @Bofab_Dao@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x42b8881e500A7Cf296150f103f44B4246f506384"
"788","6/6/2024","0x58FD47948E60Bd7954F1801c6dc7e650C1a7a28a","[email protected]","https://x.com/PlayerU60478299/status/1798707622968995957","PlayerU60478299","115","1384","Occupy_Mars Tabi 🟧","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x58FD47948E60Bd7954F1801c6dc7e650C1a7a28a @EthStorage"
"790","6/6/2024","0xfff00F4eb5C003db1F59f86428eFD6B7Cc2AE5F7","[email protected]","https://x.com/goldenboyitis/status/1798707620817281147?s=46","Goldenboyitis","271","2255","Goldenboy","l","I am applying to participate in the EthStorage public testnet, and my miner address is 0xfff00F4eb5C003db1F59f86428eFD6B7Cc2AE5F7"
"791","6/6/2024","0x93f58210bE887e7a60a5bB1D543491ccDC48108d","[email protected]","https://twitter.com/wor_mth/status/1798707863294226730?t=mz67d1LzBzD2ZH8tW-hKhA&s=19","wor_mth","2951","9566","OMA.eth","Co Founder, Collab Managerただ私を愛さなければならない","0x93f58210bE887e7a60a5bB1D543491ccDC48108d"
"792","6/6/2024","0x0c3E5F40B53B8108E2cF3B7c9BFC815F6482EF5c","[email protected]","https://x.com/0xyuzy/status/1798707765935763514?t=91Ya-aypz8edtZp1bMV_hg&s=19","0xyuzy","107","323","Yuzy ₿","CRYPTO ||AIRDROP HUNTER ||DEGEN","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0c3E5F40B53B8108E2cF3B7c9BFC815F6482EF5c@EthStorage"
"794","6/6/2024","0xB22BdD3277A0E9063Fb4867344eBA4617FC4ffec","[email protected]","https://x.com/Senator_David_/status/1798708191372489205","Senator_David_","457","1622","emerald8088.fuel. 🐉$MON Tabi 🟧","https://t.co/4cKtZvZSNH…....#zkApes #ISLM_MAXI","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB22BdD3277A0E9063Fb4867344eBA4617FC4ffec"
"796","6/6/2024","0xE4745bD01B94c8053b6b7E07B5689fC12c25066c","[email protected]","https://x.com/AbokiCnft/status/1798708290831962516","AbokiCnft","1667","7209","₳boki CNFTs","Admin in @cardanosquad || My tweets are my personal opinion NOT A FINANCIAL ADVICE || https://t.co/ETqyBXdHT3 || $SLN $EESEE $ZRO $DOP $TKO $AAX","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE4745bD01B94c8053b6b7E07B5689fC12c25066c"
"797","6/6/2024","0x662Ee5c9EDFc761C5398908941d5b173A463d79a","[email protected]","https://x.com/litsundey/status/1798707787897143519?t=3XWIWuMQJbcw9Qn5kuNCyQ&s=19","litsundey","130","1393","S☀️nday L✨ght","Light Bearer. KINGDOM Focus.","I, LitSundey is applying to participate in the EthStorage public testnet, and my miner address is 0x662ee5c9edfc761c5398908941d5b173a463d79aThank you for accepting my application in advance."
"799","6/6/2024","0xFF5B3f71D739e65E902a98081104a5b24bAfb942","[email protected]","https://x.com/tade_niji06/status/1798708204345364965","tade_niji06","397","5939","princeOTF","Software, Fx & Web 3.0 Enthusiast // OTF","I am applying to participate in the Eth Storage Public testnet, and my miner address is 0xFF5B3f71D739e65E902a98081104a5b24bAfb942,@EthStorage"
"800","6/6/2024","0x9a4d3f73f1c7760072409A901bC21f7d42fE7cEe","[email protected]","https://x.com/Leo2468161265/status/1798708647738110142","Leo2468161265","194","3562","Leo2468","Only love $FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9a4d3f73f1c7760072409A901bC21f7d42fE7cEe"
"801","6/6/2024","0x3eA137D17F81d933d84CFEfF245a193FDbc02d3C","[email protected]","https://x.com/Scoobykb/status/1798708734409281566?t=l6BXWoN6qYAhPLAiGCtGMA&s=19","Scoobykb","152","5646","Midgard Tabi 🟧 Lingo 🟧 ⛈️ 🟣","crypto maniac","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3ea137d17f81d933d84cfeff245a193fdbc02d3c @EthStorage"
"803","6/6/2024","0xa0DCBe64471E6338c76E437dD644A21CCE6CD673","[email protected]","https://x.com/IgbangHarold/status/1798709146797433292","IgbangHarold","777","14963","igbang.eth Tabi 🟧","always open to learning ...Manchester United...Web3$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa0DCBe64471E6338c76E437dD644A21CCE6CD673"
"805","6/6/2024","0xdfBaeeF21396BF205D4B7D23345155489072Cf9B","[email protected]","https://x.com/deepsan999/status/1798709503116050579","deepsan999","1137","43336","Deepsan ⚔️♥ Memecoin ♦️🛸🔮🧙♣️","Let's strive for DecentralizationTech LoverContest Lover @playsomo | $SOMO#stufflistingsarmy","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdfBaeeF21396BF205D4B7D23345155489072Cf9B@EthStorage"
"806","6/6/2024","0xFc27eCaF22Cc2De2C5B683fAAE96DaF427F8db8a","[email protected]","https://x.com/bigmantobi/status/1798709317560111419?s=46","Bigmantobi","215","2288","Tobi Ayomide","Airdrop Hunter | Future Trader","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFc27eCaF22Cc2De2C5B683fAAE96DaF427F8db8a @EthStorage"
"807","6/6/2024","0x73Cb7fbC8Cae25737C870a889CBD077A89783257","[email protected]","https://x.com/OmomiShina/status/1798709635744202956?t=gv08uHJp8JRPPSj55Ltv6g&s=19","OmomiShina","198","4929","Shina Omomi 🐉","🔥Champions TacticsLeader of the Gen-Z takeover of FinTwit. Not a financial advisor, but i do analyze divergences 😉","I am applying to participate in the EthStorage public testnet, and my miner address is 0x73Cb7fbC8Cae25737C870a889CBD077A89783257"
"814","6/6/2024","0x5df2F3f435714Ea747c83f17D0C8e86aEcD4d31D","[email protected]","https://x.com/0xfreshXL/status/1798710287245447620","0xfreshXL","137","400","XL.fuel","#web3 #btc","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5df2F3f435714Ea747c83f17D0C8e86aEcD4d31D"
"815","6/6/2024","0x4592B9d4780545219130440f1A1abeEca4822C62","[email protected]","https://x.com/0505WL/status/1798710244002177234","0505WL","354","11252","0xfader.eth","after this, what else? | Mod | @spacepalsdao CM | consultancy⚙️ @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is <0x4592B9d4780545219130440f1A1abeEca4822C62>"
"817","6/6/2024","0x48DC6AaD257c4e7dDE4B7095397ba83d9adFCc95","[email protected]","https://x.com/lawalahmed2478/status/1798711019604148449","lawalahmed2478","204","1136","Lawal ahmed | @playsomo | $SOMO || ZAP Chain ⚡️","anticipating in web3, #ISLM_MAXI","I'm participating in ETHstorage testnet with this wallet 0x48DC6AaD257c4e7dDE4B7095397ba83d9adFCc95"
"818","6/6/2024","0x735E200619Ce5534cc9f399c657868549fa31445","[email protected]","https://x.com/trulyjoshy/status/1798711157701873673","trulyjoshy","212","1109","Cryptic","","I am applying to participate in the EthStorage public testnet, and my miner address is <0x735E200619Ce5534cc9f399c657868549fa31445>"
"820","6/6/2024","0x2F3c7Ef9CEdFFF42E540003289FA0ABbC41146Db","[email protected]","https://x.com/nonzo_3/status/1798711147904041411?s=46&t=-pFUQivhSiPStCdrga8imw","nonzo_3","383","10659","chiefobi","Damn 😴 tired $FAR 🎵 @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2F3c7Ef9CEdFFF42E540003289FA0ABbC41146Db @EthStorage"
"822","6/6/2024","0x7af3C5A678f265D9E7366329a82380ba9BE25C4c","[email protected]","https://x.com/AnonymousAspir2/status/1798711245077647833","AnonymousAspir2","159","1541","Johnnywalkerskr","NFT Collector, Holder, English Tutor, Learner, Student, Football lover and A great team player.","I am applying to participate in the EthStorage public testnet, and my miner address is <0x7af3C5A678f265D9E7366329a82380ba9BE25C4c>@EthStorage"
"823","6/6/2024","0xb0Bcfde547E15c48fEFEEd2Cc021F030dE4f317E","[email protected]","https://x.com/Crypto_Charming/status/1798711910835323149","Crypto_Charming","1842","3907","🐉 $MON⚡️Joltify Tabi 🟧 ♣️ STONE🐦⬛🪨 $XTER 🛹🛹","🌊 嚕毛王者 全部都是嚕毛","0xb0bcfde547e15c48fefeed2cc021f030de4f317eLFG @EthStorage"
"824","6/6/2024","0x5FfcFd62010D4925BFB480Bc11dbD069e9159b38","[email protected]","https://x.com/io_bayo/status/1798711132003111423","io_bayo","157","4227","ʍǟռʟɨӄɛAD 🟧 ⛈️ 🟣","MY WALL, MY PoW 🧺","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5FfcFd62010D4925BFB480Bc11dbD069e9159b38"
"825","6/6/2024","0x5A7Cef99dee53B4B280d263897a87a25f3D09B3b","[email protected]","https://x.com/seuntheking/status/1798710935642866027?t=fJs7H0mQ3gLp4h1D4ISqpA&s=19","seuntheking","619","10848","oluwabackup.nftparis.apt ❤️$WELL .fuel🐉$MON$BUBBL","⌛🔑 web3 || Airdrop | Alpha || Research|| 🕊️✌️https://t.co/6kssxH7ABa @TitananceHQoluwabackup.nftparis oluwabackup.apt @monkeyempiree maximalist 🦧⚔️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5A7Cef99dee53B4B280d263897a87a25f3D09B3b"
"826","6/6/2024","0x4e3c43c5af83a1AD48563877707266d9e6Bcde35","[email protected]","https://x.com/ObiCrpt01/status/1798711011848970367","ObiCrpt01","132","4889","Obinna 🟧 ⛈️ 🟣","Web3 worker @Laika_Layer2","am applying to participate in the EthStorage public testnet, and my miner address is <0x4e3c43c5af83a1AD48563877707266d9e6Bcde35>"
"827","6/6/2024","0x4d84B8C9F347f5E318cCd40E174D09E3404DC04c","[email protected]","https://x.com/Abdulmarlik/status/1798709485525151834","Abdulmarlik","619","6037","Halalboy𓃵","🪂 hunting |Bullish on @laika_layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4d84B8C9F347f5E318cCd40E174D09E3404DC04c@EthStorage"
"829","6/6/2024","0xC793434249e6DEF192cEA7830385BdCFf27AB2Bd","[email protected]","https://x.com/Maggie_dx/status/1798712247348572507","Maggie_dx","205","886","syMARGARET🟢","SASSY 🌹Tabi 🟧","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC793434249e6DEF192cEA7830385BdCFf27AB2Bd@EthStorage"
"830","6/6/2024","0x38D5b552e7d83ee3B40Cc99835BB33F29aCCf992","[email protected]","https://x.com/Myklthomas/status/1798712133641007244","Myklthomas","553","4695","Itz Mikky Thomas| 🟧 ⛈️ 🟣","Data Science||Crypto||Web3||NFTs||SocialMediaPerson||Hip-Pop|| @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x38D5b552e7d83ee3B40Cc99835BB33F29aCCf992@EthStorage"
"832","6/6/2024","0xAAF7F78d4C648A65f397BF83DC2D978546325888","[email protected]","https://x.com/mich_mcben/status/1798713306737446974","mich_mcben","1697","19210","Private Figure","March 21♈️ | Son of David | Salt and Light | Private Figure | Data Analyst | Crypto Enthusiast | @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xAAF7F78d4C648A65f397BF83DC2D978546325888"
"834","6/6/2024","0x6Cb61019c0BE0f6C1e12751bc6eE0677eEb37c1E","[email protected]","https://x.com/Patric_wise/status/1798713077049049172","Patric_wise","621","9792","patricwise (Encrypt)⛓️🛡️💎 TAP 🚰","A System Analyst• || Brand Ambassador• || Podcaster• || Mod• || Crypto & Everything within || Web3 || Programmer. $FARhttps://t.co/wE0v2EXroc","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6Cb61019c0BE0f6C1e12751bc6eE0677eEb37c1E"
"835","6/6/2024","0x441AbcB1dEa2fF1952B7c013dAC530490F3a4dF3","[email protected]","https://x.com/_torrency/status/1798708497728851991","_torrency","389","2469","Torrency $RVV","iBuy BTC 🪙 || 🍁 i l!ve on Bl□cks c¤nnected by cha!n⛓️ 💰 || Botanist 🍀 || 0xpolygon 💜 @intractAmbassador ❤️ $BUBBLE","I am applying to participate in the EthStorage public testnet, and my miner address is 0x441abcb1dea2ff1952b7c013dac530490f3a4df3"
"836","6/6/2024","0x1506e1D1639653E582C412578f2090b0C5D7594e","[email protected]","https://x.com/northdick21/status/1798713371870855260?s=46&t=ukAGkBeul1733lfF41-RcA","northdick21","126","1412","@olam#CILBuyBack","#CILBuyBack / Full Force /","@mztacat I am applying to participate in the EthStorage public testnet, and my miner address is 0x1506e1D1639653E582C412578f2090b0C5D7594e @EthStorage"
"837","6/6/2024","0x6E8F2Be0A33051865ec6F6402b9d5c8030a5241F","[email protected]","https://x.com/ElmerLegacy/status/1798713778646962399?t=byrTj_rS4dAj3_jQccL7xw&s=19","ElmerLegacy","124","371","Legacy Elmer","Simple special ph guy. Lover of photography and mad art works. i remain your cartoon plug#SUPERFAMILY","I am applying to participate in the EthStorage public testnet, and my miner address is <0x6E8F2Be0A33051865ec6F6402b9d5c8030a5241F>@EthStorage"
"838","6/6/2024","0xc35cb097112b00bE34A3b08129A8a331dE5D6A79","[email protected]","https://x.com/_Emmaxfans/status/1798714167307931747","_Emmaxfans","2664","8743","Emmaxfans0x | $XTER","Frontend developer 👨💻 || 0x.eth || @Bullish_ones 📈|| Micro task freelancer || Football lover || GGMU♦️|| @playsomo | $SOMO","@EthStorage I am applying to participate in the EthStorage public testnet, and my miner address is 0xc35cb097112b00bE34A3b08129A8a331dE5D6A79"
"839","6/6/2024","0x60f652d33a877285218F6687843Ece6C22bE2E29","[email protected]","https://twitter.com/joshgoke/status/1798714898391994722?t=X2STDC8newJtNZpSGaJkdg&s=19","joshgoke","113","2182","JoshGoke | $MusCat","Christian||engineer||musician","I am applying to participate in the EthStorage public testnet, and my miner address is <0x60f652d33a877285218F6687843Ece6C22bE2E29>"
"840","6/6/2024","0xaF8Efe86C65E2ed018414901C2269112d466298e","[email protected]","https://x.com/kingsnwa2/status/1798715004012896475?s=46&t=YWs-ykrQhZfm2gX_-BWR-Q","kingsNwa2","203","3067","Kingsssleeeyyy","OAUgrad|| NFTs|| Crypto||","I am applying to participate in the EthStorage public testnet, and my miner address is 0xaF8Efe86C65E2ed018414901C2269112d466298es@EthStorage"
"841","6/6/2024","0x51B4aeC0478481F41788C138A98C7036584e4990","[email protected]","https://x.com/DcPofficial_eth/status/1798715453843648728","DcPofficial_eth","511","1422","DailyCryptoProphet.eth ₿ ♦️🛸🐐🔥🟧","**Gents Croquet Club member**Daily news of cryptoCrypto enthusiast since 2015 #Bitcoin #Ethereum #NFT","I am applying to participate in the EthStorage public testnet, and my miner address is 0x51B4aeC0478481F41788C138A98C7036584e4990"
"842","6/6/2024","0xf8629e9dcc5095e84f17e06F03451E80be6eE4D3","[email protected]","https://x.com/VibeWithIsoo/status/1769711656135708828?t=YD3pQYXbh3LtlFAINsuALw&s=19","VibeWithIsoo","175","2221","Isoo","crypto enthusiast and lover of nature","I am applying to participate in the EthStorage public testnet, and my miner address is <0xf8629e9dcc5095e84f17e06F03451E80be6eE4D3>. @EthStorage."
"843","6/6/2024","0x53f3F5D1dA7aE9756D6C1fc38996e9E592ecb488","[email protected]","https://x.com/Priy4nshusharm4/status/1798715644554436738","Priy4nshusharm4","221","2932","syPRIYANSHU 🟢","| Fuelet 👁️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x53f3F5D1dA7aE9756D6C1fc38996e9E592ecb488"
"844","6/6/2024","0x321236D5Af479792395198785259AE0DB42e623a","[email protected]","https://x.com/only1dami/status/1798715708047823302?t=6nP_VzPG_yAYAJnLp-fdjw&s=19","only1dami","1170","6103","Damboy","Software/Blockchain Engineer🛠️⚙️| 👨🏽💻 @LayerDapp @sysbeams | Ex Adoption Expert @DefiEdge","I am applying to participate in the EthStorage public testnet, and my miner address is 0x321236d5af479792395198785259ae0db42e623a"
"845","6/6/2024","0xfED480E65ADb3e57bF4618C4482C67F9DD3BC1A1","[email protected]","https://twitter.com/ifullforce1/status/1798715534898516369?t=XLO7pXKiHGKtJ9yrT9aEww&s=19","ifullforce1","123","1844","Saheed Toheeb⚔️","I'm an humble person of Noble character @fullforce_io $GNET","0xfed480e65adb3e57bf4618c4482c67f9dd3bc1a1"
"846","6/6/2024","0x98b561B2Bf0f3d30Af55BDC7AB92be740bc9Ec98","[email protected]","https://x.com/LonG___MaN/status/1798716451471360199?t=W6nhUlOFF-c-0JjL9Zb0rg&s=19","LonG___MaN","1495","41333","CHRISTOPHER😎","Video Editing • Crypto • Veterinary Medicine","I am applying to participate in the EthStorage public testnet, and my miner address is 0x98b561B2Bf0f3d30Af55BDC7AB92be740bc9Ec98"
"847","6/6/2024","0x2FD6eDA2223ddb430f34b4110AabaC9dc00CD2bE","[email protected]","https://x.com/Akay40725734/status/1798716664835658236","Akay40725734","111","329","_itzAkay!","Realtor_Ambiverted Virgo ♍Real Estate Consultant","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2FD6eDA2223ddb430f34b4110AabaC9dc00CD2bE @EthStorage"
"848","6/6/2024","0x611091c246beC01e4d906cDc7692eCAF7e191318","[email protected]","https://x.com/Kokolowo2/status/1798716609806438436?s=19","Kokolowo2","509","18497","Kokolowo 🔥 ♥️","Love and light ❤ & 💡Live and Let Live🌑🌑#Culer @cvex_xyz ♥️ POPCAT#Value Odds","I am applying to participate in the ETHStorage public testnet, and my miner address is 0x611091c246bec01e4d906cdc7692ecaf7e191318 @EthStorage"
"849","6/6/2024","0x3d921D5d55DCbbD2ebBd45309bD231f204e475EF","[email protected]","https://twitter.com/krhs_1/status/1798717155556622620?t=ND00VdHt8a0Kbi-Guf98xQ&s=19","krhs_1","412","3956","Trish | Tabi 🟧","💎 $FYN | @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3d921D5d55DCbbD2ebBd45309bD231f204e475EF @EthStorage"
"851","6/6/2024","0x1517946c6aa38e75139eCeaFc5459598e59beaF5","[email protected]","https://x.com/jnayeem0/status/1798718231114608791?t=LR5T6mwWsyYvwBr3Nw_UxQ&s=19","jnayeem0","147","958","331444.bitmap #GAME","I HAVE 35K $RIZZ","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1517946c6aa38e75139eCeaFc5459598e59beaF5"
"852","6/6/2024","0x576d6CF93c947cC2faDDE35e0EFA47603c28dDD8","[email protected]","https://x.com/LittleWhite2018/status/1798718299527921793","LittleWhite2018","356","1386","biggermiao 🐲","(🐶,🐶) (σ, σ)(🌊,💰)🦇🔊 @Nation3DAOhttps://t.co/JCu891TIuX","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0x576d6CF93c947cC2faDDE35e0EFA47603c28dDD8.@EthStorage."
"854","6/6/2024","0x1264D6ede97c598f6d820a75bDECe4B3B8e48544","[email protected]","https://x.com/Slax009/status/1798719060978577878","Slax009","486","4725","Slax.Tabi 🟧","Nuggets","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1264D6ede97c598f6d820a75bDECe4B3B8e48544"
"855","6/6/2024","0x6252fb73E73d24810942608812281151BF132b67","[email protected]","https://twitter.com/Precy_jayy/status/1798718902379372671?t=K7qdrM-M_xMQjm0zWAXgrg&s=19","Precy_jayy","131","833","Fran🎨🙋♂️","Artist. Content creator. Noob","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6252fb73e73d24810942608812281151bf132b67 @EthStorage"
"856","6/6/2024","0xD78a24CEa9FF3ddebf4254082Ce585777883A55E","[email protected]","https://twitter.com/Increbaba/status/1798718982998151223?t=GkxOqS0o38Ha_w8V4V_4Bg&s=19","Increbaba","1845","11156","Incredible","Web3 and Others ||Search my pile of tweets for Alphas","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD78a24CEa9FF3ddebf4254082Ce585777883A55E@EthStorage"
"857","6/6/2024","0x6E05527811A6E4F9f259b284B807015Df6A557B7","[email protected]","https://x.com/MiyoBaka24801/status/1798718584052666838?s=19","MiyoBaka24801","158","2117","zkSync ๋࣭ ⭑🐕🌖","Airdrop farmer@Laika_Layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6E05527811A6E4F9f259b284B807015Df6A557B7 @EthStorage"
"858","6/6/2024","0x001d34D20533537CE311FFF21687B5822675E0E8","[email protected]","https://x.com/olanet4real/status/1798719341904765412?t=OS16jxbTh5SFAanYiuOKfg&s=19","olanet4real","349","12880","Olanet","","I am applying to participate in the EthStorage public testnet, and my miner address is <0x001d34D20533537CE311FFF21687B5822675E0E8>"
"859","6/6/2024","0x511703B0621476A960B45F4b8f6c6a9367aaA767","[email protected]","https://x.com/Iftekhar091/status/1798719900372041884","Iftekhar091","253","874","Iftekharul Islam 🌊📘.bnb♣️","$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x511703B0621476A960B45F4b8f6c6a9367aaA767@EthStorage"
"861","6/6/2024","0xb1a4EC29CeDb2485af94c6c3b445DE9e3C9243e6","[email protected]","https://x.com/Emma31816382927/status/1798720803321917473","Emma31816382927","380","1242","Crazymon💰","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb1a4EC29CeDb2485af94c6c3b445DE9e3C9243e6 @EthStorage"
"862","6/6/2024","0x91Bbba60Ad513021fDD3c3B67619D72ECb529E14","[email protected]","https://x.com/ariwandoski0/status/1798721155152625975","ariwandoski0","149","5209","arin_z grindery_io $LINGO⚡️Joltify","@Bitflow_Finance","I am applying to participate in the EthStorage public testnet, and my miner address is 0x91Bbba60Ad513021fDD3c3B67619D72ECb529E14@EthStorage"
"863","6/6/2024","0x8f8378068cAcA20Db7F6f74e7cE69fe14bE3493F","[email protected]","https://x.com/samuelayodeleo2/status/1798721400523682076","samuelayodeleo2","167","1882","CASINO🟩 coder @codedestate","Procurement Specialist, Specialist In Contract Documentation, World Bank,Afdb Project,Ngo Project I tweet about real money gaming and financial services.","0x8f8378068cAcA20Db7F6f74e7cE69fe14bE3493F"
"864","6/6/2024","0xe9a3520F358538D6b0802a0d37892908f5231940","[email protected]","https://x.com/scopemann33/status/1798721527460078015","scopemann33","344","9535","Scopeman.fuel 🐐🛸","#member @ctghub. @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe9a3520F358538D6b0802a0d37892908f5231940@EthStorage"
"866","6/6/2024","0x53a3fd9E7278caB1Df7A5E4849B6ef071C2D6300","[email protected]","https://x.com/O_gbliss/status/1798721842473304529?t=u67dtc6ssk3dg065jx-paA&s=19","O_gbliss","474","6075","Gbliss👁️","Biomedical Scientist/NFT LOVER/ NFT COLLECTOR/CRYPTO ENTHUSIAST/","I am applying to participate in the EthStorage public testnet, and my miner address is <0x53a3fd9E7278caB1Df7A5E4849B6ef071C2D6300>"
"867","6/6/2024","0x069C1DA6A7a620c3d6A32483adCAD5e6F6BE4049","[email protected]","https://x.com/firekid02/status/1798722045565628573?t=IHZ5HN-XvTccuLsScyGIcQ&s=19","firekid02","226","5129","IamK♦️ 🟧","Crypto Enthusiast | INFINISWAPPER 🐰 #byebyebirdie Left to Phaver @bitflow_finance","I am applying to participate in the EthStorage public testnet, and my miner address is 0x069C1DA6A7a620c3d6A32483adCAD5e6F6BE4049@EthStorage"
"868","6/6/2024","0x9D1998F74B3Cd14b1c6aF50c07CD9DE6DD9b0Bf7","[email protected]","https://twitter.com/NotiDivad/status/1798721701787951568?t=AQn3QJwfS764i7f9zMDqaQ&s=19","NotiDivad","740","66519","El Gran Santo","Web3 Guy|| On-Chain & DeFi Explorer || Writer","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9d1998f74b3cd14b1c6af50c07cd9de6dd9b0bf7"
"869","6/6/2024","0xF63f7A6025aBd8ab9Aa0563BE17BCa9d255B9eA5","[email protected]","https://x.com/cocosol20/status/1798722342555623864?s=46","cocosol20","3921","698","Coco","NOT A FA, 50% ALPHA. Collab manager @111anons, team member @streetz_Dao, 1/76 @pristineDao 👁️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF63f7A6025aBd8ab9Aa0563BE17BCa9d255B9eA5"
"870","6/6/2024","0xbd6F97D8Bee317D46067B7f377d68f71d23C93b1","[email protected]","https://x.com/Peter_Peteru100/status/1798722108371226727?t=ME5vupZ1V_YnS5SCdi5HdA&s=19","Peter_Peteru100","322","5583","Stay'by ⛏️","Web 3. Economist. Games. Reading. Freelancer.@cyberfinance__https://t.co/OaKmkvSoCI","I am applying to participate in the EthStorage public testnet, and my miner address is 0xbd6F97D8Bee317D46067B7f377d68f71d23C93b1@EthStorage"
"871","6/6/2024","0x90dB1A78080F9088125881b35f028c979A46D39c","[email protected]","https://x.com/Shamejn1/status/1798722770689536358","Shamejn1","875","5381","Shamejn","Ponziverse survivor | Web3 enthusiast | Alpha hunter | Part time degen","I am applying to participate in the EthStorage public testnet, and my miner address is 0x90dB1A78080F9088125881b35f028c979A46D39c"
"872","6/6/2024","0x5c337947807163843d0c7877199bDEf359672265","[email protected]","https://x.com/Inaolaji25/status/1798722793665945782?t=hIM6Aft3DOIPLaZ2jHbOOA&s=19","Inaolaji25","157","3122","BadMeetEvil 🧘♂️ $BEYOND 🐉 $MON 🐞$GAME🐈 🌖","Good decisions come from EXPERIENCE. Experience comes from making bad DECISIONS. I PRAY FOR GRACE ALWAYS👏⚡️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5c337947807163843d0c7877199bDEf359672265"
"873","6/6/2024","0xe577663a1da919f03d79E42eA51A5deCC0678F18","[email protected]","https://x.com/Shinaayomiiii/status/1798722981776261616","Shinaayomiiii","6274","52990","🔥","Sapiosexual @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe577663a1da919f03d79E42eA51A5deCC0678F18 @EthStorage"
"874","6/6/2024","0x09BbD76A4383E5492C327427E4bf8ee976326c1f","[email protected]","https://x.com/OlanipekunIsr12/status/1798723218532167956?t=KddFF2wS8ptR_hIX5vWncw&s=19","OlanipekunIsr12","349","5080","Ben~Rob🦇🔊 💚🌙 ❤️ $BUBBLE 🫧🫧 $BEYOND","$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x09BbD76A4383E5492C327427E4bf8ee976326c1f"
"875","6/6/2024","0xBC5231891E119a8EAaCB0625f99A692b7ef38ef8","[email protected]","https://x.com/avaworld16/status/1798723618102513969?t=azpuK2xukdMEXW8h9o8TMg&s=19","avaworld16","992","1591","wEb3 pArrOt💫🦜","ALPHA | early Blockchains | low risk degen | NFTs#web 3💰💸 #NFTs🧑💻 #Cosmos⚛️ x EVM 🤝","I am applying to participate in the EthStorage public testnet, and my miner address is 0xBC5231891E119a8EAaCB0625f99A692b7ef38ef8@EthStorage"
"877","6/6/2024","0x6557E187e44A1B7F7acDa359Ce1b4bA069ad0Cf1","[email protected]","https://x.com/djtspin_/status/1798723577769849328","djtspin_","545","8727","OSENI the DJ⚡️ Tabi 🟧","dj 🎧 || Blues 💙 || Civil Engineer 👷🏾♂️ || Web3 ||#spintheblack","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6557E187e44A1B7F7acDa359Ce1b4bA069ad0Cf1 @EthStorage"
"878","6/6/2024","0xe535EB76FCAB75afA3c0852e99b70abE546fC5Ae","[email protected]","https://x.com/Dmetahat/status/1798723758838194279","Dmetahat","1893","6093","metahat🐉 $MON ❤️ Tabi 🟧","Only put your energy into things you have a future with. good isn't good enough.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe535EB76FCAB75afA3c0852e99b70abE546fC5Ae"
"880","6/6/2024","0xD14F4b94bdA3ab730b5a893d447DE7e60Ae439DD","[email protected]","https://x.com/Iroroh10/status/1798724084559478851","Iroroh10","406","2293","Iroroh™","#intelligentleman😉|| KUSTIE ||||Civil Engineer || Vamos mi Madrid || Drops Hunter || Crypto enthusiast || Peaky Blinder @ngnarewaweb3","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD14F4b94bdA3ab730b5a893d447DE7e60Ae439DD @EthStorage"
"881","6/6/2024","0x10d69E040469ae4a64954B6634876eECFFbf2861","[email protected]","https://x.com/Kiitanhq/status/1798723977432506480","Kiitanhq","1195","11314","0xKiitan","love for engines, mathematics and chelsea","I am applying to participate in the EthStorage public testnet, and my miner address is 0x10d69E040469ae4a64954B6634876eECFFbf2861 @EthStorage"
"882","6/6/2024","0x80522aE44166D7b07C9432a21bEE626D83dd230f","[email protected]","https://x.com/MahantaKaushik/status/1798724350721601706","MahantaKaushik","175","12491","Kaushikgeology67 $XTER 🐉 $MON .fuel STONE🐦⬛🪨","@DackieSwap Maxi @playsomo | $SOMO @FocusOnVaissel@orivium ⏳@t2wrld @0xHashstack Contributor🛸;D,:D(💙,🧡)(L3,❄️)❤️ 🌙⚪️⚫️.bit | Fuelet","I am applying to participate in the EthStorage public testnet, and my miner address is 0x80522aE44166D7b07C9432a21bEE626D83dd230f@EthStorage"
"883","6/6/2024","0xFE9F2ABCbbdde3F930bC76E72c6FFC265d7c02E5","[email protected]","https://x.com/BelloAdedapo1/status/1798724446951473388?t=mpZG7l8eh1g00n9pcJTYyA&s=19","BelloAdedapo1","108","781","Bello Adedapo❤️ Memecoin 🐞 $Game","Hmm, Gentle but hates cheating. $FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFE9F2ABCbbdde3F930bC76E72c6FFC265d7c02E5@EthStorage"
"884","6/6/2024","0x93505d5eaAC1b51d20Dd96cbd3d6CeB6fF5720D5","[email protected]","https://x.com/bestbaby01/status/1798655440873746866?s=46","bestbaby01","3286","23515","bestbaby","......…...👩🦳 ⚡$GOD","I am applying to participate in the EthStorage public testnet, and my miner address is 0x93505d5eaAC1b51d20Dd96cbd3d6CeB6fF5720D5 @EthStorage"
"887","6/6/2024","0x8A5F2d2CeCF30a7BC4BC8553C130AEc018f4d5C6","[email protected]","https://x.com/mike19492914/status/1798724733556634011","mike19492914","3608","3097","mike(Merlin 🔮🧙) .NYAN🔫😼 (💜AINNLayer2)🐉 $MON","#zkLink #layer3@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is:0x8a5f2d2cecf30a7bc4bc8553c130aec018f4d5c6"
"889","6/6/2024","0x592f9c5aa44cF63C08f218d0Fb5A60007653156E","[email protected]","https://x.com/panachedoit/status/1798707810630263096","panachedoit","139","2929","Heir ♦️","","I am applying to participate in the EthStorage public testnet, and my miner address is <0x592f9c5aa44cF63C08f218d0Fb5A60007653156E> @EthStorage"
"890","6/6/2024","0xeDdA78aa85FC180425431b93A7F5fDF7450571fD","[email protected]","https://x.com/GeologyKaushik/status/1798725210679689724","GeologyKaushik","137","6550","🕹️ $RCADE | .fuel | $MOJO🐉 $MON .plena .NYAN🔫😼","🐰 ⚙️💧 @FocusOnVaissel @playsomo | $SOMO ⏳@t2wrld @0xHashstack Contributor @orivium | Fuelet @DackieSwap Maxi #SuiPadxyz #Shimmer #Test2Con","I am applying to participate in the EthStorage public testnet, and my miner address is 0xeDdA78aa85FC180425431b93A7F5fDF7450571fD @EthStorage"
"891","6/6/2024","0x262c4Fa33A62Ddf26DccCF19971a048310B41DD7","[email protected]","https://x.com/ABDMcash/status/1798725686905262096?t=pviH9Ezz-LcAJ-RdD3LZag&s=19","ABDMcash","154","3186","ABDM c Tabi 🟧 ⛈️ 🟣","@IntractAmbassador","I am applying to participate in the EthStorage public testnet, and my miner address is 0x262c4Fa33A62Ddf26DccCF19971a048310B41DD7@EthStorage"
"892","6/6/2024","0x31D09C8237a6428A0fD4E65A0261C3f27502c0Cd","[email protected]","https://x.com/Imnotmot/status/1798725760712393045","Imnotmot","512","5745","Tom","konichiwa•all about good music•⚖️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x31d09c8237a6428a0fd4e65a0261c3f27502c0cd@EthStorage"
"895","6/6/2024","0x26936c39346b0338E96Ac2D50A5933a14b830Abe","[email protected]","https://twitter.com/AbubakreAbdul/status/1798727185601355835?t=KMLt9kd_OPNZkdPs7R0kOw&s=19","AbubakreAbdul","338","2431","Infern0⚡️","$UNA","I am applying to participate in the EthStorage public testnet, and my miner address is 0x26936c39346b0338e96ac2d50a5933a14b830abe @EthStorage"
"896","6/6/2024","0x9Fa821edf35420F5194934Bf6F4885CE505e011b","[email protected]","https://x.com/afolayanjohn247/status/1798727302626377781?t=-ffCuSGy9Ca4L1EqL1AfXw&s=19","afolayanjohn247","581","2434","Sunnyzee 💙","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9Fa821edf35420F5194934Bf6F4885CE505e011b@EthStorage"
"898","6/6/2024","0x6866d5862794B63C6a3d26EBaF6229563e38C55B","[email protected]","https://x.com/RomsObales/status/1798727793959993620","RomsObales","444","4632","Roms | ZEEK xoxoooo.eth","1ounce of AIRDROP. 🌊@playsomo | $SOMO","@EthStorage I am applying to participate in the EthStorage public testnet, and my miner address is 0x6866d5862794B63C6a3d26EBaF6229563e38C55B"
"899","6/6/2024","0xd0D57bd008e709Df1De0703580E2654E65798F0E","[email protected]","https://x.com/mcmagicygr_/status/1798726764170228104?s=46&t=gk5Xlv2DZq5hgexCyC6vCw","McMagicYGR_","2564","11413","Mc Magic 🐕🌖 / Tabi 🟧","Radio & Tv Host 💫📻 Wedding MC/Host 💫🎙❤️ Web3 $MoN @cvex_xyz // Atleta @atleta_network / Tabi 🟧","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd0D57bd008e709Df1De0703580E2654E65798F0E @EthStorage"
"903","6/6/2024","0x8B83F4021Fde75B2B47879C80a5F65F46F9232da","[email protected]","https://x.com/mayowajumo/status/1798727317776163289","mayowajumo","1069","7403","$PRIEST$SOMO","VISCA BARCA| NFT| CRYPTO ENTHUSIAST| I AM NFT, YOU ARE NFT..WE ARE UNIQUE| DM for WL giveaways. Co-founder @DEGEN_DEN_DAO |Discord: reaper9715|","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8B83F4021Fde75B2B47879C80a5F65F46F9232da"
"904","6/6/2024","0xe3bF968a08BE15e1321FeC50c6E5E35cdd26aAc9","[email protected]","https://x.com/sam6170/status/1798726969296818479","sam6170","211","3812","Sam.plena (🌸, 🌿)(📽️, 🌿)🌘💚🌙♦️🐉 Tabi 🟧🛸♣️","|@tapioca_dao pearl club member |@Mint_Blockchain","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe3bF968a08BE15e1321FeC50c6E5E35cdd26aAc9"
"910","6/6/2024","0x361983dab1f5D25B80d06D9F0d9f2b974C2fe1Ce","[email protected]","https://x.com/ugo_forex/status/1798729741413040378","ugo_forex","450","2013","UGO","|| FX-TRADER || GBPUSD x EURUSD 🏛 ||","I am applying to participate in the EthStorage public testnet, and my miner address is 0x361983dab1f5D25B80d06D9F0d9f2b974C2fe1Ce@EthStorage"
"911","6/6/2024","0x42F7F6bDB4761280e67A1396EbFce66B25f01903","[email protected]","https://x.com/muhaussy/status/1798729438261325867?t=stlsVe9h4lTC9cJIxBXZCQ&s=19","muhaussy","270","10244","MOH Tabi 🟧","🥂","I am applying to participate in the EthStorage public testnet, and my miner address is < 0x42F7F6bDB4761280e67A1396EbFce66B25f01903>"
"914","6/6/2024","0x1DC1C8c6649243680430D3CE268FA1407833234f","[email protected]","https://x.com/Mharliick/status/1798730946805719446","Mharliick","614","10125","mharliick","Allah | web 3 | music | nfts | 💰","I am applying to participate in the EthStorage public testnet, and my miner address is <0x1DC1C8c6649243680430D3CE268FA1407833234f>"
"915","6/6/2024","0xe8c06f81cd32f85E918073652b63A97fEda08141","[email protected]","https://x.com/0xie_stew/status/1798730929013432508?t=Ocm42wSGm9fK6xEkcxdYVg&s=19","0xie_stew","121","1699","stewieee 🎓 $ARIA","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe8c06f81cd32f85E918073652b63A97fEda08141@EthStorage"
"916","6/6/2024","0xD9C7c22764D2f2A46118D4B5179908e5a86add30","[email protected]","https://x.com/0xxkay/status/1798730964350489016","0xxkay","163","95","GasFeesAndChill","educational","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD9C7c22764D2f2A46118D4B5179908e5a86add30@EthStorage"
"917","6/6/2024","0xD93CE92CC0504814fc85d6C2B0E8Bccb20E03e6F","[email protected]","https://x.com/iamcjoint/status/1798730620501447100","iamcjoint","194","3273","Barrister CjointFx","Here, you'll find a mix of my personal interests and professional pursuits. I love connecting with people from all walks of life. ⚖️ 🧑⚖️ 📊 📉 📈 💒","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD93CE92CC0504814fc85d6C2B0E8Bccb20E03e6F@EthStorage"
"918","6/6/2024","0x62855BaEbc8463DD5376DaAB17Ae0113e96F23F1","[email protected]","https://twitter.com/topwhizy/status/1798722223739711991?t=Oq9rlDhTl1xSt7_LqeuZrg&s=19","topwhizy","1181","5271","BadBoi Topwhizy","football,music lover, badman #topwhizy, #GGMU","I am applying to participate in the EthStorage public testnet, and my miner address is 0x62855BaEbc8463DD5376DaAB17Ae0113e96F23F1 @EthStorage"
"919","6/6/2024","0x427c46FdCa44f8Dc18C1079187907b6FF81DDc7c","[email protected]","https://x.com/Heymma7/status/1798731499258421341?t=WcSDN0XhT0mN-0Ig7OC2dA&s=19","Heymma7","396","6925","heymma.sol🛸","This life no suppose hard 💯","0x427c46fdca44f8dc18c1079187907b6ff81ddc7c"
"920","6/6/2024","0x24d78e2a07B14ee4CdED2736A07558A6f4904472","[email protected]","https://x.com/xmstar_2020/status/1798731673254969678?t=wkuZHEjGkF_s2oS4ojfcgQ&s=19","xmstar_2020","949","4020","Xmstar_2020 🟧 ⛈️ 🟣","Fellow in the web 3 world 🌎 W A G M I 💪💪Let build togetherGTA TA TOKEN ❤️ | Join the new GTA Zealy Sprint event. The total prize pool is $100,000.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x24d78e2a07B14ee4CdED2736A07558A6f4904472"
"923","6/6/2024","0x799317bdE2886F09984A0C698E2716d4b83d1b46","[email protected]","https://x.com/_salteek/status/1798732071898403142","_salteek","328","2671","salteekx","CPTweb3 degen","I am applying to participate in the EthStorage public testnet, and my miner address is 0x799317bdE2886F09984A0C698E2716d4b83d1b46 @EthStorage"
"924","6/6/2024","0xeaCbd64C6eC13263695D7dacb8DCcC6AB1E939fd","[email protected]","https://x.com/EssTeeOoh/status/1798732044928995384","EssTeeOoh","960","6074","Tee Tabi 🟧","...","I am applying to participate in the EthStorage public testnet, and my miner address is 0xeaCbd64C6eC13263695D7dacb8DCcC6AB1E939fd"
"925","6/6/2024","0x7220A86a2CAd8eDdD195afb9d4Eaa391C0557a76","[email protected]","https://x.com/pieter_gor/status/1798732430729527609","pieter_gor","101","2743","Gor Tabi 🟧","","I am applying to participate in the EthStorage public testnet and my miner address is 0x7220a86a2cad8eddd195afb9d4eaa391c0557a76 @EthStorage"
"927","6/6/2024","0xD9BAE0ec9c21Ab0d4DeFb8ef7EA77551628B5E6f","[email protected]","https://x.com/thatidomaboy_/status/1798729734177837428","thatidomaboy_","4392","71082","Gojen☦︎🪼","I’m Batman • A Nihilist • Crypto Farmer 👩🌾• Shitpost @benueboylover1 • Web3 • Community manager @Greedtowndao","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD9BAE0ec9c21Ab0d4DeFb8ef7EA77551628B5E6f @EthStorage"
"928","6/6/2024","0xe92d2708eB54bd7697eF6352909C8dCC360B49BA","[email protected]","https://x.com/sylvex007/status/1798733460712161538","sylvex007","670","5590","gOOfy☄️🐕🌖","What gives you life? What makes you live life? How long does it help you live? | Web3 | @Laika_Layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe92d2708eB54bd7697eF6352909C8dCC360B49BA @EthStorage"
"929","6/6/2024","0x86E1146Fb15A6966F8E9D7D3bc7118A22219dBb4","[email protected]","https://x.com/de_chairman31/status/1798733927013921183?s=46&t=MXzchTQFb3Wdt3_Pnsfqkg","de_chairman31","691","8297","sheriff 💫","GGMU 🛑 Information professional 📚 crypto ✨ web3 🌟 #MESSI FC 🐐","I am applying to participate in the EthStorage public testnet, and my miner address is 0x86E1146Fb15A6966F8E9D7D3bc7118A22219dBb4 @EthStorage"
"931","6/6/2024","0x0cd269016873f3d1F1Dd1B69819982f2dD83e4b8","[email protected]","https://x.com/trdieuts/status/1798734571040850322","trdieuts","289","2823","dieuts #STRK #ATOM ♣️","#crypto_enthusiast || #airdrop || node runner@Mint_Blockchain","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0cd269016873f3d1F1Dd1B69819982f2dD83e4b8@EthStorage"
"932","6/6/2024","0xb1a5E592243690de70710c1f872Cf311Fdd726F1","[email protected]","https://x.com/BOlutundun3064/status/1798734542616105102","BOlutundun3064","194","5087","Bolanle Olutundun .NYAN 🐉 .plena 🟧 ⛈️ 🟣","","@EthStorage I am applying to participate in the EthStorage public testnet, and my miner address is 0xb1a5E592243690de70710c1f872Cf311Fdd726F1@EthStorage"
"936","6/6/2024","0x166bF0ab97859Cc6180e34e9B43a729264DF04bf","[email protected]","https://x.com/Den_zel21/status/1798624994811101282","Den_zel21","462","5188","Clones","🔮wiz 🟧⛈️🟣 i","I am applying to participate in the EthStorage public testnet, and my miner address is 0x166bF0ab97859Cc6180e34e9B43a729264DF04bf@EthStorage"
"938","6/6/2024","0x2431DCc6d44B0394D45296CD6E077D94d2E2DDb9","[email protected]","https://twitter.com/r_u_n_k/status/1798735395842387985?t=-sSho0hCETVrNaPaNo-trQ&s=19","r_u_n_k","173","812","Grem | Runes Chain 🟧","Walk, Not Talk","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2431DCc6d44B0394D45296CD6E077D94d2E2DDb9"
"940","6/6/2024","0x1464963d4e5C1eD725f442e101527CC84f7F2034","[email protected]","https://x.com/hellen32405356/status/1798735579829637473","hellen32405356","182","3796","Hellen","@playsomo | $SOMO","@EthStorage I am applying to participate in the EthStorage public testnet, and my miner address is 0x1464963d4e5C1eD725f442e101527CC84f7F2034@EthStorage"
"943","6/6/2024","0xAB3C8f10e639DCd61ff0d9E9E9b5aB36981F6eD4","[email protected]","https://x.com/Adeyemi05219780/status/1798735810486816938","Adeyemi05219780","345","8343","Sceptre 📞🔌.OwO","NFT| AIRDROP HUNTER| WEB3","I am applying to participate in the EthStorage public testnet, and my miner address is 0xAB3C8f10e639DCd61ff0d9E9E9b5aB36981F6eD4"
"944","6/6/2024","0x06Dc74431537b69CF697D064556Ea1321a6B5753","[email protected]","https://x.com/timothy_famous/status/1798736390282191286","timothy_famous","208","1374","Timothy Famous $BUBBLE 🫧🫧🐉 $MON🫧","Alpha||NFT||Airdrop|| #byebyebirdie|| Left to Phaver","I am applying to participate in the EthStorage public testnet, and my miner address is 0x06Dc74431537b69CF697D064556Ea1321a6B5753@EthStorage"
"945","6/6/2024","0xDA221dE05f23085d23426eeB27E2892fcb8459C1","[email protected]","https://x.com/12_warcraft/status/1798736843384754356","12_warcraft","463","5187","MasterlXl.Eth ♦️","| Fuelet #SomniaNetwork","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0xda221de05f23085d23426eeb27e2892fcb8459c1. @EthStorage."
"946","6/6/2024","0xdE79366978686DCf2B91C36Eb3209A64Faf012e3","[email protected]","https://twitter.com/dandre89569026/status/1798737002210230504?t=Va_CMi5tMn1HPIwnhFFxOw&s=19","dandre89569026","174","1916","dan.dre_ Tabi 🟧","Channel ur life in a good wayLetsPhotographer @Dre photos #IG Dan.dre_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdE79366978686DCf2B91C36Eb3209A64Faf012e3 @EthStorage"
"947","6/6/2024","0x77d059c2B67EEBA64D46c6c630EE38a878885f99","[email protected]","https://x.com/emerid__/status/1798737182368178391?s=46&t=UgbQBL_3JiF_QDWUIKgvFQ","Emerid__","194","5922","Tuff 💎","Software Engineer || Web3 is Alpha 🫡 || NFTs || WAGMI 🎈","I am applying to participate in the EthStorage public testnet, and my miner address is 0x77d059c2B67EEBA64D46c6c630EE38a878885f99@EthStorage"
"948","6/6/2024","0x471dc9Fb62591ceE93Ecc15fFf34E0621362ed85","[email protected]","https://x.com/iam_kunleg/status/1798737330557333970?t=l437KcQZjbZXFW3hztJJyw&s=19","iam_kunleg","197","3101","Tabi 🟧 || 🎵 🟣 $LOL ||🐉$MON || Kunleg.fuel","https://t.co/CZO8iZDkGe💎 $FYN","I am applying to participate in the EthStorage public testnet, and my miner address is 0x471dc9Fb62591ceE93Ecc15fFf34E0621362ed85"
"950","6/6/2024","0x523dde271a8f34284c306f3773d7D7937AFD26A0","[email protected]","https://x.com/skyrocketsuko/status/1798737235237306738?t=aYaASqmkg1CPfWtpKMP8zw&s=19","skyrocketsuko","763","12344","🐉 $MON 🐐 💎 $FYN 🎵 🔫 StarMech ❤️ WELL3","#ISLM_MAXI#PiraFinance#zkApes@FocusOnVaisselhttps://t.co/qI3ZaZA3Ufhttps://t.co/yXKrswqPktLeft to Phaver#byebyebirdiepaw_38ie1dkpasiuwhoj5yp3hjkcdp5tou","I am applying to participate in the EthStorage public testnet, and my miner address is 0x523dde271a8f34284c306f3773d7D7937AFD26A0@EthStorage"
"952","6/6/2024","0xfB73b3b3C379A8ec184959F114d19481B891d54E","[email protected]","https://twitter.com/9ytshade/status/1798737248776839208?t=QlxbxjeHQGS1HaU6UFGL_A&s=19","9ytshade","196","1456","9yt💻shade 💪🏻 XPLUS","♋💻🖤🕷️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xfB73b3b3C379A8ec184959F114d19481B891d54E@EthStorage"
"953","6/6/2024","0xd85F380b0aA9E392d0e0c970272f5a9d954f536f","[email protected]","https://twitter.com/AdeyinkaAdemak1/status/1798736999613903230?t=KkKi4J2CckUetE-mDNxEsw&s=19","AdeyinkaAdemak1","122","3244","Carter $ARCA.mo","Him! @0xmochain","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd85F380b0aA9E392d0e0c970272f5a9d954f536f @EthStorage"
"954","6/6/2024","0x0Ec3c7E0E35afe4044A82Dc864e5F00c2A548c53","[email protected]","https://x.com/RichMon47953198/status/1798737907697721654","RichMon47953198","250","4994","Phluziii Utgardians ⚔ (Avalon 🔮 , 🧙♂️ ) 🐉 $MON","•DGMI@playsomo | $SOMO@NavyAI_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0ec3c7e0e35afe4044a82dc864e5f00c2a548c53"
"955","6/6/2024","0x4433F117b2782B840911f20078bFfCf8Cc958dc3","[email protected]","https://x.com/EVictorberry/status/1769638383838462361?t=4el1jeWv-Jd_GZs1LEjRSQ&s=19","EVictorberry","182","678","VBBERRY💡🍓","💥⚡️","I'm applying to participate in the EthStorage public Testnet, and my miner address is [0x4433F117b2782B840911f20078bFfCf8Cc958dc3] @EthStorage"
"956","6/6/2024","0x5FD1a76E872Bf33D4e01AFE7700F67d9A1358931","[email protected]","https://x.com/Chandan80264040/status/1798739007247204532","Chandan80264040","493","14248","CHANDAN | BLASTR $MOJO $BUBBLE🫧🫧$XTER","TOP 0.05% in leaderboard for ZKS and ZRO #ECommerce Tech Lead,#CBRC20 #Blockchaintechnologybeliever, #BTC #ETH #BNB HODLER, #AdobeCertified #Fitnessenthusiast","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5FD1a76E872Bf33D4e01AFE7700F67d9A1358931 @EthStorage"
"963","6/6/2024","0x018b5477cf1abd1aa80c15b70284B6c692F75DD0","[email protected]","https://x.com/JblaqdotETH/status/1798736243809022259","JblaqdotETH","698","7103","JAD£ 💎","God 1st 🥇• Crypto📈 • $NFTs • CM @ElNuevoDAO • creative writer","I am applying to participate in the EthStorage public testnet, and my miner address is 0x018b5477cf1abd1aa80c15b70284B6c692F75DD0"
"964","6/6/2024","0xbf7aef1295d1FBc91C1e256466560F3F5Df41890","[email protected]","https://x.com/knoiyke/status/1798738585195327642","knoiyke","109","1260","Iyke.eth | ❤️ Memecoin","🔮wiz @avalonfinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xbf7aef1295d1FBc91C1e256466560F3F5Df41890 @EthStorage"
"967","6/6/2024","0xEe7d2069269aA17557Ad07D43e7b83Ad356545CE","[email protected]","https://x.com/brosidinho/status/1798740013649424412?t=B7enD-flG_wxCw-RtSwXoQ&s=19","brosidinho","554","8521","brosidinho 💚🌙 |Full force 🎁 🐉$MON 👁️.plena","Always do your best in anything you find yourself doing.|fuelet,Left to Phaver .plena @Fullforce_io l#byebyebirdie| @IntractAmbassador l 🐉 $MON 👁️ @cv_exc","I am applying to participate in the EthStorage public testnet, and my miner address is 0xEe7d2069269aA17557Ad07D43e7b83Ad356545CE"
"968","6/6/2024","0x8c230CF156409d98D63a7FBbd09a46301D62c487","[email protected]","https://x.com/adaokeifufe1/status/1798682920477221002?t=SG-kJlhFe1PwYmOmSU63IA&s=19","adaokeifufe1","142","1762","Ada1 Tabi 🟧","NFT LOVER, FLIPPER, DEGEN PLAYER. #ETH #SOL #NEARhttps://t.co/KdDEJoBDYG 🎵","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8c230cf156409d98d63a7fbbd09a46301d62c487 @EthStorage."
"969","6/6/2024","0xce773Db96aB5897EC0cCf9cd7dbD15050e4dB649","[email protected]","https://x.com/therealokeowo/status/1798740154137592211?t=72OBtLimJAcGM5YPCf1U_g&s=19","therealokeowo","133","1112","olamilekan Tabi 🟧","Crypto enthusiast📊📈 || I love Web3😍","I am applying to participate in the EthStorage public testnet, and my miner address is 0xce773db96ab5897ec0ccf9cd7dbd15050e4db649"
"970","6/6/2024","0xf862634A57Aa268850f492a017dA111F450008C4","[email protected]","https://twitter.com/Voiceuyoi/status/1798739943298359794?t=8EXT9JcRrj7aGVtlN4v-CA&s=19","Voiceuyoi","171","1859","Akinschultz","NFTs 🎨 artist ,crypto trader,Degen player....","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf862634A57Aa268850f492a017dA111F450008C4 @EthStorage"
"971","6/6/2024","0x369f4E0f29862c23de49b0fF32cC82945de4b25E","[email protected]","https://x.com/Judec_s/status/1798740529649426935","Judec_s","309","5447","Judecs|🛸| 👑| $XTER","$WAXP | Graduate of Computer Engineering, front-end designer, Crypto trader, lover of tech. & innovation","I am applying to participate in the EthStorage public testnet, and my miner address is <0x369f4E0f29862c23de49b0fF32cC82945de4b25E>"
"972","6/6/2024","0x3E3ccf25727889D8734d4E8Fab18eebDb163D096","[email protected]","https://x.com/Marvinlewis05/status/1798740792040915011","Marvinlewis05","628","7275","Marvin","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3E3ccf25727889D8734d4E8Fab18eebDb163D096@EthStorage"
"973","6/6/2024","0xcfd123759E9e54D062e7a581454478efb9bC5a15","[email protected]","https://x.com/logosnodos/status/1798740629532672044?t=kTVMSfsl1_147TXSAuq_dg&s=19","logosnodos","1812","4228","LOGOSNODOS","@keeper_defi 9B7hRY8🛠️Community Builder on Namada (Anoma Project) 💻Validator : IBC, Polkadot, EVM and ArweaveStake your funds with 24/7 monitoring assets","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcfd123759E9e54D062e7a581454478efb9bC5a15#EthStorage"
"975","6/6/2024","0xEA50b31682d0E5f77883B27a8d296EcC71a2B5Af","[email protected]","https://x.com/abraham8647/status/1798740534523261426?t=D5L3DNXuTZtKzoltlXIP8A&s=19","abraham8647","285","2422","Abraham 🎁🎁 🐉 $MON 👁️.plena","Crypto enthusiasts 🐉 $MON 👁️ .plena @cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0xEA50b31682d0E5f77883B27a8d296EcC71a2B5Af"
"977","6/6/2024","0xA4021f20d6Bfc92C27E711a765A859b894db1D14","[email protected]","https://x.com/CryptChurch/status/1798741168026763395","CryptChurch","1852","22177","Jpeg hunter","Onchain analyst | Data lover | Web3 gives me freedom | Mini threads","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA4021f20d6Bfc92C27E711a765A859b894db1D14"
"978","6/6/2024","0x271a97C79C334ABb65ED18141062Cf79240Be234","[email protected]","https://x.com/drsqillz1/status/1798740431733498173?t=d5bBCo74LZsHW2QKASXuAQ&s=19","drsqillz1","248","12521","Abdulhameed $XTER","web3 || Degen to the core || @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x271a97C79C334ABb65ED18141062Cf79240Be234"
"979","6/6/2024","0xBFD193Ef927194ea7eAb27F44d3f6Cc5758ceB86","[email protected]","https://x.com/oluwatosinkelv1/status/1798741448285905056?s=46&t=jAmGhs78f_-ci64-vPOjEQ","OluwatosinKelv1","109","12585","k Avalon🔮,🧙","❤️ Manchester United. @Mint_Blockchain","I am applying to participate in the EthStorage public testnet, and my miner address is 0xBFD193Ef927194ea7eAb27F44d3f6Cc5758ceB86"
"981","6/6/2024","0xee1b053AeED5659076421ee401FBAcA80f54A22E","[email protected]","https://x.com/Alicia19512532/status/1798741596583977441","Alicia19512532","167","2835","Emmanuel(💙,🧡).bit","A Christian | A technical Analyst | Love traveling | @Mint_Blockchain | #INFINISWAPPERS","I am applying to participate in the EthStorage public testnet, and my miner address is 0xee1b053AeED5659076421ee401FBAcA80f54A22E @EthStorage"
"982","6/6/2024","0x4a3452851c4c24DC9f3e49C3A70BD19Ac94b291D","[email protected]","https://x.com/Sunyiot/status/1798741219314684376","Sunyiot","115","1750","FiatORcrypto ❤️ Memecoin","🔮wiz @avalonfinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4a3452851c4c24DC9f3e49C3A70BD19Ac94b291D @EthStorage"
"985","6/6/2024","0xf4532E73BE849370299F30D8a8cbf39f60b4f593","[email protected]","https://x.com/IPharoooq/status/1798743136182890653","IPharoooq","840","4966","IPharoooq Tabi 🟧","SoftwareEngineering || FrontEnd || Crypto || Web3 || Content Creator and a whole lot of fun 🤪@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf4532E73BE849370299F30D8a8cbf39f60b4f593"
"986","6/6/2024","0x8de94a98509De29411e0239049e5E2bB452230B4","[email protected]","https://x.com/maghamid/status/1798743539834310870","maghamid","183","3154","Tabi 🟧/ .NYAN🔫😼 STONE🐦⬛🪨 🎵","Am an ardent listener of rock music, techno, rap, hip-hop and most of all I love the Group #ENIGMA #MintSquare https://t.co/bKAiZOt9Tm$DATA","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8de94a98509De29411e0239049e5E2bB452230B4"
"987","6/6/2024","0xB4ed8c89b04963ed344d934Bb8541F114D2c992D","[email protected]","https://x.com/dola_001/status/1798743697666023615","dola_001","448","3477","Dola $LOL","Airdrops | Crypto Enthusiasts |♡☆","I am applying to participate in the EthStorage public testnet, and my miner address is0xB4ed8c89b04963ed344d934Bb8541F114D2c992D"
"989","6/6/2024","0x0b59bBEf9acabeB1a12d3aa05DeAacd3dfaF9C88","[email protected]","https://x.com/anonadams3/status/1798744128618184973","anonadams3","126","3844","Anon Force 🐉 $MON $BUBBLE 🫧🫧🫧 $XTER","money 💲 first","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0b59bBEf9acabeB1a12d3aa05DeAacd3dfaF9C88 @EthStorage"
"990","6/6/2024","0x7f418317B93240d61C3489378273cEB91c73E483","[email protected]","https://x.com/aileruemmanuel/status/1798744554331681210?s=46","AileruEmmanuel","236","8901","Aileru Emmanuel","make monies not enemies","I am applying to participate in the EthStorage public testnet, and my miner address is <0x7f418317B93240d61C3489378273cEB91c73E483>"
"994","6/6/2024","0xCAD7D52Db7CC17633F4f48f256CB9c815a7A2c7e","[email protected]","https://x.com/popsy_mayorSAX/status/1798745834705850845","popsy_mayorSAX","509","2933","_eth_eth💎⚡️⚡️🐉 $MON","Building @LightHub_DAO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCAD7D52Db7CC17633F4f48f256CB9c815a7A2c7e@EthStorage"
"995","6/6/2024","0xa9d70d0B96a80224F3f6e322360D03D906761182","[email protected]","https://x.com/sumitgupta__r/status/1798745979262587380","sumitgupta__r","497","66865","sumit gupta | .fuel 🐉 $MON .plena Tabi 🟧","| Fuelet | @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa9d70d0B96a80224F3f6e322360D03D906761182"
"996","6/6/2024","0x88ed27B5d90c23C7405FDC23C3208a4604f32952","[email protected]","https://x.com/johnonaivi/status/1798746307156377650","johnonaivi","7400","5606","AJAYI JOhn","Crypto prophet#","I am applying to participate in the EthStorage public testnet, and my miner address is <0x88ed27B5d90c23C7405FDC23C3208a4604f32952>"
"997","6/6/2024","0x1BFDB1E3e5B575c3eFFc46b39CCE39fa06eC9937","[email protected]","https://x.com/EzebubeNnamdi/status/1798746406028771830?t=Jb1Buxpt12Ve3klZMmeDYg&s=19","Everdonnew","227","4771","Everdon","I am who I am","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1BFDB1E3e5B575c3eFFc46b39CCE39fa06eC9937"
"998","6/7/2024","0x723c6a926b24f5761303707f25650835475F8497","[email protected]","https://x.com/Emmydrilz/status/1798746342547931321?t=k6cT5A2tcAuov1aBCShB6Q&s=19","Emmydrilz","109","2177","ELIGIBLE EM 🧘 TABI 🟨","Aspiring Web Developer,CRYPT AND TO I FRO 🏌️👨🏼💻","I am applying to participate in the EthStorage public testnet, and my miner address is 0x723c6a926b24f5761303707f25650835475F8497@EthStorage"
"999","6/7/2024","0x2a7e53CB30BB279f85483bfEBB8d9a939409a6d8","[email protected]","https://x.com/shahpiyush07/status/1798746577735193022","shahpiyush07","187","1392","HEISENBERG","Sleep deprived in this bull run","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2a7e53CB30BB279f85483bfEBB8d9a939409a6d8@EthStorage"
"1000","6/7/2024","0x1c81a201dF714716E34d8e8Cba9c71DE15f1811d","[email protected]","https://x.com/xk_kingz/status/1798746648820224092","xk_kingz","253","1406","X.Kay","No risks no rewards school of thought / Jack of all chains / crypto & NFTs? call me / @playsomo | $SOMO","I am applying to participate in EthStorage public tesnet, and my miner address is 0x1c81a201dF714716E34d8e8Cba9c71DE15f1811d"
"1001","6/7/2024","0x97968ffE9f93F52Cd9F6FcF74cC92C65E0Ae49BC","[email protected]","https://twitter.com/yrn_timi/status/1798746758845222942?t=rQ-eXCEeEG4uTX2Sp_hZKw&s=19","yrn_timi","216","7913","Timileyinn 🐉$MON Tabi $RICY Ordzaar @ricyofficial","$ricyofficialafter laughter come tears","I am applying to participate in the EthStorage public testnet, and my miner address is 0x97968ffE9f93F52Cd9F6FcF74cC92C65E0Ae49BC @Ethstorage"
"1002","6/7/2024","0x9724A639785a271297cF89d2f095866624523cb1","[email protected]","https://x.com/creepytoon/status/1798747557147079050","creepytoon","351","5403","creepytoon.eth(🌸, 🌿) plena ♦️🦊 Tabi 🟧","e-Farmer @cv_exchange @Plenafinance #PlenaArmy @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9724A639785a271297cF89d2f095866624523cb1 @EthStorage"
"1003","6/7/2024","0x93ec624E36238f35f02f9bd2eF51976e07a95971","[email protected]","https://x.com/_enyojo/status/1798747715624649213","_enyojo","295","3677","enyojo","21-04🎂","I am applying to participate in the EthStorage public testnet, and my miner address is <0x93ec624E36238f35f02f9bd2eF51976e07a95971>@EthStorage"
"1004","6/7/2024","0x35fde55e775FaE04B669c2BDe91F2f3Ea98F6Cea","[email protected]","https://x.com/Favour0105/status/1798747931371262081","Favour0105","337","2225","Favvy Lewy","Crypto.","I am applying to participate in the EthStorage public testnet, and my miner address 0x35fde55e775FaE04B669c2BDe91F2f3Ea98F6Cea @EthStorage"
"1005","6/7/2024","0x9745ab206BC19ac01bE3d115aBb26B03a5C04D03","[email protected]","https://x.com/Horla_dap0/status/1798748127949918548","Horla_dap0","1046","4183","CHROMIUM 🐉$MON","📈📉 Technical Analyst📊 XXXUSD USDXXX Photographer📸 Chartopia Student🤑Undergraduate, MATERIALS AND METALLURGICAL ENGINEERING","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9745ab206BC19ac01bE3d115aBb26B03a5C04D03"
"1006","6/7/2024","0x2254353aCF668A9831032E81D28AE91B90B78374","[email protected]","https://x.com/DIALIFI/status/1798748567190032495","DIALIFI","244","3023","DIALI.FI ❤️.fuel💲🐐LINGO🔫😼🟧🐉 $MON","https://t.co/vNFw4cMoZ8","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2254353aCF668A9831032E81D28AE91B90B78374"
"1007","6/7/2024","0x401B185d9a57a34e7888f6363AFf4B54E535A872","[email protected]","https://x.com/mota_kidah/status/1798748578980270467?s=46","Mota_kidah","1543","18200","Luther👑","NFT Collector || Software Developer 👨💻|| Gamer || Crypto enthusiast || HNGx finalist 👑","I am applying to participate in the EthStorage public testnet, and my miner address is 0x401B185d9a57a34e7888f6363AFf4B54E535A872@EthStorage"
"1008","6/7/2024","0xFE35624159F8C9Cf3A94095ac186523C244475b5","[email protected]","https://x.com/Semiwazi/status/1798748147356975553?t=7pGBZ8JzRt0aEQPY6BBuMg&s=19","Semiwazi","194","1232","Rapid Gentleman{| |} $BUBBLE $BEYOND🎵$SOMO","Rapidly we farm, Gently we gather ✌️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFE35624159F8C9Cf3A94095ac186523C244475b5 @EthStorage"
"1009","6/7/2024","0xBC11F907CCE807c7731B2375D48855B392CfD3fC","[email protected]","https://x.com/BigLaird01/status/1798749076843897019","BigLaird01","307","2379","Laird","","I am applying to participate in Ethstorage public testnet and my miner address is 0xBC11F907CCE807c7731B2375D48855B392CfD3fC@EthStorage"
"1010","6/7/2024","0x2BfeCDC0E5EcdC16f7A91A693b8f36F80586D622","[email protected]","https://x.com/Damson7878/status/1798749458580308379?t=EaRhG2SwO2I_2o1ajph5TQ&s=19","Damson7878","428","3986","🅳︎🅴︎🆅︎🅲︎🅾︎🅽︎","⚡️Web3 Community Moderator/CM ▪︎◇▪︎ Product Tester ▪︎◇▪︎ Mod @coss_market ▪︎◇▪︎.............","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2BfeCDC0E5EcdC16f7A91A693b8f36F80586D622"
"1011","6/7/2024","0x5c8Fc55caaa38A81F179BD656219f6118b8AB1Aa","[email protected]","https://x.com/eli_gram/status/1798749411507601756?t=FXBbS0QdEYm9ikPxqZ7ymA&s=19","eli_gram","221","557","Big yotal.stark (💙,🧡)","Fullforce_io @IntractAmbassador","I am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address>0x5c8Fc55caaa38A81F179BD656219f6118b8AB1Aa"
"1012","6/7/2024","0x6CC4bcCa5C136a8e9d2880C55d3c13b715BA75c3","[email protected]","https://twitter.com/ethsol0/status/1798749843965485129?t=D1VsK6-2cnb2mMwDFxxoxQ&s=19","ethsol0","645","17148","Web3 Doctor 🔫 StarMech","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6CC4bcCa5C136a8e9d2880C55d3c13b715BA75c3"
"1015","6/7/2024","0x3A16F65ceF45CD71c17278B1C08a5cc6e597EBAf","[email protected]","https://x.com/fel0xwin/status/1798750803689418983","fel0xwin","188","13340","syF3L 🟢 Tabi 🟧 $LINGO","fortune favors the bold","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3A16F65ceF45CD71c17278B1C08a5cc6e597EBAf @EthStorage"
"1017","6/7/2024","0x22C9B5B117993C061153E0323a6b22deEf4433Aa","[email protected]","https://x.com/Dhammie177/status/1798751031775379847?t=A0FTenVlzpIX1QTuZu16hw&s=19","Dhammie177","1455","11889","D A M M Y ✨","Architecture || Freelancer || テクノロジーと暗号の愛好家 || NFT || Anime || Shitposts & Cruise || Man U fan","I am applying to participate in the EthStorage public testnet, and my miner address is 0x22C9B5B117993C061153E0323a6b22deEf4433Aa"
"1019","6/7/2024","0x75719cf000ebD00219E34E7d4BCCcc974f7D7A65","[email protected]","https://x.com/omotehinsekehi2/status/1798751876307161493","omotehinsekehi2","130","2027","Crypto dev","I am a professional crypto developer.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x75719cf000ebD00219E34E7d4BCCcc974f7D7A65"
"1020","6/7/2024","0xd8147EE6A40274Eb0C5093BD897f91CB109d5171","[email protected]","https://x.com/Hey_Bumbi/status/1798752662260785171","Hey_Bumbi","104","1597","FiiFi 🐉 $MON Tabi 🟧","Living life the middle wayArt & DesignLearn & Evolve#web3gaming","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd8147EE6A40274Eb0C5093BD897f91CB109d5171 @EthStorage"
"1022","6/7/2024","0xa4324993848F69786f1ED4A6eA2251a4b0acc929","[email protected]","https://x.com/Mhaxta_Presh/status/1798752666321064272?t=nPNOq9qLD0i72fi_Fw109g&s=19","Mhaxta_Presh","134","2867","Mhaxta_Presh","NFT lov3r || Bioch3mist || Music lov3r ||W3b 3 is th3 r3al world.Discord us3rnam3 - Official_Presh#2469","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa4324993848F69786f1ED4A6eA2251a4b0acc929@EthStorage"
"1024","6/7/2024","0x2D1778a6429D2B5BDBd9bCFaDA5f3146456e78A5","[email protected]","https://x.com/AdeniyiSimeon10/status/1798752838379565415?t=4Ws5k-V4RZ-G90Vah5KnVQ&s=19","AdeniyiSimeon10","621","5798","simeon_ad.🛡️.fuel🟧","G.........I............A..............I................H","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2D1778a6429D2B5BDBd9bCFaDA5f3146456e78A5"
"1026","6/7/2024","0x34d4ECD77D6378EbddA1C62A38881E4587109181","[email protected]","https://x.com/Sat0Moto/status/1798752954864071120","Sat0Moto","180","1415","R.O.R.G","Retired Official Reply Guy - feel free to block me if can’t accept a banter. I troll & expose as a pastime, don't take it personally 🤪","I am applying to participate in the EthStorage public testnet, and my miner address is 0x34d4ECD77D6378EbddA1C62A38881E4587109181@EthStorage"
"1027","6/7/2024","0x9b54B85aae514b16821C961C504900BcA298c09d","[email protected]","https://x.com/bttl47/status/1798752852116148304","bttl47","161","2796","bttl47 🐞 $GAME ❤️ Xally","be human","I am applying to participate in the EthStorage public testnet, and my miner address is <0x9b54B85aae514b16821C961C504900BcA298c09d>"
"1030","6/7/2024","0x4daF587B24404Efc7d11d5130EB78283C271e42d","[email protected]","https://x.com/JudeOlowu1/status/1798753048753316119","JudeOlowu1","374","6101","seven-teen ♦️","Game world🎮moth to a flame 💆 | learning web3 @AlchemyLearn and @0xmetaschool #ScriptNetwork","I am applying to participate in the @EthStorage public testnet, and my miner address is 0x4daF587B24404Efc7d11d5130EB78283C271e42d"
"1031","6/7/2024","0x2f01f98AFC5B086B02e26425935c7406a6795602","[email protected]","https://twitter.com/Thee_Codaks/status/1798705532422730202?t=lYb_jkYoC70bfSRrsFMRsw&s=19","Thee_Codaks","130","539","Made_Codaks","Airdrop, DEFI Brethen🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2f01f98AFC5B086B02e26425935c7406a6795602"
"1032","6/7/2024","0x54bb6B5e388f4Ba44CD91F4A93406Ac19FC8F076","[email protected]","https://x.com/Mistletoeray/status/1798753602539856224?t=nh8mdDZTz1nYYiDLchwbjw&s=19","Mistletoeray","263","5332","Mistletoe","life is so Beautiful","I am applying to participate in the EthStorage public testnet, and my miner address is 0x54bb6b5e388f4ba44cd91f4a93406ac19fc8f076@EthStorage"
"1033","6/7/2024","0xA6fFd15B2AD227DF54fB40Effb9870553D5F90BE","[email protected]","https://x.com/iamopitii/status/1798753616544636996","iamopitii","465","8117","StarBoy🌟","Godfirst🙏 | Crypto Kid📈📊 | Airdrop Farmer👨💻 I Future Whale🐳 I web3.0 LFG💪🚀 | E-Beggar🌚 | #zkApes","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA6fFd15B2AD227DF54fB40Effb9870553D5F90BE @EthStorage"
"1036","6/7/2024","0xc748E67A84741B581c558111b6c379f45737da0c","[email protected]","https://x.com/Eugene06555334/status/1798752381951471684","Eugene06555334","144","340","Eugene. 🐟⛓️⚡️Joltify","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc748E67A84741B581c558111b6c379f45737da0c @EthStorage"
"1040","6/7/2024","0x676E9BCcc474c2c1f08D8cF648430969A355a422","[email protected]","https://x.com/Toni90468300/status/1798752573253693698","Toni90468300","124","301","Toni.fuel🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x676E9BCcc474c2c1f08D8cF648430969A355a422 @EthStorage"
"1041","6/7/2024","0x48080E4c975742CFe1b3Ab6f06935c4D409783d2","[email protected]","https://x.com/Janean99191085/status/1798752671970758964","Janean99191085","131","287","Janean.fuel🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is0x48080E4c975742CFe1b3Ab6f06935c4D409783d2 @EthStorage"
"1042","6/7/2024","0xBE3f7Cf4Ef0B9B288F9badB6808C98976b255d74","[email protected]","https://x.com/Wan67377955/status/1798752747136930154","Wan67377955","129","289","Wan.fuel🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xBE3f7Cf4Ef0B9B288F9badB6808C98976b255d74 @EthStorage"
"1043","6/7/2024","0x31B939109D2c34036B26C917089dBfcc4a907bbD","[email protected]","https://x.com/Elinore81691859/status/1798752767986844036","Elinore81691859","125","291","Elinore🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x31B939109D2c34036B26C917089dBfcc4a907bbD @EthStorage"
"1044","6/7/2024","0x09e4269bf85055277D3d69837925dED57381D2BB","[email protected]","https://x.com/Erlinda09941959/status/1798752789868552465","Erlinda09941959","134","283","Erlinda.fuel🐟⛓️",".fuel","I am applying to participate in the EthStorage public testnet, and my miner address is 0x09e4269bf85055277D3d69837925dED57381D2BB @EthStorage"
"1046","6/7/2024","0x326DB9872De678606816fe037FC34743e466B0CE","[email protected]","https://twitter.com/Genovev61325333/status/1798752865563086950","Genovev61325333","111","292","Genoveva🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x326DB9872De678606816fe037FC34743e466B0CE @EthStorage"
"1049","6/7/2024","0x4ba22225236b62c9209eacEE8Dcd615b346D1905","[email protected]","https://twitter.com/Lenna55115984/status/1798753012493717935","Lenna55115984","132","278","Lenna🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4ba22225236b62c9209eacEE8Dcd615b346D1905@EthStorage"
"1050","6/7/2024","0x5285bd5A8a501DE809EB08971B31F48BcE04564C","[email protected]","https://x.com/Brianna69208533/status/1798753066919010661","Brianna69208533","126","291","Brianna🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5285bd5A8a501DE809EB08971B31F48BcE04564C@EthStorage"
"1052","6/7/2024","0x6586AAaF9Ce2ee33C84049bF97702fbba4390dc2","[email protected]","https://x.com/OlagbadunP/status/1798754408022303078","OlagbadunP","132","2771","Praise Olagbadun $UNIO 🐉 $MON 🎓 $ARIA IQ Protoco","a Writer, an Editor, and a Content CreatorPosts are majorly Cryptocurrency and Finance related articlesYou should follow my Articles on Medium","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6586AAaF9Ce2ee33C84049bF97702fbba4390dc2@EthStorage"
"1053","6/7/2024","0xEe76F9bFDd0D550226A2e9a71F8F074144cbf69f","[email protected]","https://x.com/fabson_11/status/1798754876949975301","fabson_11","160","3586","Fab® 🛸$XTER .lens .bit 🛡️🐐 .fuel 🔥 💚🌙♦️","fabson.apt","I am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address 0xEe76F9bFDd0D550226A2e9a71F8F074144cbf69f"
"1056","6/7/2024","0x2bb095d3Cd40905bc3860F5819Ff8eaA56e96a33","[email protected]","https://x.com/Craziefingerss/status/1798755434729484786","Craziefingerss","3150","10377","Craziefingers ⚡️","Content Creator-16k on PinterestAmbassador @Sending_NetworkAmbassador @onunblockedAmbassador @SUPRA_LabsContributor @OrderlyNetwork@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2bb095d3Cd40905bc3860F5819Ff8eaA56e96a33"
"1057","6/7/2024","0x44CaD88F022Ecc7Ab2E9598B9B1396CE67c83a1E","[email protected]","https://x.com/CryptoGoesViral/status/1798755575368675658","CryptoGoesViral","1079","22600","CryptoGoesViral ⚛️ 💜","COSMOS ⚛️ $ELYS #MERCLE #MONAD 💜$ATOM $OSMO $TIA $DYM $INJ $AKT $ARCH $ETH + privacy coins: $SCRT $SHD $SILK $ALTER $JKL & #SecretNFTs No Financial Advice","I am applying to participate in the EthStorage public testnet, and my miner address is 0x44CaD88F022Ecc7Ab2E9598B9B1396CE67c83a1E@EthStorage"
"1058","6/7/2024","0x6f0b4cE7a1872db132b2F6B7743deFb30eBa698a","[email protected]","https://twitter.com/Airdrop04932363/status/1798755656314581185?t=iA5PNMr1btyTsk7Bv5dY8g&s=19","Airdrop04932363","117","1132","Airdrop King","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6f0b4cE7a1872db132b2F6B7743deFb30eBa698a"
"1059","6/7/2024","0xbffE150BDeB368d237945C02b73c3Adb6f5F37aB","[email protected]","https://x.com/SHILL_NFT_SOL/status/1798755629856899578","SHILL_NFT_SOL","141","7056","Kyle 🌙$XC","Nomie💧","I am applying to participate in the EthStorage public testnet, and my miner address is 0xbffe150bdeb368d237945c02b73c3adb6f5f37ab @EthStorage"
"1060","6/7/2024","0xf340FCEc0FC1cA3652C315093E1CDF8a4A96D449","[email protected]","https://x.com/0_and_a_dream/status/1798753355302576186?s=46","0_and_a_dream","410","1650","MATTHEW (🌑🦧)","Here for now | E-begger | Nothing I post here is a financial advice., 💯% Sybil. Lover of @arbitrum, Farmer @ParticleNtwrk","I am applying to participate in the EthStorage public testnet, and my miner address is <0xf340FCEc0FC1cA3652C315093E1CDF8a4A96D449 >"
"1061","6/7/2024","0x27148cf6F2D1911B214e83bB1658D5e1944272e8","[email protected]","https://x.com/debo_legacy/status/1798755919632977926?s=46","Debo_legacy","831","5454","Legacy💜😎🥶","Web3 Construction Ongoing|| MSc in view","I am applying to participate in the EthStorage public testnet, and my miner address is 0x27148cf6f2d1911b214e83bb1658d5e1944272e8"
"1063","6/7/2024","0x2658DFfe87d9E08dC003B78375F403c6DD172841","[email protected]","https://x.com/Usmanny001/status/1798755955569827857?t=OI0nJHnzkuw31Pr0muw__w&s=19","Usmanny001","214","5980","Ibrahim Usman","Money minded#fuel💙 https://t.co/TZVtyMB0w3 Army","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2658DFfe87d9E08dC003B78375F403c6DD172841@EthStorage"
"1064","6/7/2024","0x9d687a6F77DD818893c0c6b04007961a52ca3B87","[email protected]","https://x.com/OLUKUNLE25/status/1798756591614980593","OLUKUNLE25","208","4072","Olukunle.plena","Crypto enthusiast | Airdrops | Physicist | footballer | @Plenafinance #PlenaArmy @playsomo | $SOMO | @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9d687a6F77DD818893c0c6b04007961a52ca3B87@EthStorage"
"1067","6/7/2024","0x8f59Ace224D79277c719605fAE717b995dfc8701","[email protected]","https://twitter.com/its_limin69/status/1798756817453097303?t=T24IlJuJ1JXFQDY7wlQnkA&s=19","its_limin69","150","2336","its_limin 🐕🌖","Nothing special about me, especially e-begger 🫥@Laika_Layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8f59Ace224D79277c719605fAE717b995dfc8701@EthStorage"
"1068","6/7/2024","0xC182aA0ecb24A674C00C76cE8F1761cC5a10611c","[email protected]","https://x.com/0x0_Chrollo/status/1798756944347631743","0x0_Chrollo","115","1424","Chrollo 🔫","Militians","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC182aA0ecb24A674C00C76cE8F1761cC5a10611c"
"1069","6/7/2024","0xce631360377F5bA13ec67197A32ed31657b84D53","[email protected]","https://x.com/0xOch/status/1798757203844964837","0xOch","232","1316","OCH","my life is my work","I am applying to participate in the EthStorage public testnet, and my miner address is 0xce631360377F5bA13ec67197A32ed31657b84D53@EthStorage"
"1071","6/7/2024","0xD728f2Eab942495718c69f0Cb6C780EB06737407","[email protected]","https://x.com/olukunle_24/status/1798747201864429684?t=he1VN85MrVXYowL0QL86bg&s=19","olukunle_24","210","1671","Michael Cole 💫🏌🏿♂️","Web3 | @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD728f2Eab942495718c69f0Cb6C780EB06737407@EthStorage"
"1072","6/7/2024","0x205768115988B61489a057041B9e7415b2E81862","[email protected]","https://x.com/CilinaDan/status/1798757486562025862","CilinaDan","906","16218","Chamy duckycity","Keep rising✨Keep living💃🏾Keep loving🤎#JesusSaves Titus 3 : 5 #ISLM_MAXI$MAGIC","I am applying to participate in the EthStorage public testnet, and my miner address is 0x205768115988b61489a057041b9e7415b2e81862 @EthStorage"
"1073","6/7/2024","0xD6Dc694A16536038906EDB3f1A48dbf295E8B6C5","[email protected]","https://x.com/Levi_cr17/status/1798757061779656821","Levi_cr17","219","715","Levi.fuel.Tabi 🟧","@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD6Dc694A16536038906EDB3f1A48dbf295E8B6C5@EthStorage"
"1074","6/7/2024","0x24c7871c3341D98525D4607A58283f8803a34F99","[email protected]","https://x.com/allwellphilip/status/1798756690466390469?t=ct_eClJ0S7T3AC5YZp55DQ&s=19","allwellphilip","220","1486","My_Tech|WEB3|Gadgets| ⚙️NYAN🔫😼 plena","Jesus Lover.","@EthStorageI am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address> 0x24c7871c3341d98525d4607a58283f8803a34f99 https://t.co/qnmJUcH5KY"
"1075","6/7/2024","0xaB27dc4815eE593f7fe5B2f000b5E68C2A649EF3","[email protected]","https://x.com/Web3Tonia/status/1798757095762018596","Web3Tonia","209","1199","Web3Tonia ♥POPCAT","Promoting Web3 Ecosystem growth◇Investing◇Personal Branding◇Financial Advisor AIICO INSURANCE◇Follow me for real time crypto updates◇Airdrops◇✌&❤","I am applying to participate in the @EthStorage public testnet, and my miner address is > 0xaB27dc4815eE593f7fe5B2f000b5E68C2A649EF3"
"1076","6/7/2024","0x202CfE6507f9e030668B077E5442d7c364147b07","[email protected]","https://x.com/PedroCa62512984/status/1798757232261353766?t=Gxdbz8ihZ8JOi1zasT4U8w&s=19","PedroCa62512984","348","1941","Ickson WEB3","Web3 Enthusiast, ETH will never die!@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x202CfE6507f9e030668B077E5442d7c364147b07"
"1077","6/7/2024","0x7e478F0F4e69915C4A1cba826Cb82F875cFae2DE","[email protected]","https://twitter.com/Whoisthecaddy/status/1798758349506584873?t=D1hzLf0PkCHpoml5bmlaPw&s=19","Whoisthecaddy","156","3105","Drismart","life goes on regardless. Sei less","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7e478F0F4e69915C4A1cba826Cb82F875cFae2DE @EthStorage"
"1081","6/7/2024","0xD5dd2E6d9B088a342a5dF7861832FbC970a99f74","[email protected]","https://x.com/Renae40620726/status/1798758186775876064","Renae40620726","126","239","Renae🐟⛓️","asd","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD5dd2E6d9B088a342a5dF7861832FbC970a99f74 @EthStorage"
"1082","6/7/2024","0x5831A75ddce64EB7aA99caAAf5C2CA6Af0F32309","[email protected]","https://x.com/Chang89684716/status/1798758195038765442","Chang89684716","125","251","Chang🐟⛓️","fire and love","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5831A75ddce64EB7aA99caAAf5C2CA6Af0F32309 @EthStorage"
"1083","6/7/2024","0x3F20c6a07a49427A01c11Df975bd94B67FD034E6","[email protected]","https://x.com/Kiley40227082/status/1798758201535631709","Kiley40227082","129","229","Kiley🐟⛓️","asd","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3F20c6a07a49427A01c11Df975bd94B67FD034E6 @EthStorage"
"1084","6/7/2024","0x68529cE2bB83cd9537F136cDaE963CAbC52deDA3","[email protected]","https://x.com/kenryan484/status/1798758594034426070","kenryan484","266","7800","Kendall 🟧⛈️🟣","WAGMI🤝 The sky is vast enough","I am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address> 0x68529cE2bB83cd9537F136cDaE963CAbC52deDA3 @EthStorage"
"1085","6/7/2024","0xFaC5b7F73e02C23dfDF9e15f6136B3EF25167488","[email protected]","https://x.com/Elois09475278/status/1798758241029210562","Elois09475278","132","236","Elois🐟⛓️","'$well'","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFaC5b7F73e02C23dfDF9e15f6136B3EF25167488 @EthStorage"
"1086","6/7/2024","0xe63DF510CB1691eA902555f75114FF426c4083DF","[email protected]","https://x.com/Lorette34799638/status/1798758227758420410","Lorette34799638","134","231","Lorette🐟⛓️","'$well'","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe63DF510CB1691eA902555f75114FF426c4083DF @EthStorage"
"1087","6/7/2024","0x221576479396ba356040c8024d848fb865e129f5","[email protected]","https://x.com/Malvina10019317/status/1798758222398099658","Malvina10019317","138","236","Malvina🐟⛓️","'$well'","I am applying to participate in the EthStorage public testnet, and my miner address is 0x221576479396ba356040c8024d848fb865e129f5 @EthStorage"
"1089","6/7/2024","0x59ADCb01d793Fd47F52D8fC1CCbed948b7343634","[email protected]","https://x.com/Gerda44427234/status/1798758231969611858","Gerda44427234","119","227","Gerda🐟⛓️","'$well'","I am applying to participate in the EthStorage public testnet, and my miner address is 0x59ADCb01d793Fd47F52D8fC1CCbed948b7343634 @EthStorage"
"1090","6/7/2024","0x8d3758c7E8DAe89a7bED8B0FF4ed990Ca5291484","[email protected]","https://x.com/Magdale70532139/status/1798758236675625304","Magdale70532139","139","233","Magdalene🐟⛓️","'$well'","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8d3758c7E8DAe89a7bED8B0FF4ed990Ca5291484 @EthStorage"
"1091","6/7/2024","0x2cb430dC1b40c347b9568670EAbD8DBDb76e0dc2","[email protected]","https://x.com/Stacie47072207/status/1798758216723251706","Stacie47072207","135","234","Stacie🐟⛓️","'$well'","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2cb430dC1b40c347b9568670EAbD8DBDb76e0dc2 @EthStorage"
"1092","6/7/2024","0xd26EBF6Ad87Ec42F8522796bDEee41FcCD5A68d1","[email protected]","https://x.com/Gracia74346293/status/1798758210964427043","Gracia74346293","134","237","Gracia🐟⛓️","'$well'","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd26EBF6Ad87Ec42F8522796bDEee41FcCD5A68d1 @EthStorage"
"1096","6/7/2024","0xBe29F889290a452BF1254Fd51CD4E231363C7F72","[email protected]","https://x.com/yusufmiftau5/status/1798759130024608057?s=46&t=-NpCmZUf_XAOm-Vpmu4ebQ","YusufMiftau5","353","7267","Tabi 🟧 🐐 .fuel.plena 💀 $ELS 🐉$MON ❤️ Xally","@Mint_Blockchain .plena |Fuelet","I am applying to participate in the EthStorage public testnet, and my miner address is 0xBe29F889290a452BF1254Fd51CD4E231363C7F72@EthStorage"
"1097","6/7/2024","0xDAE862cE55c3aC68596D5b4982E2017118E6a85E","[email protected]","https://x.com/meeshelle_j/status/1798759454969885061","meeshelle_j","120","1659","MICHELLE JAMES 🍃","SHARING MY THOUGHTS, 💭 EXPERIENCES AND GROWTH ONE TWEET AT A TIME💜","I am applying to participate in the EthStorage public testnet, and my miner address is 0xDAE862cE55c3aC68596D5b4982E2017118E6a85E@EthStorage"
"1098","6/7/2024","0xA435Fb77132c5485Ed78306f1F9F4b981229a7D9","[email protected]","https://x.com/Olajumoke186500/status/1798759981392810345?t=8v4piWdC_hVbaHxgEYNxNw&s=19","Olajumoke186500","110","588","Olajumoke 💪🏻 XPLUS","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA435Fb77132c5485Ed78306f1F9F4b981229a7D9 @EthStorage"
"1099","6/7/2024","0x42320f19d61536859Cd13C1Da06754fD527fb6e3","[email protected]","https://x.com/Eyitayo81/status/1798760239665434778?t=RSvIdoF2uq6TdeK-TP8naw&s=19","Eyitayo81","344","9103","Samson Olagunju 👁️","Results oriented 👁️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x42320f19d61536859Cd13C1Da06754fD527fb6e3@EthStorage"
"1101","6/7/2024","0x88fB3A6399740b0a5256ef58373C38d27AE36bA1","[email protected]","https://x.com/DaudaMarshal/status/1798759929454764081?t=lJT-ZeMP-hpSsMhocUEzvQ&s=19","DaudaMarshal","280","176","0xMarshal","0xmarshal.apt | Blockchain Developer 🚀 | Airdrop Hunter 🕵️♂️ | Writer ✍️ | Voyager of trends in technology.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x88fB3A6399740b0a5256ef58373C38d27AE36bA1"
"1103","6/7/2024","0x83d7B39E6BAbEA3F4fADD4eb072491b72EBe17Cd","[email protected]","https://x.com/Adewole96/status/1798761345313280353?t=YovFtHJjYB5DdCbeB8B8Fw&s=19","Adewole96","135","3334","Adewole 👁️","@TheRoyaland member","I am applying to participate in the EthStorage public testnet, and my miner address is 0x83d7B39E6BAbEA3F4fADD4eb072491b72EBe17Cd@EthStorage"
"1105","6/7/2024","0x321518CC39F960Ccc84A8515A38eAA6bd838fA10","[email protected]","https://x.com/ASingh00000001/status/1798761496316662228","ASingh00000001","182","2656","A-Singh","A-Singh // A.Singh#0","I am applying to participate in the EthStorage public testnet, and my miner address is 0x321518CC39F960Ccc84A8515A38eAA6bd838fA10 @EthStorage"
"1106","6/7/2024","0xced041c36aAcb604D451bFdf2b9452Ebe98266F7","[email protected]","https://x.com/richiethe100th/status/1798761784096223633?s=46","RichieThe100th","1413","24878","RICHIΞ🧂","idk | Triple Grim Reaper candle survivor | @salty_io OG | $SALT Maxi | Don’t Trust. Verify","I am applying to participate in the EthStorage public testnet, and my miner address is 0xced041c36aAcb604D451bFdf2b9452Ebe98266F7 @EthStorage"
"1107","6/7/2024","0x74B637A3C87eBA5Ec242036e2043d3B3475f91C6","[email protected]","https://x.com/Kori50286714/status/1798760692654460995","Kori50286714","123","231","Kori🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x74B637A3C87eBA5Ec242036e2043d3B3475f91C6@EthStorage"
"1108","6/7/2024","0xFA1e3423c6cCB89238a67a6aAF896c988A564986","[email protected]","https://x.com/DowlingKelsee/status/1798760724300443787","DowlingKelsee","139","1375","Kelsee Dowling🐟⛓️","Take whatever makes you happy and run like hell with it.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFA1e3423c6cCB89238a67a6aAF896c988A564986@EthStorage"
"1115","6/7/2024","0x160E69a82e2bEBbD0CbfaBf7E477C3260E978f1D","[email protected]","https://x.com/Kit74068686/status/1798761000004649039","Kit74068686","139","227","Kit🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x160E69a82e2bEBbD0CbfaBf7E477C3260E978f1D@EthStorage"
"1119","6/7/2024","0xEb3ff553C1919160eE5E562345fFc35Dd239A7C2","[email protected]","https://x.com/Thee_basher/status/1798762260426576203","Thee_basher","1166","2859","OxDaffy","Get the dough son ⚙️ vibing web3 narratives","I am applying to participate in the EthStorage 2nd public testnet campaign , and my miner address is 0xEb3ff553C1919160eE5E562345fFc35Dd239A7C2@EthStorage"
"1120","6/7/2024","0x5711CA81EC706434F95C49082f66C7252FB26454","[email protected]","https://x.com/xrpwatchdog/status/1798762452009828758","xrpwatchdog","478","2236","XrpWatchdog","Crypto Enthusiast | NFTs | Web3 $XRP $BTC $ETH $ARB $ISLM @OxyaOrigin @Mint_Blockchain @memecoin #HippoSwap","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5711CA81EC706434F95C49082f66C7252FB26454 @EthStorage"
"1122","6/7/2024","0xC2FB9ce691AA8F32d4FB8b7141Cd07d6a0e6A124","[email protected]","https://x.com/bbaabdulsalam24/status/1798762466593354077?t=RSDdE9xTg1Edgt46CqExwQ&s=19","bbaabdulsalam24","345","750","Abdulsalam Abdulsalam","(L)EARN-WITH-ABDULSALAMPolymath* Humanist* Educationist*A serial volunteer| Avid Learner| Problem Solver|QCEC 2023 GOLD AWARD RECIPIENT💯Strategize. Do. 💯","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC2FB9ce691AA8F32d4FB8b7141Cd07d6a0e6A124"
"1123","6/7/2024","0xD16aEC94dEB186fD6d431DDF19E97885a9468608","[email protected]","https://x.com/VictoryMom52727/status/1798763043326922789","VictoryMom52727","235","954","Victory Momoh FUEL","i am an airdrop Hunter, testnet, and CRYPTO, web 3 lover","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD16aEC94dEB186fD6d431DDF19E97885a9468608"
"1124","6/7/2024","0x2B05EE17ED97305105f4F0232d745e29374A28Ac","[email protected]","https://x.com/pepelurna/status/1798763285338312821","pepelurna","129","1519","PEPE 🐉 $MON 🟧 ⛈️ 🟣","Web3 Gangster, Community Manager, Moderator.","I am applying to participate in EthStorage public testnet, and my miner address is 0x2B05EE17ED97305105f4F0232d745e29374A28Ac @EthStorage"
"1128","6/7/2024","0xD52D07656EA99eBe40B9C32D37c14c76B904D9c5","[email protected]","https://twitter.com/perry_potompo/status/1798764311554433170?t=HILKwUSGihK2RXtjwFlyhw&s=19","perry_potompo","282","6978","$4:2:3 $XTER","I LOVE GOD & MY FAM I LOVE MY ORIGIN AS THE $9TH MAN","I am applying to participate in the EthStorage public testnet, and my miner address is <0xd52d07656ea99ebe40b9c32d37c14c76b904d9c5>"
"1129","6/7/2024","0xe6A00efbb26894f35363d0cB194fd91158045B22","[email protected]","https://twitter.com/Pivickky/status/1798764327509627255?t=Zwp6cMyaHoPkEHi8jhzJSA&s=19","Pivickky","204","9515","syPIVICKKY","#Synthr | blockchain enthusiast","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe6a00efbb26894f35363d0cb194fd91158045b22"
"1130","6/7/2024","0xcF3bDfc33E36Ca3CC91188a581b4bD3c228503DE","[email protected]","https://x.com/Loriann12718445/status/1798764295788040293","Loriann12718445","126","205","Loriann🐟⛓️","511","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcF3bDfc33E36Ca3CC91188a581b4bD3c228503DE@EthStorage"
"1131","6/7/2024","0xc4dA7d781d734e093FCd9C31bB81660a0e2470d1","[email protected]","https://x.com/Sirena08168321/status/1798764292306817049","Sirena08168321","146","215","Sirena🐟⛓️","1551","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc4dA7d781d734e093FCd9C31bB81660a0e2470d1@EthStorage"
"1132","6/7/2024","0x3d77Ee4869aad921C8D4C569cAD69A67402CADFf","[email protected]","https://x.com/Margare51540024/status/1798764310338175239","Margare51540024","118","207","Margareta🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3d77Ee4869aad921C8D4C569cAD69A67402CADFf@EthStorage"
"1133","6/7/2024","0xA3c1824683aE248B54Ff92814564BD09A3A4E97d","[email protected]","https://x.com/Armandi65777242/status/1798764315295797372","Armandi65777242","123","213","Armandina🐟⛓️","1251115","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA3c1824683aE248B54Ff92814564BD09A3A4E97d@EthStorage"
"1134","6/7/2024","0x54f8E9B36955C75Fcf86Ae9cFda0F00ee38Ecb00","[email protected]","https://x.com/Teodora11662288/status/1798764318047293673","Teodora11662288","122","205","Teodora🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x54f8E9B36955C75Fcf86Ae9cFda0F00ee38Ecb00@EthStorage"
"1135","6/7/2024","0x4A2FbADbDbC96fe29318b5CE9Cd3336d2e77A79C","[email protected]","https://x.com/Ellan75634146/status/1798764302771618001","Ellan75634146","134","203","Ellan🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4A2FbADbDbC96fe29318b5CE9Cd3336d2e77A79C@EthStorage"
"1136","6/7/2024","0x2bB40bfC987567669D691B3f67afC54ECeB5d60F","[email protected]","https://x.com/Timothy76395122/status/1798764298854125664","Timothy76395122","133","206","Timothy🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2bB40bfC987567669D691B3f67afC54ECeB5d60F@EthStorage"
"1137","6/7/2024","0x6a48d1E33DA0808DC9C611FEdFAaD57EbDda04b5","[email protected]","https://x.com/Helene43150807/status/1798764288888410605","Helene43150807","135","203","Helene🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6a48d1E33DA0808DC9C611FEdFAaD57EbDda04b5@EthStorage"
"1138","6/7/2024","0x6896C4624139033B8dE20aE57f3f7f5c170CEaA0","[email protected]","https://x.com/Annalis69919942/status/1798764321314672798","Annalis69919942","120","201","Annalisa🐟⛓️","1121","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6896C4624139033B8dE20aE57f3f7f5c170CEaA0@EthStorage"
"1139","6/7/2024","0xedF7B358cEf62968936bFaE5011f9A67Ec8AE35F","[email protected]","https://x.com/Agustin10101378/status/1798764306311614489","Agustin10101378","131","207","Agustina🐟⛓️","1251","I am applying to participate in the EthStorage public testnet, and my miner address is 0xedF7B358cEf62968936bFaE5011f9A67Ec8AE35F@EthStorage"
"1140","6/7/2024","0xa5670De4200B3ed3B27311068f6ac583472243Df","[email protected]","https://x.com/Lory30045562/status/1798764284354416683","Lory30045562","116","207","Lory🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa5670De4200B3ed3B27311068f6ac583472243Df@EthStorage"
"1141","6/7/2024","0xe323C7d385F0a5805470eC4c9e84701B918f47C8","[email protected]","https://x.com/Lawana17069288/status/1798764277890994486","Lawana17069288","112","216","Lawana🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe323C7d385F0a5805470eC4c9e84701B918f47C8@EthStorage"
"1142","6/7/2024","0xaf06B26846216c9f99847b3cE5443d380022971B","[email protected]","https://x.com/joemaisonq/status/1798764744414990520?t=83scQqXs3Ng1O-uFN4lrRA&s=19","joemaisonq","150","1771",".nyan | ZAP Chain ⚡️ .Plena Tabi 🟧","Hey. Just having fun. #ISLM_MAXI. #mintBase #PiraFinance | ZAP Chain ⚡️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xaf06B26846216c9f99847b3cE5443d380022971B @EthStorage"
"1143","6/7/2024","0x5560d09CB5EA3Fb3c4e21dd0B6222172cDCc0f00","[email protected]","https://x.com/Tesho_D1/status/1798765155767210173","Tesho_D1","217","3343","Tesho_D $ARCA","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5560d09CB5EA3Fb3c4e21dd0B6222172cDCc0f00@EthStorage"
"1144","6/7/2024","0x124cb57C89604Bdf26eAffd0C464573e967afff6","[email protected]","https://x.com/mpmomoh/status/1798765453764120847","mpmomoh","269","455","Momoh Prosper","A web3 lover, Airdrop hunterr","I am applying to participate in the EthStorage public testnet, and my miner address is 0x124cb57C89604Bdf26eAffd0C464573e967afff6"
"1145","6/7/2024","0xB600a57CEb8eC4DB62baB1F7251f351f1877244c","[email protected]","https://x.com/Iris87982487/status/1798765977171345649","Iris87982487","121","179","Iris🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB600a57CEb8eC4DB62baB1F7251f351f1877244c@EthStorage"
"1146","6/7/2024","0x510fbec6ac7dD1CA4cf11BA4C2A6e687378376f4","[email protected]","https://x.com/Ileen84737855/status/1798766009354211727","Ileen84737855","141","179","Ileen🐟⛓️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x510fbec6ac7dD1CA4cf11BA4C2A6e687378376f4@EthStorage"
"1147","6/7/2024","0x0e5FD5CE615b3B2e919C9e1BBC77469245d15fDA","[email protected]","https://x.com/korede_xx/status/1798766326124827121","korede_xx","157","2917","Papi🚀MATR1XCoin","Ui/Ux designer I Web 3 enthusiast","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0e5fd5ce615b3b2e919c9e1bbc77469245d15fda @EthStorage"
"1150","6/7/2024","0x908C89e8E25e9e11bb1A3FA20Ab6F2521CEF2bA2","[email protected]","https://twitter.com/AlexanderUkeje/status/1798766998870216775?t=Nb8VJYlMjMXB9vSGtJRIfw&s=19","AlexanderUkeje","287","3258","Alexander $LOL","Marketing strategist, Helping brands build community lead growth CLG founder https://t.co/JmB3hcXGPV marketing agency @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x908C89e8E25e9e11bb1A3FA20Ab6F2521CEF2bA2"
"1151","6/7/2024","0xd18F952B8A9cB0A0b76D9EF7a67ECECDbe8bf952","[email protected]","https://x.com/Waigiri_M/status/1798765992178536943","Waigiri_M","124","1649","waigiri.bnb Tabi 🟧","Web3 enthusiast, crypto trader.Learning everyday.You ain't a celeb so follow back","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd18F952B8A9cB0A0b76D9EF7a67ECECDbe8bf952 @EthStorage"
"1153","6/7/2024","0x631C3383566F4ADDa837Cf6135961E17A86E8C7A","[email protected]","https://x.com/InsaneMogul/status/1798767456439423457","InsaneMogul","454","5933","MOGUL💀","Crypto. Defi. Insane.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x631C3383566F4ADDa837Cf6135961E17A86E8C7A"
"1155","6/7/2024","0xA353bc1928423649422919D956Abd33df7366263","[email protected]","https://x.com/BahzadA31081615/status/1798767847482724591","BahzadA31081615","1522","89208","Bahzad Ali 🚩","• $DYM 🍁 • $CULT 🎭","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA353bc1928423649422919D956Abd33df7366263@EthStorage"
"1156","6/7/2024","0x75e31D23C628f2eCBB3603F4A5Bad3503Bd0840A","[email protected]","https://x.com/Stephen_4PF/status/1798768255836078406","Stephen_4PF","114","528","StephenSZN.fuel","@cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0x75e31D23C628f2eCBB3603F4A5Bad3503Bd0840A"
"1157","6/7/2024","0x7373fD46Cc19B152D77742546fC2204Fa10230d0","[email protected]","https://x.com/BarnesBnb/status/1798768365445763567?t=QQsJ_J2ZWs76QGGSN0sIJA&s=19","BarnesBnb","828","35058","barneskk $XTER $DROIDS $BEYOND $PIXIZ $PQX NFT","a Man Called Barnes 🪂","@EthStorage I am applying to participate in the EthStorage public testnet, and my miner address is 0x7373fD46Cc19B152D77742546fC2204Fa10230d0"
"1158","6/7/2024","0xa7A8299fF550815fe30d720e95D8a1Af93BA54Dc","[email protected]","https://x.com/pmamarques/status/1798768448388125030","pmamarques","374","3160","Pedro Marques LINGO Tabi 🟧","Analyst Tech Advisor. Part Time writer. Web3 enthusiastic. Co-founder of https://t.co/tNyDit9hXr Music lover.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa7A8299fF550815fe30d720e95D8a1Af93BA54Dc@EthStorage"
"1159","6/7/2024","0xb02E7e30877EB0BAE37B0f6E6d6FE79D004750c5","[email protected]","https://twitter.com/czbinancelabs/status/1798768920146690336?t=D4XgOvmCBrxHKKcjodHFfw&s=19","czbinancelabs","124","1091","〽️czbinancelabs","@omnisea","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb02E7e30877EB0BAE37B0f6E6d6FE79D004750c5"
"1160","6/7/2024","0x6F07B9b05C69DE695481Fd7DB9a45DC0172961E4","[email protected]","https://x.com/primesb2/status/1798769129736032574?s=46","PrimeSB2","314","5206","PRIME","|| INDUSTRY MACHINE|| DEFI RESEARCHER || NOT AN INFLUENCER OR SHILLER || FUNDAMENTAL ANALYST 🤲 || VENOM ECO ONBOARD || AVIVE","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6f07b9b05c69de695481fd7db9a45dc0172961e4@EthStorage"
"1163","6/7/2024","0x88782409d34c8f58929E07B314b6355483bf7656","[email protected]","https://x.com/victorydrop/status/1798770067989254357?t=jbXN8yXI_irAGe_O_0pGGw&s=19","victorydrop","664","11810","Victorydrop |🚀MATR1XCoin|🕹️ $RCADE | $ARCA","victorydrop.aptvictorydrop.arbvictorydrop.bit Exchange: @Phemex_officialWallet: @itsobvioustechLoves Crypto ❤️❤️@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x88782409d34c8f58929e07b314b6355483bf7656"
"1164","6/7/2024","0x597AA27Ba277800a9e5C188fA08398dfF5Eb8644","[email protected]","https://x.com/adedir2/status/1798770160049983786","adedir2","125","1195","Muhammed Adediran|| 🔫 StarMech","🌐 Web3 enthusiast | Passionate about social engagement airdrops and crypto 💸 | Always learning, always growing 📚 | Let's connect and explore the decentralize","I am applying to participate in the EthStorage public testnet, and my miner address is 0x597AA27Ba277800a9e5C188fA08398dfF5Eb8644"
"1166","6/7/2024","0x9F2EEEA846e35E73182eC99FCc65fB11202a76AD","[email protected]","https://x.com/i_damola_/status/1798771012311585133","i_damola_","103","653","Ibmdml","up to something 🛀","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9F2EEEA846e35E73182eC99FCc65fB11202a76AD@EthStorage"
"1167","6/7/2024","0x482543147EF1F20d5FA5D3CEAE7B969A96807479","[email protected]","https://twitter.com/Crypto_free01/status/1798770576557064240?t=qc8IwDouLQ3Sh3NxXFxzkQ&s=19","Crypto_free01","358","5722","Cryptoberry| 🐉$MON| Tabi🟧 ⛈️🟣","Crypto Enthusiasm | DeFi | airdrop Hunter| $FAR | 💙 https://t.co/LqXmgxyyYZ Army $BUBBLE @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x482543147EF1F20d5FA5D3CEAE7B969A96807479@EthStorage"
"1168","6/7/2024","0x839EA6BB523629dec5c3ae39c993E34cEAF50454","[email protected]","https://x.com/adeolataiwo02/status/1798770824792686688?s=46&t=us2O6THftHnVxL7IANfqvA","Adeolataiwo02","115","1301","honourable","crypto enthusiasts | Political Analyst","I am applying to participate in the EthStorage public testnet, and my miner address is 0x839EA6BB523629dec5c3ae39c993E34cEAF50454@EthStorage"
"1170","6/7/2024","0xA99C165862515b1583FB345D670724824c99C359","[email protected]","https://x.com/_Malc0mx/status/1798771954171957511","_Malc0mx","128","1374","Malcomx .fuel 🐉 $MON 🐐 .NYAN🔫😼Tabi 🟧","crypto is future 🪙|| crypto early adopter","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA99C165862515b1583FB345D670724824c99C359"
"1171","6/7/2024","0xd971ca57388C4526bF1ea5cC8d29Ec1811FC9a8e","[email protected]","https://x.com/Faithex4/status/1798772098690896020","Faithex4","1406","8565","Oau most youngest 💚🌙","NFTs, Airdrops, degen plays. a member of Barcelona fan❤️💙. this account is also a Messi 🐐 engineer⚒️🔧 in the making farming $SOMO by @Playsomo","I am applying to participate in the EthStorage public testnet, and my miner address is <0xd971ca57388C4526bF1ea5cC8d29Ec1811FC9a8e>"
"1172","6/7/2024","0xd4d4eddfCf660fB68b0711D44400f8Ebcb27cc7b","[email protected]","https://x.com/crptoplug/status/1798771973306372179?t=-T8Cdh5fUlPL-DowmaQQ2g&s=19","crptoplug","128","6676","Crptoplug.apt🐉$MON .plena $XTER Tabi 🟧","crptoplug.apt","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd4d4eddfCf660fB68b0711D44400f8Ebcb27cc7b @EthStorage"
"1173","6/7/2024","0x1ECF690fc85A6eca4A6015401C6467B8F1b132FC","[email protected]","https://x.com/obaswagzy/status/1798772238654820539","obaswagzy","736","16291","swagzy.eth 🟧","| iInvest💰| iCollect JPEGs 🐒 | iTrade 📊 | $BTC $ETH $W ...","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1ECF690fc85A6eca4A6015401C6467B8F1b132FC @EthStorage"
"1175","6/7/2024","0x55B8D3f51a83ED1729d10D4b5c562148c044486D","[email protected]","https://x.com/MajorAdore/status/1798774519450263656","MajorAdore","325","10904","majoradore 🐞 $GAME $UNIO","Web3 . Chelsea . CODM . scroll contributor @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x55B8D3f51a83ED1729d10D4b5c562148c044486D @EthStorage"
"1176","6/7/2024","0x6f9b3A77E96Df49C7b0F0423F371FC7F22EC6cC4","[email protected]","https://x.com/frank_gmi/status/1798774484805300499","frank_gmi","397","7456","╰‿╯ Tabi 🟧 ♣️ ⚡️Joltify 🕹️ $XTER 🟧 ⛈️ 🟣","@playsomo | $SOMO@Mint_Blockchain$WELL🔮wiz @avalonfinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6f9b3A77E96Df49C7b0F0423F371FC7F22EC6cC4"
"1177","6/7/2024","0xA46029266680646847C10B10fB99698Cac1507C9","[email protected]","https://x.com/dfriendlybrown/status/1798774533471809894","dfriendlybrown","688","8887","Brown","• Believe in something","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA46029266680646847C10B10fB99698Cac1507C9@EthStorage"
"1178","6/7/2024","0x861FaD98bc3C1647492D68BF542B74271E127c21","[email protected]","https://x.com/masonja95/status/1798737183165104312?t=16vobtdI1Io_FqT3nZ3kgw&s=19","masonja95","296","4638","masonjames| $BUBBLE 🫧🫧🫧 | 🕹️ $RCADE | $PIXIZ","#NFTS#Crypto Trading Lord #NovaDEX💪💪😎✌️💯","I am applying to participate in the EthStorage public Testnet, and my miner address is 0x861FaD98bc3C1647492D68BF542B74271E127c21@EthStorage"
"1181","6/7/2024","0xd88f6e4e70e2951f13de1A1E6dde814c89879aBd","[email protected]","https://x.com/drill0_0/status/1798775888097800506?t=t4mtoJc_JU1BDcm0bWcCEw&s=19","drill0_0","206","1755","Layer 1 .fuel","Wanna Live until i dead. @cvex_xyz#SomniaNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is <0xd88f6e4e70e2951f13de1A1E6dde814c89879aBd>"
"1182","6/7/2024","0x2e8AdF26e4ba125c323E6F730bA125FaD49a6c8C","[email protected]","https://x.com/Designer_uc/status/1798776021376016791?t=zdrFL-avBu8cPW5ImtlYkg&s=19","Designer_uc","118","4984","Designer .lens ❤️ .pelna STONE🐦⬛🪨$BEYOND $MOJO","6Vu_RvUxfOMHk0rC481OdDdOpHtVbvyA5azGph8BXbA","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2e8AdF26e4ba125c323E6F730bA125FaD49a6c8C"
"1185","6/7/2024","0x450E7B59e1176A734E43660Afd6f369D9448A476","[email protected]","https://x.com/Emeraldics/status/1798777465005019150?t=YJZhvzNxjwr6IyONIb6i8w&s=19","Emeraldics","311","1668","Emeraldics","knowledge is power","I am applying to participate in the EthStorage public testnet, and my miner address is 0x450E7B59e1176A734E43660Afd6f369D9448A476#Ethstorage"
"1186","6/7/2024","0xA08d1bB34FcB25Fbb7f1D987A11d496e8822674D","[email protected]","https://x.com/black_mufassa/status/1798777623159640073?s=46&t=1sFZ-B7X7XuTIdzbA0imRA","black_mufassa","185","849","Blackmufassa.STARK || ❤️ POPCAT","💎 $FYN","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA08d1bB34FcB25Fbb7f1D987A11d496e8822674D @EthStorage"
"1187","6/7/2024","0x83cBCD2Fc9453e42fe6b0E1F8cF858b05Ad3BB42","[email protected]","https://x.com/Abestweb3/status/1798778384002294156?t=3WoO7tWqYY-zAVrS9fCDgw&s=19","Abestweb3","262","3006","Abesty~ Web3💲🐉 $MON","Striving for greatness 💪 Go Hard or Go Home .ALPHA 🫴🧵💫💲$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0x83cBCD2Fc9453e42fe6b0E1F8cF858b05Ad3BB42"
"1188","6/7/2024","0xed7E6576DBe72234AA92E6eeEb82079203Ec7687","[email protected]","https://twitter.com/JohnAsuzor/status/1798778682653413599?t=4IvtZ3q88uQZ1ptOG2oQ2w&s=19","JohnAsuzor","374","6832","Majesty042Fx💥","Forex & Crypto Trader/ @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my mining address is 0xed7E6576DBe72234AA92E6eeEb82079203Ec7687"
"1189","6/7/2024","0x09eD23A03Df39D4BF79c09ce66CAFd5d9FbDa24C","[email protected]","https://x.com/Gunn__t2/status/1798778907996393709","Gunn__t2","113","279","Gunnt2👁️","Crypto","0x09eD23A03Df39D4BF79c09ce66CAFd5d9FbDa24C"
"1190","6/7/2024","0x1fcDba86A13d294bb239923C163d5898A3415e82","[email protected]","https://x.com/sf10all01/status/1798777371405021681?t=cR25oTk0SxnU3El0BU166w&s=19","sf10all01","424","8251","SHADOW FAX ♦️ @ricyofficial","Crypto farmer tending digital fields,hunting tokens in the wild. Foodie at heart, savoring life's flavors. #Voiagers @ricyofficial","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1fcDba86A13d294bb239923C163d5898A3415e82"
"1191","6/7/2024","0x2051e53c914Cf9A42A33e7f8E4f26524270b0bBe","[email protected]","https://x.com/quduslekan24/status/1798779631836799247?t=DI-Kjtt2E0v9OoE6Rk_wkg&s=19","quduslekan24","111","2215","HB","Data Engineer |Trend Following Trader","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2051e53c914Cf9A42A33e7f8E4f26524270b0bBe"
"1193","6/7/2024","0x704C55788Ddea093db62A786B76a80843549Cf34","[email protected]","https://x.com/Anjorinoluwaf10/status/1798780365450170642?t=dwmhkBWfT5nSRN8DNf46DA&s=19","Anjorinoluwaf10","259","2264","Smilez🥷","Moderator | degen | blockchain enthusiast | everything web3 | @playsomo | $SOMO🕯️🥷","0x704C55788Ddea093db62A786B76a80843549Cf34"
"1194","6/7/2024","0x1d72B0dC01BF69E057E19267a3c068C5E25F6dc5","[email protected]","https://twitter.com/joseph_oyenekan/status/1798781759242555900?t=attsdRK3eSJ4nJvqYVFA1Q&s=19","joseph_oyenekan","213","7351","Wale","@playsomo | $SOMO graduate of unilorin","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1d72B0dC01BF69E057E19267a3c068C5E25F6dc5"
"1196","6/7/2024","0xf8047D8d6f9f7E885304aB0dD613c6867Ac69DD9","[email protected]","https://x.com/megabyte0101/status/1798782158212857949?t=0RAn4SjicuP8wkfUbESWFw&s=19","megabyte0101","113","2295","Mubarak","Trust the process.........","I am applying to participate in the EthStorage public testnet, and my miner address is <0xf8047D8d6f9f7E885304aB0dD613c6867Ac69DD9>"
"1199","6/7/2024","0x7c745d1Ceae2a7dc42759cebd2152eDFfBEa0476","[email protected]","https://x.com/boubaa_dem/status/1798783326091649046?s=46&t=_UIyHh22SEIhK9R7U3h27g","Boubaa_Dem","194","582","BoubaaKiinG","Unique à mon genre 🤟🏽 https://t.co/mXUIaBiUyf","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7c745d1Ceae2a7dc42759cebd2152eDFfBEa0476@EthStorage"
"1202","6/7/2024","0xa1c1361d444478bf8885F994D22bb3e31AC97200","[email protected]","https://x.com/Abdulbasit77191/status/1798783535576437065","Abdulbasit77191","181","5139","abdulbasit bolanle .Plena $DROIDS|🐉 $MON Tabi 🟧","","0xa1c1361d444478bf8885F994D22bb3e31AC97200"
"1203","6/7/2024","0xA0cF6bB422D57CE4431cF595088C54e0883B3122","[email protected]","https://twitter.com/SaintedWhykay/status/1798783928012247367?t=UmODb7ZVdgo-wN7cdzj7qg&s=19","SaintedWhykay","597","6730","blisss $rvv","web3,nfts junkie, metaverse,crypto enthusiast 🎵 @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA0cF6bB422D57CE4431cF595088C54e0883B3122 @EthStorage"
"1204","6/7/2024","0x96609151b05C3cc0a817c08C713DE3Ec002e8371","[email protected]","https://x.com/RubyboyA/status/1798784380132823166","RubyboyA","226","2482","Rubyboy Ayomide Tabi 🟧","Cool guy","I am applying to participate in the EthStorage public testnet, and my miner address is 0x96609151b05C3cc0a817c08C713DE3Ec002e8371"
"1205","6/7/2024","0xa57CCD945353B7FCCaBB5d903aA5BE00791Bc4A9","[email protected]","https://twitter.com/Agba6284/status/1798771246663975002?t=2zEduZQMnY9Vrw7XLPEl0w&s=19","Agba6284","128","1798","Hunted .NYAN🔫😼","Nft Creator and lover of art @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa57ccd945353b7fccabb5d903aa5be00791bc4a9@EthStorage"
"1207","6/7/2024","0xF525872F40e0E37B96e5790462D687Bd4ceF8c17","[email protected]","https://x.com/DamilareJay/status/1798785188941713500","DamilareJay","218","5728","Jaiyegirls✨","🟧 ⛈️ 🟣","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF525872F40e0E37B96e5790462D687Bd4ceF8c17"
"1208","6/7/2024","0x9334f0b1095fD067EC47Ec361dc400CB0de2e720","[email protected]","https://twitter.com/TaiwoGoodness6/status/1798785269480476713?t=pBuwPHIphVi-qo_F7sjUNQ&s=19","TaiwoGoodness6","384","4479","Taiwo Goodness💚🐐Tabi 🟧 🫧🫧🫧🐉 $MON🎵 $BEYOND","With God all things are possibleComputer Engineer, Crypto enthusiast, Arsenal Fan","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9334f0b1095fD067EC47Ec361dc400CB0de2e720"
"1209","6/7/2024","0xb43F191178a82f0D4Cd04FDf8593083dc214b41B","[email protected]","https://x.com/MeFarhanazeemi/status/1798785290330657027","MeFarhanazeemi","211","3860","Farhan Azeemi 🇵🇸","ETHICAL HACKER 👽 || PROGRAMMER 👩💻 || SEO EXPERT 🔎 || FREELANCER 💙 #SomniaNetwork #zkApes ⚙️🦾 Left to Phaver #byebyebirdie","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb43f191178a82f0d4cd04fdf8593083dc214b41b @EthStorage"
"1211","6/7/2024","0x436C87f474dE181075c9CdB519e867A59373C541","[email protected]","https://x.com/defi_caller101/status/1798784744483594690?s=46&t=lJwJOk7L4nlfzl5gJN56Dg","defi_caller101","145","2334","Defi_Navy Tabi 🟧","|| Moderator | shiller | Project Advisor| Marketing strategist 🧡,💙|| $XRP holder","I am applying to participate in the EthStorage public testnet, and my miner address is 0x436C87f474dE181075c9CdB519e867A59373C541"
"1212","6/7/2024","0x71e872eac944e6b12D70EEd50b44770d443489CF","[email protected]","https://x.com/_E_heart/status/1798786025969659982","_E_heart","746","1202","Elastic Heart 💙 Tabi 🟧","💙 👁️🐉","I am applying to participate in the EthStorage public testnet, and my miner address is 0x71e872eac944e6b12D70EEd50b44770d443489CF@EthStorage"
"1214","6/7/2024","0xa5ebc14F044A46d07A428c0C23D25A83aDE5ce2B","[email protected]","https://x.com/JimohMubarak19/status/1798787167482675497","JimohMubarak19","541","2143","Mr J","Airdrop Hunter | NFTs | Crypto | @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa5ebc14F044A46d07A428c0C23D25A83aDE5ce2B @EthStorage"
"1216","6/7/2024","0x68567B891960a1f1481e98B884e9327bf02ed82F","[email protected]","https://twitter.com/manuelznectar/status/1798787056375836724?t=ZOf0rRLRRb6tojp1bsqDNw&s=19","manuelznectar","814","18308","Hectorr Tabi 🟧","it's all risk|","I am applying to participate in the EthStorage public testnet, and my miner address is 0x68567B891960a1f1481e98B884e9327bf02ed82F"
"1217","6/7/2024","0xC18F797846f646b2fA9250950788dD5854aec46B","[email protected]","https://x.com/En_Dindy/status/1798787024595681382?t=ExnyAd6wOqtphm9XAf_SwQ&s=19","En_Dindy","1199","19781","Dindy.sats ⭕♠️","web3 Enthusiastic #BeYourAlpha","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC18F797846f646b2fA9250950788dD5854aec46B@EthStorage"
"1218","6/7/2024","0xf185B554517b044c412C920fc617b39D3d951DC8","[email protected]","https://x.com/caleb_odubi/status/1798787713350373826?t=VzdZtxrQZKeoKNztc2e5jg&s=19","caleb_odubi","199","2230","C","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf185B554517b044c412C920fc617b39D3d951DC8 @EthStorage"
"1219","6/7/2024","0x72E973E6512aB5D7a2a7063346112A1B643b0965","[email protected]","https://x.com/bolu_wade/status/1798787498111615419?s=46&t=a_jpuo1avxS3QGy52pu7TQ","bolu_wade","108","1991","Joshua .NYAN🔫😼❤️BLOCK $BUBBLE 🫧🫧🫧🔫 StarMech","Do You! For You","I am applying to participate in the EthStorage public testnet, and my miner address is 0x72E973E6512aB5D7a2a7063346112A1B643b0965 @EthStorage"
"1220","6/7/2024","0x11CFd4B4bE472E7D2203584d6c9c9fFBDC8a4DA9","[email protected]","https://x.com/PiercePeterson6/status/1798787905835634883?t=t6nnv5dixOiFcZxfA6xtIQ&s=19","PiercePeterson6","216","4671","Pierce Peterson | FusionX Finance 🐉 $MON $MOJO","⚙️Fun loving & merry FusionX Hunter, @FusionX_Financepaywith.bnb@Mint_Blockchain","I am applying to participate in the EthStorage public testnet, and my miner address is 0x11CFd4B4bE472E7D2203584d6c9c9fFBDC8a4DA9 @EthStorage"
"1222","6/7/2024","0x0Eba84A5Bd4cDdBbaFB1Cb1a6670E1bde16e8646","[email protected]","https://x.com/momo1582145/status/1798788586797715799","momo1582145","128","117","momo","新入市的韭菜,这个号主要撸空投(虽然是我的主号),顺手记录一下平时的胡思乱想与平时交过的智商税所有内容均为主观观点!","applying for EthStorage 2nd Public Testnet Campaign:wallet 0x0Eba84A5Bd4cDdBbaFB1Cb1a6670E1bde16e8646"
"1223","6/7/2024","0xeCcf8aA279C2D606c5aEb4fdafCf7313761EAE58","[email protected]","https://x.com/ChineduUmeojia3/status/1798788563548471535?t=nRG9tiTocbjKerM44X3d1Q&s=19","ChineduUmeojia3","962","10739","Chinedu | FusionX Finance @smcdao 🐉 $MON","turbotech.tezzeroes.avax#LabScientistFusionXHunter, @FusionX_Finance@smcdao@Mint_Blockchain","I am applying to participate in the EthStorage public testnet, and my miner address is 0xeCcf8aA279C2D606c5aEb4fdafCf7313761EAE58 @EthStorage"
"1224","6/7/2024","0x836643f81312E79680c06F32c4F4de48C7E77ea8","[email protected]","https://x.com/jimo31351624/status/1798788248912973918","jimo31351624","288","17316","OBDigital","..... I really want to change the numbers on my handle to something better .....🌊","I am applying to participate in the EthStorage public testnet, and my miner address is 0x836643f81312E79680c06F32c4F4de48C7E77ea8@EthStorage"
"1226","6/7/2024","0x8934189422cdaD434d72ADB1691D5609f56223e4","[email protected]","https://x.com/Jrken_ny/status/1798788843870801991","Jrken_ny","388","5246","Jɤ KέϞϞψ 💥","","I am applying to participate in the EthStorage public testnet, and my miner address is <0x8934189422cdaD434d72ADB1691D5609f56223e4>"
"1228","6/7/2024","0xF766698fbFc3cDED2417b5244550A4293274E0f8","[email protected]","https://x.com/Viewsvalidator/status/1798789193709310189?t=opNDZ7R9reDMivwIlTb0TQ&s=19","Viewsvalidator","1705","3610","caligraphy","I'm gmi | Co-founder @_thesharkdao | DM for inquiries 📩","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF766698fbFc3cDED2417b5244550A4293274E0f8"
"1232","6/7/2024","0x0323FFc63986439329f3E9c0DC9765D5D33eC151","[email protected]","https://x.com/SamRoyalz1/status/1798789860049969604","SamRoyalz1","676","4573","sirroyale","passionate @Arsenal supporter #zkApes #ISLM_MAXI #MOAYC@0xHashstack Contributor","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0323ffc63986439329f3e9c0dc9765d5d33ec151 @EthStorage"
"1236","6/7/2024","0xd876668cDd4C8B6f54E8F0A8DAdC71dC059BdeFa","[email protected]","https://x.com/810Nkami/status/1798656110229909565?t=Ggs8X5JCJGJwgVGNSPZVlw&s=19","810Nkami","1236","4051","Ether.₳zerØ","Tech-savvy Owl with a knack for wit and wisdom. Enjoys smart and funny content.Airdrop hunter, Azero lover","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd876668cDd4C8B6f54E8F0A8DAdC71dC059BdeFa"
"1237","6/7/2024","0x89Ec139CCEc9467e4bA71358A683d139AB39BabC","[email protected]","https://x.com/GeminiWiston/status/1798791948964135208?t=P5yE_7OdsEumaZcywhAK0A&s=19","GeminiWiston","790","16443","gemini|.fuel♦️🔥🌌🛡🐐🟣 Unblocked 🐉 Tabi 🟧","@fullforce_io #Beam2L2⏳@t2wrld @FocusOnVaissel #byebyebirdie Left to Phaver || @Mint_Blockchain Construction Professional 🚧 👁️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x89Ec139CCEc9467e4bA71358A683d139AB39BabC@EthStorage"
"1238","6/7/2024","0x6A4c0FC1A925918BBecc15266f2b305431Ccb4d4","[email protected]","https://x.com/FavoriteLoner/status/1798792153776443518","FavoriteLoner","1730","34977","jibola 🪼(make it or break it arc 🫵😂)","i dey vexx","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6A4c0FC1A925918BBecc15266f2b305431Ccb4d4"
"1239","6/7/2024","0x47801E77f4a88d796ef392e9a3DeE905580e1Cd6","[email protected]","https://x.com/Mkayy_official/status/1798792441115320633","Mkayy_official","353","4406","mk 🐞 $GAME 🟧 ⛈️ 🟣 Artela🔼 🧡 Ordzaar","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x47801E77f4a88d796ef392e9a3DeE905580e1Cd6"
"1243","6/7/2024","0x7d13be48D8a918B3670A6923C896D794C375496e","[email protected]","https://x.com/ChelseaXtra__/status/1798792675942126048?t=D_mvYjKTIm5UqfKK2suwwA&s=19","ChelseaXtra__","553","2331","Chelsea Xtra","@FocusOnVaissel🟣 $LOL 🐉$MONplena","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7d13be48D8a918B3670A6923C896D794C375496e"
"1246","6/7/2024","0xFB732c131125088E0e749Bc400c3b16136Ac5B3D","[email protected]","https://twitter.com/Ishola26337923/status/1798792982272827449?t=J1hxXvcquUTMVreGpM6aLA&s=19","Ishola26337923","102","770","Ishola","","I am applying to participate in eth storage testnet phase 2 0xFB732c131125088E0e749Bc400c3b16136Ac5B3D"
"1247","6/7/2024","0x12D99392adF391b9854c6CAd4F807421131f2Cfe","[email protected]","https://twitter.com/mrshayne02/status/1798793973059985494?t=v4qMpk2ORhu6R580bAl1pg&s=19","mrshayne02","4265","70578","shayne","Marketing & Community Building | Content Writer | Advisor | DM for collaborations & promotions @DeGodsNFT #1320 | Ambassador @GaiminIo @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x12D99392adF391b9854c6CAd4F807421131f2Cfe@EthStorage"
"1248","6/7/2024","0xd39A82A57FdE8F11187b1A5C6731DB72D27C4413","[email protected]","https://x.com/princ3_young/status/1798794422798479365","princ3_young","911","4924","youngprince.fuel (∎, ∆)","don't @ me. or do. whatever.#SomniaNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd39A82A57FdE8F11187b1A5C6731DB72D27C4413@EthStorage"
"1250","6/7/2024","0x4085D635200853E82e19198fc26026eC535B7Ba8","[email protected]","https://x.com/officialsaucek3/status/1798791418963468571?s=46&t=amC6Xd4o40f5FBluTR7WhQ","Officialsaucek3","1485","10549","Sauce Key ","| Creative 👾 All I know is that i know NOTHING","I am applying to participate in the EthStorage public testnet, and my miner address is <0x4085D635200853E82e19198fc26026eC535B7Ba8>"
"1252","6/7/2024","0xB2D905b0EbAbdA02a43b341ABb6318Ac718251A8","[email protected]","https://x.com/tizzyvegas_/status/1798795619672150227?t=h6J0U8EtMuPOSveLW2aGRQ&s=19","tizzyvegas_","1652","9786","ه","Civil Engineer¦Mining Engineer¦Web 3.0¦Artiste¦Video Grapher¦This is the Back Up account for @tizzyvegas","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB2D905b0EbAbdA02a43b341ABb6318Ac718251A8"
"1253","6/7/2024","0x71a70dc6a13c17a733755a1BBf83C837a9a49Dad","[email protected]","https://x.com/sunshinetoch/status/1798795684616773899","sunshinetoch","2532","6855","Berrygmi🇨🇦","bullish on builders.📌 Collab manager👀 #WAGBO🥵🚀#WAGMIChelsea fan💙💙💙💙#creator 💙 @Plenafinance & #PlenaArmy","I am applying to participate in the ETHstorage public testnet,and my miner address is 0x71a70dc6a13c17a733755a1BBf83C837a9a49Dad"
"1254","6/7/2024","0x0eAA8F789708fE9Fc13d9f43B4C01B4636455641","[email protected]","https://x.com/Madukah_Sopuru/status/1798792506194251920","Madukah_Sopuru","213","3196","kachi || LINGO","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0eAA8F789708fE9Fc13d9f43B4C01B4636455641@EthStorage"
"1255","6/7/2024","0x9a26C42651c52a3a7827082d403c1e3aD9F6b004","[email protected]","https://x.com/TIOND12/status/1798796180996116496","TIOND12","116","3235","D12","Airdrop Farmer || Web3 || NFT || Atheist || ManUtd || CR7 || Living The Moment || Past Is Past ||","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9a26C42651c52a3a7827082d403c1e3aD9F6b004"
"1256","6/7/2024","0x9Fd16E9e2FE347D369B1d136FbDaE5FBFE608340","[email protected]","https://x.com/saucecastle/status/1798796281164272098?s=46&t=amC6Xd4o40f5FBluTR7WhQ","saucecastle","163","2142","SauceCastle. bit 💚🌙","Creative | NFTs | Exploring web3| 33.3% | @ThevcDoa| Technical Engineer| Support Specialist |Tech Enthusiast","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9Fd16E9e2FE347D369B1d136FbDaE5FBFE608340"
"1259","6/7/2024","0x38D3e90d71F8b827A566fb034BFfd5317a805678","[email protected]","https://x.com/demgital/status/1798797259792146694?s=46","demgital","162","907","ℭ𝔯𝔢𝔞𝔱𝔦𝔳𝔢 𝔖𝔭𝔞𝔠𝔢 🟧 ⛈️ 🟣","Web3 bro (that’s all🌝)….. CM @CseersDao","I am applying to participate in the EthStorage public testnet, and my miner address is 0x38D3e90d71F8b827A566fb034BFfd5317a805678"
"1260","6/7/2024","0xb3b4281D4EcbFb62DA68c632Da3cd3E7723D46bb","[email protected]","https://twitter.com/Aduragbemmmy/status/1798798321596649665?t=ml7l2is19pN4y0wq2sDatg&s=19","Aduragbemmmy","109","1225","Gbemmy Tabi 🟧","I'm earning with @Cheelee_Tweet! DM me and find out how 🌶️ @fullforce_io #ISLM_MAXI","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb3b4281d4ecbfb62da68c632da3cd3e7723d46bb"
"1264","6/7/2024","0x85624b64F47E77eA4772619E4910a429D08313eE","[email protected]","https://x.com/Sarath07848385/status/1798799043063369942","Sarath07848385","638","5808","sarath🛸.fuel","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x85624b64F47E77eA4772619E4910a429D08313eE"
"1267","6/7/2024","0x6ebb510d5501cc7DbD0BD1d1674a7dd06BB6F43e","[email protected]","https://x.com/Akofe7/status/1798798980614074612","Akofe7","230","1237","Akofe 🐉 $MON","Learner | E.MOD @cardanosqaud | Alpha Caller | #MintSquare","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6ebb510d5501cc7DbD0BD1d1674a7dd06BB6F43e@EthStorage"
"1268","6/7/2024","0x5082f26A4582256E245Eb555CdA2aDC43112d43c","[email protected]","https://x.com/0x_Brenn/status/1798799870331089328","0x_Brenn","109","2700","Oluwajuwon 👑","Emerging Product Manager | Product Owner TradIn. believer of @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5082f26A4582256E245Eb555CdA2aDC43112d43c@EthStorage"
"1270","6/7/2024","0x039A50b9324F176Cdb8e1F118A2854C46249155f","[email protected]","https://x.com/ArchitectBuch/status/1798800082545881462","ArchitectBuch","271","3727","Buch Lingo","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x039A50b9324F176Cdb8e1F118A2854C46249155f"
"1271","6/7/2024","0x69382133F85D75eB7A27352Ff3A24aF35F1C00cd","[email protected]","https://x.com/0ff_m00nlight/status/1798799950353940583","0ff_m00nlight","107","4454","ⓧ 0ff-m00nlight.nft🐐","https://t.co/8yDYYyIGmn","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0x69382133F85D75eB7A27352Ff3A24aF35F1C00cd. @EthStorage."
"1273","6/7/2024","0x3EF2515A1b3EAC47F8E0C88cB3D60373E3aDFbfA","[email protected]","https://x.com/yanju_xx/status/1798800142633726165","yanju_xx","188","5124","hunterr","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3EF2515A1b3EAC47F8E0C88cB3D60373E3aDFbfA"
"1275","6/7/2024","0xfEE46cd4562382c69e3c8e192C14Bb31102CE9E0","[email protected]","https://x.com/Lhackytheking/status/1798795490836009343","Lhackytheking","286","2832","LHACKY👑📊","Web3 Enthusiast • DeFi Researcher • How can I ever lose when I came here with nothing?","I am applying to participate in the EthStorage public testnet, and my miner address is 0xfEE46cd4562382c69e3c8e192C14Bb31102CE9E0 @EthStorage"
"1276","6/7/2024","0x06e8F10c1971FbC935428c47FA61ED92758bf8aE","[email protected]","https://x.com/Mijinzdee/status/1798800956802601191?t=JqCUeZzSzhBZr0-IN_qX-w&s=19","Mijinzdee","694","6997","Mijinz Hammad 🔺","#Marinebiologist #Experienced Mod & Proj Manager #Avalanche Ambassador $WAXP","I am applying to participate in the EthStorage public testnet, and my miner address is 0x06e8f10c1971fbc935428c47fa61ed92758bf8ae@EthStorage"
"1278","6/7/2024","0x00005b6A035eD3C2A2bfb30C9E7FfB02aE1606F1","[email protected]","https://x.com/OluwseunT/status/1798800188599095632","OluwseunT","907","9413","B*lockc*hain=Safu©🌍🥞⚛ 🟣 $LOL 🕹️ Tabi 🟧","|Anime lover| #Anime #CosmosEcosystem ⚛ $C*AKE 🎂 #B*NB #B*TC #E*TH #ISLM_MAXI Crypto Enthusiasthttps://t.co/NpSiAfnfRC","I am applying to participate in the EthStorage public testnet, and my miner address is 0x00005b6A035eD3C2A2bfb30C9E7FfB02aE1606F1"
"1279","6/7/2024","0x6cc5286674E2B23fEC2Fc890374d0aC892C425E3","[email protected]","https://x.com/Veekthor_Law/status/1798801234985459899?t=zJ4R_AYFpJpQaYTSh5_92w&s=19","Veekthor_Law","156","1123","Veek Th0r","Embarking on a Journey of Discovery and Learning with Web 3.0, Crypto Trading, and Airdrops 🌎🚀📈💪","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6cc5286674E2B23fEC2Fc890374d0aC892C425E3 @EthStorage"
"1281","6/7/2024","0xD060440Dc17F63c62461c76F12cC50C5B6068ed1","[email protected]","https://x.com/Buggiecrypt_1/status/1798802162207637574","Buggiecrypt_1","176","1643","Buggie_01","fuel","I am applying to participate in the EthStorage public testnet, and my miner address is <0xD060440Dc17F63c62461c76F12cC50C5B6068ed1>"
"1283","6/7/2024","0x536209097b1c96117d708acD682a8d0f16A23f72","[email protected]","https://x.com/NajaashiYakubu/status/1798802832872652859?t=CPTt01EiyuVzmMgymJTvLQ&s=19","NajaashiYakubu","289","9388","Jaydeen 🚀🚀🚀 ❤️ Memecoin","Full Force","I am applying to participate in the EthStorage public testnet, and my miner address is 0x536209097b1c96117d708acd682a8d0f16a23f72"
"1286","6/7/2024","0x146297486D762E91f8aF3C9d29208a8FF7EC1Ef7","[email protected]","https://x.com/TobaPelumi/status/1798804188610142585","TobaPelumi","534","3692","tobexrail🧭🌐|Bitflow 🌊🏄♂️","|WEB3🌍¦Blogger⚡¦content creator💻¦ threador🧵¦copywriter📲¦¦trader💹¦DEFI researcher🚶♂️¦Airdrops💧¦NFTS🖼️¦DEGEN🌊| 🔮 Wiz @AvalonFinance_","i am applying to participate in the EthStorage public testnet, and my miner address is 0x146297486D762E91f8aF3C9d29208a8FF7EC1Ef7"
"1287","6/7/2024","0xe52740164474304563cde431370F1238B1994c25","[email protected]","https://x.com/Olobaautos/status/1798804309544476935","Olobaautos","170","2278","manKAY","","I am applying to participate in the EthStorage public testnet, and my miner address is <0xe52740164474304563cde431370F1238B1994c25>"
"1288","6/7/2024","0xA7bC45480dF40197d1F1337C3F8aD068ac8b165A","[email protected]","https://x.com/tizzedtizzy/status/1798804659118985611?s=46","TizzedTizzy","593","17227","👻Tizzy 🚀 🟧 ⛈️ 🟣","21,lover of God BIOCHEMIST DISCORD ID: Tizzy#5759. MOD// COLLAB MANGER. @UNFADE_WOMEN @OQP Dao @ManU 💙https://t.co/wYj7Hllkhk army","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA7bC45480dF40197d1F1337C3F8aD068ac8b165A"
"1289","6/7/2024","0x8EE7FBF51aaFA42C0f78F17c17482fCD104A3bA3","[email protected]","https://x.com/nftgirll/status/1798802470572904557","nftgirll","11234","14655","Crypto_boss","𝗡𝗙𝗧 𝗘𝗻𝘁𝗵𝘂𝘀𝗶𝗮𝘀𝘁 | 𝗠𝗮𝗿𝗸𝗲𝘁𝗲𝗿 | 𝗖𝗠: @Anyafrens @X_DA0_ @ignite__dao","I am applying to participate in the EthStorage public testnet , and my miner address is 0x8EE7FBF51aaFA42C0f78F17c17482fCD104A3bA3 .@EthStorage"
"1290","6/7/2024","0x9aA791C3606ED50cf2C140F2280177CCCDf603E9","[email protected]","https://x.com/Hayhem18/status/1798804920784838715","Hayhem18","1427","23764","hayhem.eth","A Writer, Crypto Project Advisor, and Community Manager. Helping others navigate the crypto space, advising on projects, and fostering vibrant communities.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9aA791C3606ED50cf2C140F2280177CCCDf603E9@EthStorage"
"1291","6/7/2024","0x8f78DAE1CDeF0ea7EB9f38901859f3076413B435","[email protected]","https://x.com/FreddySolomonn/status/1798805406661156952","FreddySolomonn","1234","9754","Balance 👨🌾✝️","GOD over everything✝️ || AOS is Shit coins || Farmer|| DYOR || NFA🙁.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8f78DAE1CDeF0ea7EB9f38901859f3076413B435"
"1292","6/7/2024","0x941b4C011c86BF2fC5f107C6Cd983Fb3f7fD6F04","[email protected]","https://x.com/cleanvx19/status/1798805502526140916","cleanvx19","315","1258","Nameless🐉 $MON $BEYOND ❤️XALLY","Graphic designer into Crypto |Web3 enthusiast |Ambassador @Bitdelta, @GainFi |Airdrops🪂 | @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x941b4C011c86BF2fC5f107C6Cd983Fb3f7fD6F04"
"1295","6/7/2024","0x080f49C1657D889126c71c47A6918dEb0aae1eA7","[email protected]","https://x.com/maneek_ajibola/status/1798805763118571641","maneek_ajibola","246","5150","akinwale_Eli ♥️ Memecoin","@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x080f49C1657D889126c71c47A6918dEb0aae1eA7@EthStorage"
"1296","6/7/2024","0xF8b8F762Ec18b32A67F5c94C57ab7BF620221547","[email protected]","https://x.com/Imran_Madani_/status/1798805848363614489","Imran_Madani_","1166","7390","Imran The Sniper","Continuously expanding knowledge and learning is a lifelong journey. Keep embracing new insights and experiences!","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF8b8F762Ec18b32A67F5c94C57ab7BF620221547 @EthStorage"
"1297","6/7/2024","0x05A586E7F66C60bBCAaD46f74FfBAdF8c14B4570","[email protected]","https://x.com/armjeda/status/1798806168141430836","armjeda","595","3269","alim/$EVOX/$LINGO","blockchain and protocol users","I am applying to participate in the EthStorage public testnet, and my miner address is 0x05A586E7F66C60bBCAaD46f74FfBAdF8c14B4570@EthStorage"
"1299","6/7/2024","0x2d137335293f028bf27f14F37db130fBA6F0F61d","[email protected]","https://x.com/Timi34518217/status/1798806358533521831?t=9Z0IQAqL4yXAEjdUReIOww&s=19","Timi34518217","213","8190","Timi.$Rune ♦️","Alpha Caller @Overseers_Labs || Community Manger||Crypto Enthusiast|| $ftm $mana $kda $rune DeFi NFTs","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2d137335293f028bf27f14F37db130fBA6F0F61d"
"1300","6/7/2024","0xA029690D3803879AA60d6c80b5437ee8a79D5dA4","[email protected]","https://x.com/muhammadakored2/status/1798805752209150039","muhammadakored2","343","13593","Mrpark.lens/$EVOX","Agribusiness loversll Hd of Research at Abibas Agro - volunteers @ KAN & CAIPBlockchain ethuciast @playsomo | https://t.co/LkBpnHCKXu","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA029690D3803879AA60d6c80b5437ee8a79D5dA4@EthStorage"
"1302","6/7/2024","0xC24e31f97F421Dbc2288173f221Acd03D99f1c97","[email protected]","https://x.com/PabloDreke/status/1798805281373044969","PabloDreke","158","7173","Pablo Dreke","God is the greatest","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC24e31f97F421Dbc2288173f221Acd03D99f1c97@EthStorage"
"1303","6/7/2024","0x5b62335ED45F29EE36e9B1704e01aA1D39531aaA","[email protected]","https://x.com/CeciGev/status/1798805157439795521","CeciGev","124","590","CeciGev 👁️","The best in whatever I find out good to do. 👁️","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0x5b62335ED45F29EE36e9B1704e01aA1D39531aaA. @EthStorage."
"1304","6/7/2024","0x643DeB260452cf2A1110A4170C819B64063946c3","[email protected]","https://x.com/Temmyjunior54/status/1798807178234761401","Temmyjunior54","1212","9669","Temmyjnr","IDOO-2268","I am applying to participate in the EthStorage public testnet, and my miner address is 0x643DeB260452cf2A1110A4170C819B64063946c3@EthStorage"
"1305","6/7/2024","0xc6215d27Fe8E449bFa19e47D9955C7131d6c9E46","[email protected]","https://x.com/Big__spencer/status/1798805006654562419?s=19","Big__spencer","1475","3609","✧𝐒ᴘᴇɴᴄᴇʀ✧","❥𝕏-GAINER•Iɴғʟᴜᴇɴᴄᴇʀ •Gᴀᴍʙʟᴇʀ •Cʀʏᴘᴛᴏ❥𝗚ᴀᴍᴇʙᴏ𝘀𝘀🔥","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc6215d27Fe8E449bFa19e47D9955C7131d6c9E46@EthStorage"
"1306","6/7/2024","0xd6865F5b61b23B5f35B58298B5FAFE6c2Db667F7","[email protected]","https://x.com/CliffPinna/status/1798806700646125620","CliffPinna","127","528","CliffPinna 👁️","I laugh only when you make me laugh. 👁️","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0xd6865F5b61b23B5f35B58298B5FAFE6c2Db667F7. @EthStorage."
"1309","6/7/2024","0x5B6dE3fCCeC6C184093cd5c8f5792Da2342De722","[email protected]","https://x.com/Reapertee1/status/1798807895225548910","Reapertee1","801","6635","Your Alter Ego","AIRDROPS CRYPTO FUN ENTERTAINMENT TECH💙💕","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5B6dE3fCCeC6C184093cd5c8f5792Da2342De722"
"1311","6/7/2024","0x3feCb9355Bff5E5eD84089c217df954db3D3bf34","[email protected]","https://x.com/noobtrader234/status/1798808690025533731","noobtrader234","309","13397","Centman $XTER 🐳 $BLUAI","Web 3.0 Enthusiast. || DeFi ||On-chain Analyst || CS Tech. Degen. Airdrop farmoor @Zksync, @Scroll_ZKP, @LayerZero_Labs. love @Arbitrum chain. | ZAP Chain⚡️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x3fecb9355bff5e5ed84089c217df954db3d3bf34"
"1312","6/7/2024","0x517Bab93b6D0aD38C7f989Cd081b3b18A1A7B179","[email protected]","https://x.com/gbolahan0353/status/1798809757316493345","gbolahan0353","111","1012","Sanskid 🔗♣️","NFT|| DEGEN || AIRDROP","I am applying to participate in the EthStorage public testnet, and my miner address is 0x517Bab93b6D0aD38C7f989Cd081b3b18A1A7B179"
"1314","6/7/2024","0x228a05CEacBDb1D41F9A43D2Bff3C7F9A01596aC","[email protected]","https://twitter.com/Alioth0x/status/1798810084333568141?t=VLJqVkv-r_q1SRvw5D-1Tw&s=19","Alioth0x","245","4717","alioth0x_👑","nfts||defi enthusiastanime lover🍀🔮 Wiz @AvalonFinance_@cvex_xyz","am applying to participate in the EthStorage public testnet, and my miner address is 0x228a05CEacBDb1D41F9A43D2Bff3C7F9A01596aC@EthStorage"
"1315","6/7/2024","0x8BE2a57426368f251B0b3adF17d48593E1E9F541","[email protected]","https://x.com/lilys0100/status/1798809533969736191?t=-KnuId4S610ZjJbwjjW3wQ&s=19","lilys0100","119","1587","xlily 🐕🌖","Medic l Web 3 dude |community mod| language mod @Laika_Layer2","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8be2a57426368f251b0b3adf17d48593e1e9f541@EthStorage"
"1317","6/7/2024","0xDd25632Df2ff0BA026f4cC86f4d4aF27ff4d8a5E","[email protected]","https://x.com/Deegodds/status/1798810372952203264","Deegodds","120","388","NFT beast (33.3%)🔥♣","Just a happy @DegodsNFT holder, #zkApes #ISLM_MAXI","I am applying to participate in the EthStorage public testnet, and my miner address is 0xDd25632Df2ff0BA026f4cC86f4d4aF27ff4d8a5E@EthStorage"
"1318","6/7/2024","0xB8AFC6Bd824DE9445BC01fC3415d40704c1b2EbF","[email protected]","https://x.com/dnokzr/status/1798810672790425713?s=46&t=E65rZwU_pnnhkerUCBrRrA","DnokzR","126","3078","Dnokz (🖤,🤍)","Bullish","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB8AFC6Bd824DE9445BC01fC3415d40704c1b2EbF"
"1319","6/7/2024","0xA605751c358d7ee8B9FE172166f38D8A7d937D35","[email protected]","https://x.com/Affprofessor/status/1798810534483009887","Affprofessor","223","13029","Crypto Options .plena 🛸 Tabi 🟧 $BLUAI","Active Node Runner || Blockchain and Web 3 Enthusiast ||Banter account || Unserious. #Orbiter. #zkPass. #ArkhamIntel.@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa605751c358d7ee8b9fe172166f38d8a7d937d35 @EthStorage"
"1320","6/7/2024","0x7C04D53A166C2F7247797a2021481158A9E5e0F0","[email protected]","https://x.com/Habolaji_/status/1798811906922381325","Habolaji_","1910","3821","A.T.A ♦️","Sport lover⚽️🏀🏈🏑🏓","0x7C04D53A166C2F7247797a2021481158A9E5e0F0"
"1322","6/7/2024","0x384a6fE6D4a364E9B9aD3ffaBBF56326391746C7","[email protected]","https://x.com/praizmath/status/1798811717344034855?t=Lajelc_KgBlUtip5zOKG2Q&s=19","praizmath","685","16102","Praiz Math.fuel 👁️ 🐉","Web 3 Trader, Content writer Airdrop & Defi enthusiast #ARB #BNBCo-Founder @Thrust_Dao https://t.co/5W0b85z9dw","I am applying to participate in the EthStorage public testnet, and my miner address is 0x384a6fE6D4a364E9B9aD3ffaBBF56326391746C7 @EthStorage"
"1323","6/7/2024","0x10a108b045D0c97Ae7D69cBAFb4d5B97c22bA63c","[email protected]","https://x.com/abeeb_abilawon/status/1798812296673644722","abeeb_abilawon","214","8589","Abilawon Abeeb abimbola 🟧 ⛈️ 🟣","Civil engineer, nft lovers, football lovers #ISLM_MAXI","I am applying to participate in the EthStorage public testnet, and my miner address is 0x10a108b045D0c97Ae7D69cBAFb4d5B97c22bA63c"
"1325","6/7/2024","0xD0D6FCFD6B49be23b6614E4947346f4c44a68520","[email protected]","https://x.com/InviteShare_com/status/1798812598525481326","InviteShare_com","109","224","inviteshare.com💸 Arcana Airdrop","Crypto Fan","I am appliying to participate in the public testnet. my wallet ID is : 0xD0D6FCFD6B49be23b6614E4947346f4c44a68520@EthStorage"
"1326","6/7/2024","0xCcCC006C5bE4691eE7787a50Eef35C4e2c22Db0A","[email protected]","https://x.com/Tochukwuu1/status/1798812499258790179","Tochukwuu1","138","2563","Tochukwu","Content Creator //Crypto and NFT enthusiast // Aspirng Dev@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcccc006c5be4691ee7787a50eef35c4e2c22db0a"
"1327","6/7/2024","0xd4325b631838162A30aCec9AC3Db49536A0C9D03","[email protected]","https://x.com/iamDamscodammy/status/1798812747573973341","iamDamscodammy","207","149","Bisabuelo🐞 $GAME $UNIO","A good humor I guess?!🤔прадед♈bisabuelobisavôarrière grand père Yess!🕺","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd4325b631838162A30aCec9AC3Db49536A0C9D03 @EthStorage"
"1328","6/7/2024","0x4721a825bAb3d22ccEE6927fFEcD7601790e4Bfb","[email protected]","https://x.com/big20_op/status/1798813081629290714","big20_op","467","5351","BiG 20.stx 🟧| Bitflow 🌊🏄♂️","info.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4721a825bAb3d22ccEE6927fFEcD7601790e4Bfb@EthStorage"
"1332","6/7/2024","0x955f7065A027D2167D6Ccc97b4b92e303e193276","[email protected]","https://x.com/Khalid495488589/status/1798813605040890240","Khalid495488589","249","5759","Khalid💚🌙🦅❤ Memecoin 💙 ♦️🔥 CHAMPIONSVERSE 🟧","NFTHUSTLER || GRAPHIC DESIGNER #ISLM_MAXI | | Moderator","I am applying to participate in the EthStorage public testnet, and my miner address is 0x955f7065A027D2167D6Ccc97b4b92e303e193276"
"1333","6/7/2024","0xd3Da87feA07b09F3b9D653f161e1610D270486c5","[email protected]","https://x.com/KangMas666/status/1798814671044235293","KangMas666","1405","12022","Miracle 🐰","NFTs Will be come to sky 🔥🔥🔥","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd3Da87feA07b09F3b9D653f161e1610D270486c5"
"1334","6/7/2024","0x20ad780c573d7015961b62bd94C26f55b49F6b1E","[email protected]","https://x.com/Olamide_web3/status/1798814633664430307","Olamide_web3","6745","12326","Olamide","We live forever","I am applying to participate in the EthStorage public testnet, and my miner address is 0x20ad780c573d7015961b62bd94C26f55b49F6b1E"
"1335","6/7/2024","0xB9b4110c56f58CbDD0Fb66c1dFACEA27039B6aA8","[email protected]","https://x.com/Optimistic_MB/status/1798814544048873656?t=Tl8pdvDimFedJouELrqWqg&s=19","Optimistic_MB","431","10303","Optimisticmb.apt📈📉 | 🟧 ⛈️ 🟣","Forex Trader📊 | Airdrop Chaser💰 WAGMI✊🙏 ❒@playsomo | $SOMO @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb9b4110c56f58cbdd0fb66c1dfacea27039b6aa8@EthStorage"
"1336","6/7/2024","0x848d05283690e4d6f1A88533DFcA83098B1d4130","[email protected]","https://x.com/clint_kal/status/1798815095327195332","clint_kal","184","7571","Clint","Futures Trader, Technical analysts, data analyst in the making, Virtual assistant/ Moderator, Open for work #web3jobs discord: Clintkal#3191.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x848d05283690e4d6f1A88533DFcA83098B1d4130@EthStorage"
"1337","6/7/2024","0x648804e8D59bC801d59da552Ff4150780f702bb5","[email protected]","https://x.com/ElijahNwal93595/status/1798810920078155976?t=SoeQNsU1Q0sZ04HVt3bV0A&s=19","ElijahNwal93595","290","477","Elijah Nwali 💚🌙 ♥️ Memecoin .NYAN🔫😼 to X Name","Brand Ambassador//Blockchain Enthusiast//Content Creator// Advocate of web3//Community Manager, 💚🌙,#ISLM_Maxi","I am applying to participate in the EthStorage public testnet, and my miner address is 0x648804e8D59bC801d59da552Ff4150780f702bb5@EthStorage"
"1338","6/7/2024","0x22a181D5AC0b1eE96546782a0BAc040b02458BEa","[email protected]","https://x.com/BIGJOSH104/status/1798779755480924529?t=ybNaqhn2v41uLB74tiQeVA&s=19","BIGJOSH104","364","1606","Bayoor|₿ 🐉$MON || $BUBBLE","Community Moderator// Content creation","I am applying to participate in the EthStorage public testnet, and my miner address is 0x22a181D5AC0b1eE96546782a0BAc040b02458BEa @EthStorage"
"1344","6/7/2024","0x2fCDAe339D462510E939bf053a34473359a5ec56","[email protected]","https://x.com/tokenbandit001/status/1798816516147667189","tokenbandit001","157","312","Crypto Bandit🈳 🐳 $BLUAI","Trader, Investor and market Analyst. #Arbitrum #Fantom $Magic #Arkham | ZAP Chain ⚡️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2fCDAe339D462510E939bf053a34473359a5ec56 @EthStorage"
"1345","6/7/2024","0x838E89edd1298111b93117Aa388e39398B70fD65","[email protected]","https://x.com/Hemoreal_/status/1798817232002355652","Hemoreal_","967","1804","Earl ⚡️Joltify| BitFlow 🌊🏄♂️🟧","Degening","I am applying to participate in the EthStorage public testnet, and my miner address is 0x838E89edd1298111b93117Aa388e39398B70fD65"
"1346","6/7/2024","0x5485aB100b326096e7faF946FF0cBB349712637a","[email protected]","https://x.com/Ernest5050111/status/1798817445639229732","Ernest5050111","235","3241","CRYPTO HUB | .FUEL","DEFI | PLATFORMS TESTER","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5485aB100b326096e7faF946FF0cBB349712637a"
"1348","6/7/2024","0x4dB3Fd2a8f931f92265FB03f986DA053A628Fa51","[email protected]","https://x.com/itz_ibk002/status/1798741945692667979","itz_ibk002","168","3499","elizabeth❤️ 🐉 $MON","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4dB3Fd2a8f931f92265FB03f986DA053A628Fa51@EthStorage"
"1349","6/7/2024","0xfA306E7ceeD90360082fDC1EFb600a2E4B1a3692","[email protected]","https://twitter.com/hamkid_hammed/status/1798817952525173218?t=BX-yJAkzb31NvHcsy5HeVA&s=19","hamkid_hammed","584","10043","Hammed 🐕🌖 Tabi 🟧","Civil engineering graduate• Interested in Environmental and Water resources engineering• Airdrop hunter 🔮 Wiz @AvalonFinance_@playsomo @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xfA306E7ceeD90360082fDC1EFb600a2E4B1a3692@EthStorage"
"1350","6/7/2024","0x78ceE252b2531B817Ff2172368B256CAbc9b6e7a","[email protected]","https://x.com/FlawlezzMyztery/status/1798817970157957441?t=-tAycRfzrkwgh2DQGxtYIg&s=19","FlawlezzMyztery","210","4380","pointless.plena.$BEYOND.$AAX 🎓🤖⛓️","Web3... I learn, adapt and growRojama.apt@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x78ceE252b2531B817Ff2172368B256CAbc9b6e7a"
"1352","6/7/2024","0x9Cfd4b00a2009C837fd40E9aF31d6650C832ac71","[email protected]","https://x.com/Lovely92927560/status/1798818636758655426","Lovely92927560","920","11639","Lovely.lens🐐💚🌙 🟣 $LOL' 🎵","#Mintsquare#ISLM_MAXI#PiraFinance","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9Cfd4b00a2009C837fd40E9aF31d6650C832ac71@EthStorage"
"1353","6/7/2024","0x0A9b0B463aa3DF2CD980d406F2cBd6bCC4535398","[email protected]","https://x.com/Bolt_utility/status/1798748909755330868?s=19","Bolt_utility","136","145","Bolt 👁️","🌙 👁️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0A9b0B463aa3DF2CD980d406F2cBd6bCC4535398"
"1354","6/7/2024","0xE8a1666806cb114626781f28cE07Fc451879356d","[email protected]","https://x.com/Harbay_4g/status/1798818949171425348","Harbay_4g","1283","3950","Realinger","🏗️ Civil Engineering Student| Structural Engineering Enthusiast|💻 CAD Expert | 🚀 Crypto Enthusiast |⚽ Manchester United Fan | Ronaldo🐐","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE8a1666806cb114626781f28cE07Fc451879356d @EthStorage"
"1355","6/7/2024","0xFCDBFBf124d32e1421c0424916C8d8eAec5143CD","[email protected]","https://x.com/Royalmanuchim_/status/1798820152882119009","Royalmanuchim_","115","818","RoyalManuchim_ 🐞 $GAME","🐞 $GAME🕹️ $RCADE🐉 $MON$BUBBLE 🫧🫧🫧","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFCDBFBf124d32e1421c0424916C8d8eAec5143CD@EthStorage"
"1356","6/7/2024","0x964d680609C45080cE61FaB8b0dBba488866f3ba","[email protected]","https://x.com/andr3aESP/status/1798820649953353870","andr3aESP","237","5261","0xNespo.fuel🥷 🤌🏼 Tabi 🟧 $XTER 🐉🛸♣️🧡 Ordzaar","ebeggar @cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0x964d680609C45080cE61FaB8b0dBba488866f3ba"
"1357","6/7/2024","0x6D21c3DC945288c1561E84011Ad66857E43d1Fda","[email protected]","https://x.com/Punk1033/status/1798820424941506644","Punk1033","231","1003","baycdave.x 🧡 Ordzaar","had a bad day!","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6d21c3dc945288c1561e84011ad66857e43d1fda @EthStorage"
"1358","6/7/2024","0x39124279846D7F1BDF98aee02B7501c0759BcE17","[email protected]","https://x.com/Nwendu48/status/1798819300897349750?t=6ZAghORD0gP3p-Sss-DNpw&s=19","Nwendu48","134","840","Nwendu","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x39124279846D7F1BDF98aee02B7501c0759BcE17 @EthStorage"
"1359","6/7/2024","0x007415dA5E239BcfFaC8f957D6aCf4Ac76DcEcd6","[email protected]","https://x.com/sesshomaru__eth/status/1798821570292613507","sesshomaru__eth","155","5405","Sesshomaru 🟧 ⛈️ 🟣","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x007415dA5E239BcfFaC8f957D6aCf4Ac76DcEcd6"
"1361","6/7/2024","0xB6B54255f96b8ecc69Aa66055CE8E6C120693d08","[email protected]","https://twitter.com/Habibi0fcrypt0/status/1798821733908304347?t=X1R6rfQHfGXjB3i90wRCwQ&s=19","Habibi0fcrypt0","1482","54","Habibi0fcrypto 🐉 $MON","Data Analyst | Content ✍️ & Alpha hunter | Airdrop Maxi | Contributor : @AleoHQ , @OrbitxDao","0xB6B54255f96b8ecc69Aa66055CE8E6C120693d08"
"1363","6/7/2024","0xcCa94FE89Dae35f2581d0b2BE150A184F3E44465","[email protected]","https://x.com/kelz1st/status/1798822267738112317","kelz1st","1348","20378","KΞLVIN 🏌️♂️","living and learning #bitcoin #nft","I am applying to participate in the EthStorage public testnet, and my miner address is <0xcca94fe89dae35f2581d0b2be150a184f3e44465>"
"1364","6/7/2024","0xaC2E53e03B919Db67CE593aF99405728Dc025970","[email protected]","https://x.com/Polygon_elijah/status/1798822694542274954","Polygon_elijah","164","537","PolygonElijah l Agglayer 😈","Founder of @mortal_labs @Banthropoids @TheAntCoin {{ Team @solanaobjectz }} ambassador @spacecartels ( Artist ,designer, Ghost writer ) contributor @0xPolygon","I am applying to participate in the EthStorage public testnet, and my miner address is 0xaC2E53e03B919Db67CE593aF99405728Dc025970 @EthStorage"
"1365","6/7/2024","0xb8Ea8F61cf8c6B50184c7cAb927Fae6e7337557B","[email protected]","https://x.com/emmesend2/status/1798822718357520696?s=46","emmesend2","114","682","Adeoye Ajagbe","@cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb8Ea8F61cf8c6B50184c7cAb927Fae6e7337557B@EthStorage"
"1367","6/7/2024","0x1fd17DC90B91BDdaB9EE8018c10549652F114F4c","[email protected]","https://x.com/OJO3212/status/1798823076177514739","OJO3212","126","101","Name cannot be blank","Learning never ends","I am applying to participate in the EthStorage public testnet, and my miner address is <0x1fd17DC90B91BDdaB9EE8018c10549652F114F4c>"
"1368","6/7/2024","0x80b3937086f85A2A634a3Ce599a41404b2194b81","[email protected]","https://x.com/Lo9hl/status/1798822908514726176?t=7FRX1BoM0IOM1PwKh0VFNA&s=19","Lo9hl","3474","66893","Survivor 🇸🇦337.eth 🚀MATR1XCoin","I'm a sinner , bullishhhhhh on myself ,Nfts and crypto .A member of , @gamefi_cc @Crest_XD, @DineroxyzDm for Collab . No paid promos discord:Princechimere","I am applying to participate in the EthStorage public testnet, and my miner address is 0x80b3937086f85A2A634a3Ce599a41404b2194b81"
"1369","6/7/2024","0x91E09b3F3f30D7DD41378220eFdC02eCFFc208fA","[email protected]","https://x.com/K4nox_eth/status/1798822981864665323?t=RI8wWz68A53VB5UTpgoCUw&s=19","K4nox_eth","130","275","K4nox","Anything web 3 I'm in 🌱🍃A is the code 🧘Proud supporter of @avituslabsxyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x91E09b3F3f30D7DD41378220eFdC02eCFFc208fA@EthStorage"
"1370","6/7/2024","0xa43E9015739E1AA03c4e5E5Fd40F4b0154a5F955","[email protected]","https://x.com/Danoz_Afc/status/1798823894373261315","Danoz_Afc","306","1767","DannySol","•Believer • Cryptothusiast | Heavily Bullish on @ton_blockchain | Creator @pacmoon_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa43E9015739E1AA03c4e5E5Fd40F4b0154a5F955 @EthStorage"
"1372","6/7/2024","0xE2d40854a208E19aF835756aC809bF5ff0f5fdF2","[email protected]","https://x.com/dzikzzz/status/1798824290298515873","dzikzzz","1381","4579","dziks","Web3 enthusiast🖥️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE2d40854a208E19aF835756aC809bF5ff0f5fdF2"
"1376","6/7/2024","0xC09252451831D0c436E11DeBFf4558C66437AB7F","[email protected]","https://x.com/Dukeluke1900/status/1798824984497861045","Dukeluke1900","132","3724","Luke.Tabi","⚙️","'I am applying to participate in the EthStorage public testnet, and my miner address is <0xC09252451831D0c436E11DeBFf4558C66437AB7F>@EthStorage'"
"1377","6/7/2024","0x1aE37C5DE6d4b8067a83e43d60d63A0E5ea139Cb","[email protected]","https://x.com/Senior__prefect/status/1798825417870307634","Senior__prefect","1521","15407","𝕊𝕖𝕟𝕚𝕠𝕣𝕡𝕣𝕖𝕗𝕖𝕔𝕥","Official S.P of Twitter🙂 | Manchester United ❤️| Degen Trader📈 | Check my likes for my tweets","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1ae37c5de6d4b8067a83e43d60d63a0e5ea139cb @EthStorage"
"1378","6/7/2024","0x4353CF661D9c27683796D0ed43De40F2E67079B6","[email protected]","https://x.com/OluwasegunAgbo7/status/1798824766398198220","OluwasegunAgbo7","293","6246","Omo rere bi Semo 🎵🔺","would breakout soon.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x4353CF661D9c27683796D0ed43De40F2E67079B6@EthStorage"
"1379","6/7/2024","0xAAf0ADd4aac0D42B8d8154A3c45a78b23162f863","[email protected]","https://x.com/enjoseph86/status/1798825518126772594","enjoseph86","134","4292","Encio 🐞 $GAME | $STYLE ♦️ .plena 🚀$AGO 🟧 ⛈️ 🟣","@Plenafinance #PlenaArmy @cv_exchange 🐐 🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xaaf0add4aac0d42b8d8154a3c45a78b23162f863"
"1381","6/7/2024","0x947D4B5069C5edbDaC72cB8DED7C5b4b5E4cE70a","[email protected]","https://x.com/haywizz_01/status/1798826279245852908?s=46","haywizz_01","986","13016","Aym'aMaZiNg✨","This life is my diamond💎💍| I am more than just surviving🤗|Chelsea FC💙⚽ | @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is <0x947D4B5069C5edbDaC72cB8DED7C5b4b5E4cE70a> @EthStorage"
"1382","6/7/2024","0xd1Ee7F579da9A629F2372D5D83d2bDEa12fDE67F","[email protected]","https://x.com/mr_gcrypt/status/1798826778984948036?t=IAWdlCySsbwBu-78HCX58A&s=19","mr_gcrypt","119","231","Mr G.Crypt","Content Creator • Building and growing brands to its full potential • Digital Illustrator • Team #web3","I am applying to participate in the EthStorage public testnet, and my miner address is 0xd1Ee7F579da9A629F2372D5D83d2bDEa12fDE67F@EthStorage"
"1383","6/7/2024","0xdC96ec380093a9dEA62636944A6c0f509A5d641D","[email protected]","https://x.com/THEWEB3BOY001/status/1798827824733655300","THEWEB3BOY001","136","1618","Web3stackie | Lingo","$FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0xdC96ec380093a9dEA62636944A6c0f509A5d641D"
"1384","6/7/2024","0xbceb0A6B900E7743160363cB7691D130eb55162C","[email protected]","https://x.com/hanzosikes/status/1798828036521103821?s=46","hanzosikes","283","2150","KoolKat","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xbceb0A6B900E7743160363cB7691D130eb55162C"
"1385","6/7/2024","0xBeB21C36C195b5b48F7cF29C820EA130016852E3","[email protected]","https://x.com/doymiie/status/1798828365602005354","doymiie","2352","36481","𝐃𝐨𝐲𝐦𝐢𝐞 🧁𓃵","Airdrop 𓃵 || Ordinals || Project Manager","I am applying to participate in the EthStorage public testnet, and my miner address is 0xBeB21C36C195b5b48F7cF29C820EA130016852E3@EthStorage"
"1386","6/7/2024","0x7B82Bcc35EB4689422864C6C10f04Daae0Ad475A","[email protected]","https://x.com/AguCrypt/status/1798828905375347094","AguCrypt","641","14781","CyrilCrypt","WEB3 | TECHNICAL ANALYST | TRADER | De-Fi | NFT's | AirDrops","I am applying to participate in the EthStorage public testnet, and my miner address is0x7B82Bcc35EB4689422864C6C10f04Daae0Ad475A @EthStorage"
"1387","6/7/2024","0xb41177b9128324b5281C4eEFc377FbD924B48B96","[email protected]","https://x.com/Engr_Oshy/status/1798829531371020545","Engr_Oshy","646","1990","Mr Sodiq🟧 ⛈️ 🟣","I'm a Muslim || Financial Analyst|| Java Programmer || Web3 Enthusiastic || Graduate Engineer || Content Creator|| Digital marketer.$far","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb41177b9128324b5281C4eEFc377FbD924B48B96"
"1389","6/7/2024","0x63eebA70536D2D0778C66aBFa854e2023E9aC24e","[email protected]","https://x.com/Grey2Geyser/status/1798830432039121097","Grey2Geyser","163","2682","redstar. $BUBBLE 🫧🫧🚀MATR1XCoin","nyan heroes🌊","I am applying to participate in the EthStorage public testnet, and my miner address is 0x63eebA70536D2D0778C66aBFa854e2023E9aC24e@EthStorage"
"1390","6/7/2024","0xEa764185389bf421b4b6d98B85bA20507E6723CD","[email protected]","https://x.com/0x_ace23/status/1798830312786714859","0x_ace23","741","19723","ACΞ","Crypto and NFTs ||YNWA ||But if God got us then we gon' be alright @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xEa764185389bf421b4b6d98B85bA20507E6723CD"
"1391","6/7/2024","0xB0e25924243Af79A282E44EbE47F48a9777f0470","[email protected]","https://x.com/1Davewin/status/1798830574519582964","1Davewin","873","25657","Davewin | @ricyofficial LINGO 🐕🌗","Use my ref link to farm $RICY https://t.co/SZC7UESLfg@ricyofficial. LAIKA","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB0e25924243Af79A282E44EbE47F48a9777f0470 @EthStorage"
"1392","6/7/2024","0xeBFc3fd5696EC01CeB5F4E400f41314E42cd0Ca5","[email protected]","https://x.com/bakaretosin2222/status/1798829321131585932","bakaretosin2222","243","5655","Bakaretosin $LINGO","#CATAMOTO, the biggest new MEME powered by #Tenset will launch at April 19th. Join the CATmunnity and unleash the power of catnip 🌿 https://t.co/JOO3wHIi1t","I am applying to participate in the EthStorage public testnet, and my miner address is 0xeBFc3fd5696EC01CeB5F4E400f41314E42cd0Ca5"
"1393","6/7/2024","0x1Ef3CF53243755Eae6726dfE9295A2868112399e","[email protected]","https://x.com/ladyperpetuall/status/1798830726034657336?s=46","ladyperpetuall","149","814","ladyperpetual","Gods faithful child 🎵 @playsomo | $SOMO @cv_exchange","I am applying to participate in the EthStorage public testnet, and my miner address is 0x1Ef3CF53243755Eae6726dfE9295A2868112399e@EthStorage"
"1394","6/7/2024","0xB0e358674f50EF3E062b7115340092a31fB7AF30","[email protected]","https://x.com/smyszncrt/status/1798831294169911407","smyszncrt","293","5490","smyszn","I’m the greatest, somethin’ like Ali in his prime | Fuelet","I am applying to participate in the EthStorage public testnet, and my miner address is 0xB0e358674f50EF3E062b7115340092a31fB7AF30 @EthStorage"
"1395","6/7/2024","0x78e6C70864191EcC98Ca5Cf06DAbDE1a967eF7F3","[email protected]","https://x.com/BusyfingersAlt/status/1798832100944318875","BusyfingersAlt","149","1647","Busyfingers✨","Main acct got suspended: @_Busyfingers |Data Analyst |Female Hairstylist | A box of knowledge | Breath in Breathe out 🧘","I am applying to participate in the EthStorage public testnet, and my miner address is 0x78e6C70864191EcC98Ca5Cf06DAbDE1a967eF7F3 @EthStorage"
"1396","6/7/2024","0x7f7F354f5568d5bB542960DCd0e656600a957722","[email protected]","https://twitter.com/dedon76/status/1798830804434653346?t=lsBpzDEleq_9p5932VhvEw&s=19","dedon76","211","839","Realtreasure 🕹️ $RCADE","male","I am applying to participate in the EthStorage public testnet, and my miner address is 0x7f7F354f5568d5bB542960DCd0e656600a957722 @EthStorage"
"1397","6/7/2024","0x7ce5D5b011f804821A8D5c207547b1316B514836","[email protected]","https://x.com/opemuyi6/status/1798832382918660323","opemuyi6","1046","5944","azomit.apt .fuel🟣$LOLazomit🤑.🐻⛓️🐉$MON Tabi 🟧","Download Inspects Chrome extension and get analytics for the entire web3 ecosystem: https://t.co/qb6yWuEPzc@Mint_Blockchain 💙 https://t.co/7yybxofoDF Army @cv_exchange BEVM","Tweet this: I am applying to participate in the EthStorage public testnet, and my miner address is 0x7ce5D5b011f804821A8D5c207547b1316B514836@EthStorage"
"1398","6/7/2024","0x41fF013b84935b383cA3264CB6dd8f6d8e7EC0be","[email protected]","https://x.com/simpli_blis/status/1798832737865884108","simpli_blis","250","2309","Bliss 🕹️ $RCADE Tabi 🟧","暗号通貨愛好家 @cvex_xyzTechnical Analyst (DeFi ,crypto) 💜💜I fear the man whom has practiced one step 10,000 times💜💜 Alpha Caller @metafrens01","I am applying to participate in the EthStorage public testnet, and my miner address is 0x41fF013b84935b383cA3264CB6dd8f6d8e7EC0be @EthStorage"
"1400","6/7/2024","0x5611f3F4fd343BEE8c2EC8C2D2B71Ce4EDf67ad8","[email protected]","https://x.com/sumeetrshettyg1/status/1798833411861442623","sumeetrshettyg1","159","1990","Sumeet Shetty🐉 $MON ♣️ 🟧","Technology | Crypto Enthusiast | Blockchain Solution Architect | Java Technical Architect | Investorhttps://t.co/i7EZYWsKQs core supporter","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5611f3F4fd343BEE8c2EC8C2D2B71Ce4EDf67ad8"
"1401","6/7/2024","0xe0deE855e501e3Ed22651fe8eA0e5Ca19c31D03A","[email protected]","https://x.com/DriseFall/status/1798834406234484885","DriseFall","210","5018","fall Tabi 🟧⛈️🟣","Like fun and won't stop hustling to have more fun 🎵🔮 Wiz @AvalonFinance_","I am applying to participate in the EthStorage public testnet, and my miner address is 0xe0deE855e501e3Ed22651fe8eA0e5Ca19c31D03A@EthStorage"
"1402","6/7/2024","0x04A9D98e0aB186c180586aE09Af41cF6C61cB392","[email protected]","https://x.com/Professor_Koa/status/1798834714234794476?t=xt6fqAGj3bCs12B4AozJRw&s=19","Professor_Koa","1518","25856","Professorkoa.eth ⚡$GOD","I'm just a regular guy who loves #crypto","@mztacat 0x04a9d98e0ab186c180586ae09af41cf6c61cb392"
"1403","6/7/2024","0x297D6cfCE58975f68277E16e839D9426Da8eDA2E","[email protected]","https://x.com/Ikukuoma20/status/1798834875753222621","Ikukuoma20","129","2765","⚡Molex.bit🐐♦️🐉$MON.plena $XTER","#Bitcoin ⚙️⚙️","I am applying to participate in the EthStorage public testnet, and my miner address is 0x297D6cfCE58975f68277E16e839D9426Da8eDA2E @EthStorage"
"1404","6/7/2024","0xb888B6d5dd5Be43a9F4431c97d380f5663c32E5F","[email protected]","https://x.com/rare_alpha/status/1798836651374129195","rare_alpha","108","218","RareAlpha.NYAN","@Mint_Blockchain","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb888B6d5dd5Be43a9F4431c97d380f5663c32E5F @EthStorage"
"1405","6/7/2024","0xb82D29aBf2a254b3623D3f3AE513C120c3CE7Ec1","[email protected]","https://x.com/Bobxxl99/status/1798836914776060335","Bobxxl99","468","6194","Kenny","📈📊📉 Crypto & Forex ||Project and Community Management ||Everything web3 💯 @Mint_Blockchain $FAR","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb82D29aBf2a254b3623D3f3AE513C120c3CE7Ec1 @EthStorage"
"1406","6/7/2024","0x82C004Ab2202269c1f309A403FE4d819f950D895","[email protected]","https://x.com/J_xaint/status/1798836855141540014","J_xaint","170","3113","Lawal Luke Tabi 🟧","Music is life.","I am applying to participate in the EthStorage public testnet, and my miner address is 0x82C004Ab2202269c1f309A403FE4d819f950D895 @EthStorage"
"1407","6/7/2024","0x5a351e86Bb9885632DD21A3Cf3681Af0C0B103bb","[email protected]","https://x.com/A_rahman001/status/1798836941648961974","A_rahman001","637","3494","A.Rahman®️","#RESPECT AND SERVICE TO HUMANITY||ENTHUSIASTIC WEB DEVELOPER #","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5a351e86Bb9885632DD21A3Cf3681Af0C0B103bb"
"1408","6/7/2024","0x06de8D0c31660d06309a05B917FBEb40cA5ff381","[email protected]","https://x.com/arrdhenhiyi/status/1798837236047507769?t=0LFd8lRglYf39NPBEINdGg&s=19","arrdhenhiyi","1056","27108","Arrdhenhiyi₿🔥 🕹️ $RCADE 🐞 $GAME $LINGO Tabi 🟧","/Muslim😊🔺 /@FCBarcelona fan⬆️/NFT&Web3 enthusiast 💯🔺 @databot_xyz","I am applying to participate in the @EthStorage public testnet, and my miner address is 0x06de8D0c31660d06309a05B917FBEb40cA5ff381"
"1413","6/7/2024","0xc498837568523ceE0943ac90976b928dF26FdA47","[email protected]","https://x.com/AwesomePhysio/status/1798839470730691022","AwesomePhysio","339","1386","Awesome Physio 🟧 ⛈️ 🟣","Physiotherapist 🥼🩺.Public Health Advocate. Fitness Coach.Crypto Enthusiast.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc498837568523ceE0943ac90976b928dF26FdA47"
"1414","6/7/2024","0x724E735aB8fA1FF75aB3968d44BFFd0bE4Ea4Bcf","[email protected]","https://x.com/kinnahjoshua/status/1798839569284248002?t=2aUcGnDTWwocjX0KFYbFLw&s=19","kinnahjoshua","146","3967","Kingnana 👑♻️🅱️","Web3 Researcher|| Community Manager || Web3 Innovations || Early Airdrop Alphas 💱 || Beginner 🔰","I am applying to participate in the EthStorage public testnet, and my miner address is <input a new wallet address> 0x724E735aB8fA1FF75aB3968d44BFFd0bE4Ea4Bcf"
"1415","6/7/2024","0x147126F1f60D38BfA62E2577363dDf198ab69012","[email protected]","https://x.com/Amiable98/status/1798839909706539053","Amiable98","1286","5093","lexy","@monad_xyz believer! LFG 🚀 Crypto Enthusiasts","I am applying to participate in the EthStorage public testnet, and my miner address is 0x147126F1f60D38BfA62E2577363dDf198ab69012"
"1416","6/7/2024","0xa16Fba40af4755a0Bf3c2c78332cC8F0E6A44993","[email protected]","https://twitter.com/DavidMo50064400/status/1798840968466321636?t=AFFSTgACh5-LxWnvfFFjSw&s=19","DavidMo50064400","665","1075","David Moore🐉 $MON","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xa16Fba40af4755a0Bf3c2c78332cC8F0E6A44993"
"1417","6/7/2024","0x83b9f91cc8CF58A02051d48453c5aAE1561f7381","[email protected]","https://x.com/Kingdanmaraya/status/1798840622423654442","Kingdanmaraya","443","8363","King.. 🐉 $MON $BEYOND ❤️ Xally 🕹️ $RCADE Tabi 🟧","I am me","I am applying to participate in the EthStorage public testnet, and my miner address is 0x83b9f91cc8CF58A02051d48453c5aAE1561f7381@EthStorage"
"1419","6/7/2024","0xDebD01Ba6CccC4C76e41cB319F7168d58d119329","[email protected]","https://x.com/mousco22/status/1798841942371176902?t=OdTEQadQ9Zl1lr7cXtXJzw&s=19","mousco22","210","4431","flexymos.vip.stark","Crypto trader |Lover of NFT |Digital Marketing|IT Expert #PiNetwork #XUMM #APTOS #XML #LetsFlow #CoralNFT #SAMO #BlueMove #MOVErs #zkApes","I am applying to participate in the EthStorage public testnet, and my miner address is 0xDebD01Ba6CccC4C76e41cB319F7168d58d119329"
"1422","6/7/2024","0xF8458Fb367a683cb1cE13364C11405e308C148DE","[email protected]","https://x.com/ronintvmedia/status/1798842863503167818?t=cNxAmNNkznq2483L1CODaQ&s=19","ronintvmedia","1587","9372","RONIN❤️🩹🪙","Just your everyday hustler in the Web3 space | Content Writer ⚡ | Community Manager 📉| Graphic Designer 🎗️ | AMB: @TFSCChain, @onunblocked","I am applying to participate in the EthStorage public testnet, and my miner address is 0xF8458Fb367a683cb1cE13364C11405e308C148DE"
"1424","6/7/2024","0x2f5691cDC4AaD160d56528e3eFf6542941Fa5D53","[email protected]","https://x.com/sunnyajiss/status/1798843024442847457","sunnyajiss","539","20242","Harji 🟣 $LOL 🟧","Crypto | NFTs | Raid Specialist | Photographer 📸@Atleta_Network","I am applying to participate in the EthStorage public testnet, and my miner address is 0x2f5691cDC4AaD160d56528e3eFf6542941Fa5D53"
"1425","6/7/2024","0x49e68Fe5aaff517aCF68eb6A26611D32EBb221b1","[email protected]","https://x.com/pip_thinkerIQ/status/1798843069300883802","pip_thinkerIQ","2228","4409","🅿🅸🅿","Defi Educator |Idea Developer | Community Manager |Founder, pIpthinkers community! |gamer! |may 26th","I am applying to participate in the EthStorage public testnet, and my miner address is 0x49e68fe5aaff517acf68eb6a26611d32ebb221b1"
"1426","6/7/2024","0x8FB6F57F57938f3De9f58Aa6c16F6bf27E34853e","[email protected]","https://x.com/The_Drak_Lady/status/1798844837443330461?t=egDFEp1YQFAbHsBwZv-kzQ&s=19","The_Drak_Lady","295","7093","TDL","Time🕰️ is Money 💰 BE AS SAFE AS YOU CAN AND AS ALWAYS DO YOUR DUE DILIGENCE ON EVERY INVESTMENT@Plenafinance & #PlenaArmy @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8FB6F57F57938f3De9f58Aa6c16F6bf27E34853e"
"1427","6/7/2024","0x772128c59e99c77BbB60D8dfB659e74ae16B5D1b","[email protected]","https://x.com/geeboi40/status/1798844798478303548","geeboi40","211","1754","geeboi🐐❤️ Xally🎵🐉 $MON","WEB 3 addict","I am applying to participate in the EthStorage public testnet, and my miner address is 0x772128c59e99c77BbB60D8dfB659e74ae16B5D1b @EthStorage"
"1428","6/7/2024","0xd95DBe5aCaE87D91bE3e52e33b908a4A8109b68f","[email protected]","https://x.com/Aminebue4/status/1798845080364781622","Aminebue4","612","592","A","Crypto News | Crypto | Airdrops | NFTs","@EthStorage I am applying to participate in the EthStorage public testnet, and my miner address is 0xd95DBe5aCaE87D91bE3e52e33b908a4A8109b68f"
"1430","6/7/2024","0x23A843EB2cA2f6E984abcC44fC9E5f310Ca44714","[email protected]","https://x.com/Levon_fred/status/1798845827500343426","Levon_fred","168","1662","Levon_fred👾","NFTartist||crypto enthusiast||pro community mod||Collab manager|| ListOX representative MUFC•Upcoming baller•Founder @RareRhinosNFT •","I am applying to participate in the EthStorage public testnet, and my miner address is 0x23A843EB2cA2f6E984abcC44fC9E5f310Ca44714 @EthStorage"
"1432","6/7/2024","0x5D04F8F937Ac26834214905cD21135FFA9822106","[email protected]","https://x.com/Oleksii42924397/status/1798846458525032845","Oleksii42924397","199","7832","OleSha $XTER 🕹️ Tabi 🟧 🐞 $GAME","#EYWAretrodrop ⚙️ Seaman 00lesha.blockchain #NexonArmy Contributor 🔥 @SplitProtocol @Plenafinance & #PlenaArmy @cv_exchange @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5D04F8F937Ac26834214905cD21135FFA9822106 @EthStorage"
"1433","6/7/2024","0x0657aB521a53e2775d14F8dB46Eae43c2CBb683E","[email protected]","https://x.com/hauwadhauwa/status/1798846769486495771?s=46&t=WT1DfgnrcvDZjzQ_NpiROQ","hauwaDhauwa","122","2232","Ilege🥷 l","crypto enthusiast|| ftm|| defi || $sol $Apt $Near $arb","I am applying to participate in the EthStorage public testnet, and my miner address is 0x0657ab521a53e2775d14f8db46eae43c2cbb683e"
"1436","6/7/2024","0xF256c5aaE00b45bFdeBC6D785A4d7fA0D36775cE","[email protected]","https://x.com/cry_ptic9/status/1798847174551429400","cry_ptic9","240","2060","Undefeated","#Lambo hunter #Crypto lover#defi#web3 $$$$$Degen lover🕹️ $RCADE","I am applying to participate in the Ethstorage public testnet, and my miner address is 0xF256c5aaE00b45bFdeBC6D785A4d7fA0D36775cE @EthStorage"
"1439","6/7/2024","0xAbd2be2100cBe2Ea790380DbC271f505B091A2Fa","[email protected]","https://x.com/MULTITUDEIB/status/1798846673491554710","MULTITUDEIB","1174","1357","Adeshinaa Ibraheem 🐉 $MON $ARCA","Industrial Chemist|| Online Service Provider || 2D Animator & Illustrator || Nft Artists|| Ai Video Creator|| Crypto Enthusiast|| Investor || Entrepreneur.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xAbd2be2100cBe2Ea790380DbC271f505B091A2Fa @EthStorage"
"1443","6/7/2024","0x1b21a2EEd9dd85394581646E9b38fD55644F8549","[email protected]","https://x.com/anonymous_lair/status/1798848471652327431?s=46","Anonymous_lair","103","1806","Dolapo","#crpto #metaverse #nft lover @pepezksync","`I am applying to participate in the EthStorage public testnet, and my miner address is 0x1b21a2EEd9dd85394581646E9b38fD55644F8549"
"1444","6/7/2024","0x48dD2a6129A3d96E3a0cda6dcEFC2551CFA16Eee","[email protected]","https://x.com/tadee_og/status/1798848985677062168","tadee_og","861","7454","Tadee_og.plena","Product Designer, Degen","I am applying to participate in the EthStorage public testnet, and my miner address is 0x48dD2a6129A3d96E3a0cda6dcEFC2551CFA16Eee @EthStorage"
"1446","6/7/2024","0xae034df4313065c66bB3B8615E61Cd40cf2dC4b5","[email protected]","https://twitter.com/0x_Spy7/status/1798849688998658309?t=hjdtKnXX2GlltBjtgQMzpQ&s=19","0x_Spy7","756","1590","0x_Spy.ton💎🥷","Animé | Crypto & web3 Tactician♻️ | DeFi & Airdrop Analyst | ambassador, @ston_fi ,Open ➡️ Colab||Ninja 🥷||","I am applying to participate in the EthStorage public testnet, and my miner address is > 0xae034df4313065c66bB3B8615E61Cd40cf2dC4b5@EthStorage"
"1447","6/7/2024","0x821e8341A6c1e28De3451be23D14f2bb38794D18","[email protected]","https://x.com/sal_im01/status/1798849763112300754","sal_im01","174","3359","S4L1M♣️🎵","Web3. Loving Father. Husband. Muslim. Feminist. @fullforce_io","I am applying to participate in the EthStorage public testnet, and my miner address is 0x821e8341A6c1e28De3451be23D14f2bb38794D18@EthStorage"
"1448","6/7/2024","0x6a3dBdC94799011Fed08f34C13258419254764BB","[email protected]","https://x.com/JustKM10/status/1798849263495176554","JustKM10","306","5051","Kamil💀","BUILDING... Moderator @SmolCapital_ NFT HUNTER🏹 MEME MAKER × ASPIRING ARTIST. |WEB3| @ChelseaFC …. Be yourself 👾","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6a3dBdC94799011Fed08f34C13258419254764BB @EthStorage"
"1450","6/7/2024","0xA80bB117F4d77F7EeBadEFc4c0C2C1D8aC56C028","[email protected]","https://x.com/optimistic496/status/1798851163481346224","optimistic496","186","3510","@optimistic496","surviving |Manchester is red ❤️❤️👹|The sky is red|","I am applying to participate in the EthStorage public testnet, and my miner address is 0xA80bB117F4d77F7EeBadEFc4c0C2C1D8aC56C028"
"1451","6/7/2024","0xC6F051e992C30DF3E71eC7b0aDbEf04A04CACb35","[email protected]","https://x.com/UmarNft/status/1798850785838879136","UmarNft","372","1385","UmarNft🏆","Mod & Collab Manager • DC: umar.west","I am applying to participate in the EthStorage public testnet, and my miner address is 0xC6F051e992C30DF3E71eC7b0aDbEf04A04CACb35"
"1453","6/7/2024","0x094Aae9DDB1a01E9d53AFf5F1e59593c4160eB8C","[email protected]","https://x.com/Otaku_Daoo/status/1798851589517783198","Otaku_Daoo","470","10015","Muzan","Dysmorphia","I am applying to participate in the EthStorage public testnet, and my miner address is 0x094Aae9DDB1a01E9d53AFf5F1e59593c4160eB8C@EthStorage"
"1456","6/7/2024","0xb1EaE6a8D4fEfBe0eF1849c6237A0B80b0495f6D","[email protected]","https://x.com/OZOBIAH/status/1798852862103138460?s=19","OZOBIAH","108","2362","OZOBIAH| Artela🔼","Student | Trader | Community Manager | Moderator.With 4+ years experience in crypto and blockchain| #SomniaNetwork","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb1EaE6a8D4fEfBe0eF1849c6237A0B80b0495f6D"
"1458","6/7/2024","0xcFE2dE6f816896F425C291cE23D5A11B7E55C2b5","[email protected]","https://x.com/Adesolapaul_/status/1798853218329559105","Adesolapaul_","569","492","Paul Adesola / Zeus Network","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcFE2dE6f816896F425C291cE23D5A11B7E55C2b5"
"1460","6/7/2024","0xb3d4aBc9a46c06CCFB465e052E9C6Ca7DDe634b8","[email protected]","https://x.com/Emilex0096/status/1798853421120053567","Emilex0096","417","5431","Emilex","▪Defi▪Athlete.","0xb3d4aBc9a46c06CCFB465e052E9C6Ca7DDe634b8"
"1462","6/7/2024","0xb14Fa487340A54dC22b46e0005cdDc2AA28d7532","[email protected]","https://x.com/expensivejunk1/status/1798853892173955537","expensivejunk1","102","1391","beris $MOJO $BUBBLE 🫧🫧🫧","Cool.headed. @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0xb14Fa487340A54dC22b46e0005cdDc2AA28d7532@EthStorage"
"1463","6/7/2024","0xE6aDB6A915671D81646cAc29E1B2473d4190F471","[email protected]","https://x.com/AfriKryptoSage/status/1798853703124111713","AfriKryptoSage","198","3963","aurocoi @cvex_xyz .fuel","0nchain analyst💥||DeFI|• Solidity and Typescript learner|||brand ambassador 🚀🚀💥","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE6aDB6A915671D81646cAc29E1B2473d4190F471"
"1464","6/7/2024","0x982b4bF66eb8F75C25E966eD42A3eA02c0c9cC5e","[email protected]","https://x.com/lywani1zta/status/1798854205043834963","lywani1zta","215","5054","Lywani❤️🫧🫧🫧","#ISLM_MAXI Buying NFT's is my hobby $BRINE 🏰 I smoke NFT's meet me at @guildxyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0x982b4bF66eb8F75C25E966eD42A3eA02c0c9cC5e@EthStorage"
"1465","6/7/2024","0xeFa43Ad3cC07F135c83AA55602D08788008B03f7","[email protected]","https://x.com/_smartrex/status/1798854188908281985","_smartrex","160","440","$Smartrex 💰 🟧 ⛈️ 🟣","Airdrop farmer @cvex_xyz","I am applying to participate in the EthStorage public testnet, and my miner address is 0xeFa43Ad3cC07F135c83AA55602D08788008B03f7"
"1466","6/7/2024","0xE7270d558bcd40E50012257f02e1A972fe563f48","[email protected]","https://x.com/ayenny09/status/1798853891829747959","ayenny09","549","8064","albertenny🟧","Social Media Manager | Content creator | VIdeo Creator/Editor | Community Manager | Marketing Manager | ⚙️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xE7270d558bcd40E50012257f02e1A972fe563f48"
"1467","6/7/2024","0xD9255a5E919382135bb20Ac59d2BeEdCC2b72329","[email protected]","https://x.com/FundsHustler/status/1798854844683595975?t=qCw2xpMn3QItt-kcroJEuA&s=19","FundsHustler","247","4615","Oxclone.NYAN🔫😼🐉 $MON.plena","Best female software engineer | Manchester United fan | curious fellow | crypto gang and nft | Educates me on a topic i don't know about without making me dumb.","I am applying to participate in the EthStorage public testnet, and my miner address is 0xD9255a5E919382135bb20Ac59d2BeEdCC2b72329"
"1468","6/7/2024","0x8998ba2d41af13aFC0c00b1b7ecDc0734f31bc21","[email protected]","https://x.com/tobby2710/status/1798855398650478668","tobby2710","100","1649","tobby 🐉$MON","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x8998ba2d41af13aFC0c00b1b7ecDc0734f31bc21"
"1469","6/7/2024","0xcA688607122d54ED0d282C831441e758F2a17f6a","[email protected]","https://x.com/easterndoe/status/1798855860959265003?s=46","EasternDoe","199","4408","S’🪐 . 🐉$MON ♣️ 🎵OwO $GAME","LET MY WEB3 AND CRYPTO JOURNEY BEGIN💻 🪙","I am applying to participate in the EthStorage public testnet, and my miner address is 0xcA688607122d54ED0d282C831441e758F2a17f6a @EthStorage"
"1470","6/7/2024","0xf0f621f32f76851F73d1fb8d525cB3A26C44AD03","[email protected]","https://x.com/af_swan_crypto/status/1798856342993850400","af_swan_crypto","176","9675","af_swan.fuel |Tabi 🟧| Ultiverse⚡️🐑(🎮,🟢)","Crypto enthusiast @IntractAmbassador $FAR 🌊","I am applying to participate in the EthStorage public testnet, and my miner address is 0xf0f621f32f76851F73d1fb8d525cB3A26C44AD03"
"1471","6/7/2024","0x110CD490D72F2E9Fc0246972d39B0776ff97A971","[email protected]","https://x.com/Mesomamadu/status/1798857402198200749","Mesomamadu","219","5239","syKingvilly🌐 $XTER","God first Everytime ♐♐♐@ALX software engineeringcrypto enthusiast😇","I am applying to participate in the EthStorage public testnet, and my miner address is 0x110cd490d72f2e9fc0246972d39b0776ff97a971@EthStorage"
"1472","6/7/2024","0xCcFBa4a5594C95881bDA48FbC782a3daCec876B1","[email protected]","https://x.com/nurberts/status/1798857600219631918?s=46&t=2FElHeYBfTg15mxgMR47Mw","nurberts","185","1345","Nurbert","I'm only here to follow trends. Nothing serious","I am applying to participate in the EthStorage public testnet, and my miner address is 0xCcFBa4a5594C95881bDA48FbC782a3daCec876B1 https://t.co/oE92EQbjHX"
"1474","6/7/2024","0x9237b796045eB26A2007727BC392C923E661B3a8","[email protected]","https://x.com/Froztbite61/status/1798858451084624092?t=JjYfkdx7YxpBG4-48x39IA&s=19","Froztbite61","206","724","Froztbite🎃","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9237b796045eB26A2007727BC392C923E661B3a8"
"1476","6/7/2024","0x429cc0be83FeF19Fe0e73fa975F2fbCd86af8E88","[email protected]","https://x.com/Emmy01488845/status/1798859116770910565?t=tDToXpXpg3RUmAzZti0oOQ&s=19","Emmy01488845","374","4170","E A O","God first 💯Crypto enthusiast 💯","I am applying to participate in the EthStorage public testnet, and my miner address is 0x429cc0be83FeF19Fe0e73fa975F2fbCd86af8E88"
"1477","6/7/2024","0x168e86Eb1D72566ee0F77Be308283ec4E9b60A14","[email protected]","https://x.com/DMcdope/status/1798859366113886623","DMcdope","173","760","McDope 🉐⚛️","","I am applying to participate in the EthStorage public testnet, and my miner address is 0x168e86Eb1D72566ee0F77Be308283ec4E9b60A14"
"1478","6/7/2024","0xFff546a95D14d05EfE29EC7c95a924273360BAea","[email protected]","https://x.com/sirserney/status/1798859862308528206","sirserney","126","295","Sirserney ✨🌱","Crypto enthusiast 📈Building a web3 🕸️ Agency| #BTC♥️#BNB || Contributor @RiscZero ||Community and Social Media Manager #Hafeez 📚 Content Creator ✍️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xFff546a95D14d05EfE29EC7c95a924273360BAea"
"1480","6/7/2024","0x5B77aeE0c42324c8dbC282Ba436c49C11Ba07806","[email protected]","https://x.com/D_Cryptobaby/status/1798860654239207752","D_Cryptobaby","264","1335","Cryptobaby","she/herUI/UX DESIGNER /Crypto/ Gamer/ Trader/ manchesterunited","I am applying to participate in the EthStorage public testnet, and my miner address is 0x5B77aeE0c42324c8dbC282Ba436c49C11Ba07806@EthStorage"
"1482","6/7/2024","0x23e7f8BFA6DEB55A6F4D1062751d0f41F7C67cDC","[email protected]","https://x.com/sodiqomostena/status/1798861465585320014","sodiqomostena","108","963","Oluwafemi Akinyemi 🐉$MON $BUBBLE $BEYOND $MOJO 🎵","💙 https://t.co/08227Fa586 Army 🔑Superfan $BLOCk NYAN🔫😼 $RCADE","@mztacat I am applying to participate in the EthStorage public testnet, and my miner address is 0x23e7f8BFA6DEB55A6F4D1062751d0f41F7C67cDC"
"1483","6/7/2024","0x6a5af44C3927f0Ba31D6db57B8b51f9a8daE89cD","[email protected]","https://x.com/REXIECOOLMONEY/status/1798862474776879139","REXIECOOLMONEY","327","3523","REXIE","Am a business manager, working to improve good productivity to the society. A fiverr freelancer #metatime","I am applying to participate in the EthStorage public testnet, and my miner address is 0x6a5af44C3927f0Ba31D6db57B8b51f9a8daE89cD@EthStorage"
"1484","6/7/2024","0x417e4Dda0951672040552FE3d52B90056b5Ae18f","[email protected]","https://x.com/CFC_LilPuissant/status/1798862697423143029?t=mjdWT39eQY_CZ2e4B5x08w&s=19","CFC_LilPuissant","202","2137","⛩️Lee Pui$$ant⛩️🐉 $MON","Upcoming 😃Was @dolapo23802662 before I got suspended 😔","I am applying to participate in the EthStorage public testnet, and my miner address is <0x417e4Dda0951672040552FE3d52B90056b5Ae18f >"
"1485","6/7/2024","0x80BB4dCa7a4256B62dB2B909a07ACF2a9cD40413","[email protected]","https://x.com/lekstudio001/status/1798863254078607672","lekstudio001","440","2435","Habeebulah|🐞 🟧 ⛈️ 🟣$GAME","🔮 Wiz @AvalonFinance","I am applying to participate in the EthStorage public testnet, and my miner address is 0x80BB4dCa7a4256B62dB2B909a07ACF2a9cD40413@EthStorage"
"1486","6/7/2024","0xAD6B1D5C06A9C65270831cb187Eb630bA9D936CF","[email protected]","https://x.com/0xblesstheyhute/status/1798775378254967161","0xblesstheyhute","1298","18767","bless the yhutë ⚔️","poet | optimist | 🏠 @brainboxintel","@PEPIXonBASE @0xSpenge 0xAD6B1D5C06A9C65270831cb187Eb630bA9D936CF"
"1488","6/7/2024","0x9CDb943CcE8a1777e444017f07e063E5680ba002","[email protected]","https://x.com/Opadotunsamuel/status/1798864686290714933","Opadotunsamuel","1368","10682","O.B.O. ₿ 🏴♦️","AMBASSADOR: @Dechaincoin TEAM AND COLLAB MANAGEMENT: @TheJokerChaos @DTOalpha @Cynosure_D @Web3onlyA @Chaosordinal #SpaceHost🧑🍳","I am applying to participate in the EthStorage public testnet, and my miner address is 0x9CDb943CcE8a1777e444017f07e063E5680ba002 @EthStorage"
"1491","6/7/2024","0x4ec53f12bF3B6A06880c3C5B0E541f06094b8Afb","[email protected]","https://x.com/DavudOpeye21094/status/1798865543321223170","DavudOpeye21094","118","2713","Newbie.fuel.plena👁.Tabi 🟧","👁️ | Fuelet 🔮 Wiz @AvalonFinance_ #PlenaArmy 🎵","I am applying to participate in the 2nd EthStorage public testnet campaign, and my wallet address is 0x4ec53f12bF3B6A06880c3C5B0E541f06094b8Afb"
"1492","6/7/2024","0xC921E7051B83FFc5A0C8031f8088Cdf60a3748D7","[email protected]","https://x.com/iamjessiecarh/status/1650050393232011264","iamjessiecarh","544","9044","JESSCARH🌸♦️🐉 $MON","NFTs & Defi |UI/UX designer| famooooor👩🌾. Email: [email protected]","@jamesrichardfry I have registered but am still not on the allow list. Here is my wallet0xC921E7051B83FFc5A0C8031f8088Cdf60a3748D7"
"1493","6/7/2024","0x979532Ff7847821c6C8E17AD94aB1b4A1b495c4c","[email protected]","https://x.com/Crimzy579268/status/1798866846583824647","Crimzy579268","164","2917","Crimzy♦️","🟧@playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x979532Ff7847821c6C8E17AD94aB1b4A1b495c4c"
"1495","6/7/2024","0x631478c1BD538902bA285bC1fc204577f8D12Ef2","[email protected]","https://x.com/Elijahharkland/status/1798866860362129418","Elijahharkland","2232","1977","Hardland","$SOL & $BTC 🧖let's connect 🧎","I am applying to participate in the EthStorage public testnet, and my miner address is 0x631478c1BD538902bA285bC1fc204577f8D12Ef2 @EthStorage"
"1496","6/7/2024","0xc1c4410D4b7C8F88991A00dFeA476b91A153638D","[email protected]","https://x.com/emrifki08/status/1798867471266636163","emrifki08","212","4003","always_profit 🐉 $MON","","I am applying to participate in the EthStorage public testnet, and my miner address is 0xc1c4410D4b7C8F88991A00dFeA476b91A153638D @EthStorage"
"1500","6/7/2024","0x3Af8cD707E7fe2C38d112F83438C205dA33e81f2","[email protected]","https://x.com/__Odira/status/1798868893844574408","__Odira","921","14855","Odiy","/ madridsta⚪/ #wealltogether/vibes/web3","I am applying to participate in the EthStorage public testnet, and my miner address is <0x3Af8cD707E7fe2C38d112F83438C205dA33e81f2> @EthStorage"
"1501","6/7/2024","0xD452230522f0204DedEF147Da18ac82232c1B029","[email protected]","https://x.com/iam_Chiboy01/status/1798861886928441675?t=Uxd3DLNrZIXxDDt-FPio7w&s=19","iam_Chiboy01","125","1164","Prince Neche 💛ordzaar","Forex / indices analyst & trader📉 | Defi Analyst & memecoin trader | crypto investor ( trading with the act of simplicity) .#CATAMOTO 🐈⬛@playsomo | $SOMO","Am applying to participate in the EthStorage public testnet, and my miner address is 0xD452230522f0204DedEF147Da18ac82232c1B029@EthStorage"
"1503","6/7/2024","0xDde06CF46E2481A2fa9FC07A43De9Ffa7445C2dA","[email protected]","https://x.com/_DannyAce/status/1798870201708196052","_DannyAce","687","7355","D'ACE♟️❤️ Tabi 🟧","Exploring the blockchain universe and embracing the digital revolution || 🛠️👷@playsomo | $SOMO | ZAP Chain ⚡️","I am applying to participate in the EthStorage public testnet, and my miner address is 0xDde06CF46E2481A2fa9FC07A43De9Ffa7445C2dA @EthStorage"
"1504","6/7/2024","0x02C7BD7a4A565ccA6824207068437B93CD99ff16","[email protected]","https://x.com/ElohorEkomekido/status/1798870645788311649","ElohorEkomekido","162","1859","Ekomekido Godfavour Elohor♦️🐉 $MON .NYAN🔫😼","Trusting God is all that matters @playsomo | $SOMO","I am applying to participate in the EthStorage public testnet, and my miner address is 0x02C7BD7a4A565ccA6824207068437B93CD99ff16 @EthStorage"