-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
1050 lines (1006 loc) · 55.7 KB
/
index.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zenon — Network of Momentum</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://unpkg.com/@fortawesome/[email protected]/css/all.min.css">
<link rel="stylesheet" href="css/flipster.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="img/safari-pinned-tab.svg" color="#6FF34D">
<meta name="msapplication-TileColor" content="#000000">
<meta name="theme-color" content="#000000">
<script>
!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags getFeatureFlag getFeatureFlagPayload reloadFeatureFlags group updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures getActiveMatchingSurveys getSurveys onSessionId".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
posthog.init('phc_wAE8WJPQkecmzYABdmKkYgKFfwBNQaLphJJeKt2jpYn',{api_host:'https://app.posthog.com'})
</script>
<!--Zenon Network is an independent entity-->
</head>
<body class="animateBody">
<div id="loader" class="custom-container fadeIn">
<div id="loading" class="lds-dual-ring"></div>
<div id="container" class="container hidden">
<lottie-player id="intro" class="invisible" renderer="svg" preserveAspectRatio="xMidYMid slice" mode="normal" speed="1.0"></lottie-player>
</div>
</div>
<div class="wrapper hideBody">
<header id="header">
<nav>
<div class="container">
<div class="navbar">
<div class="navbar__top">
<a href="#bigTitle" class="navbar__logo scroll">
<img src="./img/logo.svg" alt="logo" />
</a>
<ul class="navbar__buttons">
<a href="#exchange"
class="btn btn--primary btn--transparent navbar__buttons--change scroll">
<span class="change">ZNN $<span id="znn-price"></span></span>
</a>
<a href="#exchange"
class="btn btn--ternary btn--transparent navbar__buttons--change scroll">
<span class="change">QSR $<span id="qsr-price"></span></span>
</a>
</ul>
<button type="button" class="btn burger-menu">
<i class="fas fa-bars"></i>
</button>
</div>
<ul class="navbar__menu">
<li><a class="scroll" href="#protocol">learn</a></li>
<li><a class="scroll" href="#earn">earn</a></li>
<li><a class="scroll" href="#build">build</a></li>
</ul>
<ul class="navbar__social">
<li><a href="https://twitter.com/Zenon_Network" target="_blank" rel="nofollow"><i
class="fab fa-twitter"></i></a></li>
<li><a href="https://t.me/zenonnetwork" target="_blank" rel="nofollow"><i
class="fab fa-telegram"></i></a></li>
<li><a href="https://discord.com/invite/zenonnetwork" target="_blank" rel="nofollow"><i
class="fab fa-discord"></i></a></li>
<li><a href="https://github.com/zenon-network" target="_blank" rel="nofollow"><i
class="fab fa-github"></i></a></li>
<li><a href="https://bitcointalk.org/index.php?topic=5279643.msg55303681#msg55303681" target="_blank"
rel="nofollow"><i class="fab fa-bitcoin"></i></a></li>
<li><a href="https://medium.com/@zenon.network" target="_blank" rel="nofollow"><i
class="fab fa-medium-m"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCDb8ZtqBt6l5l4HugCnJwhQ" target="_blank" rel="nofollow"><i
class="fab fa-youtube"></i></a></li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="modal fade" id="modal-video">
<div class="modal__dialog home--modal">
<div class="modal__content">
<div class="modal__header">
<h5 class="modal__title">Watch Video</h5>
<button type="button" class="modal--close" data-dismiss="modal-video" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal__body">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/UqAequz4mgk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="modal__footer"></div>
</div>
</div>
</div>
<section id="bigTitle">
<div class="darken"></div>
<div class="container">
<div class="section bigTitle">
<div class="section__container section__container--column">
<div class="bigTitle__text">
<h2>The Network of Momentum</h2>
<p>
The self-evolving network globally deployed to shape digital economies of scale, powered by a
worldwide community of innovators
</p>
<div class="bigTitle__buttons">
<a href="#exchange" class="gradient-btn scroll">
Buy Now
<i class="fas fa-chevron-right"></i>
</a>
<button class="bigTitle__button modal--open" data-modal="modal-video">
<i class="fas fa-play"></i>
Watch Video
</button>
</div>
</div>
<div class="bigTitle__brands">
<a target="_blank" href="https://cointelegraph.com/news/a-dual-ledger-layer-one-plans-to-supersede-ethereum-and-solana-by-solving-the-blockchain-trilemma-with-a-feeless-paradigm" class="ct brand"></a>
<a target="_blank" href="https://www.bsc.news/post/zenon-network-a-new-cross-chain-liquidity-farming-solution" class="bs brand"></a>
<a target="_blank" href="https://finance.yahoo.com/quote/ZNN-USD/profile/" class="yf brand"></a>
<a target="_blank" href="https://hackernoon.com/zenon-network-aims-to-be-satoshis-ethereum-stex-bullish-on-aliens" class="hk brand"></a>
<a target="_blank" href="https://coinmarketcap.com/currencies/zenon/" class="cmc brand"></a>
<a target="_blank" href="https://www.coingecko.com/en/coins/zenon" class="cg brand"></a>
<a target="_blank" href="https://www.cryptocompare.com/coins/znn/overview" class="cc brand"></a>
</div>
</div>
</div>
</div>
</section>
<section id="timer">
<div class="container">
<div class="section timer">
<div class="section__container">
<div class="timer__text">
<h3>Next reward distribution</h3>
<p>
<span class="green">4,320 ZNN</span> & <span class="blue">5,000 QSR</span> are distributed every
24 hours. Next distribution in:
</p>
<a href="#exchange" class="btn btn--simple hidden-sm">Participate now <i class="fas fa-chevron-right"></i></a>
</div>
<div class="timer__time">
<div class="time time--hours">
<span class="number" id="time_hours">12</span>
<span class="text">hours</span>
</div>
<div class="time time--minutes">
<span class="number" id="time_minutes">35</span>
<span class="text">minutes</span>
</div>
<div class="time time--seconds">
<span class="number" id="time_seconds">03</span>
<span class="text">seconds</span>
</div>
</div>
<a href="#" class="btn btn--simple visible-sm">Participate now <i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
</section>
<section id="timeline">
<div class="container">
<div class="section tags">
<div class="section__container section__container--column">
<div class="milestones">
<h1 class="back-title">roadmap</h1>
<div class="milestones__title">
<span>Global Scale</span>
<div class="milestones__green"></div>
<span>Global Adoption</span>
</div>
</div>
<div class="times">
<div class="my-flipster">
<ul class="times__wrapper">
<li data-flip-title="prev">
<span class="times__label times__label--top times__label--80 times__label--mleft-60" style="top:100px">Pillar Lock-in
phase</span>
<span class="times__label times__label--top times__label--100 times__label--left-90 times__label--long" style="top:3px">First
Alphanet Testnet</span>
<img src="img/circle-4.svg" width="140" height="640" />
<span
class="times__label times__label--small times__label--bottom times__label--60 times__label--left-90" style="bottom:90px">Whitepaper</span>
<span
class="times__label times__label--small times__label--bottom times__label--60 times__label--mleft-60" style="bottom:130px">Lightpaper</span>
</li>
<li>
<span class="times__label times__label--top times__label--60 times__label--mleft-10" style="top:60px">Quasar Snapshot</span>
<img src="img/circle-3.svg" width="160" height="640" />
<span class="times__label times__label--bottom times__label--100 times__label--mleft-40" style="bottom:50px">Public Incentivized
Testnet</span>
</li>
<li>
<span class="times__label times__label--top times__label--90 times__label--mleft-20" style="top:-3px">Alphanet
Genesis: Network of Momentum Phase 0</span>
<img src="img/circle-2.svg" width="180" height="640" />
<span
class="times__label times__label--bottom times__label--60 times__label--mleft-40" style="bottom:15px">WrapDrive
Hackathon</span>
</li>
<li>
<span class="times__label times__label--top times__label--80 times__label--mleft-30" style="top:10px">Accelerator-Z Inception</span>
<img src="img/circle-1.svg" width="220" height="640" />
<span class="times__label times__label--bottom times__label--70 times__label--left-30" style="bottom:0">Cross-chain Liquidity
Program</span>
</li>
<li>
<span class="times__label times__label--top times__label--80 times__label--mleft-30 times__label--mleft-70 times__label--long">Full Node Invasion</span>
<img src="img/circle-center.svg" width="200" height="640" />
<span class="times__center">You are here</span>
<span class="times__label times__label--bottom times__label--hidden"></span>
<span class="times__label times__label--bottom times__label--80 times__label--mleft-60 times__label--bottom--5">Hyperspace Program</span>
</li>
<li style="z-index: 11;">
<span class="times__label times__label--top times__label--60 times__label--mleft-0" style="top:5px">Syrius Mobile
Wallet</span>
<img src="img/circle-1-grey.svg" width="220" height="640" />
<span
class="times__label times__label--bottom times__label--60 times__label--mleft-50" style="bottom:0">Syrius
Web3 Wallet</span>
</li>
<li style="z-index: 12;">
<span class="times__label times__label--top times__label--80 times__label--mleft-20" style="top:40px">Orbital:<br /> Liquidity
Staking</span>
<img src="img/circle-2-grey.svg" width="180" height="640" />
<span
class="times__label times__label--bottom times__label--80 times__label--mleft-60" style="bottom:0">Expanding
cross-chain presence</span>
</li>
<li style="z-index: 13;">
<span class="times__label times__label--top times__label--80 times__label--mleft-10" style="top:80px">Governance
Module</span>
<img src="img/circle-3-grey.svg" width="160" height="640" />
<span class="times__label times__label--bottom times__label--hidden"></span>
<span
class="times__label times__label--bottom times__label--60 times__label--mleft-70" style="bottom: 60px;">Scalability
Upgrades</span>
</li>
<li data-flip-title="next" style="z-index: 14;">
<span class="times__label times__label--top times__label--hidden"></span>
<img src="img/circle-4-grey.svg" width="140" height="640" />
<span
class="times__label times__label--bottom times__label--100 times__label--mleft-50" style="bottom:90px">Adaptive Smart Contracts Layer</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="protocol">
<div class="container">
<div class="section protocol">
<h1 class="back-title">tech</h1>
<div class="protocol__title">
<h2>Technology Disruption at Protocol Level</h3>
<p>
Decentralized, hyper-scalable global network based on a novel dual-ledger architecture, driven by the ethos and principles of Bitcoin
</p>
</div>
<div class="protocol__container protocol__container--inverse">
<div class="protocol__left">
<div class="protocol__stack">
<div class="protocol__row">
<div class="protocol__card protocol__card--lg">
<div class="protocol__card--wrapper"></div>
</div>
<div class="protocol__card protocol__card--yellow active" rel="tab1">
<div class="protocol__card--wrapper protocol__card--wrapper--last">
<span>ZTS & zApps</span>
<div class="inner">Adoption</div>
</div>
</div>
</div>
<div class="protocol__row">
<div class="protocol__card protocol__card--lg">
<div class="protocol__card--wrapper">  </div>
</div>
<div class="protocol__card" rel="tab2">
<div class="protocol__card--wrapper protocol__card--wrapper--last">
<span>Dual-Ledger</span>
<div class="inner">Scalability</div>
</div>
</div>
</div>
<div class="protocol__row">
<div class="protocol__card protocol__card--lg">
<div class="protocol__card--wrapper"></div>
</div>
<div class="protocol__card protocol__card--green" rel="tab3">
<div class="protocol__card--wrapper protocol__card--wrapper--last">
<span>Hybrid Consensus</span>
<div class="inner">Security</div>
</div>
</div>
</div>
<div class="protocol__row">
<div class="protocol__card protocol__card--lg">
<div class="protocol__card--wrapper">  </div>
</div>
<div class="protocol__card protocol__card--sky" rel="tab4">
<div class="protocol__card--wrapper protocol__card--wrapper--last">
<span>Interoperability</span>
<div class="inner">Accessibility</div>
</div>
</div>
</div>
<div class="protocol__row">
<div class="protocol__card protocol__card--lg">
<div class="protocol__card--wrapper">    </div>
</div>
<div class="protocol__card protocol__card--magenta" rel="tab5">
<div class="protocol__card--wrapper protocol__card--wrapper--last">
<span>Plasma</span>
<div class="inner">Feeless</div>
</div>
</div>
</div>
<div class="protocol__row">
<div class="protocol__card protocol__card--lg">
<div class="protocol__card--wrapper">  </div>
</div>
<div class="protocol__card protocol__card--blue" rel="tab6">
<div class="protocol__card--wrapper protocol__card--wrapper--last">
<span>Dual-economy</span>
<div class="inner">Equilibrium</div>
</div>
</div>
</div>
</div>
</div>
<div class="protocol__right">
<div id="tab1" class="protocol__tab">
<p class="right-text"><span class="backdrop backdrop--yellow">ZTS</span>A future-proof Token Standard</p>
<p class="right-text right-text--yellow">
The Zenon Token Standard ensures that all crypto-assets issued on NoM inherit the exact same properties of ZNN and QSR: security, censorship-resistance and feeless transfers. ZTS tokens can be seamlessly issued through a user-friendly interface directly from the Syrius wallet.
</p>
<p class="right-text"><span class="backdrop backdrop--yellow">zApps</span>A new breed of applications:</p>
<p class="right-text right-text--yellow">
Advancements in zero-knowledge proof systems, homomorphic encryption and unikernel design will unleash a new class of applications that will obsolete dApps in terms of security, privacy and speed.
</p>
</div>
<div id="tab2" class="protocol__tab">
<p class="right-text">The Dual-ledger architecture</p>
<p class="right-text right-text--white">
The Network of Momentum architecture is overcoming the current limitations of legacy blockchain systems by introducing a Meta-DAG for consensus coupled with a block-lattice structure that can asynchronously process orders of magnitude more transactions.
</p>
</div>
<div id="tab3" class="protocol__tab">
<p class="right-text">Hybrid Consensus</p>
<p class="right-text right-text--green">
A hybrid consensus approach that leverages the best mix of Proof-of-Work and Proof-of-Stake to secure the Network of Momentum.
</p>
</div>
<div id="tab4" class="protocol__tab">
<p class="right-text">A multi-chain approach</p>
<p class="right-text right-text--sky">
Atomic swaps and the decentralized cross-chain bridge will enable users to access and transfer value in a censorship resistant way, while unlocking new use-cases with enhanced portability.
</p>
<p class="right-text right-text--sky">
Interoperability with Bitcoin is a core focus to tap into the security and decentralization of the primordial time-chain.
</p>
</div>
<div id="tab5" class="protocol__tab">
<p class="right-text">A third dimensional asset enabling zero fees</p>
<p class="right-text right-text--magenta">
Plasma is a novel anti-spam mechanism, enabling the feeless property of the Network of Momentum by fusing QSR or harnessing the power of Proof-of-Work.
</p>
</div>
<div id="tab6" class="protocol__tab">
<p class="right-text">Dual-economy</p>
<p class="right-text right-text--blue">
The dual-coin economy is based on Zenon (ZNN) and Quasar (QSR) to incentivize a fair participation into the network and avoid the compounding effect of many Proof-of-Stake systems.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="section whitepaper">
<div class="whitepaper__cards">
<a target="_blank" href="https://github.com/zenon-network/zenon.network/releases/download/whitepaper/whitepaper.pdf" class="whitepaper__card">
<img src="./img/union.svg" />
<button type="button">Whitepaper <i class="fas fa-arrow-right"></i></button>
</a>
<a href="#" class="whitepaper__card soon">
<img src="./img/union-disabled.svg" />
<button type="button" class="soon">Compare with other networks <i
class="fas fa-arrow-right"></i><small>soon</small></button>
</a>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="section network">
<h1 class="back-title">network</h1>
<div class="network__title">
<h2>The dual-coin economy of ZNN & QSR</h2>
<p>
Based on a dual-coin mechanism, ZNN & QSR work in synergy to power the ultimate protocol for creating
digital value </p>
</div>
<lottie-player id="dna" src="img/anim/dna.json" clearCanvas="true" autoplay loop
mode="normal" speed="0.6"></lottie-player>
</div>
</div>
</section>
<section id="earn">
<div class="container">
<div class="section join">
<div class="elipse"></div>
<h1 class="back-title">join now</h1>
<div class="join__title">
<h2>Get Daily Rewards</h2>
</div>
<div class="join-content">
<div class="join-content__left join-content--full">
<h3 class="join-content__title">Become a Network Participant</h3>
<div class="join-content__percentages">
<div>
<h4>13.98%<small>Delegators APY</small></h4>
<h4>14.02%<small>Sentinels APY</small></h4>
</div>
<div>
<h4>13.13%<small>Stakers APY</small></h4>
<h4>36.89%<small>Pillars APY</small></h4>
</div>
</div>
<div class="join-content__buttons">
<a target="_blank" href="https://zenon.tools/calculator" class="gradient-btn">Rewards Calculator <i class="fas fa-chevron-right"></i></a>
<a target="_blank" href="https://www.zenon.org/roles/getting-started" class="btn btn--simple">How to participate <i class="fas fa-chevron-right"></i></a>
</div>
</div>
<div class="join-content__right">
<img src="./img/network.png" alt="network" width="410" />
</div>
</div>
<div class="join-content">
<div class="join-content__left">
<img src="./img/funding.png" alt="funding" width="550" />
</div>
<div class="join-content__right join-content--full join-content__right--reverse">
<h3 class="join-content__title">Get funding</h3>
<p>
Monetize your skills & resources and get on-chain funding to build innovative products and services
</p>
<a target="_blank" href="https://www.zenon.org/funding/process" class="btn btn--simple">Access funds <i class="fas fa-chevron-right"></i></a>
</div>
</div>
<div class="join-content">
<div class="join-content__left join-content--full">
<h3 class="join-content__title soon">Provide Liquidity</h3>
<p>
Join the Orbital Program and stake your liquidity cross-chain to earn dual coin rewards in ZNN & QSR
</p>
<a href="#" class="btn btn--simple">Stake now <i class="fas fa-chevron-right"></i> <sup>soon</sup></a>
</div>
<div class="join-content__right">
<img src="./img/liquidity.svg" alt="liquidity" width="720" />
</div>
</div>
</div>
</div>
</section>
<section id="exchange">
<div class="container">
<div class="section trade">
<h1 class="back-title">exchange</h1>
<div class="trade__title">
<h2>Join the Economies of Scale</h2>
</div>
<div class="trade__columns">
<div class="trade__column">
<div class="trade__card">
<img src="./img/uniswap-card.svg" alt="uniswap" />
</div>
<div class="trade__text">
<h3>Uniswap</h3>
<ul class="trade__tech-list">
<li class="navy"><img src="./img/etherum.svg" alt="etherum" /> Ethereum</li>
<li>DEX</li>
</ul>
<p>The Uniswap protocol is an open source peer-to-peer decentralized exchange</p>
<ul class="trade__list">
<li><a target="_blank" href="https://app.uniswap.org/#/swap?inputCurrency=ETH&outputCurrency=0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3">wZNN <i class="fa fa-external-link-alt"></i></a></li>
<li><a target="_blank" href="https://app.uniswap.org/swap?inputCurrency=0x96546AFE4a21515A3a30CD3fd64A70eB478DC174&outputCurrency=0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3">wQSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
<div class="trade__column">
<div class="trade__card">
<img src="./img/xeggex.svg" alt="XeggeX" />
</div>
<div class="trade__text">
<h3>XeggeX</h3>
<ul class="trade__tech-list">
<li class="navy"><img src="./img/znn.svg" style="max-height: 12px" alt="Native ZNN" /> Native</li>
<li>CEX</li>
</ul>
<p>Trade with ultra low fees at XeggeX</p>
<ul class="trade__list">
<li><a target="_blank" href="https://xeggex.com/market/ZNN_USDT">ZNN <i class="fa fa-external-link-alt"></i></a></li>
<li class="disabled"><a href="#">QSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
<div class="trade__column">
<div class="trade__card">
<img src="./img/1inch-card.svg" alt="1inch" />
</div>
<div class="trade__text">
<h3>1inch</h3>
<ul class="trade__tech-list">
<li class="navy"><img src="./img/etherum.svg" alt="etherum" /> Ethereum</li>
<li>DEX</li>
</ul>
<p>1inch uses sophisticated security measures to protect users' funds in swaps on other DeFi protocols</p>
<ul class="trade__list">
<li><a target="_blank" href="https://app.1inch.io/#/1/simple/swap/ETH/0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3">wZNN <i class="fa fa-external-link-alt"></i></a></li>
<li><a target="_blank" href="https://app.1inch.io/#/1/simple/swap/0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3/0x96546AFE4a21515A3a30CD3fd64A70eB478DC174">wQSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
<div class="trade__column">
<div class="trade__card">
<img src="./img/thorswap.svg" alt="thorswap" />
</div>
<div class="trade__text">
<h3>THORSwap</h3>
<ul class="trade__tech-list">
<li class="black"><img src="./img/thorchain.svg" alt="thorchain" /> THORChain</li>
<li>DEX</li>
</ul>
<p>Multi-chain DEX built on THORChain's cross-chain liquidity protocol</p>
<ul class="trade__list">
<li><a target="_blank" href="https://app.thorswap.finance/swap/ETH.ETH_ETH.ZNN-0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3">wZNN <i class="fa fa-external-link-alt"></i></a></li>
<li class="disabled"><a href="#">QSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
<div class="trade__column soon">
<div class="trade__card">
<img src="./img/atomic-card.svg" alt="atomic swaps" width="100" />
</div>
<div class="trade__text">
<h3>Atomic swaps <span>soon</span></h3>
<ul class="trade__tech-list">
<li class="gold"><img src="./img/bitcoin.svg" alt="bitcoin" /> Bitcoin</li>
<li>DEX</li>
</ul>
<p>Atomic swap framework with built-in peer-to-peer cross-chain trading</p>
<ul class="trade__list">
<li class="disabled"><a href="#">ZNN <i class="fa fa-external-link-alt"></i></a></li>
<li class="disabled"><a href="#">QSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
<div class="trade__column soon">
<div class="trade__card">
<img src="./img/pancakeswap-card.svg" alt="pancakeswap" />
</div>
<div class="trade__text">
<h3>PancakeSwap <span>soon</span></h3>
<ul class="trade__tech-list">
<li class="yellow"><img src="./img/bnb.svg" alt="bnb" /> BNB Smart Chain</li>
<li>DEX</li>
</ul>
<p>PancakeSwap is a decentralized exchange for swapping BEP20 tokens on Binance Smart Chain</p>
<ul class="trade__list">
<li class="disabled"><a href="#">wZNN <i class="fa fa-external-link-alt"></i></a></li>
<li class="disabled"><a href="#">wQSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
<div class="trade__column soon">
<div class="trade__card">
<img src="./img/quickswap-card.svg" alt="quickswap" />
</div>
<div class="trade__text">
<h3>QuickSwap <span>soon</span></h3>
<ul class="trade__tech-list">
<li class="purple"><img src="./img/polygon.svg" alt="polygon" /> Polygon</li>
<li>DEX</li>
</ul>
<p>QuickSwap is a next-gen #DEX for #DeFi. Trade at lightning-fast speeds with near-zero gas fees</p>
<ul class="trade__list">
<li class="disabled"><a href="#">wZNN <i class="fa fa-external-link-alt"></i></a></li>
<li class="disabled"><a href="#">wQSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
<div class="trade__column soon">
<div class="trade__card">
<img src="./img/spiritswap-card.svg" alt="spiritswap" />
</div>
<div class="trade__text">
<h3>SpiritSwap <span>soon</span></h3>
<ul class="trade__tech-list">
<li class="blue"><img src="./img/fantom.svg" alt="fantom" /> Fantom</li>
<li>DEX</li>
</ul>
<p>The SpiritSwap protocol captures the essence of everything Defi 2.0 on the Fantom network</p>
<ul class="trade__list">
<li class="disabled"><a href="#">wZNN <i class="fa fa-external-link-alt"></i></a></li>
<li class="disabled"><a href="#">wQSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
<div class="trade__column soon">
<div class="trade__card">
<img src="./img/traderjoe-card.svg" alt="trader joe" />
</div>
<div class="trade__text">
<h3>Trader Joe <span>soon</span></h3>
<ul class="trade__tech-list">
<li class="red"><img src="./img/avalanche.svg" alt="avalanche" /> Avalanche</li>
<li>DEX</li>
</ul>
<p>Trader Joe combines the savory splendor of a classic Cheddar with the satisfying spice of Buffalo wing sauce</p>
<ul class="trade__list">
<li class="disabled"><a href="#">wZNN <i class="fa fa-external-link-alt"></i></a></li>
<li class="disabled"><a href="#">wQSR <i class="fa fa-external-link-alt"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="section funding">
<div class="funding__columns">
<div class="funding__column">
<div class="funding__card">
<div class="content">
<div class="funding__card-icon">
<img src="./img/wallet-icon.svg" alt="wallet icon" />
</div>
<h3>Create your wallet</h3>
<p class="mb-0">Syrius is a state-of-the-art non-custodial wallet for the Network of Momentum. Store and manage your ZNN, QSR and ZTS tokens in a cross-platform, user-friendly and safe digital wallet</p>
<img src="./img/wallet-bg.png" alt="wallet bg" />
</div>
<a href="#downloads">Download Syrius wallet <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__card">
<div class="content">
<div class="funding__card-icon">
<img src="./img/stack-icon.svg" alt="stack icon" />
</div>
<h3>Discover SDKs</h3>
<p>Interact with NoM via a variety of SDKs written in the most popular programming languages. Build the future, today</p>
<div class="funding__list">
<div class="funding__row">
<img src="./img/go-icon.svg" alt="go icon" />
<a target="_blank" href="https://github.com/MoonBaZZe/znn-sdk-go">Go <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/java-icon.svg" alt="go icon" />
<a target="_blank" href="https://github.com/KingGorrin/znn_sdk_java/">Java <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/python-icon.svg" alt="python icon" />
<a target="_blank" href="https://github.com/millerships/pyznn">Python <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/c-icon.svg" alt="c# icon" />
<a target="_blank" href="https://github.com/KingGorrin/znn_sdk_csharp">C# <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/ts-icon.svg" alt="typescript icon" />
<a target="_blank" href="https://github.com/DexterLabZ/znn.ts">Typescript <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/rust-icon.svg" alt="rust icon" />
<a target="_blank" href="https://github.com/2bonahill/znn_sdk_rust">Rust <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/kotlin-icon.svg" alt="kotlin icon" />
<a target="_blank" href="https://github.com/ItsChaceD/zenon-android">Kotlin <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="funding__column">
<div class="funding__card">
<div class="content">
<div class="funding__card-icon">
<img src="./img/coin-icon.svg" alt="coin icon" />
</div>
<h3>Accelerator-Z</h3>
<p>
Network of Momentum is a DAO of DAOs with a protocol level treasury called Zenon Fabric, managed by the Accelerator-Z embedded contract to fund ongoing operations, research & development and new products and services to expand the ecosystem
</p>
</div>
<a target="_blank" href="https://www.zenon.org/funding/process">Get Funding <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__card">
<div class="content">
<div class="funding__card-icon">
<img src="./img/code-icon.svg" alt="code icon" />
</div>
<h3>Explore Code</h3>
<p class="mb-0">The vision, distilled. Explore the code powering the Network of Momentum. Every contribution matters</p>
<img src="./img/code-bg.png" alt="code bg" />
</div>
<a target="_blank" href="https://github.com/zenon-network">Discover Github <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__card">
<div class="content">
<div class="funding__card-icon">
<img src="./img/compass-icon.svg" alt="compass icon" />
</div>
<h3>Explorers</h3>
<p>Explore the network. One momentum at a time</p>
</div>
<a target="_blank" href="https://zenonhub.io/explorer">Zenon Hub <i class="fas fa-arrow-right"></i></a>
</div>
</div>
<div class="funding__column">
<div class="funding__card">
<div class="content">
<div class="funding__card-icon">
<img src="./img/laptop-icon.svg" alt="laptop icon" />
</div>
<h3>Bug bounties <sup>soon</sup></h3>
<p>Hunt bugs and claim your reward. Frictionless. Security policy available on Github</p>
</div>
<a target="_blank" href="https://github.com/zenon-network">Discover Github <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__card">
<div class="content">
<div class="funding__card-icon">
<img src="./img/users-icon.svg" alt="users icon" />
</div>
<h3>Join the Community</h3>
<p>Be part of a welcoming community of entrepreneurs, builders, innovators at the forefront of distributed ledger technology and Web3</p>
<div class="funding__list">
<div class="funding__row">
<img src="./img/twitter-icon.svg" alt="twitter icon" />
<a target="_blank" href="https://twitter.com/Zenon_Network">Twitter <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/telegram-icon.svg" alt="telegram icon" />
<a target="_blank" href="https://t.me/zenonnetwork">Telegram <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/github-icon.svg" alt="github icon" />
<a target="_blank" href="https://github.com/zenon-network">Github <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/discord-icon.svg" alt="discord icon" />
<a target="_blank" href="https://discord.com/invite/zenonnetwork">Discord <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/medium-icon.svg" alt="medium icon" />
<a target="_blank" href="https://medium.com/@zenon.network">Medium <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/bitcoin-icon.svg" alt="bitcoin icon" />
<a target="_blank" href="https://bitcointalk.org/index.php?topic=5279643.msg55303681#msg55303681">Bitcoin Talk <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/logo-icon.svg" alt="logo icon" />
<a target="_blank" href="https://forum.zenon.org/">Zenon Community Forum <i class="fas fa-arrow-right"></i></a>
</div>
<div class="funding__row">
<img src="./img/youtube-icon.svg" alt="youtube icon" />
<a target="_blank" href="https://www.youtube.com/channel/UCDb8ZtqBt6l5l4HugCnJwhQ">Youtube <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
<div class="funding__card">
<div class="content">
<div class="funding__card-icon">
<img src="./img/node-icon.svg" alt="node icon" />
</div>
<h3>Run a Node</h3>
<p>Your node, your rules. Run a node in the Cloud, on your server, personal computer, Mac or Rasperry Pi</p>
</div>
<a target="_blank" href="https://github.com/zenon-network/go-zenon#building-from-source">Build now <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="build">
<div class="container">
<div class="section build">
<h1 class="back-title">build</h1>
<div class="build__title">
<h2>Join an expanding ecosystem</h2>
<h3>built by aliens</h3>
</div>
<div class="build__slider">
<div class="tab-slider__container">
<div class="tab-flipster">
<ul>
<li data-flip-title="Syrius extension">
<img src="./img/z.extension.png" alt="page 1" />
</li>
<li data-flip-title="Syrius Mobile">
<img src="./img/z.mobile_app.png" alt="page 2" />
</li>
<li data-flip-title="Bridge">
<img src="./img/z.bridge.png" alt="page 3" />
</li>
<li data-flip-title="zenon.org">
<img src="./img/z.org.png" alt="page 4" />
</li>
<li data-flip-title="zenon.tools">
<img src="./img/z.tools.png" alt="page 5" />
</li>
<li data-flip-title="Zenon Forum">
<img src="./img/z.forum.png" alt="page 6" />
</li>
<li data-flip-title="Zenon.info">
<img src="./img/z.info.png" alt="page 7" />
</li>
<li data-flip-title="Zenonhub.io">
<img src="./img/z.hub.png" alt="page 8" />
</li>
<li data-flip-title="Zenon Playground">
<img src="./img/z.playground.png" alt="page 9" />
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="downloads">
<div class="container">
<div class="section downloads">
<h1 class="back-title">downloads</h1>
<div class="downloads__title">
<h2>Syrius Wallet</h2>
</div>
<div class="downloads__columns">
<div class="downloads__column">
<ul>
<li><img src="./img/brave-icon.svg" alt="brave icon" /></li>
<li><img src="./img/chrome-icon.svg" alt="chrome icon" /></li>
<li><img src="./img/firefox-icon.svg" alt="firefox icon" /><sup>soon</sup></li>
</ul>
<h3>Web3 Browser Wallet</h3>
<div class="dropdown disabled">
<button type="button" disabled class="gradient-btn">Download <i class="fas fa-chevron-down"></i></button>
<div class="dropdown__content">
<a href="#"><img src="./img/brave-icon.svg" alt="brave icon" />Brave</a>
<a href="#"><img src="./img/chrome-icon.svg" alt="chrome icon" />Chrome</a>
<a href="#"><img src="./img/firefox-icon.svg" alt="firefox icon" />Firefox</a>
</div>
</div>
</div>
<div class="downloads__column">
<ul>
<li><i class="fab fa-apple"></i></li>
<li><i class="fab fa-windows"></i></li>
<li><i class="fab fa-linux"></i></li>
</ul>
<h3>Desktop Wallet</h3>
<div class="dropdown">
<button type="button" class="gradient-btn">Download <i class="fas fa-chevron-down"></i></button>
<div class="dropdown__content">
<a target="_blank" href="https://github.com/zenon-network/syrius/releases/download/v0.2.1-alphanet/syrius-alphanet-windows-amd64.zip"><i class="fab fa-windows"></i>Windows</a>
<a target="_blank" href="https://github.com/zenon-network/syrius/releases/download/v0.2.1-alphanet/syrius-alphanet-macos-universal.dmg"><i class="fab fa-apple"></i>Mac</a>
<a target="_blank" href="https://github.com/zenon-network/syrius/releases/download/v0.2.1-alphanet/syrius-alphanet-linux-amd64.zip"><i class="fab fa-linux"></i>Linux</a>
</div>
</div>
</div>
<div class="downloads__column">
<ul>
<li><img src="./img/android-icon.svg" alt="android icon" /></li>
<li><i class="fab fa-apple"></i><sup>soon</sup></li>
</ul>
<h3>Mobile Wallet</h3>
<div class="dropdown disabled">
<button type="button" disabled class="gradient-btn">Download <i class="fas fa-chevron-down"></i></button>
<div class="dropdown__content">
<a href="#"><i class="fab fa-android"></i>Android</a>
<a href="#"><i class="fab fa-ios"></i>iOS</a>
</div>
</div>
</div>
</div>
<a target="_blank" href="https://github.com/zenon-network/" class="btn btn--simple">Open source, forever. <i class="fab fa-github"></i></a>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer">
</div>
<div class="footer__copyright">
<p>© 2024 Zenon. Built by the Community.</p>
<a href="mailto:[email protected]" style="text-decoration:none">
<p>[email protected]</p>
</a>
</div>
</div>
</footer>
<div class="progress-wrap">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/jquery.min.js"></script>
<script src="./js/main.js"></script>
<script src="https://unpkg.com/@lottiefiles/[email protected]/dist/lottie-player.js"></script>
<script src="js/flipster.min.js"></script>
<script>
$('.times__label').hide();
setTimeout(() => {
$('.flipster__item--current').find('.times__label').show();
});
$('.my-flipster').flipster({
style: 'flat',
buttons: 'custom',
buttonPrev: '<svg width="41" height="79" viewBox="0 0 41 79" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M37 4L5 39.5L37 75" stroke="url(#paint0_linear_1411_12)" stroke-width="7" stroke-linecap="round"/><defs><linearGradient id="paint0_linear_1411_12" x1="-24.7931" y1="39.5" x2="50.7931" y2="39.5" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="1" stop-color="white" stop-opacity="0"/></linearGradient></defs></svg>',
buttonNext: '<svg width="41" height="79" viewBox="0 0 41 79" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.99999 75L36 39.5L3.99999 4" stroke="url(#paint0_linear_1411_2199)" stroke-width="7" stroke-linecap="round"/><defs><linearGradient id="paint0_linear_1411_2199" x1="65.7931" y1="39.5" x2="-9.79311" y2="39.5" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="1" stop-color="white" stop-opacity="0"/></linearGradient></defs></svg>',
scrollwheel: false,
spacing: -0.4,
click: true,
touch: true,
onItemSwitch: (current, previous) => {
const title = $(current).data('flip-title');
if (title) {
$(`.flipster__button--${title}`).hide();
} else {
$('.flipster__button--prev').show();
$('.flipster__button--next').show();
}
setTimeout(() => {
$('.times__label').hide();
$('.flipster__item--current').find('.times__label').show();
})
}
});
$('.tab-flipster').flipster({
style: 'carousel',
buttons: 'custom',
buttonPrev: '<svg width="41" height="79" viewBox="0 0 41 79" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M37 4L5 39.5L37 75" stroke="url(#paint0_linear_1411_12)" stroke-width="7" stroke-linecap="round"/><defs><linearGradient id="paint0_linear_1411_12" x1="-24.7931" y1="39.5" x2="50.7931" y2="39.5" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="1" stop-color="white" stop-opacity="0"/></linearGradient></defs></svg>',
buttonNext: '<svg width="41" height="79" viewBox="0 0 41 79" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.99999 75L36 39.5L3.99999 4" stroke="url(#paint0_linear_1411_2199)" stroke-width="7" stroke-linecap="round"/><defs><linearGradient id="paint0_linear_1411_2199" x1="65.7931" y1="39.5" x2="-9.79311" y2="39.5" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="1" stop-color="white" stop-opacity="0"/></linearGradient></defs></svg>',
scrollwheel: false,
nav: true,
spacing: -0.7,
touch: true
});
(function () {
var visited = sessionStorage.getItem('visited');
var body = document.getElementsByTagName('body');
var loading = document.getElementById('loading');
var container = document.getElementById('container');
var loader = document.getElementById('loader');