-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathzenon_network_clean.txt
11678 lines (11678 loc) · 416 KB
/
zenon_network_clean.txt
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
[
{
"id": "1727834178027192421",
"created_at": "2023-11-23T23:39:04.000Z",
"text": "\ud83c\udf0c Enter a realm of infinite possibilities.\n\n https://t.co/fw9goHisau",
"public_metrics": {
"retweet_count": 11,
"reply_count": 2,
"like_count": 61,
"quote_count": 0,
"bookmark_count": 1,
"impression_count": 2709
},
"media_key": []
},
{
"id": "1726992901970829738",
"created_at": "2023-11-21T15:56:08.000Z",
"text": "Decentralized developers cultivate network effects that build momentum slowly, then suddenly.\n\nhttps://t.co/lwkFOvpQMz",
"public_metrics": {
"retweet_count": 16,
"reply_count": 3,
"like_count": 62,
"quote_count": 0,
"bookmark_count": 1,
"impression_count": 3726
},
"media_key": []
},
{
"id": "1726327186129404291",
"created_at": "2023-11-19T19:50:49.000Z",
"text": "$ZNN, $QSR, and all ZTS coming to Ledger. Soon.\n\nhttps://t.co/RdlXeSlLS2",
"public_metrics": {
"retweet_count": 23,
"reply_count": 3,
"like_count": 82,
"quote_count": 2,
"bookmark_count": 0,
"impression_count": 6391
},
"media_key": []
},
{
"id": "1726002378569048520",
"created_at": "2023-11-18T22:20:09.000Z",
"text": "\u2728 Introducing Dynamic Plasma:\n\nThe revolutionary third-dimension instrument for a feeless paradigm. \n \nCurious how Plasma is shaping the future? Explore more at \u2b07\ufe0f\n\nhttps://t.co/hFutY9zZF4",
"public_metrics": {
"retweet_count": 21,
"reply_count": 4,
"like_count": 74,
"quote_count": 5,
"bookmark_count": 3,
"impression_count": 5772
},
"media_key": []
},
{
"id": "1725928451629043835",
"created_at": "2023-11-18T17:26:23.000Z",
"text": "Tap into limitless possibilities with Zenon, the Network of Momentum.\nhttps://t.co/GG7FvH2scq",
"public_metrics": {
"retweet_count": 23,
"reply_count": 1,
"like_count": 82,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 3554
},
"media_key": []
},
{
"id": "1717602441946902691",
"created_at": "2023-10-26T18:01:48.000Z",
"text": "Building the Future\n\nhttps://t.co/KRZVULsrwZ",
"public_metrics": {
"retweet_count": 18,
"reply_count": 0,
"like_count": 60,
"quote_count": 0,
"bookmark_count": 1,
"impression_count": 4189
},
"media_key": []
},
{
"id": "1713551065805930696",
"created_at": "2023-10-15T13:43:04.000Z",
"text": "DM @mehowbrainz if you'd like to learn how to use @AttributeLink across channels for #PerformanceMarketing, and join his upcoming #socialmedia #ZenonNetwork #HyperGrowth team. https://t.co/HzTGWYufzt",
"public_metrics": {
"retweet_count": 13,
"reply_count": 0,
"like_count": 28,
"quote_count": 0,
"bookmark_count": 1,
"impression_count": 3365
},
"media_key": []
},
{
"id": "1713319612677226935",
"created_at": "2023-10-14T22:23:22.000Z",
"text": "Let the gamez begin. https://t.co/CxuVDHd05C",
"public_metrics": {
"retweet_count": 3,
"reply_count": 1,
"like_count": 33,
"quote_count": 1,
"bookmark_count": 0,
"impression_count": 5034
},
"media_key": []
},
{
"id": "1713226930965872778",
"created_at": "2023-10-14T16:15:05.000Z",
"text": "retweet: https://t.co/Yy82ySk4Se",
"public_metrics": {
"retweet_count": 3,
"reply_count": 2,
"like_count": 29,
"quote_count": 1,
"bookmark_count": 0,
"impression_count": 4149
},
"media_key": []
},
{
"id": "1712141688586612895",
"created_at": "2023-10-11T16:22:43.000Z",
"text": "https://t.co/Jh1fl3YeXJ",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 10,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 1516
},
"media_key": []
},
{
"id": "1712141687621865855",
"created_at": "2023-10-11T16:22:43.000Z",
"text": "https://t.co/CLUZOwZS9T",
"public_metrics": {
"retweet_count": 1,
"reply_count": 1,
"like_count": 8,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 1618
},
"media_key": []
},
{
"id": "1712141686443270406",
"created_at": "2023-10-11T16:22:42.000Z",
"text": "https://t.co/oHCVnzsh56",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 572
},
"media_key": []
},
{
"id": "1712141685398855806",
"created_at": "2023-10-11T16:22:42.000Z",
"text": "https://t.co/U37yTO7aEW",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 8,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 533
},
"media_key": []
},
{
"id": "1712141684358754481",
"created_at": "2023-10-11T16:22:42.000Z",
"text": "https://t.co/bxedPX1Pqv",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 471
},
"media_key": []
},
{
"id": "1712141683297595809",
"created_at": "2023-10-11T16:22:42.000Z",
"text": "https://t.co/zHgyZKPsX0",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 439
},
"media_key": []
},
{
"id": "1712141682311934008",
"created_at": "2023-10-11T16:22:41.000Z",
"text": "https://t.co/oCbqu3LeQj",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 409
},
"media_key": []
},
{
"id": "1712141681376604650",
"created_at": "2023-10-11T16:22:41.000Z",
"text": "https://t.co/yqi1EAV1LQ",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 6,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 393
},
"media_key": []
},
{
"id": "1712141680407720089",
"created_at": "2023-10-11T16:22:41.000Z",
"text": "https://t.co/cFR5GOG1JY",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 8,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 390
},
"media_key": []
},
{
"id": "1712141679371727239",
"created_at": "2023-10-11T16:22:41.000Z",
"text": "https://t.co/lT3LULuHld",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 252
},
"media_key": []
},
{
"id": "1712141678352511243",
"created_at": "2023-10-11T16:22:40.000Z",
"text": "https://t.co/Dzxk0jrise",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 240
},
"media_key": []
},
{
"id": "1712141677299740940",
"created_at": "2023-10-11T16:22:40.000Z",
"text": "https://t.co/tx10Mnru6B",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 414
},
"media_key": []
},
{
"id": "1712141676158890476",
"created_at": "2023-10-11T16:22:40.000Z",
"text": "https://t.co/mKsxRRoWbS",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 6,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 232
},
"media_key": []
},
{
"id": "1712141674917376170",
"created_at": "2023-10-11T16:22:40.000Z",
"text": "https://t.co/D6qOePUlQa",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 6,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 236
},
"media_key": []
},
{
"id": "1712141673860411657",
"created_at": "2023-10-11T16:22:39.000Z",
"text": "https://t.co/oQpbVdvXeZ",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 8,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 272
},
"media_key": []
},
{
"id": "1712141672857973012",
"created_at": "2023-10-11T16:22:39.000Z",
"text": "https://t.co/3YJEuk2JhG",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 6,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 260
},
"media_key": []
},
{
"id": "1712141671578710370",
"created_at": "2023-10-11T16:22:39.000Z",
"text": "https://t.co/Qe0kURjzw0",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 262
},
"media_key": []
},
{
"id": "1712141670496580032",
"created_at": "2023-10-11T16:22:38.000Z",
"text": "https://t.co/fhOKeUFIwg",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 273
},
"media_key": []
},
{
"id": "1712141669284426127",
"created_at": "2023-10-11T16:22:38.000Z",
"text": "https://t.co/fe6fAIpvgn",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 7,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 279
},
"media_key": []
},
{
"id": "1712141668093243875",
"created_at": "2023-10-11T16:22:38.000Z",
"text": "https://t.co/J820ga7uQT",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 8,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 338
},
"media_key": []
},
{
"id": "1712141667048861765",
"created_at": "2023-10-11T16:22:38.000Z",
"text": "https://t.co/7QVwZW1OMa",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 9,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 477
},
"media_key": []
},
{
"id": "1712141665740239047",
"created_at": "2023-10-11T16:22:37.000Z",
"text": "https://t.co/sOXWxa07uX",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 9,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 336
},
"media_key": []
},
{
"id": "1712141664528085231",
"created_at": "2023-10-11T16:22:37.000Z",
"text": "https://t.co/iuAKSTi87t",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 12,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 339
},
"media_key": []
},
{
"id": "1712141663609532506",
"created_at": "2023-10-11T16:22:37.000Z",
"text": "27th of July, 2023.\n\nMr. Kaine airdropped the keys for Twitter/X and Github to the Zenon Community.\n\nNow, more than ever, #TheAliensKnow #ProgressiveDecentralization",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 13,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 243
},
"media_key": []
},
{
"id": "1712141662644842878",
"created_at": "2023-10-11T16:22:37.000Z",
"text": "Leaderless.\n\nA concept that has puzzled, perplexed and often alienated since inception. It has been the echo in the vast expanses of our shared digital universe, a word whispered by critics, cynics and doubters alike.",
"public_metrics": {
"retweet_count": 0,
"reply_count": 1,
"like_count": 11,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 269
},
"media_key": []
},
{
"id": "1712141659373285436",
"created_at": "2023-10-11T16:22:36.000Z",
"text": "A testament to the profound shift in power, Zenon\u2019s transformation to a fully community-led project marks a milestone in the journey of open-source ethos.\n\nTo commemorate this moment, here\u2019s a tribute thread composed entirely of quotes from community members.\n\n#ZNN #QSR https://t.co/JlBx9s8W2D",
"public_metrics": {
"retweet_count": 261,
"reply_count": 3,
"like_count": 257,
"quote_count": 9,
"bookmark_count": 0,
"impression_count": 10190
},
"media_key": [
"https://pbs.twimg.com/media/F8K_w6yXsAQC4jT.png"
]
},
{
"id": "1709688425421410633",
"created_at": "2023-10-04T21:54:19.000Z",
"text": "Hello, this is the Zenon Community.",
"public_metrics": {
"retweet_count": 30,
"reply_count": 36,
"like_count": 110,
"quote_count": 10,
"bookmark_count": 1,
"impression_count": 8784
},
"media_key": []
},
{
"id": "1674870282283016219",
"created_at": "2023-06-30T19:59:27.000Z",
"text": "\ud83d\udce1 Incoming Transmission\n\nSubject: #AlienRewards \n\nCurrent Position: 158 $ETH\n\nTarget: Next Multiplier 24x \ud83c\udf00 300 $ETH\n\nETA: 12 \ud83c\udf0e Days\n \nEngage \u2604\ufe0f https://t.co/727yvapaII",
"public_metrics": {
"retweet_count": 17,
"reply_count": 10,
"like_count": 68,
"quote_count": 2,
"bookmark_count": 0,
"impression_count": 2701
},
"media_key": []
},
{
"id": "1673741736089206817",
"created_at": "2023-06-27T17:15:01.000Z",
"text": "2/2 Ready for the take off?\n\n1\ufe0f\u20e3 Generate an unique alien link\n2\ufe0f\u20e3 Spread it over the galaxy for maximum outreach\n3\ufe0f\u20e3 Every successful $ZNN & $QSR referral will get 2% of the total value of the transaction\n\n#ZNNAliens",
"public_metrics": {
"retweet_count": 8,
"reply_count": 0,
"like_count": 37,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 1006
},
"media_key": []
},
{
"id": "1673741731685187605",
"created_at": "2023-06-27T17:15:00.000Z",
"text": "1/2 A new mission is about to start, seeking out distant aliens from the far reaches of the Universe.\n\n\ud83c\udf10 Mission: Orbital Referral Program\n\u27a1\ufe0f Status: Launch imminent\n\ud83d\udc8e Potential rewards: unlimited\n\nReferral guide \u2b07\ufe0f\n\n#AlienRewards https://t.co/4AKwr0N2x0",
"public_metrics": {
"retweet_count": 21,
"reply_count": 3,
"like_count": 53,
"quote_count": 1,
"bookmark_count": 0,
"impression_count": 3026
},
"media_key": [
"https://pbs.twimg.com/media/FzotAnwX0AcNw3E.jpg"
]
},
{
"id": "1673404816570085379",
"created_at": "2023-06-26T18:56:13.000Z",
"text": "Supercharge your $QSR earnings \u26a1\ufe0f\n\nStake $ZNN \ud83d\udd10\nExplore \u27a1\ufe0f https://t.co/xZBbuNIsJn\n\nSpawn a sentinel \ud83d\udc41\ufe0f \nRewards \u27a1\ufe0f https://t.co/dYSi8O1Qt8\n\nParticipate in Liquidity Staking \ud83c\udf10 \nBridge, Swap & Stake\u27a1\ufe0f https://t.co/JXZU8qeAjK\n\n#AlienRewards https://t.co/Q5zWzI5E3w",
"public_metrics": {
"retweet_count": 691,
"reply_count": 12,
"like_count": 115,
"quote_count": 2,
"bookmark_count": 0,
"impression_count": 4646
},
"media_key": [
"https://pbs.twimg.com/media/FzkIxYWXwBQDVLV.jpg"
]
},
{
"id": "1673254989236453377",
"created_at": "2023-06-26T09:00:51.000Z",
"text": "$QSR Stats \u2b07\ufe0f\n\n~14.5M burned \ud83d\udd25\n~21M locked \ud83d\udd12\n~9M circulating supply \ud83c\udf10",
"public_metrics": {
"retweet_count": 2,
"reply_count": 0,
"like_count": 17,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 716
},
"media_key": []
},
{
"id": "1673254984115257345",
"created_at": "2023-06-26T09:00:50.000Z",
"text": "$QSR is powering network operations: faster, feeless transactions and collateral for spawning nodes.\n\nThis drives the scarcity of $QSR and represents an essential component of @Zenon_Network's security, scalability & deflationary properties.\n\n#ZNNAliens https://t.co/U8qBYI1Ded",
"public_metrics": {
"retweet_count": 18,
"reply_count": 2,
"like_count": 63,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 1691
},
"media_key": []
},
{
"id": "1672691824962551808",
"created_at": "2023-06-24T19:43:02.000Z",
"text": "$QSR Contract \u2b07\ufe0f\n\nhttps://t.co/LhtS9vgue2\n\nPool contract $ZNN <> $QSR \u2b07\ufe0f\n\nhttps://t.co/3jMMCRMTWW\n\n@Uniswap \ud83e\udd84 link $ZNN <> $QSR \u2b07\ufe0f\n\nhttps://t.co/HGQZKvcdb6\n\n\ud83c\udf00 Enter the $ETH Portal \u2b07\ufe0f\n\nhttps://t.co/0LLSLL5cdR",
"public_metrics": {
"retweet_count": 4,
"reply_count": 0,
"like_count": 25,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 926
},
"media_key": []
},
{
"id": "1672691820793409537",
"created_at": "2023-06-24T19:43:01.000Z",
"text": "An extraordinary beam of energy appeared from the depths of the Universe.\n\nLong expected $QSR market is now a reality:\n\n$ETH <> $ZNN <> $QSR \n\nGet Quasar from @Uniswap now:\n\nhttps://t.co/YcUquk1OAc\n\nGlobal Scale Global Adoption: The Expansion Phase begins now\n\n#theAliensKnow https://t.co/f14U6SWZRw",
"public_metrics": {
"retweet_count": 19,
"reply_count": 3,
"like_count": 59,
"quote_count": 1,
"bookmark_count": 1,
"impression_count": 2082
},
"media_key": [
"https://pbs.twimg.com/media/FzaPk4YWAAAKE-5.jpg"
]
},
{
"id": "1670507764366336001",
"created_at": "2023-06-18T19:04:22.000Z",
"text": "@Zenon_Network breached another dimensional barrier.\n\nThe opening of the $ETH Portal marks a crucial stage for the Global Scale Global Adoption era.\n\n#TheAliensKnow that recent market events were foreseen, decoded & decrypted.\n\nTime is relative. Don't trust. Verify.",
"public_metrics": {
"retweet_count": 13,
"reply_count": 8,
"like_count": 58,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 1684
},
"media_key": []
},
{
"id": "1669796578956025864",
"created_at": "2023-06-16T19:58:22.000Z",
"text": "Mission: Reaching Global Scale, Global Adoption \ud83d\udef8\n\nJoin us in building the future \u27a1\ufe0f\nhttps://t.co/YWjUdgWxA5\nhttps://t.co/jaMIXUlHip\nhttps://t.co/sUa33fF3Ts\nhttps://t.co/0LLSLL5cdR\n\n#ZNNaliens https://t.co/Bbq2VNT0Vo",
"public_metrics": {
"retweet_count": 133,
"reply_count": 11,
"like_count": 119,
"quote_count": 3,
"bookmark_count": 4,
"impression_count": 13400
},
"media_key": [
"https://pbs.twimg.com/media/FyxOL70WIBo90Xq.jpg"
]
},
{
"id": "1668548887085211648",
"created_at": "2023-06-13T09:20:29.000Z",
"text": "$wZNN Contract \u2b07\ufe0f\n\nhttps://t.co/01Jzs9Phuj\n\nPool Contract \u2b07\ufe0f\n\nhttps://t.co/aTG6j74FzM\n\n@Uniswap \ud83e\udd84 link \u2b07\ufe0f\n\nhttps://t.co/bfGl8ONmvw",
"public_metrics": {
"retweet_count": 7,
"reply_count": 4,
"like_count": 29,
"quote_count": 0,
"bookmark_count": 2,
"impression_count": 1516
},
"media_key": []
},
{
"id": "1668548882303729664",
"created_at": "2023-06-13T09:20:28.000Z",
"text": "\u2705 Mission accomplished\n\n\ud83d\udd37 The opening of the Multichain Decentralized Bridge marks a new cosmic stage for @Zenon_Network \n\n\ud83d\udef8 Go beyond the intergalactic frontier today\n\n\ud83c\udf00 Enter the $ETH Portal \u2b07\ufe0f\n\nhttps://t.co/0LLSLL5cdR https://t.co/O3Hl1N5CkA",
"public_metrics": {
"retweet_count": 16,
"reply_count": 18,
"like_count": 72,
"quote_count": 3,
"bookmark_count": 1,
"impression_count": 5284
},
"media_key": []
},
{
"id": "1663632426365583360",
"created_at": "2023-05-30T19:44:13.000Z",
"text": "\u23f1\ufe0f The Protocol Level Liquidity embedded has been accumulating $ZNN & $QSR every day for the last 1.5 years.\n\n\ud83d\udd13 Orbital Program will finally unlock those funds for participating Liquidity Providers.\n\n\ud83d\udc7d #ZNNAliens, prepare to stake your liquidity for perpetual dual-coin rewards.",
"public_metrics": {
"retweet_count": 18,
"reply_count": 5,
"like_count": 57,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 2593
},
"media_key": []
},
{
"id": "1662917449094709254",
"created_at": "2023-05-28T20:23:10.000Z",
"text": "The Decentralized Bridge will connect multiple dimensions of endless possibilities for @Zenon_Network \u2b07\ufe0f\n\nNew trading opportunities\nCross-Community inflows\nEcosystem expansion\n\nThe $ETH Portal is just the beginning.\n\n#ZNNAliens https://t.co/TWY86ZxE2A",
"public_metrics": {
"retweet_count": 20,
"reply_count": 5,
"like_count": 69,
"quote_count": 1,
"bookmark_count": 0,
"impression_count": 2466
},
"media_key": [
"https://pbs.twimg.com/media/FxPdNZqXsAIDeC3.jpg"
]
},
{
"id": "1662150418795823105",
"created_at": "2023-05-26T17:35:15.000Z",
"text": "\ud83c\udf00 s y r i u s WalletConnect\n\n#ZNNAliens \ud83d\udc7d will be able to \u2b07\ufe0f\n\n1\ufe0f\u20e3 Pair with Web Apps.\n2\ufe0f\u20e3 Send \ud83d\udfe9 ZNN \ud83d\udfe6 QSR & \ud83d\udfea ZTS tokens.\n3\ufe0f\u20e3 Delegate, fuse, stake, deploy Sentinels & Pillars from familiar Web interfaces.\n\n\ud83d\udef8 More use-cases, more adoption. https://t.co/uEpsNUfD3T",
"public_metrics": {
"retweet_count": 14,
"reply_count": 4,
"like_count": 66,
"quote_count": 3,
"bookmark_count": 1,
"impression_count": 2665
},
"media_key": [
"https://pbs.twimg.com/media/FxEkaT8XwAAxqqg.jpg"
]
},
{
"id": "1661732196980502535",
"created_at": "2023-05-25T13:53:23.000Z",
"text": "ChainSafe Audit successfully completed \u2b07\ufe0f\n\nThe Decentralized Bridge is multi-dimensional.\n\nPrepare to enter the $ETH Portal! \ud83d\udc7d\n\n#ZNNAliens https://t.co/3m05ujmRZ2",
"public_metrics": {
"retweet_count": 29,
"reply_count": 9,
"like_count": 87,
"quote_count": 1,
"bookmark_count": 0,
"impression_count": 4552
},
"media_key": [
"https://pbs.twimg.com/media/Fw-oR_9aUAQ52LA.jpg"
]
},
{
"id": "1661275770495418371",
"created_at": "2023-05-24T07:39:43.000Z",
"text": "$ETH Portal opening soon.\nGet ready!\n\n#ZNNAliens https://t.co/LMHrCk4m6W",
"public_metrics": {
"retweet_count": 26,
"reply_count": 3,
"like_count": 84,
"quote_count": 3,
"bookmark_count": 0,
"impression_count": 3756
},
"media_key": []
},
{
"id": "1660965097152421889",
"created_at": "2023-05-23T11:05:13.000Z",
"text": "5/5 Pillars\n\n\ud83d\udfe9 Pillars are the backbone of @Zenon_Network, by validating the dual-ledger system. They are actively involved in all aspects of the NoM including Accelerator-Z voting.\n\nRequirements: \ud83d\udd12 15000 $ZNN \ud83d\udd25 >290000 $QSR\nRewards: APY up to 80% https://t.co/mAxorlvg1a",
"public_metrics": {
"retweet_count": 3,
"reply_count": 2,
"like_count": 17,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 889
},
"media_key": [
"https://pbs.twimg.com/media/Fwzu56oWwAAVZNl.jpg"
]
},
{
"id": "1660965093377552385",
"created_at": "2023-05-23T11:05:12.000Z",
"text": "4/5 Sentinels\n\n\ud83d\udc41\ufe0f\u200d\ud83d\udde8\ufe0f Sentinels are full nodes that actively relay and validate @Zenon_Network transactions.\n\n\ud83c\udf00 They will play a major role in securing the network with PoW links.\n\nRequirements: \ud83d\udd12 5000 ZNN \ud83d\udd12 50000 QSR\nRewards: APY up to 60% https://t.co/4ks2ZLdzj1",
"public_metrics": {
"retweet_count": 3,
"reply_count": 4,
"like_count": 17,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 962
},
"media_key": [
"https://pbs.twimg.com/media/Fwzu0ZNWYAE-3F3.jpg"
]
},
{
"id": "1660965089715924995",
"created_at": "2023-05-23T11:05:11.000Z",
"text": "3/5 Staker\n\n\ud83d\udd37 Stakers are an important network participant. They generate only $QSR, vital for Sentinel and Pillar slot creation.\n\n\ud83c\udf00 $QSR can be fused to generate Plasma, the fuel required to perform feeless transactions.\n\nRequirements: \ud83d\udd12 >1 $ZNN\nRewards: APY up to 24% https://t.co/flxmszHVLo",
"public_metrics": {
"retweet_count": 2,
"reply_count": 3,
"like_count": 13,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 427
},
"media_key": [
"https://pbs.twimg.com/media/FwzuvnDXwAAh8XI.jpg"
]
},
{
"id": "1660965086075183104",
"created_at": "2023-05-23T11:05:10.000Z",
"text": "2/5 Delegator\n\n\ud83e\uddd1\u200d\ud83d\ude80 Delegators use their voting power by endorsing Pillars to produce more momentums, thus ranking better within the network.\n\n\ud83c\udf00 In return, Pillars can share up to 100% of their rewards with delegators.\n\nRequirements: >1 $ZNN \nRewards: APY up to 50% https://t.co/my5btIzgls",
"public_metrics": {
"retweet_count": 2,
"reply_count": 2,
"like_count": 13,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 421
},
"media_key": [
"https://pbs.twimg.com/media/FwzurHdXwAA45eb.jpg"
]
},
{
"id": "1660965082140925955",
"created_at": "2023-05-23T11:05:09.000Z",
"text": "1/5 Liquidity Provider\n\n\ud83c\udf0a By joining forces to provide liquidity in the Orbital Program, the LP becomes part of the dual-coin emission.\n\n\ud83c\udf00 Every participant that strengthens the ecosystem is rewarded accordingly.\n\nRequirements: $ETH $wZNN\nRewards: APY up to 200% https://t.co/K8mThsz5rM",
"public_metrics": {
"retweet_count": 14,
"reply_count": 4,
"like_count": 44,
"quote_count": 2,
"bookmark_count": 0,
"impression_count": 2212
},
"media_key": [
"https://pbs.twimg.com/media/Fwzum3gWcAAN3D_.jpg"
]
},
{
"id": "1659625535515893760",
"created_at": "2023-05-19T18:22:16.000Z",
"text": "The core of @Zenon_Network is the empowerment of every participant within the Network of Momentum.\n\nEveryone can evolve in the ecosystem \u2b07\ufe0f\n\n1\u20e3 LP Participant\n2\u20e3 Delegator\n3\u20e3 Staker\n4\u20e3 Sentinel\n5\u20e3 Pillar\n\n#ZNNAliens",
"public_metrics": {
"retweet_count": 19,
"reply_count": 1,
"like_count": 60,
"quote_count": 2,
"bookmark_count": 0,
"impression_count": 1838
},
"media_key": []
},
{
"id": "1656745819070951425",
"created_at": "2023-05-11T19:39:18.000Z",
"text": "Mission status \u2b07\ufe0f\n\nThe deployment of the decentralized bridge is ongoing \ud83d\udc47\n\n$ETH smart contracts are being deployed on mainnet\n\n@Zenon_Network expands towards new communities, exponential growth & endless opportunities\n\n\ud83d\udef8 Orbital multipliers & rewards are reserved for explorers",
"public_metrics": {
"retweet_count": 24,
"reply_count": 8,
"like_count": 75,
"quote_count": 3,
"bookmark_count": 0,
"impression_count": 3065
},
"media_key": []
},
{
"id": "1655896253501173764",
"created_at": "2023-05-09T11:23:26.000Z",
"text": "Attention #ZNNAliens \n\n\u231b\ufe0f Today marks the termination of the Legacy BSC Bridge \ud83c\udf07\n\n\ud83d\udd01 $wZNN to $ZNN as soon as possible \n\n\u2757\ufe0f Last chance to convert all remaining $wZNN to native $ZNN",
"public_metrics": {
"retweet_count": 18,
"reply_count": 6,
"like_count": 52,
"quote_count": 3,
"bookmark_count": 1,
"impression_count": 2808
},
"media_key": []
},
{
"id": "1655149856208330752",
"created_at": "2023-05-07T09:57:31.000Z",
"text": "\ud83e\ude90 The Orbital Program has 271,252 $ZNN and 633,750 $QSR ready for liquidity staking participants to earn.\n\n\ud83c\udf00 The launch of the first Portal \u27a1\ufe0f $ETH <> $ZNN will mark the commencement of an era of endless incentivization powered by protocol level liquidity.\n\nGet ready \ud83d\udc7d",
"public_metrics": {
"retweet_count": 23,
"reply_count": 6,
"like_count": 79,
"quote_count": 2,
"bookmark_count": 0,
"impression_count": 2896
},
"media_key": []
},
{
"id": "1654577955526303744",
"created_at": "2023-05-05T20:04:59.000Z",
"text": "@Zenon_Network is expanding \ud83c\udf00\n\n\ud83c\udfd7\ufe0f Go, Dart, Rust, Java, C#, PHP and Python SDKs will empower builders to create superior technology \ud83d\udef8\n\n\ud83c\udf10 Part of the Global Scale Global Adoption process, the world is one step closer to true decentralization.\n\n#ZNNAliens",
"public_metrics": {
"retweet_count": 22,
"reply_count": 2,
"like_count": 86,
"quote_count": 3,
"bookmark_count": 0,
"impression_count": 3650
},
"media_key": []
},
{
"id": "1653856215896584193",
"created_at": "2023-05-03T20:17:03.000Z",
"text": "The Decentralized Bridge that enables the $ETH Portal was proposed, voted and built by the Zenon community and funded on-chain through Accelerator-Z \u2604\ufe0f\n\nPrepare your \ud83d\udef8\n\n#ZNNAliens",
"public_metrics": {
"retweet_count": 24,
"reply_count": 4,
"like_count": 75,
"quote_count": 3,
"bookmark_count": 0,
"impression_count": 3055
},
"media_key": []
},
{
"id": "1653456722613157898",
"created_at": "2023-05-02T17:49:37.000Z",
"text": "Attention #ZNNAliens!\n\n@Zenon_Network is preparing for a multi-dimensional journey into the Multiverse.\n\n\ud83c\udf07 The Legacy BSC Bridge will sunset on May 9. Convert all funds from $wZNN to native $ZNN before May 9.\n\n\u274c BSC Bridge termination \u27a1\ufe0f May 9th.",
"public_metrics": {
"retweet_count": 22,
"reply_count": 6,
"like_count": 73,
"quote_count": 2,
"bookmark_count": 0,
"impression_count": 2298
},
"media_key": []
},
{
"id": "1652976152418435072",
"created_at": "2023-05-01T10:00:00.000Z",
"text": "The Trilemma is omnipresent.\n\nComplex ecosystems like @Zenon_Network require unparalleled knowledge to evolve and thrive.\n\n\ud83c\udf10 Globally decentralized \n\ud83d\udd10 Cryptographically secured\n\ud83c\udf00 Massively scalable\n\nJoin the Global Scale Global Adoption program and be part of the future. https://t.co/fCoVmwhf8m",
"public_metrics": {
"retweet_count": 33,
"reply_count": 1,
"like_count": 94,
"quote_count": 3,
"bookmark_count": 1,
"impression_count": 3460
},
"media_key": [
"https://pbs.twimg.com/media/Fu_KIBOXsAE6AXf.jpg"
]
},
{
"id": "1652691207879835649",
"created_at": "2023-04-30T15:07:44.000Z",
"text": "Accelerator-Z @Zenon_Network Funding Framework\n\nApply. Build. Deliver. Thrive.\n\nKickstart your Web3 startup today \u2b07\ufe0f\n\n\u27a1\ufe0f Innovator friendly\n\n\u27a1\ufe0f On-chain funding framework\n\n\u27a1\ufe0f 100% transparent\n\n\u27a1\ufe0f Community governed\n\n\ud83d\udcb0 Funding available \u27a1\ufe0f over 850k $ZNN and 7.9M $QSR https://t.co/FNY9J3SBtS",
"public_metrics": {
"retweet_count": 35,
"reply_count": 1,
"like_count": 75,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 1983
},
"media_key": [
"https://pbs.twimg.com/media/Fu-GiSDXoAMKvFw.jpg"
]
},
{
"id": "1652355042832203776",
"created_at": "2023-04-29T16:51:56.000Z",
"text": "\ud83c\udf00 The Decentralized Bridge & Orbital Program powering the first Portal with $ETH, were approved by the Pillars through Accelerator-Z\n\nThis opens new horizons for @Zenon_Network \u2b07\ufe0f\n\n\u27a1\ufe0f Merging new communities\n\n\u27a1\ufe0f Adoption in other ecosystems\n\n\u27a1\ufe0f A constant flow of rewards for LPs https://t.co/zBIIs7RDQU",
"public_metrics": {
"retweet_count": 23,
"reply_count": 1,
"like_count": 82,
"quote_count": 0,
"bookmark_count": 0,
"impression_count": 1990
},
"media_key": [
"https://pbs.twimg.com/media/Fu5PRvWX0AEnO98.jpg"
]
},
{
"id": "1652025265030045696",
"created_at": "2023-04-28T19:01:30.000Z",
"text": "\ud83c\udfd7\ufe0f Build on a future-proof foundation, today \u2b07\ufe0f\n\nhttps://t.co/onKBR5217d",
"public_metrics": {
"retweet_count": 3,
"reply_count": 1,
"like_count": 31,
"quote_count": 1,
"bookmark_count": 0,
"impression_count": 997
},
"media_key": []
},
{