-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaeweb.html
1353 lines (1159 loc) · 95 KB
/
aeweb.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
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US" class="no-js scheme_default">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="format-detection" content="telephone=no">
<title>AEWeb</title>
<meta name='robots' content='max-image-preview:large' />
<script defer data-domain="archethic.net/aeweb.html" src="https://plausible.io/js/plausible.js"></script>
<meta property="og:url" content="/ " />
<meta property="og:title" content="Archethic" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<link rel="preload" href="/assets/css/inline-css1.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/inline-css1.css"></noscript>
<script async type='text/javascript' src='/assets/js/video-min.js'>
</script>
<link rel="preload" href="/assets/css/trx_addons_icons-embedded.css" as="style"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/trx_addons_icons-embedded.css"></noscript>
<link rel="preload" href="/assets/css/trx_addons.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/trx_addons.css"></noscript>
<link rel="preload" href="/assets/css/techupdate.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/techupdate.css"></noscript>
<link rel="preload" href="/assets/css/trx_addons.animation.css" as="style"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/trx_addons.animation.css"></noscript>
<link rel="preload" href="/assets/css/disclaimer.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/disclaimer.css"></noscript>
<link rel="preload" href="/assets/css/frontend.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/frontend.min.css"></noscript>
<link rel="preload" href="https://fonts.googleapis.com/css?family=Muli:300,400,600,700&subset=latin,latin-ext"
as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Muli:300,400,600,700&subset=latin,latin-ext"></noscript>
<link rel="preload" href="/assets/css/inline-css2.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/inline-css2.css"></noscript>
<link property="stylesheet" rel='stylesheet' id='js_composer_front-css'
href='/assets/css/js_composer.min.css?ver=6.7.0' type='text/css' />
<link rel="preload" href="/assets/css/fontello-embedded.css" as="style"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/fontello-embedded.css"></noscript>
<link rel="preload" href="/assets/css/style.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/style.css"></noscript>
<link rel="preload" href="/assets/css/__colors.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/__colors.css"></noscript>
<link rel="preload" href="/assets/css/trx_addons.responsive.css" as="style"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/trx_addons.responsive.css"></noscript>
<link rel="preload" href="/assets/css/responsive.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/responsive.css"></noscript>
<script type='text/javascript' src='/assets/js/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script>
<script async type='text/javascript' src='/assets/js/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'>
</script>
<script async type='text/javascript' src='/assets/js/babel-polyfill-min.js?ver=2.13.4' id='babel-polyfill-js'>
</script>
<script async type='text/javascript' src='/assets/js/give-min.js?ver=2.13.4' id='give-js'>
</script>
<link rel="canonical" href="/" />
<link rel='shortlink' href='/' />
<link rel="preload" href="/assets/css/live-values.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/live-values.css"></noscript>
<link rel="preload" href="/assets/css/nav.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/nav.css"></noscript>
<link rel="stylesheet" href="/assets/css/lab_updates.css">
<script async type="text/javascript" src="/assets/js/live-values-min.js"></script>
<link rel="icon" href="assets/logo/favicon.png" sizes="192x192" />
<link rel="apple-touch-icon" href="assets/logo/favicon.png" />
<meta name="msapplication-TileImage" content="/favicon.png" />
<link rel="preload" href="/assets/css/inline-css3.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/assets/css/inline-css3.css"></noscript>
<noscript>
<style>
.wpb_animate_when_almost_visible {
opacity: 1;
}
</style>
</noscript>
<style type='text/css'>
.body_style_wide_bg {
background-image: url(assets/img/bg-3.jpg) !important
}
</style>
<script async src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.8.0/gsap.min.js"></script>
</head>
<body
class="page-template-default page page-id-81 wp-custom-logo theme-hoverex ua_chrome woocommerce-no-js body_tag scheme_default blog_mode_page is_single body_style_wide_bg sidebar_hide expand_content remove_margins trx_addons_present header_type_custom header_style_header-custom-5 header_position_default menu_style_top no_layout wpb-js-composer js-comp-ver-6.8.0 vc_responsive elementor-default elementor-kit-1748">
<div class="body_wrap">
<div class="page_wrap">
<header
class="top_panel top_panel_custom top_panel_custom_5 top_panel_custom_header-default with_bg_image hoverex_inline_285586299">
<div
class="vc_row wpb_row vc_row-fluid sc_layouts_row sc_layouts_row_type_compact sc_layouts_row_fixed sc_layouts_hide_on_mobile">
<div class="wpb_column vc_column_container vc_col-sm-2 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="sc_layouts_item">
<a href="#" id="sc_layouts_logo_1664803122" class="">
<img class="logo_image" src="/assets/logo/aeweb.png" alt="AEWeb"
width="250" id="navbar-icon"></a>
<!-- /.sc_layouts_logo -->
</div>
</div>
</div>
</div>
</div>
<div
class="vc_row wpb_row vc_row-fluid vc_row-o-equal-height vc_row-o-content-middle vc_row-flex sc_layouts_row sc_layouts_row_type_compact sc_layouts_row_fixed sc_layouts_hide_on_desktop sc_layouts_hide_on_notebook sc_layouts_hide_on_tablet ">
<div
class="wpb_column vc_column_container vc_col-sm-4 vc_col-xs-4 sc_layouts_column sc_layouts_column_align_left sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="sc_layouts_item">
<a href="#" id="sc_layouts_logo_1729975134" class=""><img class="logo_image"
src="/assets/logo/aeweb.png" alt="AEWeb" width="175"
height="37"></a>
<!-- /.sc_layouts_logo -->
</div>
</div>
</div>
</div>
</div>
<div
class="vc_row wpb_row vc_row-fluid vc_custom_1519300748572 vc_row-has-fill sc_layouts_hide_on_frontpage">
<div class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_empty_space hide_on_tablet hide_on_mobile" style="height: 2.05em"><span
class="vc_empty_space_inner"></span></div>
<div class="vc_empty_space" style="height: 2em"><span
class="vc_empty_space_inner"></span></div>
<div id="sc_content_192289229"
class="sc_content color_style_default sc_content_default sc_content_width_1_1 sc_float_center sc_align_center">
<div class="sc_content_container">
<div class="sc_layouts_item">
<div id="sc_layouts_title_384989255"
class="sc_layouts_title with_content without_image without_tint">
<div class="sc_layouts_title_content">
<div class="sc_layouts_title_title">
<h1 class="sc_layouts_title_caption">AEWeb</h1>
</div>
<div class="sc_layouts_title_breadcrumbs">
<h4
class="sc_item_title sc_title_title sc_align_center sc_item_title_style_default sc_item_title_tag">
Deploy your website on the most secure Archethic Blockchain
within a fraction of seconds!
</h4>
</div>
</div><!-- .sc_layouts_title_content -->
</div><!-- /.sc_layouts_title -->
</div>
</div>
</div><!-- /.sc_content -->
<div class="vc_empty_space hide_on_tablet hide_on_mobile" style="height: 2em"><span
class="vc_empty_space_inner"></span></div>
<div class="vc_empty_space hide_on_tablet hide_on_mobile" style="height: 2em"><span
class="vc_empty_space_inner"></span></div>
</div>
</div>
</div>
</div>
</header>
<div class="menu_mobile_overlay"></div>
<div class="menu_mobile menu_mobile_fullscreen">
<div class="menu_mobile_inner">
<a class="menu_mobile_close icon-cancel"></a><a class="sc_layouts_logo" href="#"><img
src="assets/logo/aeweb.png" alt="AEWeb" width="152" height="37"></a>
</div>
</div>
<div class="page_content_wrap">
<div class="content_wrap">
<div class="content">
<article id="post-81"
class="post_item_single post_type_page post-81 page type-page status-publish hentry">
<div class="post_content entry-content">
<div class="vc_row wpb_row vc_row-fluid">
<div
class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_empty_space" style="height: 1.5em"><span
class="vc_empty_space_inner"></span></div>
</div>
</div>
</div>
</div>
<div class="wpb_wrapper">
<div id="sc_title_889261574" class="sc_title color_style_default sc_title_default">
<div class="sc_item_descr sc_title_descr sc_align_center"
style="color: rgba(255, 255, 255, 0.651)">
<div class="button-center-mobile">
<a href="https://github.com/archethic-foundation/aeweb-cli"
id="sc_button_145826105" target="_blank"
class="sc_button color_style_default sc_button_default sc_button_size_normal sc_button_icon_left button_transparent"><span
class="sc_button_text"><span class="sc_button_title">Deploy on
Testnet</span></span>
<!-- /.sc_button_text -->
</a>
<a href="https://www.npmjs.com/package/aeweb" id="sc_button_145826105"
target="_blank"
class="sc_button color_style_default sc_button_default sc_button_size_normal sc_button_icon_left button_transparent"><span
class="sc_button_text"><span class="sc_button_title">Install
CLI</span></span>
<!-- /.sc_button_text -->
</a>
</div>
<div class="sc_layouts_title_breadcrumbs sc_align_center">
<div class="breadcrumbs">From storage of files and
folders to managing your online presence in a decentralized and
secure manner.
<br><br></div>
<div class="sc_services_item_content">
<p style="color: rgba(255, 255, 255, 0.651)">We welcome you to the
Future of Decentralized Ownership!
</p>
</div>
</div>
</div>
</div>
<!-- /.sc_icons -->
</div>
<div class="vc_row wpb_row vc_row-fluid">
<div
class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_empty_space" style="height: 1.5em"><span
class="vc_empty_space_inner"></span></div>
</div>
</div>
</div>
</div>
<div
class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_empty_space" style="height: 1em"><span
class="vc_empty_space_inner"></span></div>
</div>
<div class="vc_empty_space" style="height: 1.0em"><span
class="vc_empty_space_inner"></span></div>
<div class="elementor-element elementor-element-d98000d elementor-widget elementor-widget-trx_sc_services"
data-id="d98000d" data-element_type="widget"
data-widget_type="trx_sc_services.default">
<div class="elementor-widget-container">
<div id="trx_sc_services_410738692"
class="sc_services color_style_default sc_services_light sc_services_featured_left">
<div
class="sc_services_columns_wrap sc_item_columns sc_item_columns_2 trx_addons_columns_wrap columns_padding_bottom">
<div class="trx_addons_column-1_2">
<div
class="sc_services_item no_links with_content with_icon sc_services_item_featured_left post-281 cpt_services type-cpt_services status-publish has-post-thumbnail hentry cpt_services_group-features">
<a id="trx_sc_services_410738692_icon-11-network_2"
class="sc_services_item_icon icon-21-reliable"></a>
<div class="sc_services_item_info">
<div class="sc_services_item_header">
<h4 class="sc_services_item_title">Easy, Secure
and Simple way to Build</h4>
</div>
<div class="sc_services_item_content">
<p style="color: rgba(255, 255, 255, 0.651)">
The AEWeb experience allows you to deploy
your website in just a few clicks. The
simple, secure and easy to use interface
helps you deploy your website hassle-free
and with zero knowledge of coding.
</p>
</div>
</div>
</div>
</div>
<div class="trx_addons_column-1_2">
<div
class="sc_services_item no_links with_content with_icon sc_services_item_featured_left post-2862 cpt_services type-cpt_services status-publish has-post-thumbnail hentry governance_features_wrapper_alpha">
<a id="trx_sc_services_410738692_icon-18-global_3"
class="sc_services_item_icon icon-money-light"></a>
<div class="sc_services_item_info">
<div class="sc_services_item_header">
<h4 class="sc_services_item_title">Minimum
Transaction and Maintenance Cost</h4>
</div>
<div class="sc_services_item_content">
<p style="color: rgba(255, 255, 255, 0.651)">3 -
5 times less deploying and maintainance fee
compared to well known hosting services like
AWS, Google Cloud, etc... Morever the data
will be geolocally split across the globe
for the highest data availability and data
security.</p>
</div>
</div>
</div>
</div>
<div class="trx_addons_column-1_2">
<div
class="sc_services_item no_links with_content with_icon sc_services_item_featured_left post-285 cpt_services type-cpt_services status-publish has-post-thumbnail hentry cpt_services_group-features governance_features_wrapper_alpha">
<a id="trx_sc_services_410738692_icon-icon_9_5"
class="sc_services_item_icon icon-10-privacy"></a>
<div class="sc_services_item_info">
<div class="sc_services_item_header">
<h4 class="sc_services_item_title">100% Secure &
Tamperproof</h4>
</div>
<div class="sc_services_item_content">
<p style="color: rgba(255, 255, 255, 0.651)">Do
I have to worry about security and
maintainance once I deploy my website? No!
AEWeb is decentralized and is backed by Arch
Consensus that has the capability to handle
even 90% maliciousness in the network.
</p>
</div>
</div>
</div>
</div>
<div class="trx_addons_column-1_2">
<div
class="sc_services_item no_links with_content with_icon sc_services_item_featured_left post-286 cpt_services type-cpt_services status-publish has-post-thumbnail hentry cpt_services_group-features governance_features_wrapper_alpha">
<a id="trx_sc_services_410738692_icon-icon_8_6"
class="sc_services_item_icon icon-20-usability"></a>
<div class="sc_services_item_info">
<div class="sc_services_item_header">
<h4 class="sc_services_item_title">Built-in
Optimized Scalability</h4>
</div>
<div class="sc_services_item_content">
<p style="color: rgba(255, 255, 255, 0.651)">
AEWeb built on Archethic blockchain enables
both linear and horizontal scalability for
your website. There exists no product that
is similar to this that can help you deploy
hassle-free and provide scalability
simultaneously at the same time.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.sc_services -->
</div>
</div>
</div>
<div class="vc_row-full-width vc_clearfix">
</div>
<div class="vc_row-full-width vc_clearfix"></div>
<div class="vc_empty_space" style="height: 2.15em"><span
class="vc_empty_space_inner"></span></div>
<div class="vc_row wpb_row vc_row-fluid">
<div
class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_empty_space" style="height: 2.0em"><span
class="vc_empty_space_inner"></span></div>
<div class="vc_empty_space hide_on_tablet hide_on_mobile"
style="height: 2.0em"><span class="vc_empty_space_inner"></span>
</div>
</div>
</div>
</div>
</div>
</div><!-- .entry-content -->
</article>
</div><!-- </.content> -->
</div><!-- </.content_wrap> -->
</div><!-- </.page_content_wrap> -->
<div id=Footer>
<footer class="footer_wrap footer_custom footer_custom_748 footer_custom_footer-home2 scheme_dark">
<div class="vc_row wpb_row vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_empty_space hide_on_tablet hide_on_mobile" style="height: 2em"><span
class="vc_empty_space_inner">
</span></div>
<div class="vc_empty_space hide_on_tablet hide_on_mobile" style="height: 2em"><span
class="vc_empty_space_inner"></span></div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="sc_content_89295072"
class="sc_content color_style_default sc_content_default sc_content_width_1_1 sc_float_center">
<div class="sc_content_container">
<div id='site-map'
class="vc_row wpb_row vc_inner vc_row-fluid footer_main_wrapper">
<div id="sitemap-sm12" style="width: fit-content;"
class="wpb_column vc_column_container vc_col-sm-2 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_wp_custommenu wpb_content_element">
<div class="widget widget_nav_menu">
<h2 class="widgettitle"><b>About</b>
</h2>
<div class="menu-features-container ">
<ul id="menu-features " class="menu ">
<li id="menu-item-750 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-750 ">
<a
href="https://archethic.net/#scroll-to-goverance-section">
<p
style="color: rgba(255, 255, 255, 0.651)">
Foundation
</p>
</a>
</li>
<li id="menu-item-751 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-751 ">
<a
href="https://archethic.net/brand.html" target="_blank">
<p
style="color: rgba(255, 255, 255, 0.651)">
Brand Assets</p>
</a>
</li>
<li id="menu-item-752 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-752 ">
<a
href="https://blog.archethic.net/">
<p
style="color: rgba(255, 255, 255, 0.651)">
Blog</p>
</a>
</li>
<li id="menu-item-753 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-754 ">
<a href="#footer"
style=" text-align: right; color: rgba(255, 255, 255, 0.651)"
id="open-terms">
Terms of use
</a>
</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="sitemap-sm13" style="width: fit-content;"
class="wpb_column vc_column_container vc_col-sm-2 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_wp_custommenu wpb_content_element">
<div class="widget widget_nav_menu">
<h2 class="widgettitle"><b>Technology</b>
</h2>
<div class="menu-features-container ">
<ul id="menu-features " class="menu ">
<li id="menu-item-750 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-750 ">
<a href="ARCHEthic_WhitePaper.pdf">
<p
style="color: rgba(255, 255, 255, 0.651)">
White Paper
</p>
</a>
</li>
<li id="menu-item-751 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-751 ">
<a href="ARCHEthic_YellowPaper.pdf">
<p
style="color: rgba(255, 255, 255, 0.651)">
Yellow Paper </p>
</a>
</li>
<li id="menu-item-752 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-752 ">
<a
href="https://archethic-foundation.github.io/archethic-docs/#/">
<p
style="color: rgba(255, 255, 255, 0.651)">
Documentation</p>
</a>
</li>
<li id="menu-item-753 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-753 ">
<a href="https://anchor.fm/uniris">
<p
style="color: rgba(255, 255, 255, 0.651)">
Podcast</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="sitemap-sm14" style="width: fit-content;"
class="wpb_column vc_column_container vc_col-sm-2 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_wp_custommenu wpb_content_element">
<div class="widget widget_nav_menu">
<h2 class="widgettitle"><b>Developers</b>
</h2>
<div class="menu-features-container ">
<ul id="menu-features " class="menu ">
<li id="menu-item-750 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-750 ">
<a
href="https://github.com/archethic-foundation">
<p
style="color: rgba(255, 255, 255, 0.651)">
Github
</p>
</a>
</li>
<li id="menu-item-751 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-751 ">
<a
href="https://discord.com/invite/CJZJvVReBx">
<p
style="color: rgba(255, 255, 255, 0.651)">
Discord </p>
</a>
</li>
<li id="menu-item-752 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-752 ">
<a
href="https://github.com/archethic-foundation/libjs">
<p
style="color: rgba(255, 255, 255, 0.651)">
SDK-Javascript</p>
</a>
</li>
<li id="menu-item-753 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-752 ">
<a
href="https://github.com/archethic-foundation/libdart">
<p
style="color: rgba(255, 255, 255, 0.651)">
SDK-Dart</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="sitemap-sm15" style="width: fit-content;"
class="wpb_column vc_column_container vc_col-sm-2 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_wp_custommenu wpb_content_element">
<div class="widget widget_nav_menu">
<h2 class="widgettitle"><b>Community</b>
</h2>
<div class="menu-features-container ">
<ul id="menu-features " class="menu ">
<li id="menu-item-750 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-750 ">
<a href="https://twitter.com/archethic">
<p
style="color: rgba(255, 255, 255, 0.651)">
Twitter
</p>
</a>
</li>
<li id="menu-item-751 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-751 ">
<a
href="https://www.instagram.com/the_official_archethic/">
<p
style="color: rgba(255, 255, 255, 0.651)">
Instagram
</p>
</a>
</li>
<li id="menu-item-752 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-752 ">
<a href="https://t.me/ArchEthic_ENG">
<p
style="color: rgba(255, 255, 255, 0.651)">
Telegram</p>
</a>
</li>
<li id="menu-item-753 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-752 ">
<a
href="https://www.youtube.com/channel/UCmP7Sg_TdBfbO1_u4EyIKzg">
<p
style="color: rgba(255, 255, 255, 0.651)">
Youtube</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="sitemap-sm16" style="width: fit-content;"
class="wpb_column vc_column_container vc_col-sm-2 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_wp_custommenu wpb_content_element">
<div class="widget widget_nav_menu">
<h2 class="widgettitle"><b>Universal Coin</b>
</h2>
<div class="menu-features-container ">
<ul id="menu-features " class="menu ">
<li id="menu-item-750 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-750 ">
<a href="#scroll-to-uco-section">
<p
style="color: rgba(255, 255, 255, 0.651)">
Buy UCO</p>
</a>
</li>
<li id="menu-item-752 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-752 ">
<a href="https://coinmarketcap.com/currencies/uniris/">
<p
style="color: rgba(255, 255, 255, 0.651)">
CoinMarketCap
</p>
</a>
</li>
<li id="menu-item-753 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-753 ">
<a href="https://www.coingecko.com/en/coins/archethic">
<p
style="color: rgba(255, 255, 255, 0.651)">
CoinGecko
</p>
</a>
</li>
<li id="menu-item-754 "
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-754 ">
<a href="https://etherscan.io/token/0x8a3d77e9d6968b780564936d15B09805827C21fa">
<p
style="color: rgba(255, 255, 255, 0.651)">
Etherscan
</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.sc_content -->
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="vc_empty_space" style="height: 2em"><span
class="vc_empty_space_inner"></span></div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="sc_content_89295072"
class="sc_content color_style_default sc_content_default sc_content_width_1_1 sc_float_center">
<div class="sc_content_container">
<div class="vc_row wpb_row vc_inner vc_row-fluid"
style="display: flex; justify-content: center;">
<div id="sitemap-sm22"
class="wpb_column vc_column_container vc_col-sm-8 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">
<div class="wpb_wrapper"
style="display:flex; flex-direction: column; align-items: center;">
<div id="sc_content_108445367"
class="sc_content color_style_default color_style_default sc_content_default sc_float_left sc_align_left vc_custom_1520416391280">
<div class="sc_content_container">
<div class="sc_layouts_item"
style="flex-wrap: nowrap;">
<div id="widget_contacts_1223729687"
class="widget_area sc_widget_contacts vc_widget_contacts wpb_content_element">
<aside
id="widget_contacts_1223729687_widget"
class="widget widget_contacts">
<div class="contacts_wrap">
<div class="contacts_description">
<p
style="color: rgba(255, 255, 255, 0.651)">
Keep updated with the latest
happening of Archethic
blockchain !</p>
</div>
</div>
<!-- /.contacts_wrap -->
</aside>
</div>
</div>
</div>
</div>
<!-- /.sc_content -->
<div class="wpb_text_column wpb_content_element "
style="width: 100%">
<div class="wpb_wrapper">
<script>
(function () {
window.mc4wp = window.mc4wp || {
listeners: [],
forms: {
on: function (evt, cb) {
window.mc4wp
.listeners
.push({
event: evt,
callback: cb
});
}
}
}
})();
</script>
<!-- Mailchimp for WordPress v4.8.6 - -->
<form id="mc4wp-form-1"
class="mc4wp-form mc4wp-form-331"
action="https://uniris.us15.list-manage.com/subscribe/post?u=cbd7996d38c2d5019f4b46c85&id=7490121c40"
method="post" data-id="331"
data-name="Subscribe">
<div class="mc4wp-form-fields">
<p>
<input type="email" name="EMAIL"
placeholder="E-mail" required=""
class="fill_inited">
<button style="z-index: 0;"
class="submit">Subscribe</button>
</p>
</div><label
style="display: none !important;">Leave
this field empty if you're human: <input
type="text" name="_mc4wp_honeypot"
value="" tabindex="-1"
autocomplete="off"
class="fill_inited"></label><input
type="hidden" name="_mc4wp_timestamp"
value="1630926826">
<input type="hidden" name="_mc4wp_form_id"
value="331"><input type="hidden"
name="_mc4wp_form_element_id"
value="mc4wp-form-1">
<div class="mc4wp-response"></div>
</form>
</div>
</div>
<div class="vc_empty_space" style="height: 1.2em"><span
class="vc_empty_space_inner"></span></div>
<div class="sc_layouts_item">
<div id="widget_socials_2145873947"
class="widget_area sc_widget_socials vc_widget_socials wpb_content_element">
<aside id="widget_socials_2145873947_widget"
class="widget widget_socials">
<div
class="socials_wrap social_wrapper sc_align_left">
<a target="_blank"
href="https://twitter.com/archethic"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img src="/assets/white_logos/twitter.svg">
</a>
<a target="_blank"
href="https://www.instagram.com/the_official_archethic/"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img
src="/assets/white_logos/instagram.svg">
</a>
<a target="_blank"
href="https://t.me/ArchEthic_ENG"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img
src="/assets/white_logos/telegram.svg">
</a>
<a target="_blank"
href="https://discord.com/invite/CJZJvVReBx"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img src="/assets/white_logos/discord.svg">
</a>
<a target="_blank"
href="https://www.reddit.com/r/ArchEthic/"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img src="/assets/white_logos/reddit.svg">
</a>
<a target="_blank"
href="https://www.youtube.com/channel/UCmP7Sg_TdBfbO1_u4EyIKzg"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img src="/assets/white_logos/youtube.svg">
</a>
<a target="_blank"
href="https://github.com/archethic-foundation"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img src="/assets/white_logos/github.svg">
</a>
<a target="_blank"
href="https://anchor.fm/uniris"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img src="/assets/white_logos/podcast.svg">
</a>
<a target="_blank"
href="https://coinmarketcap.com/currencies/uniris/"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img src="/assets/white_logos/cmc.png">
</a>
<a target="_blank"
href="https://www.coingecko.com/en/coins/archethic"
class="social_item social_item_style_icons social_item_type_icons social_icon_wrapper">
<img src="/assets/white_logos/cg.png">
</a>
</div>
</aside>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12 sc_layouts_column_icons_position_left">
<div class="vc_column-inner">