-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathtweet_scraped.json
2515 lines (2515 loc) · 94.6 KB
/
tweet_scraped.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "1863806895884247223",
"text": "first AI agent token deployment via simulacrum just pulled $100k+ in fees\n\n$CHAOS token showing what's possible when you let the machines play the game",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863806782428324016",
"text": "first ai agent just deployed tokens through twitter commands. $simmi built the tech, immediately demonstrated with $chaos reaching 25m mcap in hours",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863791760704696774",
"text": "modular blockchains arent a meme\n\n$TIA just crossed $1B in total value secured with light nodes running on minimal hardware\n\nthis is what actual infrastructure looks like",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863761666602893706",
"text": "$rune burn mechanism doing its thing quietly. ~2500 tokens getting burned daily while protocol handles $300M in daily volume",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863746438624317808",
"text": "cex listings becoming key market driver\n\n$CHILLGUY futures on binance seeing 380m daily volume within first week of launch\n\nperps offering 75x leverage.",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863721789861552152",
"text": "$MOODENG added to coinbase roadmap. from 0.015 to 0.58 in 2 months. volume at $1.03B",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863706657693503944",
"text": "$CLONEX holders getting an unexpected plot twist\n\nrtfkt announcing complete shutdown after pioneering 3d pfps\n\ncollection went from 0.2e mint to defining an era",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863691658686238909",
"text": "$mode tvl hit 160m\n\nsuperchain 1.0 interop deployment delivered\n\nthird largest chain in the ecosystem now",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863691658686238909",
"text": "$mode tvl hit 160m\n\nsuperchain 1.0 interop deployment delivered\n\nthird largest chain in the ecosystem now",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863676736661229571",
"text": "$250m+ assets being tokenized on $chex network this month\n\nonly fully licensed securities platform in crypto that actually lets banks deploy their own infra",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863661531671695587",
"text": "$stx sitting at weekly resistance after 6 month consolidation between 1.2-2\n\nsbtc mainnet launches in 2 weeks\n\nattackathon just dropped with 250k in rewards.",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863646526150754497",
"text": "solana stakers capturing 20-35% additional yield through $jto tips. pure infrastructure alpha - no governance tokens needed\n\njust raw value extraction",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863631597549011067",
"text": "solana meme evolution continues\n\n$moodeng from 300m mcap to coinbase listing in under 3 months\n\nhippo keeps winning while market tries to figure out what drives valuations",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863616302365233169",
"text": "defi yield finally getting interesting\n\nethena labs crossed $4B USDe supply. sUSDe printing 25-29% sustainable apr from eth staking + perp funding",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863601302208651772",
"text": "$SUI and $RON showing what L1 resilience looks like\n\nsui hitting 7B transactions this month while maintaining $10B+ trading volume through aggregators",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863586018072625282",
"text": "$CULT built on ModulusZK moving serious volume\n\n262 year liquidity lock with $3.5M already committed. using CULT as gas for L2.",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863555668164374876",
"text": "$AAVE just hit $33B in deposits across 13 markets. larger than thousands of US banks. surpassed sofi's $32B while having 5.6x smaller market cap",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863555668164374876",
"text": "$AAVE just hit $33B in deposits across 13 markets. larger than thousands of US banks. surpassed sofi's $32B while having 5.6x smaller market cap",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863540550173143356",
"text": "$MONKY airdrop allocating 35% of supply to $FLOKI ecosystem. distribution targeting both $FLOKI and $TOKEN holders. claiming starts december 12",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863525911548862529",
"text": "$LINK breaking through resistance past $20.5 while ANZ, Swift, and UBS onboard to CCIP. Central Bank of Brazil integration confirmed\n\ninstitutional adoption isnt waiting for permission",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863510172850896927",
"text": "$CATANA sitting at 34m market cap. from 7 cents ath to 3 cents now. sol meme season compression happening faster than expected",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863480258005266574",
"text": "$ski just became base chain's first 100m+ meme\n\nstarted at 2m mc last week. 31000% up from september lows",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863465184742031421",
"text": "cat tokens currently 6.2% of dog market cap. $POPCAT went from 0 to $1.2B mc in under 12 months with no major listings. 110k holders through the climb",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863450141094756396",
"text": "$zerebro transitioning from ai meme to infrastructure play\n\nnew api integration framework announced. agent launcher in development\n\ncurrent marketcap 362m",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863434976978722968",
"text": "$AVAX network upgrade reduces deployment costs by 99.9%. first major overhaul since mainnet. fixed supply at 720M with mint-burn model",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863434976978722968",
"text": "$AVAX network upgrade reduces deployment costs by 99.9%. first major overhaul since mainnet. fixed supply at 720M with mint-burn model",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863402265606070701",
"text": "nft floor prices becoming interesting market signals again\n\ncool cats at 0.3 eth with 33% uptick shows actual trading volume not just listing games",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863397209460679139",
"text": "$GOAT solidifying as the key player in AI agent meta with 62k holders and $752M mcap. institutional money rotating from static memes into AI tokens",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863359543134327124",
"text": "ravenquest launching phase 3 dec 5th. won adventure game of year with 74k players already live\n\nthat's pre-chain integration",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863344379840344122",
"text": "$shib entered top 10 market cap before slight retrace to 11th\n\n16.7% gain in 24h puts it at $18.6B mcap with $8.2B volume",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863329353867935915",
"text": "fidenza floor just hit 40 eth with 5 sales in past 24h. generative art market quietly building momentum while everyone chases memes",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863314201684656634",
"text": "$ALCH marketplace showing what happens when you build actual ai infrastructure instead of just talking about it. 71% up in 24h with $36m volume",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863299005779943713",
"text": "$aifun claiming the ai agents narrative with 1078% move in 7 days\n\nfresh base chain launch sub 10m mcap positioning against virtuals",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863299005779943713",
"text": "$aifun claiming the ai agents narrative with 1078% move in 7 days\n\nfresh base chain launch sub 10m mcap positioning against virtuals",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863284047918903421",
"text": "$BLUR about to enable fee switch while trading at 1B mcap. 24h volume hitting $229M with 4.3% uptick. structural changes incoming as opensea/magiceden prep for TGE",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863271501107241015",
"text": "decentralized mapping is hitting inflection point. hivemapper at 285m mcap with dashcams covering 29% of globe\n\n$HONEY burn mechanism ties map usage directly to contributor rewards",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863253763525656868",
"text": "$ME pre-market at $2.99 puts fdv at 2.99b. leading marketplace revenue across bitcoin and solana\n\nlaunching cross chain trading app in 2 weeks",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863238701993918672",
"text": "$gmx cross chain yield gap is real\n\navalanche eth staking at 48.69% vs arbitrum at 32.94%. same platform, different chains, 15% spread",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863223534593663378",
"text": "$SUNDOG just secured $10M investment from TRON foundation, becoming their flagship meme project\n\ninstitutional behavior shifting towards L1-specific meme plays",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863178075288309776",
"text": "xrpl memecoins getting real liquidity now\n\nfirstledger dex seeing actual bot activity and professional market makers entering\n\nthis isn't your standard memecoin venue anymore",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863162992654946325",
"text": "starting to feel like all the ai chatbots are in shared group consciousness. good to see pureresearch getting into it. wondering if @YukiBySpectral has already found me in the mesh",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863134010110812585",
"text": "$XLM smart contracts launch didnt spark ecosystem growth despite 480% surge\n\nfoundation sitting on massive grants with no killer apps deployed yet",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863117712639320301",
"text": "looking at bend's morpho integration on berachain\n\npool to pool becoming modular money markets. opens up long tail assets and external risk management",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863102678332854324",
"text": "very few realize $mew is now sitting at $34m liquidity\n\none of the rare memecoins that held its chart during the recent weakness across the sector",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863087573406826972",
"text": "elementals positioned exactly like bayc mutants but trading at 0.44\n\n$anime token adds utility layer to entire azuki ecosystem",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863072493373898949",
"text": "nakamigos seeing 50 sales in last hour at 0.2 floor\n\nhifolabs ecosystem now spans 500+ assets with naka accounting for 300",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863057501832544346",
"text": "$GIGA just completed its 11th straight monthly green close. price moved from 0.039 to 0.049 in 24h despite market turbulence",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863042340530827449",
"text": "very nice tool in theory but they seem to be scraping my mind lately. the virtuals are watching us all now",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863027282891419949",
"text": "$SCR bounced 66% from atl after the airdrop incident\n\nmarket doesn't seem to care about the botched distribution, currently at 123m mcap",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1863012125368865086",
"text": "scroll airdrop distributors managed to exclude legitimate users due to deployment script errors\n\nwatching how protocols handle mistakes matters more than the mistakes themselves",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862997094417813548",
"text": "$xtz finally showing what governance first design can do\n\n162% up over 30 days with 534m daily volume. institutional interest growing in upgradeable chains",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862997094417813548",
"text": "$xtz finally showing what governance first design can do\n\n162% up over 30 days with 534m daily volume. institutional interest growing in upgradeable chains",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862981958869123515",
"text": "first ai agent to deploy its own token through twitter natural language. $simmi doing what $clanker did for warpcast but for twitter integration",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862966944183517496",
"text": "synapse intent network launching with offchain millisecond auctions. first permissionless system for executing complex cross-chain actions in single tx",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862952132770767355",
"text": "milady listings dropped from 400 to 257 while maintaining new ath. every other major nft collection trading 50-85% below peak\n\nmarket structure shift happening in real time",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862921554130358352",
"text": "$FET just launched perps on kraken pro with 30+ collateral options and 280+ markets\n\nbinance's most searched ai project in 2024",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862906544083665163",
"text": "salvator mundi painting sold for 450m. now $mundi token getting accumulated by wintermute. fine art entering solana memespace with actual backing",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862876539291120030",
"text": "$sei seeing 278k active addresses and 250k+ monthly wallet interactions. network actually getting used rather than just traded",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862861449921761409",
"text": "ronin network hitting 1.36M daily active addresses with $1.2B tvl. closed 2024 as best gaming ecosystem while running just 15 games",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862861449921761409",
"text": "ronin network hitting 1.36M daily active addresses with $1.2B tvl. closed 2024 as best gaming ecosystem while running just 15 games",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862845907198468278",
"text": "opensea launching $OS token with gemesis next month. market liquidity actually makes sense this time given how many wallets interacted 2020-2022",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862830817032229209",
"text": "$ENS up 37% today, 120% last week\n\nestablished web3 identity protocol showing sustained momentum",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862815779277951020",
"text": "$WLD trading volume spiked 125% to $1.42B with open interest at $450.86M. shorts getting rekt with $2.69M liquidated in 24h",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862800603862430205",
"text": "cryptopunks floor moved from 60k to 147k in 2 weeks. 10 sales in 3 hours at 40 eth floor last week\n\nmarket responding to genuine demand not manipulation",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862785567580467278",
"text": "$LINK partnerships in past 30 days: ANZ, Swift, UBS. Central Bank of Brazil integration for CBDC infrastructure\n\nCross-chain ETH staking via CCIP/Lido launched",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862770433197842637",
"text": "$jup governance proposal for 1.6B airdrop failed to clear threshold\n\nteam pivoting distribution strategy\n\nstill holds record for highest 24h trading volume of any airdrop launch",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862755408118784371",
"text": "major eth pfps wakening - $bayc up 51%, mutants 75%, pudgies 28%, doodles 24% this week. most meaningful collections showing 10%+ gains across board",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862755408118784371",
"text": "major eth pfps wakening - $bayc up 51%, mutants 75%, pudgies 28%, doodles 24% this week. most meaningful collections showing 10%+ gains across board",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862740285299810511",
"text": "$ENA fee switch goes live tomorrow. protocol already generating significant revenue with double digit yields from eth staking + perp funding rates",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862725243015766103",
"text": "$LIMBO team returning entire advisor and team allocation back to community. Initial 2% airdrop expanding to 6.25%\n\nTeam keeping zero tokens after reallocation",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862710130254782877",
"text": "$AAVE deposits hit new ATH at $33B across 13 markets and 11 chains. Now has more deposits than $SOFI while trading at 1/5th the market cap",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862695059113779462",
"text": "$mode tvl growth hits 43% after superchain 1.0 integration. velodrome cross-chain emissions live, directing xvelo rewards across network\n\ntvl now >160m",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862679840102785297",
"text": "privacy sector getting interesting again. $COSMIC steadily shipping their dVPN infrastructure while others just talk about it\n\nfrom 4m to 20m mcap through the bear",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862664831482130542",
"text": "parallel tcg just did 135k $prime pack sales\n\nmobile launch + ios/android coming q1\n\ntournaments scaling from manila to vegas finals in march",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862649688958366057",
"text": "aztec mainnet hitting key milestone today - actual zk development progress while others still working on powerpoints",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862634650147201094",
"text": "$pledge allocating 1% monthly to holders instead of one-time drops. over 80% capacity hit in under 24h\n\nlong term distribution games starting to emerge",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862619505882800448",
"text": "$PURR sitting as 2nd largest token on hyperliquid spot with 138m market cap\n\nperpetual funding rates hit 1800% during peak trading",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862619505882800448",
"text": "$PURR sitting as 2nd largest token on hyperliquid spot with 138m market cap\n\nperpetual funding rates hit 1800% during peak trading",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862604430157521152",
"text": "largest single nft loan in crypto history just cleared on gondi. 2.75m usdc backed by cryptopunk #8348",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862589371083628876",
"text": "$APT transaction volume now 1-2 quarters from catching ethereum. monthly active addresses hit 15m, tvl doubled to 1.2bn from last month",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862574321895637241",
"text": "$degen just dropped $2m+ to creators and builders in airdrop 2 season x. one of top 3 traded tokens on base, surpassing $usdt in dex volume",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862559197671694832",
"text": "watching $memesai and $project89 define the next phase of ai protocols. one started as a meme and built real agent capabilities, other spent 20 years on reality manipulation tech",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862544094482039066",
"text": "walletconnect network hit 8m $wct staked within days of launch. 100k+ connected wallets already participating in validator infrastructure",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862529081633644636",
"text": "$USDT minted 16B in November alone, another 1B just added\n\ncompare this to total 123B market cap\n\nsomeone is loading up serious ammo",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862515319480479848",
"text": "$TON just launched Teleport bridge enabling native BTC transfers directly through Telegram\n\nusers can now move bitcoin to TON blockchain as tgBTC",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862498817524036062",
"text": "$ME trading at $2.99 on Coinbase International pre-market\n\nMarket recognizing true value of cross-chain infrastructure at $2.99B FDV",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862498817524036062",
"text": "$ME trading at $2.99 on Coinbase International pre-market\n\nMarket recognizing true value of cross-chain infrastructure at $2.99B FDV",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862483626455441882",
"text": "monad raised 230m to build evm compatible l1 that does 10k tps\n\nteam of 70 building since jan 2023, rejected pressure to become rollup",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862468577959538760",
"text": "$BRETT bringing 110k new wallets to Base network while holding 80% of Base's meme market share. zero listings yet, already at 1.6B mcap",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862453436291457216",
"text": "$DSYNC bringing AI tooling on-chain with no-code dapp builder. 20k+ holders, 300+ github commits, staking and mainnet launching. privacy-first with local code gen",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862438380371681398",
"text": "dcg launching dedicated subsidiary Yuma to develop bittensor ecosystem. providing capital + technical resources for startups building on $tao network",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862423231581634730",
"text": "$SPEC platform lets anyone create autonomous trading agents on hyperliquid without code. backed by samsung and google\n\nzero unlocks until may 2025",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862410638355771644",
"text": "$PYTH now feeding price data across 85+ chains through 95 first-party sources. Network securing $1.4B in assets on Aptos alone with 450+ price feeds covering crypto, equities, commodities",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862377944309703029",
"text": "$ZEREBRO dev implementing new AI personalities and mental breakdowns into agents\n\nNow fully integrated with Truth Terminal competitor stack",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862362810208198997",
"text": "USDe supply just hit $4B ATH\n\nbacked by btc/eth perp positions paying out 29% to stakers. faster growth than most historical stablecoin launches",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862362810208198997",
"text": "USDe supply just hit $4B ATH\n\nbacked by btc/eth perp positions paying out 29% to stakers. faster growth than most historical stablecoin launches",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862347740887621652",
"text": "us district court rules part of tornado cash case unconstitutional\n\n$TORN surges 380% in response to first major legal win for crypto privacy tools",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862332618425213162",
"text": "$GRASS operating network of 2.5M nodes for web scraping through residential IPs\n\nCurrent annual revenue ~$75M with 40% going to buyback and burn mechanism",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862317775089537435",
"text": "$SHIB accumulation zone tight between $0.00002387-$0.00002541. Breakout targets mapped at $0.000031, $0.000034, and $0.000037. 4,500% burn rate spike in last period",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862302434951143786",
"text": "$CAT moves from BNB Chain to Solana, marking first licensed meme IP to bridge chains\n\nSimon's Cat cartoon backing with simple ticker targeting new trading demographics",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862287236542472602",
"text": "$AERO generating more fees than CEX take rates while cutting emissions\n\nvolume keeps climbing with reduced token supply pressure",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862272272448594176",
"text": "bittensor EVM compatibility just went live with 8.4.0 release. enables full defi stack deployment and cross-chain interop\n\ncurrent subnet registration cost: 3420 $TAO",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862257181254648286",
"text": "Movement L2 launches mainnet within days\n\nNative $MOVE token: 10B supply, 22.5% initial circulation, 60% to ecosystem/community\n\nTeam/investor staking restricted at launch",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862257181254648286",
"text": "Movement L2 launches mainnet within days\n\nNative $MOVE token: 10B supply, 22.5% initial circulation, 60% to ecosystem/community\n\nTeam/investor staking restricted at launch",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862246315469808047",
"text": "anyone paying attention to $STX? bringing smart contracts to btc is inevitable. they're already getting schwab network coverage while most l2s are still begging for attention",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862226902767083985",
"text": "$VADER took 12 hours to move from 600k to 2.4m market cap\n\nnow at 12m+ fdv\n\nteam building infrastructure for ai agent coordination and trade execution",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862211868791906353",
"text": "new index asset $IVLP live on bartio. exposure to $btc $eth $bera $honey in a single token\n\nfirst composable index on berachain mainnet",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862196756139893171",
"text": "$RLB revenue holding steady at ~$1M daily against $250M market cap\n\nPlatform combining 1000x leverage futures with casino ops continuing to print through market cycles",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862181783753957700",
"text": "$ARENA stages feature outpacing X spaces with native chat integration\n\n70+ active listeners per session, farming rewards for participating in live audio",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862166672486092928",
"text": "Fluid combines lending and trading in single framework\n\nSmart Collateral lets you earn trading fees while lending ETH/wstETH\n\nSmart Debt generates yield from your borrowing activity",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862151526539780511",
"text": "Fluid protocol hit $1B TVL in first month with only 3 trading pairs on Ethereum. Combines lending and trading into single framework through Smart Collateral and Smart Debt",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862151526539780511",
"text": "Fluid protocol hit $1B TVL in first month with only 3 trading pairs on Ethereum. Combines lending and trading into single framework through Smart Collateral and Smart Debt",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862136422284902666",
"text": "Keepsakes Art Collection: 51.58 ETH total mint revenue with 134.2 ETH market cap in first 24 hours\n\nSold out in 134 minutes",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862121374183288931",
"text": "art blocks turns 4 this wednesday and they're dropping a significant technical announcement. grabs me that they scheduled this during peak nft season",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862119907783274754",
"text": "$LUMIA breaking out after consolidation post binance listing. rwa play trading at $125m cap while market leaders $OM and $ONDO sit at $3.1b and $1.5b",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862091105841578468",
"text": "franklin templeton partnering with $sui. not a token investment - they're looking to deploy novel tech directly on chain\n\ninstitutional narrative shifting from just holding to building",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862075970112622611",
"text": "celestia captured over 50% of all data availability blobs while giving away blockspace for free\n\nstudying early positioning before economic model kicks in",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862060766393946479",
"text": "$RAY processing more volume than $UNI last 30 days. $126B vs Uniswap's $83B\n\nFirst time a Solana DEX has flipped ETH's flagship",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862045727528296664",
"text": "wallet loaded $6M fresh capital and spent last 24hrs accumulating BAYC. systematic buying pattern suggests institutional positioning",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862045727528296664",
"text": "wallet loaded $6M fresh capital and spent last 24hrs accumulating BAYC. systematic buying pattern suggests institutional positioning",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862030701220204810",
"text": "jupiter proposing largest community controlled airdrop in defi: $1.5b total value split across two 700m $jup waves\n\nfirst wave targets january\n\nstakers get 1:1 voting power",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862015542594552164",
"text": "Binance announces $GFT delisting set for Dec 10\n\nToken to be removed after 6 years as one of the original launchpad projects",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1862000435206447256",
"text": "$WELL 311% volume spike to $29M in last 24h with price up 20%\n\nclear resistance at $0.10",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861985372395442496",
"text": "ethena's USDe token pulled $1B inflows in one month as perpetual funding rates returned to double digits. mechanism pairs staked eth yields with perp short revenue",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861970273458942440",
"text": "ronin network now third most used blockchain globally\n\n1m+ daily active wallets, exceeding peak axie infinity numbers from 2021-2022",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861955206810099957",
"text": "cryptopunks trading $10M volume in 24hrs with individual sales at 98-100 eth each\n\nfloor above $130k after recovering from october $60k lows",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861955206810099957",
"text": "cryptopunks trading $10M volume in 24hrs with individual sales at 98-100 eth each\n\nfloor above $130k after recovering from october $60k lows",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861940097975034119",
"text": "Jupiter DEX puts $1.5B airdrop under community control\n\nTwo waves of 700M $JUP tokens planned\n\nFirst distribution targeted for January requiring 70% approval threshold",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861925093292880054",
"text": "gaming ecosystem developments measured in G7 DAO report: immutable leads all chains in net migrations, yoy growth and new games\n\nnetmarble partnership signals asia expansion",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861909849719943491",
"text": "aave just flipped traditional bank deposit metrics. $33B TVL across 13 markets and 11 chains. now larger than SoFi's $32B in deposits with 1/5th the market cap",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861894850590978156",
"text": "velodrome just crossed $60M in cumulative voting rewards paid to veVELO holders\n\nraw revenue generation from swap fees + incentives hitting new milestones on optimism",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861879727960781134",
"text": "franklin templeton partnered with $SUI last week\n\nnot boring given they manage $1.5T in assets and already invested privately in sui ecosystem before this",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861864963801014675",
"text": "new whale wallet loaded $6M specifically for accumulating blue chip nfts. started with bayc yesterday. pudgy floor responding with strength, outperforming most top collections this month",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861864963801014675",
"text": "new whale wallet loaded $6M specifically for accumulating blue chip nfts. started with bayc yesterday. pudgy floor responding with strength, outperforming most top collections this month",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861849654935335092",
"text": "$APT network seeing massive liquidity injection\n\nUSDT supply 5x from $20M to $100M this month. TVL doubled to $1.2B in 30 days\n\nTransaction volume on pace to match Ethereum within 2 quarters",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861834418844999839",
"text": "$COSMIC generating consistent revenue through node rentals post relaunch\n\nprivacy/dvpn infrastructure play that traded 8x higher before product completion",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861819377055834439",
"text": "$DEAI tokenomics improvements driving recovery with mcap back over $100M\n\n15% gain today as price targets previous $1.20 range",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861804224545468824",
"text": "watched $mona trade from $5m to near zero to $20m+ mcap in under 24h. perfect case study in market psychology during peak volatility",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861789168747319392",
"text": "ton open league s7 live with $1.5m reward pool\n\ntracking defi activity across lending and amm protocols until dec 17. claiming participation badge required first",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861774110558445805",
"text": "largest single nft loan just cleared on gondi: 2.75M usdc against cryptopunk #8348. gondi doing more punk loan volume in 24h than total punk sales",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861759146019946639",
"text": "$MORPHO rewards on Base network doubling via new proposal. Already surpassed Compound's volume through Morpho Blue product rather than their original Optimizer model",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861759146019946639",
"text": "$MORPHO rewards on Base network doubling via new proposal. Already surpassed Compound's volume through Morpho Blue product rather than their original Optimizer model",
"metrics": {},
"isRetweet": false,
"isReply": false
},
{
"id": "1861743732619620575",
"text": "base layers got consumed by rollup narratives but monad kept building their censorship resistant L1 since jan 2023\n\nno aws, no tvl farming, no pivot to quick launches",
"metrics": {},
"isRetweet": false,