-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEAR_projects.html
981 lines (777 loc) · 303 KB
/
NEAR_projects.html
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
<!DOCTYPE html>
<html>
<head><meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NEAR_projects</title><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
<style type="text/css">
@import url(https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400%3b700&display=swap);
body {
background-color: #ece5ba;
margin: 0;
font-family: 'Roboto Mono', monospace;
color: #14355e;
}
footer {
font-size: 1.1em;
text-align: left;
padding: 40px
}
a, a:active {
color: inherit;
}
a.anchor-link:link {
text-decoration: none;
padding-left: 10px;
visibility: hidden;
}
h1:hover .anchor-link,
h2:hover .anchor-link,
h3:hover .anchor-link,
h4:hover .anchor-link,
h5:hover .anchor-link,
h6:hover .anchor-link {
visibility: hidden;
}
h1, h2 {
text-align: left;
}
.cell {
width: 80%;
margin: 0 auto;
}
.code-cell {
box-sizing: border-box;
margin-top: 20px;
background-color: #14355e;
color: #ece5ba;
padding: 20px;
border-radius: 7px;
}
.code-cell .code-line-nr {
vertical-align: top;
text-align: right;
padding-right: 10px;
user-select: none;
}
.code-cell .code-line {
white-space: pre-wrap;
color: #ffffff;
}
.code-cell .output-separator {
margin: 15px 0;
border: 1px solid #ece5ba;
background-color: #ece5ba;
border-radius: 1px;
}
/* string */
.code-cell .code-line .s1,
.code-cell .code-line .s2 {
color: #dda686;
}
/* comment */
.code-cell .code-line .c1 {
color: #719271;
}
/* number */
.code-cell .code-line .mi {
color: #9bff9b;
}
/* keywords */
.code-cell .code-line .k,
.code-cell .code-line .kn,
.code-cell .code-line .ow {
color: #d894ff;
}
/* dataframe */
.dataframe {
border-collapse: collapse;
}
.dataframe td,
.dataframe th {
border: 2px solid #ece5ba;
padding: 5px;
}
/* responsive */
@media screen and (max-width: 1024px) {
.cell {
width: 80%;
}
}
@media screen and (max-width: 768px) {
.cell {
width: 90%;
}
}
@media screen and (max-width: 480px) {
.cell {
width: calc(100% - 20px);
margin: 20px 10px 0 10px;
}
}
</style>
<!-- Load mathjax -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe"> </script>
<!-- MathJax configuration -->
<script type="text/x-mathjax-config">
init_mathjax = function() {
if (window.MathJax) {
// MathJax loaded
MathJax.Hub.Config({
TeX: {
equationNumbers: {
autoNumber: "AMS",
useLabelIds: true
}
},
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true,
processEnvironments: true
},
displayAlign: 'center',
CommonHTML: {
linebreaks: {
automatic: true
}
}
});
MathJax.Hub.Queue(["Typeset", MathJax.Hub]);
}
}
init_mathjax();
</script>
<!-- End of mathjax configuration --></head><body><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<script type="text/javascript">
window.PlotlyConfig = {MathJaxConfig: 'local'};
if (window.MathJax && window.MathJax.Hub && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: "STIX-Web"}});}
if (typeof require !== 'undefined') {
require.undef("plotly");
requirejs.config({
paths: {
'plotly': ['https://cdn.plot.ly/plotly-2.16.1.min']
}
});
require(['plotly'], function(Plotly) {
window._Plotly = Plotly;
});
}
</script>
</div>
</div>
<div class="cell cell-markdown">
<h1 id="Introduction">Introduction<a class="anchor-link" href="#Introduction">¶</a></h1><p>In this dashboard, we will provide valuable insights into the current project ecosystem, smart contract interactions, and overall recent activity within the NEAR community. Through this dashboard, analysts will be able to determine the total number of active projects on NEAR and specifically identify those operating on NEAR Horizon.</p>
<p>Within this dynamic dashboard, we present essential metrics such as daily active users and daily transactions for these top-tier applications. These metrics offer a comprehensive understanding of usage and transactional trends within the NEAR ecosystem, providing invaluable insights into the vitality and expansion of this thriving blockchain.</p>
<p>One of the distinctive capabilities of our dashboard lies in its ability to meticulously track and showcase the interactions between active dApps in NEAR Horizon, a pivotal project within the NEAR Blockchain. By closely monitoring these interactions, we are able to offer indispensable insights into the collaborations, dependencies, and potential synergies that exist within the NEAR ecosystem.</p>
</div>
<div class="cell cell-markdown">
<h1 id="Methodology">Methodology<a class="anchor-link" href="#Methodology">¶</a></h1><p>In this dashboard, we will explore the landscapce of projects on NEAR blockchain first with</p>
<ul>
<li>Number of projects</li>
<li>Cumulative number of projects</li>
<li>Distribution of projects by users</li>
<li>Distribution of projects by transactions</li>
</ul>
<p>Based on the above analyses, we will then proceed to determine the criteria for active projects on the NEAR blockchain. In particular, we will focus on the number of users for the past three months as a key determinant. This timeframe provides a recent and relevant snapshot of user engagement, allowing us to prioritize projects with sustained and consistent user activity.</p>
<p>By selecting active projects based on user numbers, we can identify the projects that have successfully attracted and retained users over time. This criterion not only demonstrates the project's appeal but also highlights its potential for long-term viability and growth within the NEAR blockchain ecosystem.</p>
<p>Finally, we will see which active projects are also on NEAR Horizon too.</p>
<p>SQL queries:</p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/b533fe70-cc81-4ff9-8f98-9f1cb0bd25a7">https://flipsidecrypto.xyz/edit/queries/b533fe70-cc81-4ff9-8f98-9f1cb0bd25a7</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/4d357253-efbc-4a08-9723-be2c181a2dc4">https://flipsidecrypto.xyz/edit/queries/4d357253-efbc-4a08-9723-be2c181a2dc4</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/6216779b-d46c-4ccd-abf6-4456e1d80bc3">https://flipsidecrypto.xyz/edit/queries/6216779b-d46c-4ccd-abf6-4456e1d80bc3</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/172e12c2-1af6-4574-a1b4-3af53536de3c">https://flipsidecrypto.xyz/edit/queries/172e12c2-1af6-4574-a1b4-3af53536de3c</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/a8e7c762-a905-48d0-b5d4-36cd75f7cdd3">https://flipsidecrypto.xyz/edit/queries/a8e7c762-a905-48d0-b5d4-36cd75f7cdd3</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/7c616fde-3103-4b7b-8fcc-8e295fe9a24b">https://flipsidecrypto.xyz/edit/queries/7c616fde-3103-4b7b-8fcc-8e295fe9a24b</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/1028a92e-276a-4103-aaea-a624738e9d7a">https://flipsidecrypto.xyz/edit/queries/1028a92e-276a-4103-aaea-a624738e9d7a</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/726503ab-fb4f-4cd1-a4a3-a0f9db04c7cf">https://flipsidecrypto.xyz/edit/queries/726503ab-fb4f-4cd1-a4a3-a0f9db04c7cf</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/1ad4d56b-8f59-4e7d-af1d-a45baaf01f4b">https://flipsidecrypto.xyz/edit/queries/1ad4d56b-8f59-4e7d-af1d-a45baaf01f4b</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/f9867d79-ea2e-42df-b9a5-10537bec3280">https://flipsidecrypto.xyz/edit/queries/f9867d79-ea2e-42df-b9a5-10537bec3280</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/f13f8f65-0ce9-49eb-bf67-0322addc35a8">https://flipsidecrypto.xyz/edit/queries/f13f8f65-0ce9-49eb-bf67-0322addc35a8</a></p>
<p><a href="https://flipsidecrypto.xyz/edit/queries/199a72f9-6192-4ceb-a37f-adcbd6cdf0a2">https://flipsidecrypto.xyz/edit/queries/199a72f9-6192-4ceb-a37f-adcbd6cdf0a2</a></p>
</div>
<div class="cell cell-markdown">
<h1 id="Projects-on-NEAR">Projects on NEAR<a class="anchor-link" href="#Projects-on-NEAR">¶</a></h1>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="fddd82dc-223a-4cd1-b172-0bc384c760f5" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("fddd82dc-223a-4cd1-b172-0bc384c760f5")) { Plotly.newPlot( "fddd82dc-223a-4cd1-b172-0bc384c760f5", [{"name":"New Projects","x":["2020-07-01 00:00:00.000","2020-08-01 00:00:00.000","2020-09-01 00:00:00.000","2020-10-01 00:00:00.000","2020-11-01 00:00:00.000","2020-12-01 00:00:00.000","2021-01-01 00:00:00.000","2021-02-01 00:00:00.000","2021-03-01 00:00:00.000","2021-04-01 00:00:00.000","2021-05-01 00:00:00.000","2021-06-01 00:00:00.000","2021-07-01 00:00:00.000","2021-08-01 00:00:00.000","2021-09-01 00:00:00.000","2021-10-01 00:00:00.000","2021-11-01 00:00:00.000","2021-12-01 00:00:00.000","2022-01-01 00:00:00.000","2022-02-01 00:00:00.000","2022-03-01 00:00:00.000","2022-04-01 00:00:00.000","2022-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000"],"y":[2,1,7,8,8,2,1,3,29,65,62,35,22,42,54,35,55,105,41,46,84,65,57,24,32,34,31,10,10,3,1,3,3,1],"type":"bar","xaxis":"x","yaxis":"y"},{"mode":"lines","name":"Cumulative number of projects","x":["2020-07-01 00:00:00.000","2020-08-01 00:00:00.000","2020-09-01 00:00:00.000","2020-10-01 00:00:00.000","2020-11-01 00:00:00.000","2020-12-01 00:00:00.000","2021-01-01 00:00:00.000","2021-02-01 00:00:00.000","2021-03-01 00:00:00.000","2021-04-01 00:00:00.000","2021-05-01 00:00:00.000","2021-06-01 00:00:00.000","2021-07-01 00:00:00.000","2021-08-01 00:00:00.000","2021-09-01 00:00:00.000","2021-10-01 00:00:00.000","2021-11-01 00:00:00.000","2021-12-01 00:00:00.000","2022-01-01 00:00:00.000","2022-02-01 00:00:00.000","2022-03-01 00:00:00.000","2022-04-01 00:00:00.000","2022-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000"],"y":[2,3,10,18,26,28,29,32,61,126,188,223,245,287,341,376,431,536,577,623,707,772,829,853,885,919,950,960,970,973,974,977,980,981],"type":"scatter","xaxis":"x","yaxis":"y2"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,0.94],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"Projects"}},"yaxis2":{"anchor":"x","overlaying":"y","side":"right","title":{"text":"Cumulative number of projects"}},"title":{"text":"Projects on NEAR"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('fddd82dc-223a-4cd1-b172-0bc384c760f5');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The given chart illustrates the number of new projects and the cumulative number of projects over time.</p>
<p>Upon analyzing the data, several key insights can be derived. Firstly, the chart reveals that the number of new projects experienced monthly fluctuations throughout the period under consideration. However, an upward trend in the cumulative number of projects can be observed over time, indicating an overall increase in project initiation.</p>
<p>Between March 2021 and December 2021, the cumulative number of projects witnessed a significant surge, escalating from 61 projects to an impressive 536 projects. This period represents a period of remarkable growth in project accumulation. Subsequently, although the growth rate decelerated, the number of projects continued to rise steadily.</p>
<p>It is worth noting that the highest number of new projects recorded in a single month transpired in April 2021, with 65 projects initiated. Conversely, some months experienced relatively low project initiation rates, exemplified by January 2021, which saw the inception of merely one new project.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="8d9930ef-6236-47c7-aeff-bd4a6d510cc3" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("8d9930ef-6236-47c7-aeff-bd4a6d510cc3")) { Plotly.newPlot( "8d9930ef-6236-47c7-aeff-bd4a6d510cc3", [{"name":"Number of smart contract interactions","x":["2020-07-01 00:00:00.000","2020-08-01 00:00:00.000","2020-09-01 00:00:00.000","2020-10-01 00:00:00.000","2020-11-01 00:00:00.000","2020-12-01 00:00:00.000","2021-01-01 00:00:00.000","2021-02-01 00:00:00.000","2021-03-01 00:00:00.000","2021-04-01 00:00:00.000","2021-05-01 00:00:00.000","2021-06-01 00:00:00.000","2021-07-01 00:00:00.000","2021-08-01 00:00:00.000","2021-09-01 00:00:00.000","2021-10-01 00:00:00.000","2021-11-01 00:00:00.000","2021-12-01 00:00:00.000","2022-01-01 00:00:00.000","2022-02-01 00:00:00.000","2022-03-01 00:00:00.000","2022-04-01 00:00:00.000","2022-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000"],"y":[1450,5045,26971,115975,338840,381277,315569,235918,396207,1060819,2318954,3512525,4722468,6918675,8596813,7297622,8069385,10696840,20033542,11353522,14879157,16613603,19647253,12606387,8477748,7925013,14838241,14095891,12448274,9931814,11654374,10119883,10155459,10600033,9231958,7076111],"type":"bar","xaxis":"x","yaxis":"y"},{"mode":"lines","name":"Cumulative number of smart contract interactions","x":["2020-07-01 00:00:00.000","2020-08-01 00:00:00.000","2020-09-01 00:00:00.000","2020-10-01 00:00:00.000","2020-11-01 00:00:00.000","2020-12-01 00:00:00.000","2021-01-01 00:00:00.000","2021-02-01 00:00:00.000","2021-03-01 00:00:00.000","2021-04-01 00:00:00.000","2021-05-01 00:00:00.000","2021-06-01 00:00:00.000","2021-07-01 00:00:00.000","2021-08-01 00:00:00.000","2021-09-01 00:00:00.000","2021-10-01 00:00:00.000","2021-11-01 00:00:00.000","2021-12-01 00:00:00.000","2022-01-01 00:00:00.000","2022-02-01 00:00:00.000","2022-03-01 00:00:00.000","2022-04-01 00:00:00.000","2022-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000"],"y":[1450,6495,33466,149441,488281,869558,1185127,1421045,1817252,2878071,5197025,8709550,13432018,20350693,28947506,36245128,44314513,55011353,75044895,86398417,101277574,117891177,137538430,150144817,158622565,166547578,181385819,195481710,207929984,217861798,229516172,239636055,249791514,260391547,269623505,276699616],"type":"scatter","xaxis":"x","yaxis":"y2"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,0.94],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"Number of smart contract interactions"}},"yaxis2":{"anchor":"x","overlaying":"y","side":"right","title":{"text":"Cumulative number of smart contract interactions"}},"title":{"text":"Number of smart contract interactions"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('8d9930ef-6236-47c7-aeff-bd4a6d510cc3');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The provided chart illustrates the transaction activity and user engagement with smart contracts on the NEAR blockchain from July 2020 to June 2023. The data showcases key insights regarding the number of transactions (TX) and cumulative transactions, as well as the number of users.</p>
<p>Overall, there is a clear upward trend in transaction volume throughout the given period. In July 2020, the number of transactions stood at 1,450, and this figure steadily increased over time, reaching a peak of 7,076,111 transactions by June 2023. This consistent growth indicates a significant rise in the utilization of smart contracts and decentralized applications (dApps) built on the NEAR blockchain.</p>
<p>The cumulative transaction count, which reflects the total number of transactions up to the end of each month, also demonstrates a steady rise. From an initial count of 1,450 transactions in July 2020, the cumulative number progressively increased, reaching 276,699,616 transactions by June 2023. This sustained growth indicates a robust and expanding smart contract ecosystem on NEAR.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="e02e467e-32e6-411c-9fab-be4c3f6a3a28" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("e02e467e-32e6-411c-9fab-be4c3f6a3a28")) { Plotly.newPlot( "e02e467e-32e6-411c-9fab-be4c3f6a3a28", [{"name":"Number of users","x":["2020-07-01 00:00:00.000","2020-08-01 00:00:00.000","2020-09-01 00:00:00.000","2020-10-01 00:00:00.000","2020-11-01 00:00:00.000","2020-12-01 00:00:00.000","2021-01-01 00:00:00.000","2021-02-01 00:00:00.000","2021-03-01 00:00:00.000","2021-04-01 00:00:00.000","2021-05-01 00:00:00.000","2021-06-01 00:00:00.000","2021-07-01 00:00:00.000","2021-08-01 00:00:00.000","2021-09-01 00:00:00.000","2021-10-01 00:00:00.000","2021-11-01 00:00:00.000","2021-12-01 00:00:00.000","2022-01-01 00:00:00.000","2022-02-01 00:00:00.000","2022-03-01 00:00:00.000","2022-04-01 00:00:00.000","2022-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000"],"y":[15,41,3496,7764,7014,6642,13849,17679,20447,91689,76276,141425,86322,231238,527507,273416,445037,510230,194532,152709,982976,178939,142249,118861,139705,127711,1115040,1089610,983271,821401,1088816,910174,889517,926053,888186,827104],"type":"bar","xaxis":"x","yaxis":"y"},{"mode":"lines","name":"Cumulative number of users","x":["2020-07-01 00:00:00.000","2020-08-01 00:00:00.000","2020-09-01 00:00:00.000","2020-10-01 00:00:00.000","2020-11-01 00:00:00.000","2020-12-01 00:00:00.000","2021-01-01 00:00:00.000","2021-02-01 00:00:00.000","2021-03-01 00:00:00.000","2021-04-01 00:00:00.000","2021-05-01 00:00:00.000","2021-06-01 00:00:00.000","2021-07-01 00:00:00.000","2021-08-01 00:00:00.000","2021-09-01 00:00:00.000","2021-10-01 00:00:00.000","2021-11-01 00:00:00.000","2021-12-01 00:00:00.000","2022-01-01 00:00:00.000","2022-02-01 00:00:00.000","2022-03-01 00:00:00.000","2022-04-01 00:00:00.000","2022-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000"],"y":[15,56,3552,11316,18330,24972,38821,56500,76947,168636,244912,386337,472659,703897,1231404,1504820,1949857,2460087,2654619,2807328,3790304,3969243,4111492,4230353,4370058,4497769,5612809,6702419,7685690,8507091,9595907,10506081,11395598,12321651,13209837,14036941],"type":"scatter","xaxis":"x","yaxis":"y2"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,0.94],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"Number of users"}},"yaxis2":{"anchor":"x","overlaying":"y","side":"right","title":{"text":"Cumulative number of users"}},"title":{"text":"Number of users"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('e02e467e-32e6-411c-9fab-be4c3f6a3a28');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The chart displays the number of users and cumulative number of users engaged in smart contracts on the NEAR blockchain over a period of three years, from July 2020 to June 2023. The data reveals notable insights regarding the adoption and growth of smart contracts on NEAR.</p>
<p>At the outset, the chart demonstrates that in July 2020, there were a mere 15 users utilizing smart contracts on the NEAR blockchain. However, as time progressed, the number of users gradually increased. By June 2023, this figure had surged to an impressive 827,104 users. This upward trend signifies a substantial rise in the adoption of smart contracts on NEAR.</p>
<p>Turning attention to the cumulative number of users, it is evident that this metric showcases the overall count of unique users up to a specific month. From July 2020 to June 2023, the cumulative number of users witnessed a consistent upward trajectory, indicating a sustained growth in the user base engaging with smart contracts on NEAR. Notably, the cumulative number of users reached a significant milestone of 14,036,941 by June 2023, further highlighting the substantial user adoption on the NEAR blockchain.</p>
<p>In conclusion, the data provided in the chart demonstrates a positive trend in the utilization of smart contracts on the NEAR blockchain. Both the number of users and cumulative number of users exhibited a steady increase over the examined period, reflecting a growing interest and engagement with the smart contract functionality offered by NEAR.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="1df2b206-361e-4d4c-9cbb-8b7ceb92261f" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("1df2b206-361e-4d4c-9cbb-8b7ceb92261f")) { Plotly.newPlot( "1df2b206-361e-4d4c-9cbb-8b7ceb92261f", [{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"NEAR Crowd","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"NEAR Crowd","offsetgroup":"NEAR Crowd","orientation":"v","showlegend":true,"textposition":"auto","x":["NEAR Crowd"],"xaxis":"x","y":[83436712],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Aurora Faucet","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"Aurora Faucet","offsetgroup":"Aurora Faucet","orientation":"v","showlegend":true,"textposition":"auto","x":["Aurora Faucet"],"xaxis":"x","y":[52970852],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"sweat","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"sweat","offsetgroup":"sweat","orientation":"v","showlegend":true,"textposition":"auto","x":["sweat"],"xaxis":"x","y":[46676185],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"paras","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"paras","offsetgroup":"paras","orientation":"v","showlegend":true,"textposition":"auto","x":["paras"],"xaxis":"x","y":[3920684],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Ref Finance","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"Ref Finance","offsetgroup":"Ref Finance","orientation":"v","showlegend":true,"textposition":"auto","x":["Ref Finance"],"xaxis":"x","y":[3817764],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Spin","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"Spin","offsetgroup":"Spin","orientation":"v","showlegend":true,"textposition":"auto","x":["Spin"],"xaxis":"x","y":[3780361],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"near","marker":{"color":"#FF6692","pattern":{"shape":""}},"name":"near","offsetgroup":"near","orientation":"v","showlegend":true,"textposition":"auto","x":["near"],"xaxis":"x","y":[2556501],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Switchboard","marker":{"color":"#B6E880","pattern":{"shape":""}},"name":"Switchboard","offsetgroup":"Switchboard","orientation":"v","showlegend":true,"textposition":"auto","x":["Switchboard"],"xaxis":"x","y":[2535019],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"NEAR Wrapper","marker":{"color":"#FF97FF","pattern":{"shape":""}},"name":"NEAR Wrapper","offsetgroup":"NEAR Wrapper","orientation":"v","showlegend":true,"textposition":"auto","x":["NEAR Wrapper"],"xaxis":"x","y":[2496522],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Rainbow Bridge","marker":{"color":"#FECB52","pattern":{"shape":""}},"name":"Rainbow Bridge","offsetgroup":"Rainbow Bridge","orientation":"v","showlegend":true,"textposition":"auto","x":["Rainbow Bridge"],"xaxis":"x","y":[1850440],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"PROJECT_NAME"},"categoryorder":"array","categoryarray":["NEAR Crowd","Aurora Faucet","sweat","paras","Ref Finance","Spin","near","Switchboard","NEAR Wrapper","Rainbow Bridge"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"NUMBER_OF_TX"}},"legend":{"title":{"text":"PROJECT_NAME"},"tracegroupgap":0},"title":{"text":"Top 10 projects on NEAR by number of transactions"},"barmode":"relative"}, {"responsive": true} ).then(function(){
var gd = document.getElementById('1df2b206-361e-4d4c-9cbb-8b7ceb92261f');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The bar chart illustrates the top 10 projects on the NEAR blockchain, ranked according to the number of transactions they have generated. The data provides insights into the transactional activity and popularity of these projects within the NEAR ecosystem.</p>
<p>At the pinnacle of the list, "NEAR Crowd" stands out as the project with the highest transactional volume, recording a remarkable 83,436,712 transactions. This substantial figure signifies the extensive utilization and engagement with the "NEAR Crowd" project, demonstrating its significance and widespread adoption on the NEAR blockchain.</p>
<p>Following closely, "Aurora Faucet" secures the second position, amassing a notable count of 52,970,852 transactions. Although slightly lower than the leading project, this figure suggests a considerable user base and a considerable level of interaction with the "Aurora Faucet" project.</p>
<p>Claiming the third spot, the project "sweat" garnered a considerable number of transactions, reaching 46,676,185. This indicates its popularity and considerable utilization within the NEAR ecosystem, further highlighting the diverse range of projects attracting user engagement on the NEAR blockchain.</p>
<p>Among the remaining projects in the top 10, namely "paras," "Ref Finance," "Spin," "near," "Switchboard," "NEAR Wrapper," and "Rainbow Bridge," significant transaction volumes were also observed. While these projects generated lower transaction counts compared to the top three, they nonetheless contribute to the overall transactional activity on the NEAR blockchain, exemplifying the diversity of applications and projects within the NEAR ecosystem.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="e0b1f997-eca2-4cb7-a6fe-d98c6ef124f2" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("e0b1f997-eca2-4cb7-a6fe-d98c6ef124f2")) { Plotly.newPlot( "e0b1f997-eca2-4cb7-a6fe-d98c6ef124f2", [{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"sweat","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"sweat","offsetgroup":"sweat","orientation":"v","showlegend":true,"textposition":"auto","x":["sweat"],"xaxis":"x","y":[3085100],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"kucoin","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"kucoin","offsetgroup":"kucoin","orientation":"v","showlegend":true,"textposition":"auto","x":["kucoin"],"xaxis":"x","y":[358847],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Tether (USDT)","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Tether (USDT)","offsetgroup":"Tether (USDT)","orientation":"v","showlegend":true,"textposition":"auto","x":["Tether (USDT)"],"xaxis":"x","y":[342789],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"near","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"near","offsetgroup":"near","orientation":"v","showlegend":true,"textposition":"auto","x":["near"],"xaxis":"x","y":[235190],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"PlayEmber","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"PlayEmber","offsetgroup":"PlayEmber","orientation":"v","showlegend":true,"textposition":"auto","x":["PlayEmber"],"xaxis":"x","y":[225199],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"NEAR Wrapper","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"NEAR Wrapper","offsetgroup":"NEAR Wrapper","orientation":"v","showlegend":true,"textposition":"auto","x":["NEAR Wrapper"],"xaxis":"x","y":[209991],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"binance","marker":{"color":"#FF6692","pattern":{"shape":""}},"name":"binance","offsetgroup":"binance","orientation":"v","showlegend":true,"textposition":"auto","x":["binance"],"xaxis":"x","y":[88742],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"paras","marker":{"color":"#B6E880","pattern":{"shape":""}},"name":"paras","offsetgroup":"paras","orientation":"v","showlegend":true,"textposition":"auto","x":["paras"],"xaxis":"x","y":[88099],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Exchanges","marker":{"color":"#FF97FF","pattern":{"shape":""}},"name":"Exchanges","offsetgroup":"Exchanges","orientation":"v","showlegend":true,"textposition":"auto","x":["Exchanges"],"xaxis":"x","y":[69555],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Ref Finance","marker":{"color":"#FECB52","pattern":{"shape":""}},"name":"Ref Finance","offsetgroup":"Ref Finance","orientation":"v","showlegend":true,"textposition":"auto","x":["Ref Finance"],"xaxis":"x","y":[66721],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"PROJECT_NAME"},"categoryorder":"array","categoryarray":["sweat","kucoin","Tether (USDT)","near","PlayEmber","NEAR Wrapper","binance","paras","Exchanges","Ref Finance"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"NUMBER_OF_USER"}},"legend":{"title":{"text":"PROJECT_NAME"},"tracegroupgap":0},"title":{"text":"Top 10 projects on NEAR by number of user"},"barmode":"relative"}, {"responsive": true} ).then(function(){
var gd = document.getElementById('e0b1f997-eca2-4cb7-a6fe-d98c6ef124f2');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The provided chart showcases the top 10 projects on the NEAR blockchain, ranked according to the number of users they have attracted. This data offers valuable insights into the user base and popularity of these projects within the NEAR ecosystem.</p>
<p>Taking the lead, the project "sweat" stands out with an impressive user count of 3,085,100. This substantial figure signifies the project's ability to attract and engage a large number of users, highlighting its prominence and widespread adoption within the NEAR blockchain.</p>
<p>Securing the second position, "kucoin" boasts a significant user base of 358,847. While slightly lower than the top-ranked project, this figure suggests a substantial number of users actively participating in the "kucoin" project, underscoring its popularity within the NEAR ecosystem.</p>
<p>In the third spot, "Tether (USDT)" has managed to attract 342,789 users. This notable user count indicates the project's significance and utilization within the NEAR blockchain, reflecting its relevance as a widely-used stablecoin.</p>
<p>Among the remaining projects in the top 10, namely "near," "PlayEmber," "NEAR Wrapper," "binance," "paras," "Exchanges," and "Ref Finance," considerable numbers of users were also observed. Although their user counts are lower compared to the top three projects, they contribute to the overall user engagement and diversity of activities on the NEAR blockchain.</p>
<p>In conclusion, the chart reveals "sweat" as the leading project in terms of user count on the NEAR blockchain. "kucoin" and "Tether (USDT)" follow closely behind, demonstrating their substantial user bases. The presence of other projects within the top 10 signifies the varied range of activities and applications thriving on the NEAR blockchain, catering to the interests and preferences of different user groups.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="ae81c242-7679-4728-b2de-76c692a16cfd" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("ae81c242-7679-4728-b2de-76c692a16cfd")) { Plotly.newPlot( "ae81c242-7679-4728-b2de-76c692a16cfd", [{"alignmentgroup":"True","hovertemplate":"CATEGORY=%{x}<br>NUMBER_OF_PROJECTS=%{y}<extra></extra>","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["From 100000 to 1000000 tx","More than 1000000 tx","From 1000 to 10000 tx","From 10000 to 100000 tx","Less than 1000 tx"],"xaxis":"x","y":[25,13,75,68,800],"yaxis":"y","type":"bar"},{"domain":{"x":[0.55,1.0],"y":[0.0,1.0]},"hovertemplate":"CATEGORY=%{label}<br>NUMBER_OF_PROJECTS=%{value}<extra></extra>","labels":["From 100000 to 1000000 tx","More than 1000000 tx","From 1000 to 10000 tx","From 10000 to 100000 tx","Less than 1000 tx"],"legendgroup":"","name":"","showlegend":true,"values":[25,13,75,68,800],"type":"pie"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,0.45]},"yaxis":{"anchor":"x","domain":[0.0,1.0]},"title":{"text":"Distribution of projects by number of transaction","x":0.5},"showlegend":true}, {"responsive": true} ).then(function(){
var gd = document.getElementById('ae81c242-7679-4728-b2de-76c692a16cfd');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The provided chart offers insights into the distribution of projects on the NEAR blockchain based on the number of transactions they have recorded. By categorizing the projects into different transaction ranges, we can analyze the prevalence of projects within each category and understand the overall landscape of project activity on NEAR.</p>
<p>According to the data, there are 25 projects falling within the range of "From 100,000 to 1,000,000 transactions." This suggests a moderate level of project activity within this transaction range, with a considerable number of projects involved.</p>
<p>In the category of "More than 1,000,000 transactions," there are 13 projects. This smaller number indicates a relatively higher level of transactional volume for these specific projects, highlighting their significance and potential popularity on the NEAR blockchain.</p>
<p>The chart reveals that the category "From 1,000 to 10,000 transactions" comprises the highest number of projects, with 75 in total. This indicates a diverse range of projects with varying transactional volumes, potentially involving different types of applications and use cases on the NEAR blockchain.</p>
<p>Similarly, the category "From 10,000 to 100,000 transactions" includes 68 projects, signifying a considerable number of projects experiencing a relatively higher level of transactional activity. These projects may involve more extensive user engagement and larger-scale operations within the NEAR ecosystem.</p>
<p>Lastly, the category "Less than 1,000 transactions" comprises the largest number of projects, with 800 in total. This suggests a multitude of smaller-scale projects on the NEAR blockchain that have recorded relatively fewer transactions. These projects may be in their early stages or cater to niche markets, potentially exhibiting a wide range of applications and experimental initiatives.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="cf7848b2-6189-4597-8c0f-072c4a015544" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("cf7848b2-6189-4597-8c0f-072c4a015544")) { Plotly.newPlot( "cf7848b2-6189-4597-8c0f-072c4a015544", [{"alignmentgroup":"True","hovertemplate":"CATEGORY=%{x}<br>NUMBER_OF_PROJECTS=%{y}<extra></extra>","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["More than 100000 user","From 1000 to 10000 users","Less than 1000 user","From 10000 to 100000 users"],"xaxis":"x","y":[6,58,893,24],"yaxis":"y","type":"bar"},{"domain":{"x":[0.55,1.0],"y":[0.0,1.0]},"hovertemplate":"CATEGORY=%{label}<br>NUMBER_OF_PROJECTS=%{value}<extra></extra>","labels":["More than 100000 user","From 1000 to 10000 users","Less than 1000 user","From 10000 to 100000 users"],"legendgroup":"","name":"","showlegend":true,"values":[6,58,893,24],"type":"pie"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,0.45]},"yaxis":{"anchor":"x","domain":[0.0,1.0]},"title":{"text":"Distribution of projects by number of users","x":0.5},"showlegend":true}, {"responsive": true} ).then(function(){
var gd = document.getElementById('cf7848b2-6189-4597-8c0f-072c4a015544');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The provided chart presents insights into the distribution of projects on an unspecified platform based on the number of users they have. By categorizing the projects into different user ranges, we can analyze the prevalence of projects within each category and gain a better understanding of the user base on the platform.</p>
<p>According to the data, there are six projects falling within the category of "More than 100,000 users." This suggests a relatively smaller number of projects that have managed to attract a substantial user base. These projects likely offer popular services or have successfully engaged a significant number of users on the platform.</p>
<p>The category "From 1,000 to 10,000 users" encompasses the highest number of projects, with 58 in total. This indicates a considerable presence of projects that have managed to gather a moderate-sized user base. These projects may cater to specific niches or offer services that have attracted a moderate level of user interest and engagement.</p>
<p>In contrast, the category "Less than 1,000 users" includes the largest number of projects, with 893 in total. This signifies the prevalence of smaller-scale projects on the platform that have managed to attract a limited number of users. These projects may be in their early stages, catering to specific user groups, or facing challenges in reaching a larger user base.</p>
<p>Lastly, the category "From 10,000 to 100,000 users" comprises 24 projects, indicating a smaller but notable number of projects that have attracted a substantial user base. These projects may offer popular services or have successfully gained traction among a significant number of users on the platform.</p>
</div>
<div class="cell cell-markdown">
<h1 id="Active-projects-on-NEAR">Active projects on NEAR<a class="anchor-link" href="#Active-projects-on-NEAR">¶</a></h1><p>Based on the landscape of project on NEAR, let's choose projects with at least 1000 users for the past 3 months as active projects on NEAR</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="769919ad-d6aa-44c2-9509-d363d17b01e5" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("769919ad-d6aa-44c2-9509-d363d17b01e5")) { Plotly.newPlot( "769919ad-d6aa-44c2-9509-d363d17b01e5", [{"cells":{"values":[["sweat","Tether (USDT)","PlayEmber","Exchanges","Sweat Economy","Few and Far","NEAR Wrapper","Near Social","paras","near","Learn NEAR Club","Circle (USDC)","Orderly","Ref Finance","astro stakers","okex","NEAR Crowd","coinbase","huobi","USDT.e","AURORA","Spin","Metapool","Aurora Faucet","kucoin"],["dapp","Uncategorized","Uncategorized","Uncategorized","Uncategorized","Uncategorized","Uncategorized","Uncategorized","nft","chadmin","Uncategorized","Uncategorized","Uncategorized","Uncategorized","defi","cex","Uncategorized","cex","cex","Uncategorized","Uncategorized","Uncategorized","Uncategorized","Uncategorized","cex"],[1407285,342489,71221,16106,12768,12067,9589,6751,6051,4996,4990,4758,3901,3673,2433,2223,2135,2124,2026,1733,1518,1468,1175,1149,1140]]},"header":{"values":["PROJECT_NAME","CATEGORY","NUMBER_OF_USER"]},"type":"table"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"title":{"text":"Active projects with over 1000 users for the past 3 months"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('769919ad-d6aa-44c2-9509-d363d17b01e5');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="82f7d25c-4c15-4942-95f1-34aaf5ee5a7a" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("82f7d25c-4c15-4942-95f1-34aaf5ee5a7a")) { Plotly.newPlot( "82f7d25c-4c15-4942-95f1-34aaf5ee5a7a", [{"domain":{"x":[0.0,0.45],"y":[0.0,1.0]},"hovertemplate":"CATEGORY=%{label}<br>NUMBER_OF_PROJECT=%{value}<extra></extra>","labels":["dapp","defi","chadmin","nft","Uncategorized","cex"],"legendgroup":"","name":"","showlegend":true,"values":[1,1,1,1,17,4],"type":"pie"},{"domain":{"x":[0.55,1.0],"y":[0.0,1.0]},"hovertemplate":"CATEGORY=%{label}<br>NUMBER_OF_USER=%{value}<extra></extra>","labels":["dapp","Uncategorized","Uncategorized","Uncategorized","Uncategorized","Uncategorized","Uncategorized","Uncategorized","nft","chadmin","Uncategorized","Uncategorized","Uncategorized","Uncategorized","defi","cex","Uncategorized","cex","cex","Uncategorized","Uncategorized","Uncategorized","Uncategorized","Uncategorized","cex"],"legendgroup":"","name":"","showlegend":true,"values":[1407285,342489,71221,16106,12768,12067,9589,6751,6051,4996,4990,4758,3901,3673,2433,2223,2135,2124,2026,1733,1518,1468,1175,1149,1140],"type":"pie"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"annotations":[{"font":{"size":16},"showarrow":false,"text":"Distribution of project by category","x":0.225,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"Distribution of users by category","x":0.775,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"}]}, {"responsive": true} ).then(function(){
var gd = document.getElementById('82f7d25c-4c15-4942-95f1-34aaf5ee5a7a');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>Based on the given data, which appears to represent the number of projects in different categories, the following insights can be derived:</p>
<p>The chart displays several categories of projects, including "dapp," "defi," "chadmin," "nft," "Uncategorized," and "cex." The majority of projects fall under the "Uncategorized" category, with a count of 17, followed by "cex" with four projects. The remaining categories each have one project.</p>
<p>The chart indicates that there is a diverse range of project categories represented. These categories likely represent different types of applications and services within the given context. The presence of categories like "dapp," "defi," "chadmin," and "nft" suggests a variety of project focuses.</p>
<p>The "Uncategorized" category has the highest number of projects, comprising the majority of the dataset. However, without further information or clarification, it is challenging to determine the specific nature or characteristics of these projects.</p>
<p>Apart from the "Uncategorized" category, the other categories have a relatively smaller number of projects. Categories such as "dapp," "defi," "chadmin," and "nft" each have only one project, while the "cex" category has four projects.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="6423057b-1372-4fe8-959b-09afc8707f70" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("6423057b-1372-4fe8-959b-09afc8707f70")) { Plotly.newPlot( "6423057b-1372-4fe8-959b-09afc8707f70", [{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Ref Finance<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Ref Finance","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"Ref Finance","offsetgroup":"Ref Finance","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000","2022-12-01 00:00:00.000"],"xaxis":"x","y":[5002,2123,1679,1109,1708,4660,3576,4227,2647,2393,4135,4808,2753],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Metapool<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Metapool","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"Metapool","offsetgroup":"Metapool","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-12-01 00:00:00.000","2022-08-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[360,963,552,521,537,1175,578,782,388,620,688,1284,822],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=sweat<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"sweat","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"sweat","offsetgroup":"sweat","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000"],"xaxis":"x","y":[687483,705664,629231,916073,690613,972274,769126,971464,838147,692406,6],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Orderly<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Orderly","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"Orderly","offsetgroup":"Orderly","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000"],"xaxis":"x","y":[2210,3857,354,925,1034,835,1766,1365,1503,44],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Few and Far<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Few and Far","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"Few and Far","offsetgroup":"Few and Far","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000"],"xaxis":"x","y":[379,1759,143,1507,144,111,92,760,11757,55,121,438],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Aurora Faucet<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Aurora Faucet","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"Aurora Faucet","offsetgroup":"Aurora Faucet","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2022-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000"],"xaxis":"x","y":[1331,1298,381,567,605,550,957,391,1194,1378,922,740,1466],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=AURORA<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"AURORA","marker":{"color":"#FF6692","pattern":{"shape":""}},"name":"AURORA","offsetgroup":"AURORA","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000"],"xaxis":"x","y":[393,1099,1012,863,608,941,1145,982,923,543,1012,861,639],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=okex<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"okex","marker":{"color":"#B6E880","pattern":{"shape":""}},"name":"okex","offsetgroup":"okex","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000"],"xaxis":"x","y":[1208,654,672,1201,651,512,1031,212,828,1372,627,604,1488],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Spin<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Spin","marker":{"color":"#FF97FF","pattern":{"shape":""}},"name":"Spin","offsetgroup":"Spin","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-11-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[511,2680,786,972,1129,386,6259,480,924,153,319,212,2433],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=astro stakers<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"astro stakers","marker":{"color":"#FECB52","pattern":{"shape":""}},"name":"astro stakers","offsetgroup":"astro stakers","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000"],"xaxis":"x","y":[1125,248,961,885,1045,1595,938,833,978,1247,1138,1266,1040],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=huobi<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"huobi","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"huobi","offsetgroup":"huobi","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000"],"xaxis":"x","y":[815,951,1130,766,878,718,682,261,1032,799,729,387,1139],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=NEAR Crowd<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"NEAR Crowd","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"NEAR Crowd","offsetgroup":"NEAR Crowd","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000"],"xaxis":"x","y":[1803,1963,2407,2306,1919,1635,2541,2094,1315,1901,1974,2361,2113],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Near Social<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Near Social","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Near Social","offsetgroup":"Near Social","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000"],"xaxis":"x","y":[5101,1970,517,1547,559,1250,321,851,3970],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Circle (USDC)<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Circle (USDC)","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"Circle (USDC)","offsetgroup":"Circle (USDC)","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[1872,1698,3960,2833,3226,688,2355,2848,2089,2061,1941,10417,8009],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Tether (USDT)<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Tether (USDT)","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"Tether (USDT)","offsetgroup":"Tether (USDT)","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000"],"xaxis":"x","y":[142,774,19,293495,56703,836,784,9,5,625],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=NEAR Wrapper<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"NEAR Wrapper","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"NEAR Wrapper","offsetgroup":"NEAR Wrapper","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000"],"xaxis":"x","y":[7773,7352,4652,6692,7549,8331,2636,3950,5317,5422,5338,8205,3229],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=paras<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"paras","marker":{"color":"#FF6692","pattern":{"shape":""}},"name":"paras","offsetgroup":"paras","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-07-01 00:00:00.000","2022-06-01 00:00:00.000"],"xaxis":"x","y":[3307,4367,872,3678,1301,4212,2054,4718,3774,2333,5142,5207,3211],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Exchanges<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Exchanges","marker":{"color":"#B6E880","pattern":{"shape":""}},"name":"Exchanges","offsetgroup":"Exchanges","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2022-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000"],"xaxis":"x","y":[5530,10448,6327,5609,2101,6180,7692,8125,6799,6044,5185,8287,5220],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=PlayEmber<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"PlayEmber","marker":{"color":"#FF97FF","pattern":{"shape":""}},"name":"PlayEmber","offsetgroup":"PlayEmber","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2022-06-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000"],"xaxis":"x","y":[19787,4,29115,1,28470,36598,18952,13634,21748,31492,3,27550],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Learn NEAR Club<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Learn NEAR Club","marker":{"color":"#FECB52","pattern":{"shape":""}},"name":"Learn NEAR Club","offsetgroup":"Learn NEAR Club","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-09-01 00:00:00.000"],"xaxis":"x","y":[1738,6187,2381,2772,605,2421,4471,1361,2317,1572,1748,2037,7894],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=USDT.e<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"USDT.e","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"USDT.e","offsetgroup":"USDT.e","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[1492,1191,984,618,860,1567,1907,762,1780,566,641,1571,1105],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=kucoin<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"kucoin","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"kucoin","offsetgroup":"kucoin","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-06-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000"],"xaxis":"x","y":[2581,806,530,2725,883,565,2226,2510,12071,3906,375,3576,512],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Sweat Economy<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Sweat Economy","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Sweat Economy","offsetgroup":"Sweat Economy","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[5230,1409,1459,2184,211,891,3489,2104,7376,1559,951,3914,7526],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=near<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"near","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"near","offsetgroup":"near","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000"],"xaxis":"x","y":[1748,13909,3634,6467,7680,2031,2004,901,5807,3204,1895,3888,786],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=coinbase<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"coinbase","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"coinbase","offsetgroup":"coinbase","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000"],"xaxis":"x","y":[768,965,1207,535,1220,19,786,1520,571,1883,886],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"USERS"}},"legend":{"title":{"text":"PROJECT_NAME"},"tracegroupgap":0},"margin":{"t":60},"barmode":"relative","title":{"text":"Number of user on active projects"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('6423057b-1372-4fe8-959b-09afc8707f70');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The given chart illustrates the number of users for various projects over a period of time. The data includes the month, project name, and the corresponding number of users. Overall, the chart provides insights into the popularity and user engagement of different projects.</p>
<p>In terms of popularity, the month of August 2022 witnessed several noteworthy projects. "NEAR Wrapper" attracted the highest number of users with 8205 individuals, followed by "near" with 6467 users, and "Learn NEAR Club" with 6187 users.</p>
<p>Interestingly, the number of users varied across different months, indicating changes in project popularity over time. For instance, in November 2022, the project "sweat" experienced a significant surge in users, reaching 838147 individuals, surpassing all other projects in that particular month.</p>
<p>Comparing the user base of projects over consecutive months reveals trends in their popularity. For example, the project "sweat" exhibited consistent user growth, as seen in the increase from 971464 users in September 2022 to 972274 users in October 2022.</p>
<p>Certain projects maintained a steady presence throughout multiple months, indicating their sustained user engagement. Notable examples include "NEAR Wrapper" and "Exchanges," which consistently attracted users over time.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="aaee602d-e2ae-4b9e-8108-f5de2cffb82d" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("aaee602d-e2ae-4b9e-8108-f5de2cffb82d")) { Plotly.newPlot( "aaee602d-e2ae-4b9e-8108-f5de2cffb82d", [{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Ref Finance<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Ref Finance","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"Ref Finance","offsetgroup":"Ref Finance","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000","2022-12-01 00:00:00.000"],"xaxis":"x","y":[154918,57510,46473,39411,32196,137543,102840,135426,51905,60436,94938,66695,49312],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Metapool<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Metapool","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"Metapool","offsetgroup":"Metapool","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-12-01 00:00:00.000","2022-08-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[4866,8919,7679,8337,8060,11141,8482,9412,2742,8882,8327,12037,9601],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=sweat<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"sweat","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"sweat","offsetgroup":"sweat","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000"],"xaxis":"x","y":[3883547,4226952,4156561,4997379,3606288,6239212,4523232,6131207,4810457,4346920,21],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Orderly<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Orderly","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"Orderly","offsetgroup":"Orderly","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000"],"xaxis":"x","y":[45373,110142,49868,21004,48098,43331,38159,57591,38796,301],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Few and Far<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Few and Far","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"Few and Far","offsetgroup":"Few and Far","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000"],"xaxis":"x","y":[1583,7944,356,7359,420,396,206,3621,47303,148,765,1803],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Aurora Faucet<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Aurora Faucet","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"Aurora Faucet","offsetgroup":"Aurora Faucet","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2022-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000"],"xaxis":"x","y":[2405569,1445886,655685,981324,548513,823515,1229041,484452,1401723,1622785,967192,811820,1855841],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=AURORA<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"AURORA","marker":{"color":"#FF6692","pattern":{"shape":""}},"name":"AURORA","offsetgroup":"AURORA","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000"],"xaxis":"x","y":[1487,6883,12831,7121,4400,7010,8352,4603,5538,3287,5518,7186,4769],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=okex<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"okex","marker":{"color":"#B6E880","pattern":{"shape":""}},"name":"okex","offsetgroup":"okex","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000"],"xaxis":"x","y":[4404,2121,3211,3335,2491,2067,3321,654,4198,5323,2341,2873,4268],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Spin<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Spin","marker":{"color":"#FF97FF","pattern":{"shape":""}},"name":"Spin","offsetgroup":"Spin","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-11-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[326743,379560,374285,412502,421742,43101,429232,262937,257123,17047,308488,27028,454227],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=astro stakers<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"astro stakers","marker":{"color":"#FECB52","pattern":{"shape":""}},"name":"astro stakers","offsetgroup":"astro stakers","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000"],"xaxis":"x","y":[2061,392,1891,1824,2070,2931,2010,1582,1847,2440,2190,2274,2029],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=huobi<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"huobi","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"huobi","offsetgroup":"huobi","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000"],"xaxis":"x","y":[3754,6450,2533,4214,5119,5902,3515,954,6276,4431,6377,2251,2114],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=NEAR Crowd<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"NEAR Crowd","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"NEAR Crowd","offsetgroup":"NEAR Crowd","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000"],"xaxis":"x","y":[2004258,1700822,3126635,3050015,548916,1615354,2744535,2362901,1083077,2056871,1809366,2565004,2138034],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Near Social<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Near Social","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Near Social","offsetgroup":"Near Social","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000"],"xaxis":"x","y":[34344,17150,23829,18685,10703,16612,934,4416,21865],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Circle (USDC)<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Circle (USDC)","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"Circle (USDC)","offsetgroup":"Circle (USDC)","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[12967,10287,19529,11248,16656,3806,14975,19587,18125,11253,10837,33166,36447],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Tether (USDT)<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Tether (USDT)","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"Tether (USDT)","offsetgroup":"Tether (USDT)","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000"],"xaxis":"x","y":[291,1631,75,428766,62553,2228,1505,151,21,2666],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=NEAR Wrapper<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"NEAR Wrapper","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"NEAR Wrapper","offsetgroup":"NEAR Wrapper","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000"],"xaxis":"x","y":[107405,81254,46537,101340,68434,102525,18994,43215,76312,69798,68026,91333,34382],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=paras<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"paras","marker":{"color":"#FF6692","pattern":{"shape":""}},"name":"paras","offsetgroup":"paras","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-07-01 00:00:00.000","2022-06-01 00:00:00.000"],"xaxis":"x","y":[34363,23583,5356,54891,8902,55993,18235,95008,35608,32440,86535,109774,81046],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Exchanges<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Exchanges","marker":{"color":"#B6E880","pattern":{"shape":""}},"name":"Exchanges","offsetgroup":"Exchanges","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2022-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000"],"xaxis":"x","y":[10636,17150,9885,10518,2906,10800,13176,13797,11687,13443,9210,16850,8732],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=PlayEmber<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"PlayEmber","marker":{"color":"#FF97FF","pattern":{"shape":""}},"name":"PlayEmber","offsetgroup":"PlayEmber","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2022-06-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000"],"xaxis":"x","y":[111877,20957,100953,1,86796,108058,67321,48600,68246,110210,285,86039],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Learn NEAR Club<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Learn NEAR Club","marker":{"color":"#FECB52","pattern":{"shape":""}},"name":"Learn NEAR Club","offsetgroup":"Learn NEAR Club","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-09-01 00:00:00.000"],"xaxis":"x","y":[10929,30707,36892,34993,1765,36761,26095,18850,32129,24496,23775,15222,53591],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=USDT.e<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"USDT.e","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"USDT.e","offsetgroup":"USDT.e","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[10103,5227,6429,3404,3629,8424,10409,5018,9140,2843,3588,6309,6954],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=kucoin<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"kucoin","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"kucoin","offsetgroup":"kucoin","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-06-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000"],"xaxis":"x","y":[5799,2357,2535,5841,1364,2394,5191,5184,24581,21007,1579,7236,2078],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=Sweat Economy<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Sweat Economy","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Sweat Economy","offsetgroup":"Sweat Economy","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[8312,2306,2855,3687,381,2038,5385,4300,11223,3323,1756,6409,11533],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=near<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"near","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"near","offsetgroup":"near","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000"],"xaxis":"x","y":[6646,18417,11612,14915,14788,9537,52390,5453,13204,59732,7729,11688,1436],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_NAME=coinbase<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"coinbase","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"coinbase","offsetgroup":"coinbase","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000"],"xaxis":"x","y":[1671,2218,2537,1166,2927,49,1992,3398,1491,4324,2046],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"TRANSACTION"}},"legend":{"title":{"text":"PROJECT_NAME"},"tracegroupgap":0},"margin":{"t":60},"barmode":"relative","title":{"text":"Number of transaction on active projects"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('aaee602d-e2ae-4b9e-8108-f5de2cffb82d');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The provided data presents information about the number of transactions for various projects over a period of time. Upon analyzing the data, several key insights can be derived.</p>
<p>Firstly, the project named "sweat" consistently maintains a high level of popularity throughout the observed months. It records significant numbers of transactions, indicating a large user base and strong engagement.</p>
<p>Secondly, the popularity of certain projects experiences fluctuations from month to month. For example, the project "NEAR Crowd" demonstrates varying levels of user engagement, with different transaction volumes observed across different months.</p>
<p>Furthermore, there are noticeable seasonal trends in the popularity of certain projects. For instance, the project "sweat" consistently shows a surge in transactions during the months of September, October, and November.</p>
<p>Moreover, projects such as "Aurora Faucet" and "Spin" exhibit consistent levels of user engagement, as evidenced by their steady number of transactions over the given period.</p>
<p>On the other hand, projects like "Tether (USDT)" and "PlayEmber" appear to have lower transaction volumes, which could indicate either limited user engagement or that they are relatively new projects that are still in the process of gaining traction.</p>
<p>In summary, the data reveals the dynamic nature of user engagement and popularity among different projects. The project "sweat" stands out as consistently popular, while other projects experience fluctuations and seasonal variations in their transaction volumes.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="7c5b44bf-cc34-4571-9a6d-e3985b126f22" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("7c5b44bf-cc34-4571-9a6d-e3985b126f22")) { Plotly.newPlot( "7c5b44bf-cc34-4571-9a6d-e3985b126f22", [{"alignmentgroup":"True","hovertemplate":"CATEGORY=Inactive projects<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Inactive projects","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"Inactive projects","offsetgroup":"Inactive projects","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-06-01 00:00:00.000"],"xaxis":"x","y":[2601713,3025887,1968906,1717853,2285285,2654787,3357174,2828247,1301961,1960797,2416047,2971760,847207],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"CATEGORY=Active projects<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Active projects","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"Active projects","offsetgroup":"Active projects","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-06-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[1268740,8159086,11481067,7646529,5784063,8183986,7514105,8682614,11441104,5451861,5096766,8186553,9846561],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"TRANSACTION"}},"legend":{"title":{"text":"CATEGORY"},"tracegroupgap":0},"margin":{"t":60},"barmode":"relative","title":{"text":"Number of transactions on NEAR by project type"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('7c5b44bf-cc34-4571-9a6d-e3985b126f22');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="eadf7ac1-0f96-4aba-a961-fb69945a096e" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("eadf7ac1-0f96-4aba-a961-fb69945a096e")) { Plotly.newPlot( "eadf7ac1-0f96-4aba-a961-fb69945a096e", [{"fillpattern":{"shape":""},"groupnorm":"percent","hovertemplate":"CATEGORY=Inactive projects<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Inactive projects","line":{"color":"#636efa"},"marker":{"symbol":"circle"},"mode":"lines","name":"Inactive projects","orientation":"v","showlegend":true,"stackgroup":"1","x":["2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-06-01 00:00:00.000"],"xaxis":"x","y":[2601713,3025887,1968906,1717853,2285285,2654787,3357174,2828247,1301961,1960797,2416047,2971760,847207],"yaxis":"y","type":"scatter"},{"fillpattern":{"shape":""},"groupnorm":"percent","hovertemplate":"CATEGORY=Active projects<br>MONTH=%{x}<br>NUMBER_OF_TX=%{y}<extra></extra>","legendgroup":"Active projects","line":{"color":"#EF553B"},"marker":{"symbol":"circle"},"mode":"lines","name":"Active projects","orientation":"v","showlegend":true,"stackgroup":"1","x":["2022-06-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[1268740,8159086,11481067,7646529,5784063,8183986,7514105,8682614,11441104,5451861,5096766,8186553,9846561],"yaxis":"y","type":"scatter"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"NUMBER_OF_TX"}},"legend":{"title":{"text":"CATEGORY"},"tracegroupgap":0},"title":{"text":"Normalized transactions on NEAR by project type"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('eadf7ac1-0f96-4aba-a961-fb69945a096e');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The provided data showcases the number of transactions for different projects categorized as either "Active" or "Inactive" over a period of time. By focusing solely on the number of transactions, several insights can be gleaned from the chart.</p>
<p>Looking at the data, it is evident that the number of transactions varies significantly between active and inactive projects. Active projects consistently demonstrate higher transaction volumes compared to inactive projects.</p>
<p>For instance, during the month of June 2022, an active project recorded approximately 1,268,740 transactions, whereas an inactive project witnessed around 2,601,713 transactions. This trend continues throughout the observed period, emphasizing the higher engagement and popularity of active projects.</p>
<p>In terms of specific months, it is noteworthy that certain months show a higher number of transactions across both active and inactive projects. For example, in December 2022, active projects experienced a surge in transactions, reaching a notable count of 9,846,561 transactions. Similarly, inactive projects also exhibited increased activity during this period, with around 2,285,285 transactions.</p>
<p>On the other hand, some months depict relatively lower transaction volumes. In June 2023, active projects recorded approximately 5,784,063 transactions, while inactive projects had around 1,301,961 transactions, reflecting a decline compared to previous months.</p>
<p>Overall, the data highlights the varying transaction volumes between active and inactive projects, with active projects consistently outperforming inactive ones. Additionally, certain months exhibit higher engagement and transaction activity for both project categories.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="78370392-05db-4372-a5dc-bc0dc4e8656d" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("78370392-05db-4372-a5dc-bc0dc4e8656d")) { Plotly.newPlot( "78370392-05db-4372-a5dc-bc0dc4e8656d", [{"alignmentgroup":"True","hovertemplate":"CATEGORY=Inactive projects<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Inactive projects","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"Inactive projects","offsetgroup":"Inactive projects","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-06-01 00:00:00.000"],"xaxis":"x","y":[112283,126924,175180,140293,106431,114111,194638,114848,111125,240457,145037,210799,30405],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"CATEGORY=Active projects<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Active projects","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"Active projects","offsetgroup":"Active projects","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-06-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[14027,747585,1019041,751314,752970,843153,804432,989983,1026690,31909,40639,779843,919025],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"TRANSACTION"}},"legend":{"title":{"text":"CATEGORY"},"tracegroupgap":0},"margin":{"t":60},"barmode":"relative","title":{"text":"Number of user on NEAR by project type"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('78370392-05db-4372-a5dc-bc0dc4e8656d');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="05c778e8-9364-49c5-80f0-d3ece3a68df5" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("05c778e8-9364-49c5-80f0-d3ece3a68df5")) { Plotly.newPlot( "05c778e8-9364-49c5-80f0-d3ece3a68df5", [{"fillpattern":{"shape":""},"groupnorm":"percent","hovertemplate":"CATEGORY=Inactive projects<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Inactive projects","line":{"color":"#636efa"},"marker":{"symbol":"circle"},"mode":"lines","name":"Inactive projects","orientation":"v","showlegend":true,"stackgroup":"1","x":["2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-06-01 00:00:00.000"],"xaxis":"x","y":[112283,126924,175180,140293,106431,114111,194638,114848,111125,240457,145037,210799,30405],"yaxis":"y","type":"scatter"},{"fillpattern":{"shape":""},"groupnorm":"percent","hovertemplate":"CATEGORY=Active projects<br>MONTH=%{x}<br>NUMBER_OF_USER=%{y}<extra></extra>","legendgroup":"Active projects","line":{"color":"#EF553B"},"marker":{"symbol":"circle"},"mode":"lines","name":"Active projects","orientation":"v","showlegend":true,"stackgroup":"1","x":["2022-06-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[14027,747585,1019041,751314,752970,843153,804432,989983,1026690,31909,40639,779843,919025],"yaxis":"y","type":"scatter"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"MONTH"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"NUMBER_OF_USER"}},"legend":{"title":{"text":"CATEGORY"},"tracegroupgap":0},"title":{"text":"Normalized users on NEAR by project type"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('05c778e8-9364-49c5-80f0-d3ece3a68df5');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>Looking at the data, we observe that the number of users varies between active and inactive projects. Active projects tend to attract a higher number of users compared to inactive projects.</p>
<p>For example, in June 2022, an active project had approximately 14,027 users, while an inactive project had 30,405 users. This indicates that active projects garnered more user interest and participation during that period.</p>
<p>Further analysis reveals that certain months exhibit higher user engagement for both project categories. In September 2022, active projects witnessed a significant increase in user numbers, reaching approximately 1,019,041 users. In the same month, inactive projects attracted around 194,638 users.</p>
<p>Conversely, some months depict relatively lower user participation. In November 2022, active projects saw approximately 919,025 users, while inactive projects had around 112,283 users. These figures indicate a comparatively lower level of user engagement during that particular month.</p>
</div>
<div class="cell cell-markdown">
<h1 id="Projects-on-NEAR-Horizon">Projects on NEAR Horizon<a class="anchor-link" href="#Projects-on-NEAR-Horizon">¶</a></h1>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="f42de060-cf90-4015-986e-cd2dce1baa09" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("f42de060-cf90-4015-986e-cd2dce1baa09")) { Plotly.newPlot( "f42de060-cf90-4015-986e-cd2dce1baa09", [{"cells":{"values":[["nxfinity.near","golas.near","onmachina.near","bb30e5fa079082343281c25e419edd8c661dacd710239058cc2cd72401732bff","hub.near","vexesports.near","mintbase.near","frado.near","beepopula.near","arkana.near","calimero.near","dima_sheleg.near","nearefi.near","minorityprogrammers.near","every.near","gamingbigbrain.near","3f9aee5d822139e866a9048db39faeb326dfd8d5252d0ae338bf87e082e442cd","dropt.near","join_sociapol.near","holistic.near","289875cf923a10ba2f249cd140fa096a9f58ecdbe0f018c2a57a4a7e63c7e2bf","saveplanet.near","chainlib.near","v1.dangelfund.near","playible.near","madeforgamershq.near","partners.learnclub.near","socialcap.near","openbisea.near","stateless.near","pointzero.near","meteor-wallet.near","daorecords.near","gratisfinance.near","djooky.near","d5b7992156fa599637bedcbc52597678c8b58bc535320770b6a25bdbd4ac984b","lbodigital.near","sebastianklaey.near","vaceituno.near","phoenixbonds.near","linearprotocol.near","pivortex.near","near_mobile.near","mintickt.near","00711.near","veka.near","neargenesis.near","evinitiative.near","social.coatyworld.near","eb9751a3c12f889ae66cbdb3184bd01c98a8bcd79c21f3ce699059af4a2bc320","contextdao.near","solutivethinker.near","brian_horizon_test.near","aaoletta.near","desapmex.near","bstt.near","pulsemarkets.near","introtomusictheory.near","solaire.near","brian_terra.near","mcbyte.near","theprimeai.near","vicbaporu.near","cryptomx.near","walc.near","davj.near","genadrop.near","markery12.near","web3mon.near","mydev.near","marmajgaming.near","777c043850460c64a3c5e18062defef938e51486cd02f67d1c7749ff3bdbff4e","perennis.near","murdermysterycollective.near","keypom.near","takachain.near","zonaris.near","meta-pool-official.near","openwebacademy.near","nearpaddev.near","misha_levotski.near","delphyne.near","web4.near","1fba6f6e8d955d7038c291238910419cc8478662415e85a7d8473392b191a690","zomland.near","2e77cb43eec84493cf57d93005f9b834ac93d787e41667f8c37222024e412656","arium.near","moonbasedao.near","pipar.near","williamxx.near","nearukraineguild.near","web3client.near","promo.fewandfar.near","huddlr.near","nearhorizon.near","superfungible.near","near","chukhnina.near","alfi-o.near","lccc.near","hubbabubba.near","ampleplatform.near","cryptoeconomiclabs.near","2e4a196628d2e8dc574caf52556d50d468ac11e359e1f4a4172b0d9fbbad4758","induco.near","whendacha.near","hinepbot.near","cutdeckstudio.near","onboarder.near","toolblox.near","chloe.near","sjamayee.near","layersapp.near","rogues.near","sharddog.near","thrivein.near","questbook.near","adashifinance.near","coronet.near","amplifyart.near","kenjon.near","edunear.testnet","coinnewsextra.near","lincolngakuya.near","lightency.near","proof-of-personhood.near","sociapol.near","darshanadeploy.near","papercliptech.near","nearhub-dao.sputnik-dao.near","multicall.sputnik-dao.near","de3verse.near","sympho.near","geofightnft.near","blackfilmguild.near","ccc.sputnik-dao.near","is-on.near","rajkaria.near","better.near","welldonestudio.near","hideyourcash.near","bearverse2.near","arrozestudios.near","loozr.near","alphafortress.near","nearinbox.near","metalordz.near","grvty.near","qstn.near","kwiktrust.near","primerlabs.near","monadsocial.near","wulfrano.near","xravers.near","connect3world.near","veriken.near","solacefi.near","jobcrypt.near","5racestreetnfthh.near","v1.pembrock.near","lazyfi-learning.near","hooh_official.near","bancambios.near","gymwallet.near","thecarbongames.near","bynd.near"],["nxfinity.near","golas.near","onmachina.near","bb30e5fa079082343281c25e419edd8c661dacd710239058cc2cd72401732bff","hub.near","vexesports.near","mintbase.near","frado.near","beepopula.near","arkana.near","calimero.near","dima_sheleg.near","nearefi.near","minorityprogrammers.near","every.near","gamingbigbrain.near","3f9aee5d822139e866a9048db39faeb326dfd8d5252d0ae338bf87e082e442cd","dropt.near","join_sociapol.near","holistic.near","GeeGee","saveplanet.near","chainlib.near","v1.dangelfund.near","playible","madeforgamershq.near","Learn NEAR Club","socialcap.near","openbisea.near","stateless.near","pointzero.near","meteor-wallet.near","daorecords.near","gratisfinance.near","djooky.near","d5b7992156fa599637bedcbc52597678c8b58bc535320770b6a25bdbd4ac984b","lbodigital.near","sebastianklaey.near","vaceituno.near","phoenixbonds.near","linearprotocol.near","pivortex.near","near_mobile.near","mintickt.near","00711.near","veka.near","neargenesis.near","EV Initiative (EVI)","social.coatyworld.near","eb9751a3c12f889ae66cbdb3184bd01c98a8bcd79c21f3ce699059af4a2bc320","contextdao.near","solutivethinker.near","brian_horizon_test.near","aaoletta.near","desapmex.near","bstt.near","pulsemarkets.near","introtomusictheory.near","solaire.near","brian_terra.near","mcbyte.near","theprimeai.near","vicbaporu.near","cryptomx.near","walc.near","davj.near","genadrop.near","markery12.near","Web3Mon","mydev.near","marmajgaming.near","777c043850460c64a3c5e18062defef938e51486cd02f67d1c7749ff3bdbff4e","perennis.near","murdermysterycollective.near","keypom.near","takachain.near","zonaris.near","meta-pool-official.near","openwebacademy.near","nearpaddev.near","misha_levotski.near","delphyne.near","web4.near","1fba6f6e8d955d7038c291238910419cc8478662415e85a7d8473392b191a690","ZomLand","2e77cb43eec84493cf57d93005f9b834ac93d787e41667f8c37222024e412656","arium.near","moonbasedao.near","pipar.near","williamxx.near","nearukraineguild.near","web3client.near","promo.fewandfar.near","huddlr.near","nearhorizon.near","superfungible.near","near","chukhnina.near","alfi-o.near","lccc.near","hubbabubba.near","Ample","cryptoeconomiclabs.near","2e4a196628d2e8dc574caf52556d50d468ac11e359e1f4a4172b0d9fbbad4758","induco.near","whendacha.near","hinepbot.near","cutdeckstudio.near","onboarder.near","toolblox.near","chloe.near","sjamayee.near","layersapp.near","rogues.near","sharddog.near","thrivein.near","questbook.near","adashifinance.near","coronet.near","amplifyart.near","kenjon.near","edunear.testnet","coinnewsextra.near","lincolngakuya.near","lightency","proof-of-personhood.near","SociaPol","darshanadeploy.near","papercliptech.near","nearhub-dao.sputnik-dao.near","Near-multicall","de3verse.near","sympho.near","geofightnft.near","blackfilmguild.near","ccc.sputnik-dao.near","is-on.near","rajkaria.near","better.near","welldonestudio.near","hideyourcash.near","bearverse2.near","arrozestudios.near","Loozr (LZR)","alphafortress.near","nearinbox.near","metalordz.near","GRVTY","qstn.near","kwiktrust.near","primerlabs.near","monadsocial.near","wulfrano.near","XRAVERS","Connect3","veriken.near","solacefi.near","jobcrypt.near","nft.hiphop","Pembrock","LazyFi","HOOH","Bancambios","gymwallet.near","thecarbongames.near","bynd.near"]]},"header":{"values":["PROJECT_ADDRESS","PROJECT"]},"type":"table"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"title":{"text":"Projects on NEAR Horizon"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('f42de060-cf90-4015-986e-cd2dce1baa09');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>Based on the list of projects on NEAR Horizon, we can see that <strong>Learn NEAR Club</strong> is the only active project that exists on NEAR Horizon too.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="2bdf6f35-178f-4faa-9ab0-76d46e6c5b65" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("2bdf6f35-178f-4faa-9ab0-76d46e6c5b65")) { Plotly.newPlot( "2bdf6f35-178f-4faa-9ab0-76d46e6c5b65", [{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=Other<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"Other","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"Other","offsetgroup":"Other","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-09-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-12-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2022-11-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2023-02-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2022-06-01 00:00:00.000","2022-12-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000"],"xaxis":"x","y":[13,2,23,7,4,2,1,6,3,4,1,3,18,3,3,70,16,2,6,1,21,6,2,6,8,7,14,4,4,1,1,12,8,16,4,4,1,1,6,3,24,21,2,2,2,12,1,4,6,1,3,1,1,18,2,37,7,2,25,1,13,1,22,1,6,1,1,4,4,2,1,2,1,1,1,3,16,1,1,7,3,3,3,19,1,8,1,2,2,1,4,8,8,3,1,3,12,1,1,13,7,1,9,23,2,24,12,1,1,18,10,4,1,36,9,1,18,2,1,2,2,13,12,11,13,1,3,8,1,17,3,35,4,23,35,3,5,2,4,3,2,2,2,2,6,3,3,9,7,4,17,3,4,1,23,1,1,3,6,8,4,5,9,3,4,3,2,1,2,27,7,9,1,7,2,1,1,29,8,2,4,7,9,2,6,5,2,7,22,3,11,1,7,1,4,1,3,3,34,1,1,2,3,5,2,2,2,2,3,1,1,2,4,4,4,1,1,27,1,4,1,21,2,6,2,2,1,2,10,2,14,3,5,3,3,2,6,7,2,3,75,3,16,2,5,2,3,1,1,2,7,1,16,2,12,4,1,3,2,1,4,4,1,6,15,1,2,3,41,1,6,4,1,3,2,1,3,3,1,2,2,6,2,5,16,16,17,40,8,15,3,1,17,5,1,5,2,2,1,2,26,30,1,5,7,3,1,1,1,1,3,3,9,10,6,26,18,3,33,1,9,7,15,2,2,3,3,18,13,1,4,2,1,58,1,2,2,10,95,2,2,2,4,3,25,3,2,55,10,3,20,1,2,17,6,1,2,29,1,1,1,13,4,18,4,4,2,2,1,3,9,2,15,3,1,9,2,1,1,42,1,7,2,5,9,7,3,7,1,4,10,49,35,3,8,78,18,3,2,20,1,2,1,3,7,8,3,1,9,2,1,6,23,1,14,2,3,3,1,1,7,6,16,6,2,18,10,4,1,1,9,89,4,1,3,1,4,1,29,33,3,4,2,4,10,5,1,3,44,5,1,2,1,1,2,3,2,1,12,34,3,2,2,2,3,2,12,1,1,3,4,1,24,1,5,3,1,1,2,1,1,4,1,7,20,32,10,1,4,2,1,3,2,2,35,1,1,3,3,9,2,3,8,6,5,1,1,2,10,36,16,2,1,1,1,3,2,6,43,16,1,1,3,4,5,2,1,2,2,4,5,4,4,4,1,6,3,1,4,5,1,3,22,1,4,5,34,7,9,25,1,5,1,6,11,1,13,1,2,30,19,16,2,9,14,2,2,2,5,4,1,5,11,17,2,3,2,9,13,20,3,4,1,17,5,1,2,1,1,3,1,2,11,3,3,1,6,19,1,11,2,3,3,3,2,1,4,1,14,1,6,60,8,8,1,3,28,13,1,1,4,4,1,10,3,4,1,1,1,4,5,71,3,12,69,8,1,1,1,3,12,1,5,9,3,1,1,2,2,3,2,25,3,7,1,4,14,2,2,8,8,13,24,7,21,6,1,3,2,2,8,4,7,7,16,27,11,4,4,2,2,3,3,16,14,4,1,3,3,1,1,20,2,1,1,4,4,3,16,1,1,2,1,3,9,3,1,3,1,2,2,2,8,1,2,1,19,2,4,2,5,33,7,7,2,3,7,2,3,1,30,3,1],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=ZomLand<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"ZomLand","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"ZomLand","offsetgroup":"ZomLand","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000"],"xaxis":"x","y":[24100,83143,16474,25420,28497,45826,49294,51991,22855,70141,24404,44024,24344],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=Pembrock<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"Pembrock","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Pembrock","offsetgroup":"Pembrock","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[6354,6110,26016,24876,57749,17806,8709,5254,8414,7976,5310,12833],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=Learn NEAR Club<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"Learn NEAR Club","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"Learn NEAR Club","offsetgroup":"Learn NEAR Club","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2022-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000"],"xaxis":"x","y":[35493,10666,30186,36789,53803,30210,1828,26060,18143,15127,22773,24344,33042],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=whendacha.near<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"whendacha.near","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"whendacha.near","offsetgroup":"whendacha.near","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-09-01 00:00:00.000","2022-10-01 00:00:00.000"],"xaxis":"x","y":[1177,136],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=v1.dangelfund.near<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"v1.dangelfund.near","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"v1.dangelfund.near","offsetgroup":"v1.dangelfund.near","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[398,724,412,162],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=nearhorizon.near<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"nearhorizon.near","marker":{"color":"#FF6692","pattern":{"shape":""}},"name":"nearhorizon.near","offsetgroup":"nearhorizon.near","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-05-01 00:00:00.000","2023-06-01 00:00:00.000"],"xaxis":"x","y":[401,329],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=join_sociapol.near<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"join_sociapol.near","marker":{"color":"#B6E880","pattern":{"shape":""}},"name":"join_sociapol.near","offsetgroup":"join_sociapol.near","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-09-01 00:00:00.000"],"xaxis":"x","y":[100],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=Bancambios<br>MONTH=%{x}<br>TRANSACTION=%{y}<extra></extra>","legendgroup":"Bancambios","marker":{"color":"#FF97FF","pattern":{"shape":""}},"name":"Bancambios","offsetgroup":"Bancambios","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-02-01 00:00:00.000","2022-11-01 00:00:00.000"],"xaxis":"x","y":[115,163],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"Month"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"Transactions"}},"legend":{"title":{"text":"PROJECT_GROUP"},"tracegroupgap":0},"margin":{"t":60},"barmode":"relative","title":{"text":"Number of Transactions (Projects on NEAR Horizon)"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('2bdf6f35-178f-4faa-9ab0-76d46e6c5b65');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The given chart illustrates the number of project transactions for various projects over a period of one year, from June 2022 to June 2023. The data includes transactions for projects such as "ZomLand," "whendacha.near," "v1.dangelfund.near," "Others," "Pembrock," "Learn NEAR Club," "nearhorizon.near," and "Bancambios."</p>
<p>Overall, it can be observed that different projects experienced varying transaction volumes throughout the given timeframe.</p>
<p>The project "ZomLand" had the highest number of transactions, with a peak of 83,143 in July 2022. However, its transaction volume declined in subsequent months, reaching the lowest point of 16,474 in February 2023. In May 2023, there was a notable increase in transactions for ZomLand, with a total of 49,294 recorded. Similarly, in June 2023, ZomLand had 24,639 transactions.</p>
<p>The project "Learn NEAR Club" also had fluctuations in its transaction volumes over the course of the year. It started with 10,666 transactions in July 2022 and gradually increased to the highest point of 36,789 transactions in January 2023. However, there was a decline in transactions for Learn NEAR Club in the following months.</p>
<p>Other projects such as "whendacha.near," "v1.dangelfund.near," "Others," "Pembrock," "nearhorizon.near," and "Bancambios" had relatively lower transaction volumes compared to ZomLand and Learn NEAR Club. These projects had varying transaction volumes throughout the observed period, with no distinct increasing or decreasing trends.</p>
</div><div class="cell code-cell code-cell-no-input">
<hr class="output-separator">
<div class="">
<div> <div id="c1453774-6952-4b2e-8278-f0da65f1be93" class="plotly-graph-div" style="height:525px; width:100%;"></div> <script type="text/javascript"> require(["plotly"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("c1453774-6952-4b2e-8278-f0da65f1be93")) { Plotly.newPlot( "c1453774-6952-4b2e-8278-f0da65f1be93", [{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=Other<br>MONTH=%{x}<br>USER=%{y}<extra></extra>","legendgroup":"Other","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"Other","offsetgroup":"Other","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2022-10-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-09-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2022-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-12-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2022-10-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2022-11-01 00:00:00.000","2022-09-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2022-08-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2023-05-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2022-09-01 00:00:00.000","2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-01-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-03-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-07-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2023-02-01 00:00:00.000","2023-02-01 00:00:00.000","2023-02-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2022-07-01 00:00:00.000","2022-12-01 00:00:00.000","2022-06-01 00:00:00.000","2022-12-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2023-03-01 00:00:00.000","2022-10-01 00:00:00.000","2023-03-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2022-06-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-02-01 00:00:00.000","2022-06-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-01-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2022-08-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2023-03-01 00:00:00.000","2023-03-01 00:00:00.000","2022-11-01 00:00:00.000","2023-04-01 00:00:00.000","2023-01-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-12-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2023-04-01 00:00:00.000","2023-03-01 00:00:00.000","2022-08-01 00:00:00.000","2023-04-01 00:00:00.000","2023-05-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000","2022-12-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-06-01 00:00:00.000","2022-10-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-05-01 00:00:00.000","2023-01-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-05-01 00:00:00.000","2023-06-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2023-02-01 00:00:00.000","2022-08-01 00:00:00.000","2022-07-01 00:00:00.000","2022-10-01 00:00:00.000","2022-11-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-06-01 00:00:00.000","2022-09-01 00:00:00.000","2022-10-01 00:00:00.000","2023-05-01 00:00:00.000","2023-04-01 00:00:00.000","2023-02-01 00:00:00.000","2023-06-01 00:00:00.000","2022-08-01 00:00:00.000"],"xaxis":"x","y":[3,2,4,1,1,1,1,1,1,2,1,2,3,1,1,1,1,1,2,1,3,3,1,3,1,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,5,1,1,2,1,1,2,2,1,2,1,1,1,1,1,1,1,2,1,11,1,3,1,2,1,1,1,2,2,1,1,1,1,1,2,5,1,1,3,1,2,2,1,1,1,1,1,2,1,2,3,2,2,1,1,1,1,1,3,2,1,3,1,2,2,4,2,1,1,2,68,6,2,1,5,3,1,2,1,1,1,2,1,2,1,4,1,2,2,1,4,2,4,2,3,3,2,1,1,3,1,1,1,1,1,2,2,2,2,1,1,4,3,2,1,1,1,1,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,1,3,2,1,1,79,2,2,2,3,1,3,1,2,5,1,2,3,2,1,1,1,1,1,1,2,1,3,1,1,2,1,1,1,1,1,63,2,1,1,1,2,1,1,1,1,1,6,1,2,1,2,1,3,2,1,1,2,2,1,8,1,2,1,1,2,3,2,1,2,2,1,2,1,1,1,1,1,1,2,1,1,7,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,3,5,2,1,2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,2,2,2,2,1,3,2,2,2,1,1,1,2,1,1,2,1,2,3,1,2,1,1,2,1,1,2,2,4,2,1,1,1,3,1,1,1,1,1,1,4,1,1,2,2,1,1,1,1,1,1,6,3,1,1,2,1,1,45,1,1,22,2,2,2,2,1,1,2,1,1,2,1,2,1,1,2,1,2,2,1,2,3,12,2,3,1,3,2,1,2,1,2,1,2,1,2,2,3,2,1,1,1,1,4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,3,5,3,1,1,1,1,1,1,2,1,2,1,2,1,1,1,2,1,1,1,2,3,1,2,1,1,1,1,1,1,1,2,2,1,2,1,4,2,1,1,1,1,1,1,1,4,2,3,1,1,1,2,1,2,1,1,3,1,1,2,1,1,1,2,2,2,3,1,1,2,3,1,2,1,1,1,1,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,2,3,1,2,1,1,2,1,1,1,1,2,1,3,3,1,1,1,1,2,1,1,1,1,1,1,2,1,1,2,1,1,1,2,1,1,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,2,1,1,2,1,1,2,2,1,1,1,3,1,1,1,1,3,2,1,1,3,1,2,1,1,13,3,1,1,2,1,1,1,1,70,2,2,1,2,2,1,1,1,1,3,3,3,2,3,2,2,1,1,1,1,2,1,1,1,2,1,1,2,1,1,2,2,1,1,1,1,2,2,1,2,1,1,73,3,3,9,3,1,2,1,1,1,3,3,1,2,2,4,2,1,1,1,2,1,5,1,3,1,1,1,1,1,1,1,1,1,4,2,1,1,1,1,1,1,2,4,2,1,1,1,1,1,1,2,1,1,1,3,1,1,2,2,4,2,1,2,2,1,1,2,1,1,1,1],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=ZomLand<br>MONTH=%{x}<br>USER=%{y}<extra></extra>","legendgroup":"ZomLand","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"ZomLand","offsetgroup":"ZomLand","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-01-01 00:00:00.000","2022-07-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2023-03-01 00:00:00.000","2022-09-01 00:00:00.000","2023-05-01 00:00:00.000","2022-10-01 00:00:00.000","2022-06-01 00:00:00.000","2022-08-01 00:00:00.000","2023-06-01 00:00:00.000","2023-04-01 00:00:00.000","2022-12-01 00:00:00.000"],"xaxis":"x","y":[339,1854,263,295,215,533,273,417,1770,765,157,529,456],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=Pembrock<br>MONTH=%{x}<br>USER=%{y}<extra></extra>","legendgroup":"Pembrock","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Pembrock","offsetgroup":"Pembrock","orientation":"v","showlegend":true,"textposition":"auto","x":["2022-11-01 00:00:00.000","2022-12-01 00:00:00.000","2022-08-01 00:00:00.000","2022-10-01 00:00:00.000","2022-09-01 00:00:00.000","2022-07-01 00:00:00.000","2023-04-01 00:00:00.000","2023-06-01 00:00:00.000","2023-05-01 00:00:00.000","2023-02-01 00:00:00.000","2023-01-01 00:00:00.000","2023-03-01 00:00:00.000"],"xaxis":"x","y":[335,179,305,364,450,261,238,184,255,281,199,272],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"PROJECT_GROUP=Learn NEAR Club<br>MONTH=%{x}<br>USER=%{y}<extra></extra>","legendgroup":"Learn NEAR Club","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"Learn NEAR Club","offsetgroup":"Learn NEAR Club","orientation":"v","showlegend":true,"textposition":"auto","x":["2023-05-01 00:00:00.000","2022-07-01 00:00:00.000","2023-03-01 00:00:00.000","2023-01-01 00:00:00.000","2022-09-01 00:00:00.000","2022-08-01 00:00:00.000","2022-06-01 00:00:00.000","2022-10-01 00:00:00.000","2023-02-01 00:00:00.000","2022-11-01 00:00:00.000","2023-06-01 00:00:00.000","2022-12-01 00:00:00.000","2023-04-01 00:00:00.000"],"xaxis":"x","y":[2314,1735,2027,2422,7894,6193,606,4482,1292,2038,1740,1577,2703],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"Month"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"Transactions"}},"legend":{"title":{"text":"PROJECT_GROUP"},"tracegroupgap":0},"margin":{"t":60},"barmode":"relative","title":{"text":"Number of user (Projects on NEAR Horizon)"}}, {"responsive": true} ).then(function(){
var gd = document.getElementById('c1453774-6952-4b2e-8278-f0da65f1be93');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); </script> </div>
</div>
</div>
<div class="cell cell-markdown">
<p>The provided data presents information on the transaction volumes of different projects over a specific period. Upon analyzing the chart, several noteworthy observations can be made.</p>
<p>To begin with, there were notable fluctuations in transaction volumes across the observed timeframe. Projects such as ZomLand and Learn NEAR Club experienced varying levels of activity, with transaction volumes both increasing and decreasing throughout the year. Conversely, other projects exhibited more stable transaction levels.</p>
<p>ZomLand emerged as the project with the highest number of transactions. It reached a peak of 83,143 transactions in July 2022, demonstrating a significant level of user engagement. Subsequently, ZomLand's transaction volume experienced a decline in February 2023, reaching 16,474 transactions. However, the project regained momentum in May 2023, with transaction volumes rising to 49,294.</p>
<p>Similarly, Learn NEAR Club demonstrated fluctuating transaction volumes over the observed period. Starting at 6,193 transactions in August 2022, the project experienced a peak of 7,894 transactions in September 2022. However, transaction volumes for Learn NEAR Club declined to 1,577 in December 2022. Notably, the project witnessed a surge in October 2022, reaching 4,482 transactions.</p>
<p>Other projects, namely whendacha.near, v1.dangelfund.near, Pembrock, nearhorizon.near, Bancambios, and Others, recorded relatively lower transaction volumes compared to ZomLand and Learn NEAR Club. These projects did not exhibit clear upward or downward trends in their transaction volumes, indicating a more consistent level of activity.</p>
<p>It is also worth noting that transaction volumes varied on a monthly basis for most projects. Some months experienced higher levels of transaction activity, while others witnessed a decline. This suggests that project transactions were influenced by factors such as user engagement, market conditions, and project developments.</p>
<p>In conclusion, the chart demonstrates the dynamic nature of project transactions during the observed period. While ZomLand and Learn NEAR Club experienced fluctuations in transaction volumes, other projects maintained relatively stable levels. Monthly variations in transaction volumes indicate the impact of various factors on project activity.</p>
</div>
<div class="cell cell-markdown">
<h1 id="Conclusions">Conclusions<a class="anchor-link" href="#Conclusions">¶</a></h1>
</div>
<div class="cell cell-markdown">
<p>As for the landscape of projects on NEAR, we can see that</p>
<ul>
<li><p>The number of smart contract users on NEAR has shown consistent growth over time, with a significant increase in cumulative users. This indicates a growing adoption and utilization of smart contracts on the NEAR platform.</p>
</li>
<li><p>The top projects on NEAR based on the number of transactions indicate a diverse range of applications and services. These projects include NEAR Crowd, Aurora Faucet, sweat, and others, which have recorded high transaction volumes. This demonstrates the active usage and engagement of users with these projects.</p>
</li>
<li><p>The top projects on NEAR based on the number of users reflect a mix of different categories such as sweat, kucoin, Tether (USDT), and others. These projects have attracted a substantial user base, suggesting their popularity and appeal within the NEAR ecosystem.</p>
</li>
<li><p>The charts showing the number of projects across different transaction and user volume categories highlight the diversity of project sizes. The majority of projects fall within the "Less than 1000 tx" and "Less than 1000 user" categories, indicating the presence of numerous smaller-scale projects. However, a notable number of projects also fall within the higher transaction and user volume categories, indicating the existence of larger-scale projects within the NEAR ecosystem.</p>
</li>
<li><p>The distribution of projects across various categories includes dapp, defi, chadmin, nft, Uncategorized, and cex. While the "Uncategorized" category represents the largest proportion of projects, other categories such as dapp, defi, and cex also have some representation. These categories provide insights into the different types of projects and applications being developed on the NEAR platform.</p>
</li>
</ul>
<p>As for projects on NEAR Horizon, we can observe that the prominence of ZomLand in terms of transaction volumes. ZomLand experienced significant fluctuations throughout the observed timeframe, with both peaks and declines. This suggests a dynamic user base and varying levels of engagement with the platform. The project's transaction volumes reached their highest point in June 2022, dipped in the following months, and then experienced a gradual increase until reaching another peak in June 2023. This volatility indicates the project's responsiveness to market conditions and the potential influence of factors such as new feature releases, marketing campaigns, or user incentives.</p>
<p>Similarly, Learn NEAR Club demonstrated fluctuations in transaction volumes, albeit with a different pattern compared to ZomLand. The project experienced periodic surges and drops, indicating fluctuations in user engagement and activity. Notably, Learn NEAR Club witnessed a significant spike in transaction volumes in August 2022 and November 2022, suggesting a potential correlation with specific events, marketing efforts, or community initiatives during those periods. These peaks were followed by a gradual decline, followed by subsequent fluctuations in transaction volumes.</p>
</div>
</body>
</html>