-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·978 lines (917 loc) · 51 KB
/
index.html
File metadata and controls
executable file
·978 lines (917 loc) · 51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Catalyst Network</title>
<meta name="description"
content="Catalyst Network is a decentralization-first blockchain designed to make it difficult to centralize wealth and power.">
<meta name="keywords" content="blockchain, decentralization, consensus, fair launch, EVM">
<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">
</head>
<body>
<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="#problem">Crisis</a>
</li>
<li class="menu__item">
<a class="menu__link transition" href="#features">Features</a>
</li>
<li class="menu__item">
<a class="menu__link transition" href="#fair-launch">Fair Launch</a>
</li>
<li class="menu__item">
<a class="menu__link transition" href="#comparison">Comparison</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 class="menu__link transition" href="#media">Media</a>
</li>
<li class="menu__item">
<a href="mailto:darren.op@catalystnet.org">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">
Blockchain as <span class="green bold">It Was Meant</span> to Be
</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>
EVM compatibility and multi-runtime support, allowing developers to use familiar
tools and languages
</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">Returning to blockchain's founding principles</h2>
<div class="about__text about__text--white">
<p>
The blockchain industry has drifted from its founding principles.
<p>
<p>
What began as a movement to democratize finance has evolved into systems that recreate
the very exclusivity they sought to replace.
</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 Network returns blockchain to its roots through concrete technical innovations
that prove true decentralization isn't just an ideal—it's an achievable reality.
</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 bridging Web2 and Web3</h2>
<div class="mission__block" data-text="Mission">
<h3 class="mission__caption">Mission</h3>
<div class="mission__text">
<p>
To build a blockchain that returns to the founding principles of this industry.
Fairness, decentralisation and inclusion.
</p>
</div>
</div>
<div class="mission__block" data-text="Vision">
<h3 class="mission__caption">Vision</h3>
<div class="mission__text">
<p>
Our vision is a world where blockchain is accessible to everyone, regardless of wealth
or geography. A world where anyone can contribute to the network and be rewarded for
their efforts.
</p>
</div>
</div>
<div class="mission__block" data-text="Testnet">
<h3 class="mission__caption">Testnet</h3>
<div class="mission__text">
<p>
We’re running a public test network with nodes in Asia, Europe, and the USA.
</p>
</div>
</div>
<div class="start__button flex-center">
<a href="https://explorer.catalystnet.org/" target="_blank" rel="noopener noreferrer"
class="button button--green">
<b>Open block explorer</b>
</a>
</div>
<div class="start__button flex-center">
<a href="https://faucet.catalystnet.org/" target="_blank" rel="noopener noreferrer"
class="button button--green">
<b>Testnet faucet</b>
</a>
</div>
<div class="start__button flex-center">
<a href="https://github.com/orgs/catalyst-network/projects/2" target="_blank"
rel="noopener noreferrer" class="button button--green">
<b>Development plan</b>
</a>
</div>
<div class="start__button flex-center">
<a href="https://catalystnet.org/media/IntroductionToCatalystNetwork.pdf" target="_blank"
rel="noopener noreferrer"
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"
rel="noopener noreferrer"
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" rel="noopener noreferrer" class="button button--green">
<b>Catalyst security considerations (PDF)</b>
</a>
</div>
</div>
</div>
</div>
</section>
<section id="problem" class="problem-section">
<div class="container">
<h2 class="section-title text-center">Blockchain's Centralization Crisis</h2>
<div class="feature-grid">
<div class="feature-card" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<div class="feature-icon">💰</div>
<h3>Ethereum Proof-of-Stake</h3>
<p>Requires <strong>32 ETH</strong> to run a validator. Systems that promised open participation can
end up requiring significant wealth to participate</p>
</div>
<div class="feature-card" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<div class="feature-icon">⛏️</div>
<h3>Bitcoin Mining</h3>
<p>Dominated by industrial farms with <strong>million-dollar ASIC investments</strong>. Individual
miners can no longer compete.</p>
</div>
<div class="feature-card" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<div class="feature-icon">🐋</div>
<h3>DeFi Governance</h3>
<p>Often controlled by <strong>token whales and venture capital</strong>. Token-weighted voting can
concentrate decision-making power into a small number of hands.</p>
</div>
</div>
<div class="stats-section">
<div class="container">
<h3>The Mathematical Reality of Centralization</h3>
<div class="stats-grid">
<div class="stat-item" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<h3>Concentration</h3>
<p>Staking pools and custodians can accumulate a large share of validation power</p>
</div>
<div class="stat-item" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<h3>Scale effects</h3>
<p>Industrial mining can outcompete individuals through economies of scale</p>
</div>
<div class="stat-item" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<h3>Wealth ≠ voice</h3>
<p>Token-based governance often equates wealth with influence</p>
</div>
</div>
</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"
rel="noopener noreferrer"><i
class="fab fa-github" style="font-size:1.2em;"></i></a>
<a class="transition" href="https://discord.gg/3JmXRXv" target="_blank"
rel="noopener noreferrer"><i
class="fab fa-discord" style="font-size:1.2em;"></i></a>
<a class="transition" href="https://medium.com/catalystprotocol" target="_blank"
rel="noopener noreferrer">
<i class="fab fa-medium-m" style="font-size:1.3em;"></i>
</a>
<a class="transition" href="https://twitter.com/catalystnetorg" target="_blank"
rel="noopener noreferrer">
<i class="fab fa-twitter" style="font-size:1.3em;"></i>
</a>
<a class="transition" href="https://www.facebook.com/catalystnetorg/" target="_blank"
rel="noopener noreferrer">
<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" rel="noopener noreferrer">
<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>Collaborative Consensus</h3>
<p>
Unlike competitive mining or wealth-based staking, our collaborative consensus rewards
work over wealth. No computational puzzles, no token requirements—just meaningful
contribution to the network.
</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>Multi-Runtime Architecture</h3>
<p>
Break free from single-language constraints. Deploy Ethereum contracts, Solana programs,
or native code—all on the same network. Choose the best environment for your
application.
</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>Web2 Integration Bridge</h3>
<p>
Make blockchain accessible to millions of existing developers. Our service bus treats
blockchain events like any message queue—no Web3 expertise required.
</p>
</div>
</div>
</div>
<div class="features__logo"><img src="static/images/logo-big.svg"></div>
<h3 class="text-center" style="margin: 4rem 0 2rem;">How Collaborative Consensus Works</h3>
<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>1. Construction Phase</h3>
<p>
All producer nodes build candidate ledger updates from the transaction pool. No
computational puzzles or token requirements.
</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>2. Campaigning Phase</h3>
<p>
Nodes propose their candidate updates to peers. Majority agreement emerges through
mathematical comparison.
</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>3. Voting Phase</h3>
<p>
Nodes vote on the most popular candidate. Requires supermajority (>67%) for consensus,
weighted by contribution history.
</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>4. Synchronization Phase</h3>
<p>
Final ledger update distributed across network. All nodes update their local state and
rewards are distributed.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="fair-launch" class="stats-section">
<div class="container">
<h2 class="section-title">Fair Launch Promise</h2>
<p style="font-size: 1.2rem; margin-bottom: 3rem;">Merit-based distribution that puts work over wealth</p>
<div class="stats-grid">
<div class="stat-item">
<h3>0 KAT</h3>
<p>Tokens in circulation at launch</p>
</div>
<div class="stat-item">
<h3>No Pre-allocation</h3>
<p>Or insider advantages</p>
</div>
<div class="stat-item">
<h3>Open Participation</h3>
<p>Regardless of geography or wealth</p>
</div>
<div class="stat-item">
<h3>Work-based Rewards</h3>
<p>Through network contribution</p>
</div>
</div>
<h3 style="margin: 3rem 0 1rem;">Launch Phases</h3>
<div class="features__part flex" style="color: black;">
<div class="features__block snip1295" 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"></div>
<div class="features__text">
<h3>Phase 1: Genesis Launch (Month 1-3)</h3>
<p>
<ul>
<li>0 KAT tokens in circulation</li>
<li>Open source node software released</li>
<li>Anyone can run a node and start earning</li>
<li>Rewards: 100% from network inflation</li>
</ul>
</p>
</div>
</div>
<div class="features__block snip1295" 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"></div>
<div class="features__text">
<h3>Phase 2: Transaction Economy (Month 3-12)</h3>
<p>
<ul>
<li>Users begin transacting, generating fees</li>
<li>Validators earn inflation rewards + transaction fees</li>
<li>Service providers enter the ecosystem</li>
<li>Economic activity drives token utility</li>
</ul>
</p>
</div>
</div>
<div class="features__block snip1295" 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"></div>
<div class="features__text">
<h3>Phase 3: Self-Sustaining Network (Year 1+)</h3>
<p>
<ul>
<li>Transaction fees cover most validator costs</li>
<li>Inflation rate adjusts based on network needs</li>
<li>Rich ecosystem of applications and services</li>
<li>Global, distributed validator set</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Features Comparison -->
<section id="comparison" class="problem-section">
<div class="container">
<h2 class="section-title text-center">How Catalyst Compares</h2>
<table class="comparison-table" data-aos="flip-left" data-aos-delay="500" data-aos-duration="800">
<thead>
<tr>
<th>Launch Type</th>
<th>Initial Distribution</th>
<th>Centralization Risk</th>
<th>Regulatory Risk</th>
<th>Accessibility</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>ICO/Token Sale</strong></td>
<td>Concentrated among buyers</td>
<td><span class="cross">High (wealth-based)</span></td>
<td><span class="cross">High (securities)</span></td>
<td><span class="cross">Low (requires capital)</span></td>
</tr>
<tr>
<td><strong>Pre-mine</strong></td>
<td>Team/investor allocation</td>
<td><span class="cross">Very High</span></td>
<td>Medium</td>
<td><span class="cross">Very Low</span></td>
</tr>
<tr>
<td><strong>PoW Launch</strong></td>
<td>Miners with hardware</td>
<td>Medium (hardware costs)</td>
<td><span class="check">Low (no sale)</span></td>
<td>Medium (hardware barrier)</td>
</tr>
<tr>
<td><strong>PoS Launch</strong></td>
<td>Stakers with tokens</td>
<td><span class="cross">High (wealth-based)</span></td>
<td>Medium</td>
<td><span class="cross">Low (token requirement)</span></td>
</tr>
<tr style="background: #f0f8ff;">
<td><strong>Catalyst Fair Launch</strong></td>
<td>Merit-based earning</td>
<td><span class="check">Low (work-based)</span></td>
<td><span class="check">Low (no sale)</span></td>
<td><span class="check">High (open participation)</span></td>
</tr>
</tbody>
</table>
</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>
<!-- Roadmap Section -->
<section id="roadmap" class="roadmap-section">
<div class="container">
<h2 class="section-title text-center">Roadmap</h2>
<div class="phase-card">
<h3>Phase 1: Core Functionality & Testnet (Q1 2026)</h3>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;" data-aos="fade-down"
data-aos-delay="400">
<div>
<h4>Core Infrastructure</h4>
<ul>
<li>✅ Collaborative consensus in Rust</li>
<li>✅ EVM runtime integration</li>
<li>✅ Network topology </li>
<li>✅ Cryptographic primitives in place</li>
</ul>
</div>
<div>
<h4>Deliverables</h4>
<ul>
<li>✅ Public testnet running across Asia, Europe, and the USA</li>
<li>✅ Block explorer</li>
<li>✅ Wallet (complete; Chrome Web Store first, then Android and iOS)</li>
<li>⏳ Developer tooling</li>
</ul>
</div>
</div>
</div>
<div class="phase-card">
<h3>Phase 2: Stability & Tooling (Q2 2026)</h3>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;" data-aos="fade-down"
data-aos-delay="400">
<div>
<h4>Stability hardening</h4>
<ul>
<li>⬜ Tech stack review, hardening and optimization</li>
<li>⏳ Improvements to wallet, explorer and tooling</li>
<li>⏳ Documentation, guides, and onboarding</li>
<li>⬜ Genesis block creation</li>
</ul>
</div>
<div>
<h4>Deliverables</h4>
<ul>
<li>⬜ Main network</li>
<li>⏳ Wallet deployment: Chrome Web Store first, then Android and iOS</li>
<li>⬜ Jeskei, DeFi, and other projects deploying</li>
<li>⬜ Additional tools including AI skills</li>
</ul>
</div>
</div>
</div>
<div class="phase-card">
<h3>Phase 3: Ecosystem (2026+)</h3>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;" data-aos="fade-down"
data-aos-delay="400">
<div>
<h4>Ecosystem Growth</h4>
<ul>
<li>⬜ Additional runtime environments</li>
<li>⬜ Cross-chain bridges to major networks</li>
<li>⬜ Advanced privacy features (ZK circuits)</li>
<li>⬜ Enterprise integration tools</li>
</ul>
</div>
<div>
<h4>Success Metrics</h4>
<ul>
<li>⬜ 1000+ active validator nodes globally distributed</li>
<li>⬜ 100+ applications deployed across multiple runtimes</li>
<li>⬜ Growing transaction volumes</li>
<li>⬜ 10,000+ real active daily users</li>
</ul>
</div>
</div>
</div>
<div style="margin-top: 2rem; text-align: center;" >
<a href="https://github.com/orgs/catalyst-network/projects/2" target="_blank" rel="noopener noreferrer"
class="button button--green" style="color: black; font-weight: bold;">
Follow progress on the development plan
</a>
</div>
</div>
</section>
<section class="stories wrap" id="media">
<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">
<br>
<br>
<br>
<img class="card-img-top img-responsive"
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" rel="noopener noreferrer"
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" rel="noopener noreferrer"
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" rel="noopener noreferrer"
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"
rel="noopener noreferrer"><i
class="fab fa-github" style="font-size:1.3em;"></i></a>
<a class="transition" href="https://discord.gg/3JmXRXv" target="_blank"
rel="noopener noreferrer"><i class="fab fa-discord" style="font-size:1.3em;"></i></a>
<a class="transition" href="https://twitter.com/catalystnetorg" target="_blank"
rel="noopener noreferrer"><i
class="fab fa-twitter" style="font-size:1.3em;"></i></a>
<a class="transition" href="https://www.facebook.com/catalystnetorg/" target="_blank"
rel="noopener noreferrer"><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" rel="noopener noreferrer">
<i class="fab fa-medium-m"></i>
</a>
<a class="transition" href="https://www.linkedin.com/company/catalyst-network/about/"
target="_blank" rel="noopener noreferrer"><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>
</body>
</html>