-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
926 lines (850 loc) · 50.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145266926-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-145266926-1');
</script>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-TXQW5CK');</script>
<!-- End Google Tag Manager -->
<!-- Hotjar Tracking Code for https://catalystnet.org/ -->
<script>
(function (h, o, t, j, a, r) {
h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) };
h._hjSettings = { hjid: 1452006, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script'); r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
<meta charset="utf-8">
<title>Catalyst</title>
<meta name="description" content="The NFT and Metaverse blockchain">
<meta name="keywords" content="EVM, nft, metaverse, blockchain, meta, dfs">
<meta name="author" content="TheNewAutonomy">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no">
<link rel="icon" type="image/x-icon" href="static/images/favicon.ico">
<link rel="stylesheet" media="all" href="static/css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<!-- Quora Pixel Code (JS Helper) -->
<script>
!function (q, e, v, n, t, s) { if (q.qp) return; n = q.qp = function () { n.qp ? n.qp.apply(n, arguments) : n.queue.push(arguments); }; n.queue = []; t = document.createElement(e); t.async = !0; t.src = v; s = document.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t, s); }(window, 'script', 'https://a.quora.com/qevents.js');
qp('init', 'c5f60baaa15d4c41aa547da00d93f474');
qp('track', 'ViewContent');
</script>
<noscript><img height="1" width="1" style="display:none" src="https://q.quora.com/_/ad/c5f60baaa15d4c41aa547da00d93f474/pixel?tag=ViewContent&noscript=1" /></noscript>
<!-- End of Quora Pixel Code -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TXQW5CK"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="wrapper">
<div class="preloader">
<div class="c-cube">
<div class="c-cube__side c-cube__side--front"></div>
<div class="c-cube__side c-cube__side--back"></div>
<div class="c-cube__side c-cube__side--right"></div>
<div class="c-cube__side c-cube__side--left"></div>
<div class="c-cube__side c-cube__side--top"></div>
<div class="c-cube__side c-cube__side--bottom"></div>
</div>
<div class="preloader__logo"><img src="static/images/logo.svg"></div>
</div>
</div>
<header class="header">
<div class="wrapper-inner">
<div class="header__content">
<a class="header__logo" href="index.html">
<img src="static/images/logo.svg">
</a>
<div class="header__menu">
<nav class="menu">
<ul class="menu__list">
<li class="menu__item">
<a class="menu__link transition"
href="#features">Features</a>
</li>
<li class="menu__item">
<a class="menu__link transition"
href="#dayzero">Test Network</a>
</li>
<li class="menu__item">
<a class="menu__link transition"
href="#Stories">Applications</a>
</li>
<li class="menu__item">
<a class="menu__link transition"
href="#Videos">Videos</a>
</li>
<!--<li class="menu__item"><a class="menu__link transition"
href="#team">Team</a></li>-->
<li class="menu__item">
<a class="menu__link transition"
href="#roadmap">Roadmap</a>
</li>
<li class="menu__item">
<a
href="mailto:[email protected]">Contact</a>
</li>
<!-- <div class="start__button flex-center"><a style="padding-right: 20px;width: auto;" href="/RegisterNow.html" class="button button--green">Sign up for our <br> Virtual Meetup!</a></div> -->
</ul>
</nav>
</div>
<div class="header__mobile">
<div class="header__mobile-item topBar"></div>
<div class="header__mobile-item btmBar"></div>
</div>
</div>
</div>
</header>
<section class="top">
<div class=" wrap" id="about">
<div class="wrapper-inner">
<div class="wrapper-inner">
<h1 class="start__title title title--white">
A blockchain for <span class="green bold">Dapp's </span>and the <span class="green bold">Metaverse</span>
</h1>
</div>
<div class="about__content">
<div class="about__left">
<div class="about__block flex">
<div class="about__img" data-aos="zoom-out-down" data-aos-delay="400"
data-aos-duration="800"><img src="static/images/about-1.png"></div>
<div class="about__info">
<h3 class="about__caption">STORAGE</h3>
<div class="about__text">
<p>Integrated distributed file storage for NFT's, Metaverse assets and other files</p>
</div>
</div>
</div>
<div class="about__block flex about__block--reverse">
<div class="about__img" data-aos="zoom-out-down" data-aos-delay="600"
data-aos-duration="800"><img src="static/images/about-2.png"></div>
<div class="about__info">
<h3 class="about__caption">COMPUTE</h3>
<div class="about__text">
<p>
KVM is fully EVM compatible while supporting file system access
</p>
</div>
</div>
</div>
<div class="about__block flex">
<div class="about__img" data-aos="zoom-out-down" data-aos-delay="800"
data-aos-duration="800"><img src="static/images/about-3.png"></div>
<div class="about__info">
<h3 class="about__caption">DEMOCRACY</h3>
<div class="about__text">
<p>
Rewarding computational effort fairly, by using collaborative rather than
competitive consensus
</p>
</div>
</div>
</div>
</div>
<div class="about__right">
<h2 class="about__title title title--white">What is the metaverse?</h2>
<div class="about__text about__text--white">
<p>
The metaverse is different things to different people, everyone has their own vision of what it is and what it could be.
<p>
<p>
Some would say it's our online identitity, our reputation, our online friends and the digital assets we own.
</p>
<p>
Some would say it's rich online virtual worlds, gaming, entertainment and some day the full Ready Player One experience.
</p>
<p>
Catalyst is a protocol developed specifically to enable the exploration of the metaverse and nft
space, while supporting rich dApps that use files ranging from video to industrial big data sets.
</p>
<p>
Started in 2017, Catalyst is one of the earliest modular blockchains that incorporates DLT, a distributed file system and smart contract system. This combination opens up a world
of possibilities from games and virtual worlds to industrial systems.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="top__mission wrap" id="internet">
<div class="mission__img">
<img src="static/images/mission_V2.png"><img class="mission__img-absolute"
src="static/images/mission2.png">
</div>
<div class="wrapper-inner">
<div class="mission__content">
<h3 class="mission__caption title">Catalyst Network</h3>
<h2 class="mission__title title title--white">A protocol for NFT's, the Metaverse and files</h2>
<div class="mission__block" data-text="Mission">
<h3 class="mission__caption">Mission</h3>
<div class="mission__text">
<p>
To support NFT and Metaverse projects that need to combine on-chain data with larger asset files and complex on and off-chain logic.
</p>
</div>
</div>
<div class="mission__block" data-text="Vision">
<h3 class="mission__caption">Vision</h3>
<div class="mission__text">
<p>
Our vision is to build a blockchain that returns to the founding principles of this industry. Fairness, decentralisation and inclusion.
</p>
</div>
</div>
<div class="start__button flex-center">
<a href="https://catalystnet.org/media/IntroductionToCatalystNetwork.pdf" target="_blank" class="button button--green">
<b>Introduction to Catalyst Network (PDF)</b>
</a>
</div>
<div class="start__button flex-center">
<a href="https://catalystnet.org/media/CatalystConsensusPaper.pdf" target="_blank" class="button button--green">
<b>Catalyst consensus research paper (PDF)</b>
</a>
</div>
<div class="start__button flex-center">
<a href="https://catalystnet.org/media/CatalystNetworkSecurityConsiderations.pdf" target="_blank" class="button button--green">
<b>Catalyst security considerations (PDF)</b>
</a>
</div>
<div class="start__button flex-center">
<a href="https://catalystnet.org/media/CatalystPitchDeck.pdf" target="_blank" class="button button--green">
<b>Investor Pitch Deck (PDF)</b>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="connection wrap">
<div class="wrapper-inner">
<div class="subscribe__content">
<div class="subscribe__text text-center">
<p>
At the heart of Catalyst is a consensus mechanism that goes back to the founding principles of Bitcoin, to build a mechanism that encourages decentralisation of control and wealth.
</p><br />
<p>
The first implementation of Catalyst is written in .NET, providing a cross platform environment in a widely supported language and framework. This implementation is made up of a set of interfaces and modules that can be extended or swapped out, creating a true modular experience.
</p><br />
<p>
The KVM runtime environment provides EVM compatibility while opening up access to data stored in the ledger as well as in the decentralised file system.
</p><br />
<br /><br />
<ul>
<li><div class="network__text" style="color:white;"><a href="https://discord.gg/3JmXRXv" target="_blank">Join our Discord server to follow and discuss progress, form and join teams, to shape the community</a></div></li>
<li><div class="network__text" style="color:white;"><a href="https://github.com/catalyst-network" target="_blank">Get involved in our open source projects on GitHub. 32 Catalyst repositories, 43 related project repositories</a></div></li>
<li><div class="network__text" style="color:white;">If you're a .NET developer, researcher, investor, community member or anyone with an interest in Catalyst then get in touch through Discord or email.</div></li>
</ul>
</div>
</div>
</div>
</section>
<section class="subscribe" id="subscribe" style="background-color:#19445b">
<div class="wrapper-inner">
<div class="subscribe__content">
<div class="subscribe__content">
<br><br><br><br>
<div class="subscribe__text">
<h2 class="subscribe__title title green">Join our community</h2>
</div>
</div>
<div class="subscribe__text">
<div class="subscribe__social flex-center">
<a class="transition" href="https://github.com/catalyst-network"
target="_blank"><i class="fab fa-github" style="font-size:1.2em;"></i></a>
<a class="transition" href="https://discord.gg/3JmXRXv"
target="_blank"><i class="fab fa-discord" style="font-size:1.2em;"></i></a>
<a class="transition" href="https://medium.com/catalystprotocol" target="_blank">
<i class="fab fa-medium-m" style="font-size:1.3em;"></i>
</a>
<a class="transition" href="https://twitter.com/CatalystProt" target="_blank">
<i class="fab fa-twitter" style="font-size:1.3em;"></i>
</a>
<a class="transition" href="https://www.facebook.com/catalystnetorg/" target="_blank">
<i class="fab fa-facebook" style="font-size:1.3em;"></i>
</a>
<a class="transition" href="https://www.linkedin.com/company/catalyst-network/about/" target="_blank">
<span class="icon-linkedin"></span>
</a>
</div>
<!--<div class="subscribe__social flex-center">
<a href="https://catalystnet.us17.list-manage.com/subscribe/post?u=76de41ddaf4c3180d9b57de65&id=de5a7cbd46" class="button button--green">
Sign up for updates<span class="icon-arrow"></span>
</a>
</div>-->
</div>
</div>
</div>
</section>
<section class="features wrap" id="features">
<div class="wrapper-inner">
<div class="features__content">
<h2 class="title title--center features__title">Features</h2>
<div class="features__part flex">
<div class="features__block snip1295 features__block--top" data-aos="fade-zoom-in"
data-aos-delay="400" data-aos-duration="800">
<div class="border one">
<div>
</div>
</div>
<div class="border two">
<div>
</div>
</div>
<div class="features__img"><img src="static/images/features-1.svg"></div>
<div class="features__text">
<h3>KVM</h3>
<p>
EVM compatible runtime, extended to support file actions and to trigger off-chain events such
as service bus message posts.
</p>
</div>
</div>
<div class="features__block snip1295 features__block--top" data-aos="fade-zoom-in"
data-aos-delay="900" data-aos-duration="800">
<div class="border one">
<div></div>
</div>
<div class="border two">
<div></div>
</div>
<div class="features__img"><img src="static/images/features-2.svg"></div>
<div class="features__text">
<h3>Modular</h3>
<p>
One of if not the first fully modular blockchains, started in 2017 as a modular technology stack.
</p>
</div>
</div>
<div class="features__block snip1295 features__block--top" data-aos="fade-zoom-in"
data-aos-delay="1400" data-aos-duration="800">
<div class="border one">
<div></div>
</div>
<div class="border two">
<div></div>
</div>
<div class="features__img"><img src="static/images/features-3.svg"></div>
<div class="features__text">
<h3>Data</h3>
<p>
Work with the native distributed ledger and the native
distributed file system. Store NFT images, video, audio, artifacts and more.
</p>
</div>
</div>
</div>
<div class="features__logo"><img src="static/images/logo-big.svg"></div>
<div class="features__part flex">
<div class="features__block snip1295 features__block--bottom" data-aos="fade-zoom-in"
data-aos-delay="1900" data-aos-duration="800">
<div class="border one">
<div></div>
</div>
<div class="border two">
<div></div>
</div>
<div class="features__img"><img src="static/images/features-4.svg"></div>
<div class="features__text">
<h3>Efficient</h3>
<p>
Efficient consensus mechanism and minimal block history requirements to
make Catalyst lean and green.
</p>
</div>
</div>
<div class="features__block snip1295 features__block--bottom" data-aos="fade-zoom-in"
data-aos-delay="2400" data-aos-duration="800">
<div class="border one">
<div></div>
</div>
<div class="border two">
<div></div>
</div>
<div class="features__img"><img src="static/images/features-5.svg"></div>
<div class="features__text">
<h3>Fair</h3>
<p>
Consensus built to always decentalize wealth and control broadly,
in line with the founding principles of Blockchain.
</p>
</div>
</div>
<div class="features__block snip1295 features__block--bottom" data-aos="fade-zoom-in"
data-aos-delay="2900" data-aos-duration="800">
<div class="border one">
<div></div>
</div>
<div class="border two">
<div></div>
</div>
<div class="features__img"><img src="static/images/features-6.svg"></div>
<div class="features__text">
<h3>Community</h3>
<p>
Open source, following standards, DAO based governance, tokenomics
that rewards users and community members.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="network" id="dayzero">
<div class="wrapper-inner">
<div class="network__content">
<h2 class="title title--white network__title">TEST NETWORK</h2>
<div class="network__text">
<h3></h3>
<p>
Catalyst ran its first public test network in 2020 for 9 months before closing it down at the end of the original Catalyst R&D project.
Now, in 2024, the decision has been made to update the Catalyst technology stack to the latest .NET and EVM standards, to begin work on the
latest consensus mechanism design set out in the Catalyst consensus paper, and to launch the Catalyst network as a complete layer 1 blockchain.
</p>
<p>
Catalyst is not setting out to compete with any other blockchain, but to create an environment ideal for builders who need to work with files and
who are seeking a return to the founding principles of decentralised wealth and control. That means node operators don't need money to stake, don't
need expensive hardware, don't need any special privileges. Catalyst is a network that by design is for builders and their customers to own and benefit from.
</p>
</div>
<div class="network__text">
<h3>NETWORK EXPLORER</h3>
<!--http://catalystexplorer.z33.web.core.windows.net/dashboard/#/-->
<p><a href="#" target="_blank">Visit the node explorer here (shut down until new test network is launched).</a></p>
<!--http://catalystexplorer.z33.web.core.windows.net/?network=Node%201-->
<p><a href="#" target="_blank">Visit the block explorer here (shut down until new test network is launched).</a></p>
</div>
<div class="network__text">
<h3>GET A WALLET AND TEST TOKENS</h3>
<p><a href="http://wallet.catalystnet.org/" target="_blank">Access the test network wallet</a></p>
<p><a href="http://catalyst-faucet.herokuapp.com/" target="_blank">Get test tokens at the faucet</a></p>
</div>
<div class="network__text">
<h3>START BUILDING TODAY</h3>
<p><a href="https://catalyst-network.github.io/Catalyst/api/" target="_blank">Explore the API documentation</a></p>
<p><a href="https://github.com/catalyst-network/Community/tree/master/governance" target="_blank">Learn about the original Catalyst governance model (preparing to replace with new DAO model)</a></p>
<p><a href="https://github.com/catalyst-network/Community" target="_blank">Explore the community documentation</a></p>
<p><a href="https://github.com/catalyst-network/Community/blob/master/CONTRIBUTING.md" target="_blank">Learn about contributing to the project</a></p>
<p><a href="https://www.youtube.com/@CatalystBlockchain" target="_blank">Visit the team and project on YouTube</a></p>
</div>
</div>
</div>
</section>
<section class="followus wrap" id="Stories">
<div class="media_section">
<div class="wrapper-inner">
<div class="followus__content">
<br>
<br>
<h2 class="title followus__title" style="">Early partners</h2>
<div class="flex">
<div class="flex__item">
<a target="_blank" href="https://cent.finance">
<img style="height: 100%;" src="static/images/cent.png">
<div class="followus__text" style="background-color:white; opacity:85%;">
<div class="followus__head followus__head transition" style="margin-bottom: 0px;">
Every great blockchain needs a great wallet<br>
</div>
<div class="followus__name">
<p>
Cent Finance provides a multi-chain wallet that presently supports Ethereum, Gnosis and Celo networks and will include support for Catalyst.
</p><br />
<p>
We will also be ensuring Catalyst will be supproted by MetaMask and WalletConnect.
</p>
</div>
</div>
</a>
</div>
<div class="flex__item">
<div class="followus__part flex">
<a target="_blank" class="followus__card transition" href="https://symmetric.finance">
<div class="followus__img img"><img src="static/images/symmetric.png"></div>
<div class="followus__info">
<div class="followus__head">
Symmetric
</div>
<div class="followus__name">Symmetric is an AMM and DEX on Celo and Gnosis and has begun adding support for Catalyst for when the Catalyst main network launches.</div>
</div>
</a>
<a target="_blank" class="followus__card transition" href="https://jeskei.com">
<div class="followus__img img"><img src="static/images/jeskei.png"></div>
<div class="followus__info">
<div class="followus__head">
Jeskei
</div>
<div class="followus__name">Jeskei is a new NFT based media platform that will be using Catalyst for many of its core systems.</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="Video section" id="Videos">
<div class="youtube_videos">
<div class="wrapper-inner">
<div class="team__content">
<BR>
<BR>
<br>
<h2 class="title title--white network__title" STYLE="margin-bottom: -10px;">DISCOVER CATALYST ON YOUTUBE</h2>
<br>
<div class="row">
<div class="team__part flex">
<div class="team__block-wrap">
<div class="video__block" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<iframe class="yt-video" width="400" height="315" src="https://www.youtube.com/embed/UQsM3GMNK0o" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="team__block-wrap">
<div class="video__block" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<iframe class="yt-video" width="400" height="315" src="https://www.youtube.com/embed/94YwJzMklKQ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="team__block-wrap">
<div class="video__block" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<iframe class="yt-video" width="400" height="225" src="https://player.vimeo.com/video/372383787?h=c703ed9f22" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div> <br><br>
<div style="clear:both"></div>
</div>
</div>
</section>
<section class="timeline wrap" id="roadmap">
<div class="wrapper-inner">
<h2 class="title timeline__title">Roadmap</h2>
</div>
<div class="timeline__content">
<div class="timeline__wrapper js-timeline-wrapper">
<div class="timeline__block js-timeline">
<div class="timeline__event js-event" data-aos="fade-down" data-aos-delay="400"
data-aos-duration="800">
<p class="timeline__date">2017</p>
<ul class="timeline__list" style="line-height: 14px;">
<li>Research team founded</li>
<li>Three white papers published</li>
</ul>
</div>
<div class="timeline__event js-event odd" data-aos="fade-up" data-aos-delay="500"
data-aos-duration="800">
<p class="timeline__date">2018</p>
<ul class="timeline__list" style="line-height: 14px;">
<li>$2 million raised</li>
<li>Engineering team formed</li>
<li>Prototype test network built</li>
</ul>
</div>
<div class="timeline__event js-event" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="700">
<p class="timeline__date">2019</p>
<ul class="timeline__list" style="line-height: 14px;">
<li>New .NET Core code base</li>
<li>Wallet & tools developed</li>
<li>Updated research papers</li>
</ul>
</div>
<div class="timeline__event js-event odd" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="800">
<p class="timeline__date">2020</p>
<ul class="timeline__list" style="line-height: 14px;">
<li>$3 million raised</li>
<li>New test networks</li>
<li>Research period ends</li>
</ul>
</div>
<div class="timeline__event js-event" data-aos="fade-down" data-aos-delay="700"
data-aos-duration="900">
<p class="timeline__date">2021</p>
<ul class="timeline__list" style="line-height: 14px;">
<li>Research published</li>
<li>Projects open sourced</li>
<li>Review period begins</li>
</ul>
</div>
<div class="timeline__event js-event odd" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="1000">
<p class="timeline__date">2023</p>
<ul class="timeline__list" style="line-height: 14px;">
<li>Updated to .NET 8</li>
<li>Latest EVM standards</li>
<li>Plan public launch</li>
<li>iOS & Android wallet</li>
</ul>
</div>
<div class="timeline__event js-event" data-aos="fade-down" data-aos-delay="700"
data-aos-duration="1100">
<p class="timeline__date">2024</p>
<ul class="timeline__list" style="line-height: 14px;">
<li>Engineering update</li>
<li>Research paper review</li>
<li>Funding token sale</li>
<li>Develop updated consensus</li>
<li>New test networks</li>
</ul>
</div>
<div class="timeline__event js-event odd" data-aos="fade-up" data-aos-delay="800"
data-aos-duration="1200">
<p class="timeline__date">2025</p>
<ul class="timeline__list" style="line-height: 17px;">
<li>Launch main network</li>
<li>Deploy projects to Catalyst</li>
<li>Continue R&D and growth</li>
<li>Expand community</li>
</ul>
</div>
</div>
</div>
<div class="timeline__line js-line"></div>
<a class="js-timeline-next timeline__button timeline__button--next" href="#"></a>
<a class="js-timeline-prev timeline__button timeline__button--prev" href="#"></a>
</div>
</section>
<section class="stories wrap" id="media_coverage">
<div class="media_coverage">
<div class="wrapper-inner">
<div class="row">
<div class="subscribe__title title green">
<br>
<br>
<h2 class="title title--left features__title" style="color: #fff;">Media Coverage</h2>
</div>
<br>
</div>
<div class="wrapper-inner">
<div class="team__content">
<div class="team__part flex">
<div class="stories__block-wrap card-wrapper" style="display: contents; ">
<div class="stories__block">
<div class="card frame text-center" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800"
style="">
<br>
<br>
<br>
<img class="card-img-top img-responsive" style="" src="static/images/prn_cision_logo_desktop.png"
alt="Card image cap">
<br>
<br>
<div class="card-body">
<br>
<h3 class="card-title " style="color:#1a4866;font-weight:bold; font-size: 14px;">
Catalyst Network Gets Green Light at Blockchain Live
</h3> <br>
<p class="card-text" style="color:#1a4866;">New announcements and a workshop on building a Web3.0 Twitter service.</p>
<br>
<a style="color: #16ac9f; border: 1px solid rgba(98, 106, 110, 0.2); padding: 0.2rem;" target="_blank"
href="https://www.prnewswire.com/news-releases/catalyst-network-gets-green-light-at-blockchain-live-300925002.html">
READ MORE
</a>
</div>
<br>
</div>
</div>
</div>
<div class="stories__block-wrap card-wrapper" style="display: contents; ">
<div class="stories__block">
<div class="card frame text-center" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800"
style="border: 1px solid rgba(98, 106, 110, 0.2);">
<br>
<br>
<br>
<img class="card-img-top img-responsive" style="width:100%;height: 69px;" src="static/images/fina1.png"
alt="Card image cap">
<br>
<br>
<div class="card-body">
<br>
<h3 class="card-title " style="color:#1a4866;font-weight:bold; font-size: 14px;">
U.K. Blockchain Firm Heads for Switzerland
</h3> <br>
<p class="card-text" style="color:#1a4866;">Blockchain firm which just raised $4 million is heading to Switzerland.</p>
<br>
<a style="color: #16ac9f; border: 1px solid rgba(98, 106, 110, 0.2); padding: 0.2rem;" target="_blank"
href="https://www.finews.com/news/english-news/36976-atlas-city-switzerland-foundation-swiss-mark-weinberg-blockchain-catalyst">
READ MORE
</a>
</div>
<br>
</div>
</div>
</div>
<div class="stories__block-wrap card-wrapper" style="display: contents; ">
<div class="stories__block">
<div class="card frame text-center" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800"
style="border: 1px solid rgba(98, 106, 110, 0.2);">
<br>
<br>
<br>
<img class="card-img-top img-responsive" style="width:100%;height: 69px;background: black;" src="static/images/swi1.png"
alt="Card image cap">
<br>
<br>
<div class="card-body">
<br>
<h3 class="card-title " style="color:#1a4866;font-weight:bold; font-size: 14px;">
Crypto foundations continue to thrive in Switzerland
</h3> <br>
<p class="card-text" style="color:#1a4866;">Yet more overseas blockchain firms are coming to Switzerland.</p>
<br>
<a style="color: #16ac9f; border: 1px solid rgba(98, 106, 110, 0.2); padding: 0.2rem;" target="_blank"
href="https://www.swissinfo.ch/eng/swiss-magnet_crypto-foundations-continue-to-thrive-in-switzerland/45100304">
READ MORE
</a>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
</div>
</div>
</section>
<!--<section class="contact wrap" id="contact">
<div class="wrapper-inner">
<div class="contact__content">
<h2 class="title title--white contact__title">Get in touch </h2>
<div class="contact__form">
<form id="contact-form" class="form-popup" name="form" method="POST">
<label data-name="nonfield"></label>
<div class="form__wrap">
<div class="contact__input contact__input--w-100">
<input id="form_name" class="input js-text" type="text" name="name" data-msg="This field is required"
placeholder="Name">
</div>
<div class="contact__input contact__input--w-100">
<input id="form_email" class="input" type="email" name="fromEmail"
data-msg="Please enter a valid email address"
data-msg-required="This field is required" placeholder="Email">
</div>
<div class="contact__textarea">
<textarea id="form_message" class="textarea" name="message" data-msg-required="This field is required"
placeholder="Message"></textarea>
</div>
<div class="contact__submit">
<button class="submit flex-center transition" type="submit" id="submitMessage">Send</button>
</div>
</div>
</form>
<div id="contactFormError"></div>
</div>
</div>
</div>
<div class="contact__map">-->
<!-- <div id="infowindow">
</div> -->
<!--<div id="map" data-position="{"lat":51.5175797, "lng": -0.1826176}"></div>
</div>
</section>-->
<footer class="footer">
<div class="wrapper-inner">
<div class="footer__content flex flex--center">
<div class="footer__social flex-center">
<a class="transition" href="https://github.com/catalyst-network"
target="_blank"><i class="fab fa-github" style="font-size:1.3em;"></i></a>
<a class="transition" href="https://discord.gg/3JmXRXv"
target="_blank"><i class="fab fa-discord" style="font-size:1.3em;"></i></a>
<a class="transition" href="https://twitter.com/CatalystProt"
target="_blank"><i class="fab fa-twitter" style="font-size:1.3em;"></i></a>
<a class="transition" href="https://www.facebook.com/catalystnetorg/"
target="_blank"><i class="fab fa-facebook" style="font-size:1.3em;"></i></a>
<a class="transition" style="font-size:1.3em;" href="https://medium.com/catalystprotocol"
target="_blank">
<i class="fab fa-medium-m"></i>
</a>
<a class="transition" href="https://www.linkedin.com/company/catalyst-network/about/"
target="_blank"><span class="icon-linkedin" style="font-size:1.3em;"></span></a>
</div>
<div class="footer__links">
<a class="transition" href="policy.html" target="_blank">
Privacy
Policy
</a><a class="transition" href="terms_conditions.html" target="_blank">
Terms and
conditions
</a>
</div>
</div>
</div>
</footer>
<div class="wrapper-with-mask">
<div class="popup js-ajax-popup"></div>
</div>
<script src="static/js/jquery.js"></script>
<script src="static/js/jquery-validate.js"></script>
<script src="static/js/aos.js"></script>
<script src="static/js/slick-carousel.js"></script>
<script src="static/js/newmain.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?callback=initMap&key=AIzaSyAqOazqPcP8E-_s-Vp7MRbP3UMUgS2xfQw"
async defer></script>
<script type="text/javascript">
var url = "https://atlascitywebsiteemail.azurewebsites.net/api/contact?code=s5eBd7t3DTLdecOpaEfLDmnjgjvEkMHddVHiXc9Pk8fOBVl7ISotAA==";
$("form").on('submit', function (event) {
event.preventDefault();
var $form = $("#contact-form");
var data = getFormData($form);
// hide prior errors, disable inputs while we're submitting
$("#contactFormError").hide();
$("#contactForm input").prop('disabled', true);
// back in my day, we had to AJAX uphill both ways, in the snow, through cross-iframe scripts
$.ajax({
type: "POST",
url: url,
data: JSON.stringify(data),
contentType: 'application/json',
crossDomain: true,
headers: { 'Content-Type': 'application/json' },
success: function (respData) {
// Yay, success!!
$("#contact-form").html("<div style='padding: 5em 1em; text-align: center; color: #008800'>" + "Message sent" + "</div>");
},
error: function (jqXHR) {
// Boo, error...
$("#contactFormError").html("<div style='padding: 1em; text-align: center; color: #660000'>Sorry, an error occurred: " + jqXHR.responseText + "</div>");
$("#contactFormError").show();
$("#contactForm input").prop('disabled', false);
}
});
});
</script>
<script type="text/javascript">
function getFormData($form) {
var unindexed_array = $form.serializeArray();
var indexed_array = {};
$.map(unindexed_array, function (n, i) {
indexed_array[n['name']] = n['value'];
});
return indexed_array;
}
</script>
</body>
</html>