-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
3953 lines (3585 loc) · 301 KB
/
Copy pathindex.html
File metadata and controls
3953 lines (3585 loc) · 301 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
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<script>
(function() {
const savedTheme = localStorage.getItem("modeSwitch");
if (savedTheme) {
let themeName;
switch (savedTheme) {
case '0':
themeName = "default";
break;
case '1':
themeName = "light";
break;
case '2':
themeName = "system";
break;
}
document.documentElement.setAttribute("data-theme", themeName);
}
})();
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Radiant RXD Blockchain: The breakthrough decentralized UXTO PoW P2P digital asset system that solves the high costs, instability, and limited scaling of existing blockchains.">
<meta name="keywords" content="Radiant, Radiant Blockchain, Radiant Network, RXD, Blockchain, Photons, Onchain, Digital objects, Bitcoin, BTC, Layer 1, L1, Opcodes, Induction Proofs, Back to Genesis, POW, UTXO, Digital Asset System, Glyphs, Glyph Protocol, Photonic Wallet, Crypto, Bitcoin, $RXD">
<script>document.getElementsByTagName("html")[0].className += " js";</script>
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<!-- end google fonts -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HL0SBNL358"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-HL0SBNL358');
</script>
<link rel="icon" href="assets/favicon/android-chrome-192x192.png" type="image/png">
<link rel="apple-touch-icon" href="assets/favicon/android-chrome-192x192.png">
<link rel="icon" href="assets/favicon/favicon.ico">
<meta name="robots" content="index,follow">
<meta name="google-site-verification" content="IoaReo0z-huKe_Z8fCS23VP_b5V-DrRaTeTW8fJk_Z4" />
<link rel="manifest" href="manifest.webmanifest">
<link rel="android-touch-icon" sizes="72x72" href="assets/favicon/maskables/maskable_icon_x72.png">
<link rel="android-touch-icon" sizes="96x96" href="assets/favicon/maskables/maskable_icon_x96.png">
<link rel="android-touch-icon" sizes="128x128" href="assets/favicon/maskables/maskable_icon_x128.png">
<link rel="android-touch-icon" sizes="192x192" href="assets/favicon/maskables/maskable_icon_x192.png">
<link rel="android-touch-icon" sizes="384x384" href="assets/favicon/maskables/maskable_icon_x384.png">
<link rel="android-touch-icon" sizes="512x512" href="assets/favicon/maskables/maskable_icon_x512.png">
<link rel="stylesheet" href="assets/css/style.css">
<title>Radiant RXD - PoW UTXO Layer 1 Blockchain</title>
<!-- OpenGraph Meta Tags -->
<meta property="og:url" content="https://radiantblockchain.org">
<meta property="og:type" content="website">
<meta property="og:title" content="Radiant RXD - PoW UTXO Layer 1 Blockchain">
<meta property="og:description"
content="Radiant RXD Blockchain: The breakthrough decentralized UXTO PoW P2P digital asset system that solves the high costs, instability, and limited scaling of existing blockchains.">
<meta property="og:image" content="https://radiantblockchain.org/radiantblockchain-social.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@Planet_Radiant" />
<meta name="twitter:creator" content="@Planet_Radiant" />
<meta property="twitter:domain" content="radiantblockchain.org">
<meta property="twitter:url" content="https://radiantblockchain.org">
<meta name="twitter:title" content="Radiant RXD - PoW UTXO Layer 1 Blockchain">
<meta name="twitter:description"
content="Radiant RXD Blockchain: The breakthrough decentralized UXTO PoW P2P digital asset system that solves the high costs, instability, and limited scaling of existing blockchains.">
<meta name="twitter:image" content="https://radiantblockchain.org/radiantblockchain-twitter.png">
<!-- Schema.org markup -->
<meta itemprop="name" content="Radiant RXD - PoW UTXO Layer 1 Blockchain">
<meta itemprop="description"
content="Radiant RXD Blockchain: The breakthrough decentralized UXTO PoW P2P digital asset system that solves the high costs, instability, and limited scaling of existing blockchains.">
<meta itemprop="image" content="https://radiantblockchain.org/radiantblockchain-social.png">
</head>
<body>
<!-- start Notice
<section>
<div class="pre-header padding-y-xs js-pre-header">
<div class="container max-width-lg position-relative">
<div class="text-component text-center text-sm padding-x-lg">
<p>Join the Radiant Community on <a class="force-link-subtle" href="https://discord.gg/radiantblockchain" target="_blank">Discord</a></p>
</div>
<button class="reset pre-header__close-btn js-pre-header__close-btn js-tab-focus">
<svg class="icon" viewBox="0 0 20 20">
<title>Close header banner</title>
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<line x1="4" y1="4" x2="16" y2="16" />
<line x1="16" y1="4" x2="4" y2="16" />
</g>
</svg>
</button>
</div>
</div>
</section>
end Notice -->
<!-- start Navigation -->
<header class="f-header js-f-header bg hide-nav js-hide-nav js-hide-nav--main" data-nav-target-class="f-header--expanded">
<div class="f-header__mobile-content container max-width-lg"><span class="f-header__logo"><svg width="196" height="36" viewBox="0 0 196 36" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Radiant Logo</title><path fill-rule="evenodd" clip-rule="evenodd" d="M34.2161 18.1066C34.2161 27.4874 26.6114 35.0921 17.2306 35.0921C7.84978 35.0921 0.245117 27.4874 0.245117 18.1066C0.245117 8.72576 7.84978 1.12109 17.2306 1.12109C26.6114 1.12109 34.2161 8.72576 34.2161 18.1066ZM6.16236 10.2656H16.1401C16.9805 10.2656 17.821 10.2656 18.6614 10.2877C18.9268 10.2877 19.1701 10.2877 19.4355 10.3098C20.3866 10.3982 21.2934 10.6413 22.1339 11.1275C23.1734 11.7464 23.9254 12.6083 24.412 13.6913C24.6331 14.1996 24.788 14.7301 24.8764 15.2826C24.9428 15.7025 24.9649 16.1445 24.9207 16.5866C24.8543 17.7137 24.4562 18.7083 23.7705 19.6144C23.3946 20.1007 22.908 20.4764 22.3771 20.7637C22.0454 20.9405 21.6915 21.0952 21.3376 21.1615L21.3319 21.1628C21.1728 21.1961 21.0095 21.1344 20.8946 21.0195L17.9929 18.1186C17.9498 18.0756 17.9776 18.0019 18.0384 17.999C18.8651 17.9601 19.5733 17.3546 19.723 16.5424C19.9221 15.4815 19.1922 14.5974 18.3075 14.4206C18.1748 14.3985 18.0421 14.3985 17.9094 14.3985H11.1911C10.4612 14.3764 9.81977 14.1554 9.24471 13.7355C9.11201 13.6471 9.00142 13.5366 8.89083 13.4261C8.42347 12.9591 7.98305 12.4894 7.54403 12.0211C7.06251 11.5076 6.58265 10.9958 6.07069 10.4912C5.98715 10.4089 6.04507 10.2656 6.16236 10.2656ZM19.5899 28.1238C19.453 28.1238 19.3243 28.0726 19.2268 27.9764C16.5585 25.3423 12.3123 21.0352 9.73722 18.4147C8.91426 17.5773 9.51001 16.167 10.6841 16.167H14.0001C14.1382 16.167 14.2708 16.2219 14.3685 16.3195L25.9536 27.9014C26.0357 27.9834 25.9776 28.1238 25.8615 28.1238H19.5899Z" fill="var(--color-contrast-transparent)"></path><path d="M152.521 15.1925L163.875 25.0869C164.398 25.5428 165.069 25.7939 165.763 25.7939C166.732 25.7939 167.518 25.0083 167.518 24.0391V10.3731H164.132V20.3325L153.066 10.6352C152.636 10.2585 152.084 10.0508 151.513 10.0508C150.211 10.0507 149.156 11.106 149.156 12.4078V25.4716H152.521V15.1925Z" fill="var(--color-contrast-transparent)"></path><path d="M79.028 14.7392L72.149 25.4717H67.6904L76.5198 11.7327C77.0909 10.8553 77.8803 10.1143 79.1076 10.1143C80.2752 10.1143 81.0625 10.7897 81.6496 11.728L90.2556 25.4717H85.788L83.3007 21.6155L83.2985 21.6123C82.9564 21.1089 82.4407 20.2806 81.9968 19.5678L81.9962 19.5668L81.9852 19.5491L81.8557 19.3413L81.8552 19.3404L79.028 14.7392Z" fill="var(--color-contrast-transparent)"></path><path d="M49.0944 21.3062V25.4715H45.3242V18.0681H57.4147C58.1466 18.0681 58.8234 17.8857 59.327 17.5333C59.8377 17.176 60.1684 16.6419 60.1684 15.9808C60.1684 15.2779 59.8992 14.7172 59.3884 14.3439C58.8933 13.982 58.2078 13.8229 57.4147 13.8229H45.3242V10.373H57.0521C58.645 10.373 60.4134 10.652 61.7722 11.4548C63.1088 12.2445 64.0665 13.5482 64.0665 15.6749C64.0665 17.9972 62.7612 19.8692 60.587 20.349L60.1153 20.4531L61.0855 21.4969C61.3557 21.7696 61.6741 22.1139 62.0833 22.5705L62.1304 22.6212L62.1295 22.6221C62.2211 22.7246 62.3173 22.8326 62.4184 22.9465L64.5835 25.4715H59.6975L55.875 21.3062H49.0944Z" fill="var(--color-contrast-transparent)"></path><path d="M93.748 19.3819H97.5395V13.8229H104.073C106.607 13.8229 108.618 15.5603 108.618 17.9811C108.618 19.2005 108.138 20.2309 107.317 20.9529C106.5 21.6717 105.364 22.0686 104.073 22.0686H93.748V25.4715H104.073C108.863 25.4715 112.346 22.1374 112.346 17.7693C112.346 13.4388 108.921 10.373 104.073 10.373H93.748V19.3819Z" fill="var(--color-contrast-transparent)"></path><path d="M134.822 14.7392L127.943 25.4717H123.485L132.314 11.7327L132.315 11.7316C132.886 10.8544 133.675 10.1143 134.902 10.1143C136.07 10.1143 136.857 10.7897 137.444 11.728L146.05 25.4717H141.442L139.097 21.619L139.093 21.6123C138.752 21.1097 138.237 20.2832 137.794 19.5712L137.791 19.5673L137.79 19.5665L137.649 19.3404L134.822 14.7392Z" fill="var(--color-contrast-transparent)"></path><path d="M178.343 13.8229H170.885V10.373H189.629V13.8229H182.113V25.4715H178.343V13.8229Z" fill="var(--color-contrast-transparent)"></path><path d="M120.079 25.4715V10.373H116.309V25.4715H120.079Z" fill="var(--color-contrast-transparent)"></path></svg></span>
<button class="anim-menu-btn js-anim-menu-btn f-header__nav-control" aria-label="Toggle menu">
<i class="anim-menu-btn__icon anim-menu-btn__icon--close" aria-hidden="true"></i></button></div>
<div class="f-header__nav" role="navigation">
<div class="f-header__nav-grid justify-between@md container max-width-lg">
<div class="f-header__nav-logo-wrapper flex-grow flex-basis-0"><a class="f-header__logo"><svg width="196" height="36" viewBox="0 0 196 36" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Radiant Logo</title><path fill-rule="evenodd" clip-rule="evenodd" d="M34.2161 18.1066C34.2161 27.4874 26.6114 35.0921 17.2306 35.0921C7.84978 35.0921 0.245117 27.4874 0.245117 18.1066C0.245117 8.72576 7.84978 1.12109 17.2306 1.12109C26.6114 1.12109 34.2161 8.72576 34.2161 18.1066ZM6.16236 10.2656H16.1401C16.9805 10.2656 17.821 10.2656 18.6614 10.2877C18.9268 10.2877 19.1701 10.2877 19.4355 10.3098C20.3866 10.3982 21.2934 10.6413 22.1339 11.1275C23.1734 11.7464 23.9254 12.6083 24.412 13.6913C24.6331 14.1996 24.788 14.7301 24.8764 15.2826C24.9428 15.7025 24.9649 16.1445 24.9207 16.5866C24.8543 17.7137 24.4562 18.7083 23.7705 19.6144C23.3946 20.1007 22.908 20.4764 22.3771 20.7637C22.0454 20.9405 21.6915 21.0952 21.3376 21.1615L21.3319 21.1628C21.1728 21.1961 21.0095 21.1344 20.8946 21.0195L17.9929 18.1186C17.9498 18.0756 17.9776 18.0019 18.0384 17.999C18.8651 17.9601 19.5733 17.3546 19.723 16.5424C19.9221 15.4815 19.1922 14.5974 18.3075 14.4206C18.1748 14.3985 18.0421 14.3985 17.9094 14.3985H11.1911C10.4612 14.3764 9.81977 14.1554 9.24471 13.7355C9.11201 13.6471 9.00142 13.5366 8.89083 13.4261C8.42347 12.9591 7.98305 12.4894 7.54403 12.0211C7.06251 11.5076 6.58265 10.9958 6.07069 10.4912C5.98715 10.4089 6.04507 10.2656 6.16236 10.2656ZM19.5899 28.1238C19.453 28.1238 19.3243 28.0726 19.2268 27.9764C16.5585 25.3423 12.3123 21.0352 9.73722 18.4147C8.91426 17.5773 9.51001 16.167 10.6841 16.167H14.0001C14.1382 16.167 14.2708 16.2219 14.3685 16.3195L25.9536 27.9014C26.0357 27.9834 25.9776 28.1238 25.8615 28.1238H19.5899Z" fill="var(--logo-color-invert)"/><path d="M152.521 15.1925L163.875 25.0869C164.398 25.5428 165.069 25.7939 165.763 25.7939C166.732 25.7939 167.518 25.0083 167.518 24.0391V10.3731H164.132V20.3325L153.066 10.6352C152.636 10.2585 152.084 10.0508 151.513 10.0508C150.211 10.0507 149.156 11.106 149.156 12.4078V25.4716H152.521V15.1925Z" fill="var(--logo-color-invert)"/><path d="M79.028 14.7392L72.149 25.4717H67.6904L76.5198 11.7327C77.0909 10.8553 77.8803 10.1143 79.1076 10.1143C80.2752 10.1143 81.0625 10.7897 81.6496 11.728L90.2556 25.4717H85.788L83.3007 21.6155L83.2985 21.6123C82.9564 21.1089 82.4407 20.2806 81.9968 19.5678L81.9962 19.5668L81.9852 19.5491L81.8557 19.3413L81.8552 19.3404L79.028 14.7392Z" fill="var(--logo-color-invert)"/><path d="M49.0944 21.3062V25.4715H45.3242V18.0681H57.4147C58.1466 18.0681 58.8234 17.8857 59.327 17.5333C59.8377 17.176 60.1684 16.6419 60.1684 15.9808C60.1684 15.2779 59.8992 14.7172 59.3884 14.3439C58.8933 13.982 58.2078 13.8229 57.4147 13.8229H45.3242V10.373H57.0521C58.645 10.373 60.4134 10.652 61.7722 11.4548C63.1088 12.2445 64.0665 13.5482 64.0665 15.6749C64.0665 17.9972 62.7612 19.8692 60.587 20.349L60.1153 20.4531L61.0855 21.4969C61.3557 21.7696 61.6741 22.1139 62.0833 22.5705L62.1304 22.6212L62.1295 22.6221C62.2211 22.7246 62.3173 22.8326 62.4184 22.9465L64.5835 25.4715H59.6975L55.875 21.3062H49.0944Z" fill="var(--logo-color-invert)"/><path d="M93.748 19.3819H97.5395V13.8229H104.073C106.607 13.8229 108.618 15.5603 108.618 17.9811C108.618 19.2005 108.138 20.2309 107.317 20.9529C106.5 21.6717 105.364 22.0686 104.073 22.0686H93.748V25.4715H104.073C108.863 25.4715 112.346 22.1374 112.346 17.7693C112.346 13.4388 108.921 10.373 104.073 10.373H93.748V19.3819Z" fill="var(--logo-color-invert)"/><path d="M134.822 14.7392L127.943 25.4717H123.485L132.314 11.7327L132.315 11.7316C132.886 10.8544 133.675 10.1143 134.902 10.1143C136.07 10.1143 136.857 10.7897 137.444 11.728L146.05 25.4717H141.442L139.097 21.619L139.093 21.6123C138.752 21.1097 138.237 20.2832 137.794 19.5712L137.791 19.5673L137.79 19.5665L137.649 19.3404L134.822 14.7392Z" fill="var(--logo-color-invert)"/><path d="M178.343 13.8229H170.885V10.373H189.629V13.8229H182.113V25.4715H178.343V13.8229Z" fill="var(--logo-color-invert)"/><path d="M120.079 25.4715V10.373H116.309V25.4715H120.079Z" fill="var(--logo-color-invert)"/></svg>
</a></div>
<ul class="f-header__list flex-grow flex-basis-0 justify-center@md">
<li class="f-header__item"><a href="/" class="f-header__link" aria-current="page">Home</a></li>
<li class="f-header__item"><a href="/#faqs" class="f-header__link">FAQs</a></li>
<li class="f-header__item"><a href="/news.html" class="f-header__link">News</a></li>
<li class="f-header__item"><a href="/initiatives.html" class="f-header__link">Initiatives</a></li>
<li class="f-header__item">
<a href="/guides.html" class="f-header__link"><span>Guides</span><svg class="f-header__dropdown-icon icon" aria-hidden="true" viewBox="0 0 12 12">
<path d="M9.943,4.269A.5.5,0,0,0,9.5,4h-7a.5.5,0,0,0-.41.787l3.5,5a.5.5,0,0,0,.82,0l3.5-5A.5.5,0,0,0,9.943,4.269Z"></path></svg></a>
<ul class="f-header__dropdown">
<li><a href="/glyphs-guide.html" class="f-header__dropdown-link sub-nav-gap">Glyphs User Guide</a></li>
<li><a href="/glyphs-protocol-guide.html" class="f-header__dropdown-link sub-nav-gap">Glyphs Tech Guide</a></li>
<li><a href="/rxd-brand-guide.html" class="f-header__dropdown-link sub-nav-gap">Radiant Brand Guide</a></li>
<li><a href="/#programming" class="f-header__dropdown-link sub-nav-gap">Programming</a></li>
</ul>
</li>
<li class="f-header__item"><a href="/links.html" class="f-header__link">Links</a></li>
<li class="f-header__item"><a href="/node-network.html" class="f-header__link">Nodes</a></li>
<li class="f-header__item"><a href="/participate.html" class="f-header__link">Participate</a></li>
<li class="f-header__item"><a href="/get-rxd.html" class="f-header__link">Get RXD</a></li>
</ul>
<ul class="f-header__list flex-grow flex-basis-0 justify-end@md"></ul>
<!-- start Theme Switcher -->
<div class="theme-switcher">
<button class="btn-theme btn-dark js-theme-button" aria-label="Switch to Dark Theme">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Dark Mode</title><path d="M11.5788 19.2841C15.8343 19.2841 19.2841 15.8343 19.2841 11.5788C19.2841 10.1366 18.8879 8.78701 18.1984 7.63281C21.8342 8.63257 24.5051 11.9622 24.5051 15.9157C24.5051 20.6595 20.6595 24.5051 15.9157 24.5051C11.9622 24.5051 8.63257 21.8342 7.63281 18.1984C8.78701 18.8879 10.1366 19.2841 11.5788 19.2841Z" fill="var(--logo-color-invert)"/></svg>
</button>
<button class="btn-theme btn-light js-theme-button" aria-label="Switch to Light Theme">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Light Mode</title><path d="M20.5278 15.9872C20.5278 18.4626 18.5211 20.4693 16.0457 20.4693C13.5703 20.4693 11.5636 18.4626 11.5636 15.9872C11.5636 13.5118 13.5703 11.5051 16.0457 11.5051C18.5211 11.5051 20.5278 13.5118 20.5278 15.9872Z" fill="var(--logo-color-invert)"/><path d="M15.0578 6.75311C15.0578 6.23228 15.48 5.81006 16.0008 5.81006C16.5217 5.81006 16.9439 6.23228 16.9439 6.75311V8.7964C16.9439 9.31724 16.5217 9.73946 16.0008 9.73946C15.48 9.73946 15.0578 9.31724 15.0578 8.7964V6.75311Z" fill="var(--logo-color-invert)"/><path d="M15.0578 23.178C15.0578 22.6572 15.48 22.235 16.0008 22.235C16.5217 22.235 16.9439 22.6572 16.9439 23.178V25.2213C16.9439 25.7421 16.5217 26.1644 16.0008 26.1644C15.48 26.1644 15.0578 25.7421 15.0578 25.2213V23.178Z" fill="var(--logo-color-invert)"/><path d="M8.81603 10.1524C8.44774 9.78408 8.44774 9.18697 8.81603 8.81868C9.18431 8.45039 9.78142 8.45039 10.1497 8.81868L11.5945 10.2635C11.9628 10.6318 11.9628 11.2289 11.5945 11.5972C11.2262 11.9655 10.6291 11.9655 10.2608 11.5972L8.81603 10.1524Z" fill="var(--logo-color-invert)"/><path d="M20.4302 21.7665C20.0619 21.3982 20.0619 20.8011 20.4302 20.4328C20.7985 20.0645 21.3956 20.0645 21.7638 20.4328L23.2087 21.8776C23.577 22.2459 23.577 22.843 23.2087 23.2113C22.8404 23.5796 22.2433 23.5796 21.875 23.2113L20.4302 21.7665Z" fill="var(--logo-color-invert)"/><path d="M6.77826 16.958C6.25743 16.958 5.83521 16.5358 5.83521 16.015C5.83521 15.4941 6.25743 15.0719 6.77826 15.0719H8.82155C9.34238 15.0719 9.7646 15.4941 9.7646 16.015C9.7646 16.5358 9.34238 16.958 8.82155 16.958H6.77826Z" fill="var(--logo-color-invert)"/><path d="M23.2031 16.958C22.6823 16.958 22.2601 16.5358 22.2601 16.015C22.2601 15.4941 22.6823 15.0719 23.2031 15.0719H25.2464C25.7673 15.0719 26.1895 15.4941 26.1895 16.015C26.1895 16.5358 25.7673 16.958 25.2464 16.958H23.2031Z" fill="var(--logo-color-invert)"/><path d="M10.1775 23.1998C9.8092 23.5681 9.21209 23.5681 8.8438 23.1998C8.47552 22.8315 8.47552 22.2344 8.8438 21.8661L10.2886 20.4213C10.6569 20.053 11.254 20.053 11.6223 20.4213C11.9906 20.7896 11.9906 21.3867 11.6223 21.755L10.1775 23.1998Z" fill="var(--logo-color-invert)"/><path d="M21.7916 11.5856C21.4233 11.9539 20.8262 11.9539 20.4579 11.5856C20.0897 11.2174 20.0897 10.6202 20.4579 10.252L21.9028 8.80714C22.2711 8.43885 22.8682 8.43885 23.2364 8.80714C23.6047 9.17543 23.6047 9.77254 23.2364 10.1408L21.7916 11.5856Z" fill="var(--logo-color-invert)"/></svg>
</button>
<button class="btn-theme btn-system js-theme-button" aria-label="Switch to System Auto Theme">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><title>System Auto Mode</title><path d="M16 6.5C15.1334 6.5 14.2938 6.61604 13.4961 6.83344C13.4717 6.31267 13.3335 5.82166 13.1058 5.38472C14.028 5.13388 14.9984 5 16 5C22.0751 5 27 9.92487 27 16C27 22.0751 22.0751 27 16 27C9.92487 27 5 22.0751 5 16C5 13.4544 5.86467 11.1108 7.31632 9.24687C7.63925 9.63217 8.04361 9.9469 8.50293 10.1646C7.24774 11.7749 6.5 13.8001 6.5 16C6.5 21.2467 10.7533 25.5 16 25.5C21.2467 25.5 25.5 21.2467 25.5 16C25.5 10.7533 21.2467 6.5 16 6.5Z" fill="var(--logo-color-invert)"/><path d="M12 7C12 8.10457 11.1046 9 10 9C8.89543 9 8 8.10457 8 7C8 5.89543 8.89543 5 10 5C11.1046 5 12 5.89543 12 7Z" fill="var(--logo-color-invert)"/><path d="M17.0044 16.5656L16.033 13.4718H15.9648L14.9955 16.5656H17.0044Z"fill="var(--logo-color-invert)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M16 23C19.866 23 23 19.866 23 16C23 12.134 19.866 9 16 9C12.134 9 9 12.134 9 16C9 19.866 12.134 23 16 23ZM11.6523 20.0002H13.9194L14.4935 18.1678H17.5074L18.0827 20.0002H20.3498L17.4052 11.2729H14.5969L11.6523 20.0002Z" fill="var(--logo-color-invert)"/></svg>
</button>
</div>
<script>
function applyTheme(theme) {
document.documentElement.setAttribute("data-theme", theme);
document.querySelectorAll('.js-theme-button').forEach(btn => btn.classList.remove('active'));
if (theme === 'default') {
document.querySelector('.btn-dark').classList.add('active');
} else if (theme === 'light') {
document.querySelector('.btn-light').classList.add('active');
} else if (theme === 'system') {
document.querySelector('.btn-system').classList.add('active');
}
}
document.querySelectorAll('.js-theme-button').forEach(button => {
button.addEventListener('click', () => {
const theme = button.classList.contains('btn-dark') ? 'default' :
button.classList.contains('btn-light') ? 'light' : 'system';
localStorage.setItem("modeSwitch", theme === 'default' ? '0' : theme === 'light' ? '1' : '2');
applyTheme(theme);
});
});
(function() {
const savedTheme = localStorage.getItem("modeSwitch");
if (savedTheme) {
let themeName;
switch (savedTheme) {
case '0':
themeName = "default";
break;
case '1':
themeName = "light";
break;
case '2':
themeName = "system";
break;
default:
themeName = "default";
}
applyTheme(themeName);
} else {
applyTheme("default");
}
})();
</script>
<!-- end Theme Switcher -->
</div>
</div>
</header>
<!-- end Navigation -->
<!-- start Radiant RXD hero -->
<section class="hero">
<canvas id="waves"></canvas>
<div class="container padding-y-md">
<div class="text-center">
<svg class="icon icon--xxxl" width="128" height="128" viewBox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Radiant Logo</title><path d="M100.15 113.32C90.0245 120.754 77.525 125.145 63.9999 125.145C30.2302 125.145 2.85449 97.7696 2.85449 63.9999C2.85449 55.8971 4.43062 48.1623 7.29302 41.0855L10.4991 44.2915C8.2358 50.4334 6.99995 57.0723 6.99995 63.9999C6.99995 95.4802 32.5197 121 63.9999 121C76.3787 121 87.8358 117.054 97.1821 110.351L100.15 113.32Z" fill="var(--logo-color-invert)"/><path d="M107.075 107.397C118.235 96.3193 125.145 80.9666 125.145 63.9999C125.145 30.2302 97.7696 2.85449 63.9999 2.85449C42.2142 2.85449 23.0895 14.248 12.2594 31.4015L15.2707 34.4127C25.2716 17.9768 43.3539 6.99995 63.9999 6.99995C95.4802 6.99995 121 32.5197 121 63.9999C121 79.8219 114.553 94.1382 104.144 104.466L107.075 107.397Z" fill="var(--logo-color-invert)"/><path d="M74.6348 121.269C75.1567 121.784 75.8464 122.059 76.5798 122.059H110.18C110.802 122.059 111.113 121.307 110.673 120.867L48.606 58.8174C48.0825 58.294 47.3725 58 46.6323 58H28.867C22.5766 58 19.3849 65.5559 23.7939 70.0424C37.5903 84.0816 60.3391 107.157 74.6348 121.269Z" fill="var(--logo-color-invert)"/><path d="M58.0985 26.3838H4.64289C4.01448 26.3838 3.70419 27.1517 4.15177 27.5928C9.39538 32.7604 14.0104 38.0697 19.2607 43.3161C19.8532 43.9082 20.4456 44.5002 21.1566 44.9738C24.2375 47.2236 27.6738 48.4077 31.5842 48.5261H67.5778C68.2887 48.5261 68.9997 48.5261 69.7107 48.6445C74.4504 49.5917 78.3608 54.3281 77.2943 60.0116C76.4922 64.3631 72.6977 67.6071 68.269 67.8159C67.9431 67.8312 67.7943 68.2258 68.025 68.4565L83.571 83.998C84.1867 84.6136 85.0616 84.9442 85.9138 84.7655C85.9245 84.7633 85.9347 84.7611 85.9444 84.7589C87.8404 84.4037 89.7363 83.5748 91.5137 82.6276C94.3576 81.0883 96.9645 79.0753 98.9789 76.4704C102.652 71.6156 104.785 66.2873 105.141 60.2485C105.378 57.8803 105.259 55.5121 104.904 53.2624C104.43 50.3022 103.6 47.4604 102.415 44.737C99.8083 38.935 95.7795 34.3171 90.2103 31.0017C85.7074 28.3967 80.8492 27.0942 75.7539 26.6206C74.332 26.5022 73.0285 26.5022 71.6066 26.5022C67.1039 26.3838 62.6012 26.3838 58.0985 26.3838Z" fill="var(--logo-color-invert)"/></svg>
<div class="text-center">
<svg class="container hero-wordmark" width="896" height="98" viewBox="0 0 896 98" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Radiant Wordmark</title><path d="M665.074 32.2334L735.521 93.6207C738.767 96.4493 742.927 98.0076 747.233 98.0076C753.246 98.0076 758.12 93.1331 758.12 87.12V2.3326H737.111V64.1232L668.459 3.9586C665.792 1.62157 662.367 0.333099 658.821 0.333008C650.745 0.332809 644.198 6.87994 644.198 14.9563V96.0076H665.074V32.2334Z" fill="var(--logo-color-invert)"/><path d="M209.106 29.4209L166.427 96.0076H138.764L193.544 10.7675L193.548 10.7626C197.091 5.31914 201.985 0.726593 209.599 0.726593C216.844 0.726593 221.728 4.91699 225.371 10.7381L278.765 96.0076H251.047L235.614 72.083L235.601 72.063C233.477 68.9385 230.275 63.7959 227.521 59.3716L227.453 59.2626C227.18 58.8245 226.912 58.3937 226.65 57.9729L226.646 57.9675L209.106 29.4209Z" fill="var(--logo-color-invert)"/><path d="M23.391 70.1653V96.0076H9.15527e-05V50.0751H75.0122C79.5536 50.0751 83.7527 48.9434 86.877 46.7573C90.0454 44.5403 92.097 41.2266 92.097 37.125C92.097 32.7643 90.4267 29.2852 87.2579 26.9692C84.1859 24.7239 79.9333 23.7369 75.0122 23.7369H9.15527e-05L0 2.3326H72.7627C82.6457 2.3326 93.6171 4.06375 102.047 9.04437C110.34 13.9438 116.282 22.0324 116.282 35.227C116.282 49.6354 108.183 61.2496 94.6944 64.2263L91.7678 64.8721L97.787 71.3485C99.4632 73.0403 101.439 75.1766 103.978 78.0095L104.27 78.324L104.264 78.3294C104.833 78.9651 105.429 79.6352 106.057 80.3422L119.49 96.0076H89.1757L65.4595 70.1653H23.391Z" fill="var(--logo-color-invert)"/><path d="M300.431 23.7369V58.2263H323.954V23.7369H364.492C380.217 23.7369 392.693 34.5161 392.693 49.5351C392.693 57.1008 389.712 63.494 384.62 67.973C379.549 72.433 372.504 74.8954 364.492 74.8954H323.954H300.431V96.0076H364.492C394.209 96.0076 415.819 75.3223 415.819 48.2211C415.819 21.354 394.57 2.3326 364.492 2.3326H300.431V23.7369Z" fill="var(--logo-color-invert)"/><path d="M555.269 29.4209L512.59 96.0076H484.928L539.708 10.7675L539.712 10.7607C543.255 5.31812 548.15 0.726593 555.763 0.726593C563.008 0.726593 567.892 4.91699 571.535 10.7381L624.929 96.0076H596.341L581.793 72.1046L581.764 72.063C579.641 68.9394 576.441 63.7986 573.686 59.3752L573.684 59.3704L572.81 57.9675L555.269 29.4209Z" fill="var(--logo-color-invert)"/><path d="M825.285 23.7369H779.009V2.3326H895.306V23.7369H848.676V96.0076H825.285V23.7369Z" fill="var(--logo-color-invert)"/><path d="M463.801 96.0076V2.3326H440.41V96.0076H463.801Z" fill="var(--logo-color-invert)"/></svg>
<!-- <h1 class="hero-title">RADIANT</h1> -->
<p class="hero-subtitle margin-bottom-md">A Peer-to-Peer Digital Asset System</p>
</div>
</div>
</section>
<!-- end Radiant RXD hero -->
<!-- start Radiant Feature Highlights -->
<section class="position-relative z-index-1 margin-top-xs margin-bottom-xl">
<div class="container max-width-adaptive-lg">
<div class="grid gap-sm">
<div class="highlight-p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<span class="chip chip--outline text-sm"><i class="chip__label">Onchain</i></span>
<div class="text-center margin-bottom-xs">
<p class="highlight-info-1">Native Asset Indexing</p>
</div>
<div class="text-center margin-bottom-xs">
<p class="highlight-info-2">Induction Proofs</p>
</div>
<div class="text-center">
<p class="highlight-info-3">Trustless interaction</p>
</div>
</div>
</div>
<div class="highlight-p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<span class="chip chip--outline text-sm"><i class="chip__label">Performance</i></span>
<div class="text-center margin-bottom-xs">
<p class="highlight-info-1">Ultra Fast Transactions</p>
</div>
<div class="text-center margin-bottom-xs">
<p class="highlight-info-2">4,000 TPS</p>
</div>
<div class="text-center">
<p class="highlight-info-3">Low fees to do more</p>
</div>
</div>
</div>
<div class="highlight-p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<span class="chip chip--outline text-sm"><i class="chip__label">Functionality</i></span>
<div class="text-center margin-bottom-xs">
<p class="highlight-info-1">Build on Radiant today</p>
</div>
<div class="text-center margin-bottom-xs">
<p class="highlight-info-2">Smart Contracts</p>
</div>
<div class="text-center">
<p class="highlight-info-3">Creator and dev friendly</p>
</div>
</div>
</div>
<div class="highlight-p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<span class="chip chip--outline text-sm"><i class="chip__label">Scalability</i></span>
<div class="text-center margin-bottom-xs">
<p class="highlight-info-1">Future-Proof Design</p>
</div>
<div class="text-center margin-bottom-xs">
<p class="highlight-info-2">Highly Scalable</p>
</div>
<div class="text-center">
<p class="highlight-info-3">Grows with demand</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Radiant Feature Highlights -->
<!-- start What is Radiant -->
<section>
<div class="container padding-y-sm">
<div class="text-center">
<div class="text-component text-center margin-bottom-sm">
<h1 class="section-title">Radiant Blockchain</h1>
<p class="subtitle-1">Decentralized P2P Digital Asset System and PoW UTXO Network for everyone</p>
</div>
</div>
</section>
<!-- end What is Radiant -->
<!-- start Radiant at a glance -->
<section class="position-relative z-index-1 padding-y-sm">
<div class="container max-width-adaptive-lg">
<div class="grid gap-sm">
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Radiant RXD</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">21 billion coins</p>
</div>
<div class="text-center">
<p class="info-3">Total maximum supply</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Photons</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">100 million</p>
</div>
<div class="text-center">
<p class="info-3">Sub units per RXD coin</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">PoW Consensus</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">Layer 1 blockchain</p>
</div>
<div class="text-center">
<p class="info-3">UTXO + Account based</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Induction Proofs</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">Onchain indexing</p>
</div>
<div class="text-center">
<p class="info-3">Native validation of assets</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Low fees. High tps</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">4,000 TX per sec</p>
</div>
<div class="text-center">
<p class="info-3">Designed for 500k+ TPS</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Block Time</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">5 mins (300 secs)</p>
</div>
<div class="text-center">
<p class="info-3">Instant txns with 0-confs</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Mining Algorithm</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">SHA512/256d</p>
</div>
<div class="text-center">
<p class="info-3">GPU/FPGA/ASIC</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Smart Contracts</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">Turing Complete</p>
</div>
<div class="text-center">
<p class="info-3">Extensive Opcodes</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Highly Scalable</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">System design</p>
</div>
<div class="text-center">
<p class="info-3">Multiple Node types</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Block Size</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">256mb initial</p>
</div>
<div class="text-center">
<p class="info-3">Designed to achieve 10gb</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Genesis Block</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">20 June 2022</p>
</div>
<div class="text-center">
<p class="info-3">Fair launch. No pre-mine</p>
</div>
</div>
</div>
<div class="p-table__item col-3@xl col-3@lg col-2@md col-2@xs col-2@xxs col-2@xxxs">
<div class="text-center">
<div class="text-center margin-bottom-sm">
<p class="info-1">Halving Schedule</p>
</div>
<div class="text-center margin-bottom-sm">
<p class="info-2">Every 2 years</p>
</div>
<div class="text-center">
<p class="info-3">50k RXD per block start</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Radiant at a glance -->
<!-- start Radiant socials -->
<section class="socials text-center padding-y-md">
<div class="container max-width-md">
<ul class="socials__btns flex flex-center gap-sm gap-md@md gap-md@lg flex-wrap">
<li>
<a href="https://discord.gg/radiantblockchain" target="_blank">
<svg class="icon icon--md" fill="none" height="34" viewBox="0 0 34 34" width="34"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Join Radiant Discord Server</title>
<clipPath id="a">
<path d="m0 0h34v34h-34z" />
</clipPath>
<g clip-path="url(#a)">
<path
d="m28.8012 5.98939c-2.2008-1.02973-4.5541-1.77811-7.0144-2.20423-.3022.54628-.6552 1.28104-.8986 1.86554-2.6153-.39332-5.2066-.39332-7.7739 0-.2433-.5845-.6043-1.31926-.9092-1.86554-2.46296.42612-4.81895 1.17724-7.01983 2.20969-4.439193 6.70825-5.642586 13.24975-5.040888 19.69845 2.944308 2.1988 5.797698 3.5344 8.602928 4.4085.69263-.9533 1.31039-1.9666 1.84249-3.0346-1.01349-.3851-1.98422-.8603-2.90145-1.4121.24334-.1803.48136-.3687.71132-.5627 5.59443 2.6167 11.67293 2.6167 17.20053 0 .2327.194.4706.3824.7113.5627-.9199.5545-1.8933 1.0297-2.9068 1.4149.5321 1.0652 1.1472 2.0813 1.8425 3.0345 2.8079-.8741 5.664-2.2097 8.6083-4.4112.706-7.4756-1.2061-13.9572-5.0543-19.70391zm-17.4492 15.73801c-1.67939 0-3.05663-1.5678-3.05663-3.477s1.34783-3.4797 3.05663-3.4797 3.086 1.5678 3.0566 3.4797c.0027 1.9092-1.3478 3.477-3.0566 3.477zm11.2959 0c-1.6794 0-3.0567-1.5678-3.0567-3.477s1.3478-3.4797 3.0567-3.4797c1.7088 0 3.086 1.5678 3.0566 3.4797 0 1.9092-1.3478 3.477-3.0566 3.477z"
fill="var(--logo-color-invert)"/>
</g>
</svg>
</a>
</li>
<li>
<a href="https://x.com/RXDFoundation" target="_blank">
<svg class="icon icon--md" width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Follow Radiant Foundation on X</title>
<path d="M25.651 3.49316H30.2335L20.222 14.9357L31.9998 30.5065H22.7778L15.5549 21.0629L7.29022 30.5065H2.70488L13.4132 18.2674L2.11475 3.49316H11.5708L18.0997 12.125L25.651 3.49316ZM24.0426 27.7636H26.5819L10.191 6.09198H7.46615L24.0426 27.7636Z" fill="var(--logo-color-invert)"/>
<path d="M33.9094 12.2725V18.9997H31.8V12.2725H33.9094Z" fill="var(--logo-color-invert)"/><path d="M30.6094 12.2725V18.9997H28.5V12.2725H30.6094Z" fill="var(--logo-color-invert)"/>
<path d="M27.3093 12.2725V18.9997H25.2V12.2725H27.3093Z" fill="var(--logo-color-invert)"/>
</svg>
</a>
</li>
<li>
<a href="https://x.com/Planet_Radiant" target="_blank">
<svg class="icon icon--md" width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Follow Planet Radiant on X</title>
<path d="M25.651 3.49316H30.2335L20.222 14.9357L31.9998 30.5065H22.7778L15.5549 21.0629L7.29022 30.5065H2.70488L13.4132 18.2674L2.11475 3.49316H11.5708L18.0997 12.125L25.651 3.49316ZM24.0426 27.7636H26.5819L10.191 6.09198H7.46615L24.0426 27.7636Z" fill="var(--logo-color-invert)"/>
<path d="M30.3364 12.2725V18.9997H28.2271V12.2725H30.3364Z" fill="var(--logo-color-invert)"/>
<path d="M33.77 12.2725V18.9997H31.6606V12.2725H33.77Z" fill="var(--logo-color-invert)"/>
</svg>
</a>
</li>
<li>
<a href="https://x.com/RXD_Community" target="_blank">
<svg class="icon icon--md" width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Follow Radiant Community on X</title>
<path d="M25.651 3.49316H30.2335L20.222 14.9357L31.9998 30.5065H22.7778L15.5549 21.0629L7.29022 30.5065H2.70488L13.4132 18.2674L2.11475 3.49316H11.5708L18.0997 12.125L25.651 3.49316ZM24.0426 27.7636H26.5819L10.191 6.09198H7.46615L24.0426 27.7636Z" fill="var(--logo-color-invert)"/>
<path d="M31.053 12.2725V18.9997H28.9436V12.2725H31.053Z" fill="var(--logo-color-invert)"/>
</svg>
</a>
</li>
<li>
<a href="https://t.me/RadiantBlockchain" target="_blank">
<svg class="icon icon--md" fill="none" height="34" viewBox="0 0 34 34" width="34" xmlns="http://www.w3.org/2000/svg">
<title>Join Radiant Telegram</title>
<path clip-rule="evenodd"
d="m29.0438 5.18549c1.6813-.70791 3.4837.71377 3.1868 2.5137l-3.5064 21.25981c-.3381 2.0499-2.5895 3.2261-4.4701 2.2046-1.5737-.8548-3.9085-2.1704-6.0127-3.5454-1.0508-.6866-4.2682-2.8882-3.8727-4.4554.3381-1.34 5.7469-6.3748 8.8378-9.3691 1.214-1.1762.6611-1.8556-.7727-.7727-3.557 2.6864-9.2676 6.7708-11.156 7.9203-1.66617 1.0141-2.53611 1.1872-3.57378 1.0141-1.89488-.3158-3.65167-.8047-5.08594-1.3993-1.938523-.8036-1.844098-3.4676-.00131-4.2434z" fill="var(--logo-color-invert)"/>
</svg>
</a>
</li>
<li>
<a href="https://radiant-community.medium.com" target="_blank">
<svg class="icon icon--md" fill="none" height="34" viewBox="0 0 34 34" width="34" xmlns="http://www.w3.org/2000/svg">
<title>Read about Radiant on Medium</title>
<path
d="m4.94001 10.4158c.03872-.3825-.10715-.76061-.39279-1.01806l-2.90956-3.50503v-.52357h9.03414l6.983 15.31446 6.1392-15.31446h8.6123v.52357l-2.4877 2.38517c-.2145.16348-.3209.43216-.2764.6981v17.52512c-.0445.266.0619.5346.2764.6981l2.4295 2.3852v.5236h-12.2202v-.5236l2.5168-2.4434c.2473-.2472.2473-.3199.2473-.6981v-14.1655l-6.9975 17.7724h-.9456l-8.14677-17.7724v11.9113c-.06792.5008.0984 1.0049.45099 1.3671l3.27328 3.9704v.5236h-9.28153v-.5236l3.27326-3.9704c.35002-.3628.50664-.8703.42188-1.3671z"
fill="var(--logo-color-invert)"/>
</svg>
</a>
</li>
<li>
<a href="https://www.reddit.com/r/Radiant_RXD" target="_blank">
<svg class="icon icon--md" fill="none" height="34" viewBox="0 0 34 34" width="34" xmlns="http://www.w3.org/2000/svg">
<title>Join Radiant on Reddit</title>
<path
d="m32.262 17.3443c-.0692-1.8685-1.6378-3.3276-3.5121-3.2641-.8305.0288-1.6205.3691-2.2203.94-2.6413-1.7993-5.744-2.7855-8.9332-2.8547l1.5052-7.23762 4.9655 1.04384c.1384 1.27452 1.2802 2.19724 2.5548 2.05883 1.2745-.13841 2.1972-1.28028 2.0588-2.5548-.1384-1.27451-1.2803-2.19724-2.5548-2.05883-.7324.07497-1.3899.50173-1.7532 1.13611l-5.6863-1.13611c-.3864-.08651-.7728.15571-.8593.54787v.01153l-1.7128 8.05078c-3.2295.0519-6.37259 1.0439-9.0485 2.8547-1.36102-1.2803-3.50636-1.2168-4.78664.1499-1.280288 1.3611-1.21685 3.5064.14994 4.7867.26528.248.57094.4614.91119.6113-.02307.3403-.02307.6805 0 1.0208 0 5.1961 6.0554 9.4233 13.52371 9.4233 7.4683 0 13.5237-4.2215 13.5237-9.4233.0231-.3403.0231-.6805 0-1.0208 1.165-.5825 1.8974-1.782 1.8743-3.0854zm-23.2008 2.3241c0-1.2802 1.0438-2.3241 2.3241-2.3241s2.3241 1.0439 2.3241 2.3241c0 1.2803-1.0438 2.3242-2.3241 2.3242-1.286-.0116-2.3241-1.0439-2.3241-2.3242zm13.4776 6.3784c-1.6494 1.2399-3.6679 1.8743-5.7325 1.7878-2.0646.0865-4.083-.5479-5.7324-1.7878-.2191-.2653-.1788-.6632.0865-.8824.2307-.1903.5594-.1903.7959 0 1.3956 1.0208 3.0969 1.5398 4.827 1.4591 1.7301.0923 3.4371-.4037 4.8501-1.4129.2537-.248.6689-.2422.9169.0115.248.2538.2422.5767-.0115.8247zm-.4152-3.9735c-1.2803 0-2.3242-1.0438-2.3242-2.3241s1.0439-2.3241 2.3242-2.3241c1.2802 0 2.3241 1.0438 2.3241 2.3241.0519 1.2803-.9285 2.2722-2.2088 2.3241-.0404 0-.075 0-.1153 0z"
fill="var(--logo-color-invert)"/>
</svg>
</a>
</li>
</ul>
</div>
</section>
<!-- end Socials -->
<!-- start Ecosystem -->
<section class="position-relative z-index-1 padding-y-md">
<div class="container max-width-adaptive-lg">
<div class="text-component text-center margin-top-lg margin-bottom-lg">
<h1 class="section-title">Ecosystem</h1>
<p class="subtitle-2">Access the power of Radiant</p>
</div>
<div class="grid gap-sm">
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" fill="none" xmlns="http://www.w3.org/2000/svg">
<title>Tangem logo</title>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M23.537 5H50.0094C54.1851 5 56.2711 5 57.868 5.81416C59.2727 6.52349 60.4083 7.66611 61.1246 9.0673C61.9388 10.6642 61.9388 12.7502 61.9388 16.9259V21.3531H11.6077V16.9259C11.6077 12.7502 11.6077 10.6642 12.4218 9.0673C13.1312 7.66611 14.2738 6.52699 15.6785 5.81416C17.2753 5 19.3614 5 23.537 5ZM61.9423 36.3124H45.1629L45.1699 38.6361V69.0186H50.0129C54.1886 69.0186 56.2746 69.0186 57.875 68.2044C59.2727 67.4951 60.4118 66.3525 61.1281 64.9513C61.9423 63.3544 61.9423 61.2684 61.9423 57.0892V36.3124ZM28.3801 36.4482H11.6077V57.2285C11.6077 61.4041 11.6077 63.4902 12.4218 65.0836C13.1381 66.4883 14.2738 67.6309 15.6785 68.3402C17.2753 69.1544 19.3614 69.1544 23.537 69.1544H28.3801V36.4482Z"
fill="var(--logo-color-invert)"/>
</svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Tangem</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Cold hardware wallet for RXD</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://tangem.com/en/pricing/?promocode=RADIANT/en/pricing/?promocode=RADIANT" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Tangem</a></div>
</div>
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" width="74"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>ChainBow logo</title>
<linearGradient id="a" gradientUnits="userSpaceOnUse" x1="30.8024" x2="42.7965" y1="36.9074"
y2="16.1411">
<stop offset=".14" stop-color="#fff" stop-opacity="0" />
<stop offset=".91" stop-color="#fff" />
</linearGradient>
<radialGradient id="b" cx="38.2733" cy="32.4534" gradientUnits="userSpaceOnUse" r="20.3269">
<stop offset="0" stop-color="#fff" stop-opacity=".2" />
<stop offset=".05" stop-color="#fff" stop-opacity=".25" />
<stop offset=".31" stop-color="#fff" stop-opacity=".52" />
<stop offset=".54" stop-color="#fff" stop-opacity=".72" />
<stop offset=".74" stop-color="#fff" stop-opacity=".87" />
<stop offset=".9" stop-color="#fff" stop-opacity=".97" />
<stop offset="1" stop-color="#fff" />
</radialGradient>
<clipPath id="c">
<path d="m0 0h74v74h-74z" />
</clipPath>
<g clip-path="url(#c)">
<path d="m37 74c20.4345 0 37-16.5655 37-37s-16.5655-37-37-37-37 16.5655-37 37 16.5655 37 37 37z"
fill="#2979ff" />
<path
d="m51.029 26.2082h3.5921c-.653-1.814-1.6356-3.4918-2.8983-4.9487-1.5417.0925-3.2067.2466-4.8409.4471-1.1167-1.8419-2.4985-3.5093-4.1008-4.9488-5.4575 1.5417-19.1475 7.3229-25.2217 12.4567l.8634.3391c7.3215-4.4857 15.3093-7.7797 23.6646-9.7587.5938.764 1.1102 1.5851 1.5416 2.4512-7.5772 1.3244-14.9752 3.5232-22.0458 6.5521l.7092.4625c9.0205-3.0468 18.4478-4.7202 27.9658-4.9641.3215.6092.5798 1.2498.7708 1.9116z"
fill="url(#a)" />
<path
d="m62.7303 35.936c-.1766-1.447-.5339-2.8661-1.0637-4.2242-.3319-.9092-.858-1.7352-1.5417-2.4204-.7417-.7259-1.6795-1.2189-2.6979-1.4183-.9558-.2159-2.96-.2159-17.7446-.2159.5763.6466 1.0637 1.3673 1.4492 2.1429l.4008.7863c11.3929 0 14.6459 0 15.2779.1542.4628.0799.8918.2943 1.2334.6166.3708.4531.6437.978.8016 1.5417.4477 1.1348.7532 2.3206.9096 3.5304.2004 1.6641.2004 3.3463 0 5.0104-.1601 1.2108-.4708 2.3968-.925 3.5304-.1533.5625-.4209 1.0873-.7862 1.5417-.3203.2962-.7058.5128-1.1254.6321-1.2218.1542-2.4553.1955-3.6846.1233h-9.99c-1.2293.0784-2.4633.0371-3.6846-.1233-.4206-.1249-.8061-.3467-1.1254-.6475-.271-.3014-.4992-.6386-.6784-1.0021l-.6012-1.2025c-.6288-1.1433-1.081-2.3751-1.3413-3.6537-.1467-.7356-.1882-1.4882-.1233-2.2355l-.1079-.555c-.2098-1.0301-.5736-2.0228-1.0792-2.9445l-.5858-1.3105c-1.0855 2.3055-1.4302 4.8907-.9867 7.4.3101 1.5637.8559 3.0712 1.6188 4.4709l.6012 1.1871c.3077.6397.7134 1.2275 1.2025 1.742.6782.6656 1.5175 1.1437 2.4359 1.3875 1.4696.2633 2.9664.341 4.4554.2313h10.0516c1.489.1097 2.9858.032 4.4555-.2313.9183-.2438 1.7576-.7219 2.4358-1.3875.6529-.7098 1.147-1.5507 1.4492-2.4666.5353-1.3849.9027-2.829 1.0945-4.3013.2263-1.8895.2263-3.7992 0-5.6887z"
fill="url(#b)" />
<path
d="m32.8066 47.7921-.4008-.7708c-11.3929 0-14.6612 0-15.2933-.1542-.457-.0836-.8801-.2978-1.2179-.6166-.3624-.4274-.6303-.9265-.7863-1.4646-.4539-1.1391-.7646-2.3302-.925-3.5459-.2004-1.6589-.2004-3.336 0-4.995.153-1.2171.464-2.409.925-3.5458.1526-.5349.4211-1.0296.7863-1.4492.3152-.3062.7021-.5288 1.1254-.6475 1.2213-.1597 2.4553-.201 3.6846-.1233h10.1287c1.2294-.0722 2.4628-.0309 3.6846.1233.4222.113.8092.3304 1.1254.6321.2704.3043.4939.6472.6629 1.0175l.6167 1.1871c.6283 1.149 1.0805 2.3858 1.3412 3.6692.1474.7354.1889 1.4882.1234 2.2354l.1079.555c.2039 1.0318.5681 2.0253 1.0792 2.9446l.5858 1.1254c1.0924-2.3035 1.4374-4.8908.9867-7.4-.3073-1.5644-.8533-3.0723-1.6188-4.4708l-.6167-1.2025c-.338-.5952-.7643-1.1358-1.2641-1.6034-.6773-.67-1.5164-1.1533-2.4359-1.4029-1.4418-.2775-2.9124-.3759-4.3783-.2929h-10.1287c-1.4895-.117-2.988-.034-4.4555.2467-.9013.2743-1.7182.7729-2.3741 1.4491-.6755.6858-1.2006 1.5049-1.5417 2.405-.5382 1.3574-.9058 2.7763-1.0946 4.2242-.2312 1.915-.2312 3.8508 0 5.7658.197 1.4463.5644 2.8642 1.0946 4.2242.3321.9227.8578 1.7638 1.5417 2.4667.7417.7258 1.6795 1.2188 2.6979 1.4183.9558.2004 2.96.2158 17.7446.2158-.6037-.6667-1.1121-1.4138-1.5109-2.22z"
fill="#fff" />
</g>
</svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>ChainBow v2</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Mobile wallet for RXD</p>
</div>
</div>
<div class="margin-top-auto flex flex-wrap gap-xs"><a href="https://apps.apple.com/us/app/chainbow-wallet/id1568850934" target="_blank" class="btn btn--subtle btn--md col-2 col-2@md col-6@lg col-6@sm">iOS</a><a href="https://play.google.com/store/apps/details?id=io.chainbow.bsvwallet" target="_blank" class="btn btn--subtle btn--md col-2 col-2@md col-6@lg col-6@sm">Android</a></div>
</div>
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" width="74"
xmlns="http://www.w3.org/2000/svg">
<title>Electron icon</title>
<path
d="m36.8718 44.3456c-4.0506 0-7.3447-3.2941-7.3447-7.3447s3.2941-7.3447 7.3447-7.3447 7.3447 3.2941 7.3447 7.3447-3.2941 7.3447-7.3447 7.3447z"
fill="var(--logo-color-invert)"/>
<path
d="m65.2751 36.472c4.9246-6.7682 6.1315-13.1017 3.4006-17.833-1.6244-2.813-5.2992-6.1671-13.5852-6.1671-1.3441 0-2.764.1237-4.2146.3-3.315-7.73156-8.2665-12.494556-14.0039-12.494556-5.7362 0-10.689 4.762996-14.0038 12.494556-1.4493-.1774-2.8693-.3-4.2122-.3-8.2886.0013-11.96334 3.3541-13.58778 6.1671-2.73101 4.7312-1.52402 11.0635 3.40065 17.833.12853.1763.27915.3501.41127.5263-5.03225 6.7326-6.67878 13.3979-3.81192 18.3641 1.62444 2.8131 5.29918 6.1671 13.58518 6.1671 1.3442 0 2.764-.1236 4.2146-.2999 3.315 7.7315 8.2665 12.4945 14.004 12.4945 5.7374 0 10.6889-4.763 14.0038-12.4957 1.4505.1775 2.8706.3 4.2146.3 8.2848 0 11.9607-3.3529 13.5852-6.1671 2.8668-4.9663 1.2216-11.6316-3.8119-18.3654.1322-.1739.2828-.3489.4114-.5239zm-10.1846-20.3277c4.9564 0 8.7194 1.4125 10.4049 4.3309 1.9966 3.4569.6904 8.3851-3.0211 13.5852-2.2107-2.4751-4.8804-4.9209-7.92-7.2675-.5129-3.8082-1.2964-7.3434-2.3357-10.4967.9928-.0968 1.955-.1519 2.8719-.1519zm-.0331 15.8167c1.9083 1.6587 3.5988 3.3505 5.0715 5.0397-1.4727 1.688-3.1631 3.3799-5.0715 5.0397.1041-1.6465.1763-3.3185.1763-5.0397 0-1.7211-.0722-3.3932-.1763-5.0397zm-4.7288-8.1904c-1.3734-.9133-2.7848-1.8105-4.2758-2.6722-1.4702-.8484-2.9525-1.6208-4.4362-2.3541 2.3846-.8201 4.6933-1.4505 6.8856-1.8802.7247 2.1189 1.3442 4.4263 1.8264 6.9065zm-13.4566-19.82092c4.0015 0 7.6249 3.60994 10.2739 9.44892-3.2989.6929-6.7584 1.7738-10.2739 3.2109-3.5157-1.4371-6.975-2.518-10.274-3.212 2.649-5.83788 6.2724-9.44782 10.274-9.44782zm-11.6303 12.91442c2.1924.4297 4.5011 1.0601 6.8856 1.8802-1.4848.7332-2.9672 1.5057-4.4373 2.3541-1.4911.8605-2.9025 1.7589-4.2759 2.6722.4835-2.4802 1.1017-4.7876 1.8276-6.9065zm-6.5883 40.9931c-4.9563 0-8.71933-1.4126-10.40487-4.3309-2.00014-3.4642-.6867-8.4048 3.04187-13.6147 2.256 2.518 4.905 4.9822 7.9004 7.3018.5128 3.8058 1.2964 7.341 2.3344 10.4932-.9927.0955-1.9548.1506-2.8718.1506zm.0332-15.8168c-1.9084-1.6587-3.5989-3.3504-5.0716-5.0397 1.4727-1.688 3.1631-3.3798 5.0716-5.0397-.1042 1.6465-.1763 3.3186-.1763 5.0397 0 1.7212.0721 3.3932.1763 5.0397zm.5043-15.2475c-3.0407 2.3466-5.7091 4.7937-7.92 7.2675-3.71151-5.2001-5.01763-10.1283-3.02237-13.5852 1.68439-2.9171 5.44857-4.3296 10.40487-4.3309.9168 0 1.8791.0538 2.8718.1506-1.038 3.1533-1.8214 6.6897-2.3343 10.498zm4.2232 23.4307c1.3845.9242 2.8021 1.8264 4.277 2.6784 1.4702.8483 2.9525 1.6207 4.4362 2.354-2.3845.8201-4.6932 1.4506-6.8856 1.8802-.7259-2.1189-1.3453-4.4301-1.8276-6.9126zm13.4579 19.8282c-4.0016 0-7.625-3.61-10.274-9.449 3.299-.6928 6.7584-1.7737 10.274-3.2108 3.5157 1.4371 6.975 2.518 10.2739 3.2108-2.649 5.839-6.2722 9.449-10.2739 9.449zm11.6302-12.9156c-2.1936-.4296-4.501-1.0601-6.8856-1.8802 1.4849-.7332 2.966-1.5057 4.4362-2.354 1.4763-.852 2.8926-1.7555 4.277-2.6784-.4823 2.4837-1.1017 4.7937-1.8276 6.9126zm2.5842-11.9291c-2.1263 1.573-4.4117 3.0958-6.8698 4.5146-2.458 1.4187-4.9196 2.6453-7.3446 3.7004-2.4251-1.0552-4.8867-2.2806-7.3447-3.7004-2.458-1.4188-4.7435-2.9416-6.8697-4.5146-.2987-2.6281-.475-5.3678-.475-8.2064 0-2.8387.1763-5.5782.475-8.2064 2.1262-1.5729 4.4117-3.0958 6.8697-4.5145s4.9196-2.6454 7.3447-3.7004c2.425 1.0552 4.8866 2.2805 7.3446 3.7004 2.4581 1.4187 4.7435 2.9416 6.8698 4.5145.2986 2.6282.4749 5.3678.4749 8.2064 0 2.8388-.1763 5.5783-.4749 8.2064zm14.409 8.3192c-1.6844 2.917-5.4485 4.3309-10.4049 4.3309-.9168 0-1.8791-.0538-2.8717-.1506 1.038-3.1521 1.8215-6.6861 2.3343-10.4932 2.9954-2.3197 5.6444-4.7838 7.9004-7.3018 3.7286 5.2112 5.0409 10.1505 3.0419 13.6147z"
fill="#69d6d7" />
</svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Electron Radiant</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Desktop wallet for RXD</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://github.com/Radiant-Core/Electron-Wallet/releases"
target="_blank" class="btn btn--subtle btn--md width-100%">Download via GitHub</a></div>
</div>
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" fill="none"
xmlns="http://www.w3.org/2000/svg">
<title>Photonic Wallet logo</title>
<path
d="M37.014 44.7232C41.2717 44.7232 44.7232 41.2717 44.7232 37.014C44.7232 32.7564 41.2717 29.3047 37.014 29.3047C32.7564 29.3047 29.3047 32.7564 29.3047 37.014C29.3047 41.2717 32.7564 44.7232 37.014 44.7232Z"
fill="url(#paint0_radial_633_903)" />
<path
d="M54.9553 41.2198C52.6285 41.2198 50.7502 39.3415 50.7502 37.0147C50.7502 29.4456 44.5829 23.2783 37.0138 23.2783C34.687 23.2783 32.8087 21.4 32.8087 19.0732C32.8087 16.7464 34.687 14.8682 37.0138 14.8682C49.2363 14.8682 59.1602 24.8202 59.1602 37.0147C59.1602 39.3415 57.2821 41.2198 54.9553 41.2198Z"
fill="url(#paint1_radial_633_903)" />
<path
d="M37.0143 59.1601C24.7916 59.1601 14.8678 49.2082 14.8678 37.0137C14.8678 34.6869 16.7461 32.8086 19.0728 32.8086C21.3996 32.8086 23.2779 34.6869 23.2779 37.0137C23.2779 44.5828 29.4452 50.7501 37.0143 50.7501C39.3411 50.7501 41.2194 52.6284 41.2194 54.9552C41.2194 57.282 39.3411 59.1601 37.0143 59.1601Z"
fill="url(#paint2_radial_633_903)" />
<path
d="M6.20504 41.2191C3.87826 41.2191 2 39.3408 2 37.014C2 17.6988 17.6988 2 37.014 2C39.3408 2 41.2191 3.87826 41.2191 6.20504C41.2191 8.53184 39.3408 10.4101 37.014 10.4101C22.3525 10.4101 10.4101 22.3525 10.4101 37.014C10.4101 39.3408 8.53184 41.2191 6.20504 41.2191Z"
fill="url(#paint3_radial_633_903)" />
<path
d="M37.0137 71.9994C34.6869 71.9994 32.8086 70.1211 32.8086 67.7943C32.8086 65.4675 34.6869 63.5892 37.0137 63.5892C51.6752 63.5892 63.6175 51.6469 63.6175 36.9853C63.6175 34.6585 65.4958 32.7803 67.8226 32.7803C70.1494 32.7803 72.0277 34.6585 72.0277 36.9853C71.9997 56.3004 56.3008 71.9994 37.0137 71.9994Z"
fill="url(#paint4_radial_633_903)" />
<defs>
<radialGradient id="paint0_radial_633_903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="translate(27.8441 28.8178) rotate(38.6343) scale(28.4646)">
<stop offset="0.122839" stop-color="#74E1E8" />
<stop offset="0.305208" stop-color="#46B5A1" />
<stop offset="1" stop-color="#090F97" />
</radialGradient>
<radialGradient id="paint1_radial_633_903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="translate(30.3122 14.036) rotate(38.6343) scale(48.6488)">
<stop offset="0.122839" stop-color="#74E1E8" />
<stop offset="0.305208" stop-color="#46B5A1" />
<stop offset="1" stop-color="#090F97" />
</radialGradient>
<radialGradient id="paint2_radial_633_903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="translate(12.3713 31.9765) rotate(38.6343) scale(48.6488)">
<stop offset="0.122839" stop-color="#74E1E8" />
<stop offset="0.305208" stop-color="#46B5A1" />
<stop offset="1" stop-color="#090F97" />
</radialGradient>
<radialGradient id="paint3_radial_633_903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1.71549 0.761504) rotate(38.6343) scale(72.4038)">
<stop offset="0.122839" stop-color="#74E1E8" />
<stop offset="0.305208" stop-color="#46B5A1" />=
<stop offset="1" stop-color="#090F97" />
</radialGradient>
<radialGradient id="paint4_radial_633_903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="translate(29.093 31.5418) rotate(38.6343) scale(72.4038 72.4038)">
<stop offset="0.122839" stop-color="#74E1E8" />
<stop offset="0.305208" stop-color="#46B5A1" />
<stop offset="1" stop-color="#090F97" />
</radialGradient>
</defs>
</svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Photonic Wallet</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Manage Glyph Radiant Tokens</p>
</div>
</div>
<div class="margin-top-auto flex flex-wrap gap-xs"><a href="https://photonic-wallet.com" target="_blank" class="btn btn--subtle btn--md col-2 col-2@md col-6@lg col-6@sm">Web App</a><a href="https://chromewebstore.google.com/detail/photonic-wallet/ldagidbelgfoonfhbggfgmlhaccfeepb?pli=1" target="_blank" class="btn btn--subtle btn--md col-2 col-2@md col-6@lg col-6@sm">Extension</a></div>
</div>
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" fill="none" height="74" viewBox="0 0 75 74" width="75"
xmlns="http://www.w3.org/2000/svg">
<title>Glyph Miner logo</title>
<path clip-rule="evenodd"
d="m13.5082 10.1965c.6333-1.05552 1.7741-1.70138 3.005-1.70138h42.0532c1.231 0 2.3717.64586 3.005 1.70138l10.5133 17.5222c.7902 1.317.6308 2.9951-.3934 4.1397l-29.7876 33.2921c-.0353.0394-.0715.0781-.1085.1159-.5547.5661-1.2168 1.0158-1.9475 1.3229-.7307.307-1.5153.4652-2.3079.4652s-1.5772-.1582-2.3079-.4652c-.7307-.3071-1.3928-.7568-1.9475-1.3229-.037-.0378-.0732-.0765-.1084-.1159l-29.78769-33.2921c-1.02413-1.1446-1.1836-2.8227-.39338-4.1397zm4.9892 5.3075-8.1635 13.6059 27.2059 30.4066 27.2059-30.4066-8.1635-13.6059zm8.9304 6.8067c1.6596.9957 2.1978 3.1484 1.202 4.808l-.7627 1.2712 5.2569 5.7826c1.3019 1.4321 1.1964 3.6485-.2357 4.9504-1.4321 1.302-3.6485 1.1964-4.9504-.2357l-7.0089-7.7097c-1.04-1.1441-1.2074-2.8346-.4119-4.1604l2.1026-3.5044c.9958-1.6597 3.1484-2.1978 4.8081-1.202z"
fill="var(--glyph-miner-green)" fill-rule="evenodd" />
</svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Glyph Miner</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Mine Glyph Radiant Tokens</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://glyph-miner.com" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Glyph Miner</a></div>
</div>
<!-- Under
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" fill="none" height="74" viewBox="0 0 74 74" width="74"
xmlns="http://www.w3.org/2000/svg">
<title>Faucet Drop icon</title>
<path
d="m57.2775 41.8942c-.3373-.767-.7235-1.5-1.1496-2.2076l-19.1276-36.75398-19.1408 36.77938c-.4217.7034-.8079 1.4279-1.1408 2.1779v.0085c-1.1097 2.5085-1.7268 5.2669-1.7268 8.1652 0 11.6016 9.8501 21.0083 22.004 21.0083s22.004-9.4067 22.004-21.0083c.0044-2.9025-.6126-5.661-1.7224-8.1694z"
fill="#69d6d7" />
</svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>RXD Faucet</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">0.1 RXD per IP to get you started</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://faucet.radiant4people.com" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit RXD Faucet</a></div>
</div>
-->
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Xetch logo</title><path d="M13.875 12.1406L60.125 61.8594ZM60.125 12.1406L13.875 61.8594Z" fill="black"/><path d="M13.875 12.1406L60.125 61.8594M60.125 12.1406L13.875 61.8594" stroke="#080A0D" stroke-width="15.6094" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.875 12.1406L60.125 61.8594ZM60.125 12.1406L13.875 61.8594Z" fill="black"/><path d="M13.875 12.1406L60.125 61.8594M60.125 12.1406L13.875 61.8594" stroke="url(#paint0_linear_2247_16)" stroke-width="10.9844" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.9219 16.4766L55.5 57.2344ZM56.0781 16.7656L17.9219 57.2344Z" fill="black"/><path d="M17.9219 16.4766L55.5 57.2344M56.0781 16.7656L17.9219 57.2344" stroke="#D6FFF4" stroke-opacity="0.2" stroke-width="1.15625" stroke-linecap="round"/><path d="M13.875 14.4531C15.1522 14.4531 16.1875 13.4178 16.1875 12.1406C16.1875 10.8635 15.1522 9.82812 13.875 9.82812C12.5978 9.82812 11.5625 10.8635 11.5625 12.1406C11.5625 13.4178 12.5978 14.4531 13.875 14.4531Z" fill="#9CFFE2"/><path d="M60.125 64.1719C61.4022 64.1719 62.4375 63.1365 62.4375 61.8594C62.4375 60.5822 61.4022 59.5469 60.125 59.5469C58.8478 59.5469 57.8125 60.5822 57.8125 61.8594C57.8125 63.1365 58.8478 64.1719 60.125 64.1719Z" fill="#8DEEFF"/><path d="M60.125 14.4531C61.4022 14.4531 62.4375 13.4178 62.4375 12.1406C62.4375 10.8635 61.4022 9.82812 60.125 9.82812C58.8478 9.82812 57.8125 10.8635 57.8125 12.1406C57.8125 13.4178 58.8478 14.4531 60.125 14.4531Z" fill="#9CFFE2"/><path d="M13.875 64.1719C15.1522 64.1719 16.1875 63.1365 16.1875 61.8594C16.1875 60.5822 15.1522 59.5469 13.875 59.5469C12.5978 59.5469 11.5625 60.5822 11.5625 61.8594C11.5625 63.1365 12.5978 64.1719 13.875 64.1719Z" fill="#8DEEFF"/><path d="M37 30.0625L43.9375 37L37 43.9375L30.0625 37L37 30.0625Z" fill="#07100E" stroke="#D5FFF5" stroke-width="1.44531"/><defs><linearGradient id="paint0_linear_2247_16" x1="15.0313" y1="13.875" x2="58.9687" y2="60.125" gradientUnits="userSpaceOnUse"><stop stop-color="#20E3A4"/><stop offset="1" stop-color="#0FB3D6"/></linearGradient></defs></svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Xetch</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">On-chain social network</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://xetch.net/?invite=1AqjCpFh6m9ussVrSgJCpGZTTegfWbcqr3" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Xetch</a></div>
</div>
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Glyphium logo</title><path fill-rule="evenodd" clip-rule="evenodd" d="M68.0001 19.1113V54.8828L37.0148 72.7686L6.02942 54.8828V19.1113L37.0148 1.22656L68.0001 19.1113ZM37.0148 72.418L38.5822 71.5127L11.8566 57.9014L37.0148 72.418ZM38.796 71.3125L40.2628 70.3604L13.546 58.4609L38.796 71.3125ZM40.4962 70.1523L41.879 69.1475L15.4298 58.9902L40.4962 70.1523ZM42.4288 69.293L67.7306 54.6943V52.8643L42.4288 69.293ZM42.0626 68.9385L43.3585 67.8887L17.2404 59.4043L42.0626 68.9385ZM44.2023 67.8037L67.6486 52.5908L67.5558 50.8408L44.2023 67.8037ZM43.547 67.6426L44.7062 66.5986L19.6261 59.8818L43.547 67.6426ZM45.1896 66.7461L67.4874 50.5684L67.3058 48.8457L45.1896 66.7461ZM44.8956 66.374L45.9718 65.2979L21.3116 60.0537L44.8956 66.374ZM46.6534 65.2217L67.1906 48.5977L66.9366 46.9922L46.6534 65.2217ZM46.1105 65.0273L47.0773 63.9531L23.2462 60.1738L46.1105 65.0273ZM47.2706 63.7051L48.1671 62.5967L24.6788 60.124L47.2706 63.7051ZM48.1827 63.4697L66.8663 46.6553L66.5431 45.1406L48.1827 63.4697ZM48.9113 62.3604L66.4064 44.874L66.006 43.3809L48.9113 62.3604ZM48.297 62.3281L49.0909 61.2334L26.4376 60.043L48.297 62.3281ZM49.2413 60.9521L49.9425 59.873H28.5695L49.2413 60.9521ZM50.4318 60.2295L65.8673 43.0947L65.42 41.7207L50.4318 60.2295ZM22.3585 59.5488L23.6681 59.6172L12.881 40.96L22.3585 59.5488ZM20.6847 59.4424L22.049 59.585L11.9747 39.8174L20.6847 59.4424ZM10.8878 36.9697L23.9503 59.5762H50.0509L63.1144 36.9697L50.0509 14.3633H23.9503L10.8878 36.9697ZM19.0109 59.2266L20.3888 59.4443L10.9454 38.2236L19.0109 59.2266ZM17.257 58.9033L18.6945 59.208L9.88977 36.2666L17.257 58.9033ZM50.9513 59.1602L65.2736 41.4756L64.7677 40.1592L50.9513 59.1602ZM15.5031 58.4971L16.9562 58.8857L9.29211 35.3438L15.5031 58.4971ZM13.6945 57.958L15.1857 58.4414L8.45325 33.3467L13.6945 57.958ZM11.8595 57.3379L13.3986 57.9287L7.76868 31.4502L11.8595 57.3379ZM51.8888 57.3818L64.5988 39.8838L64.0529 38.6592L51.8888 57.3818ZM10.0245 56.584L11.5763 57.2744L7.18176 29.5029L10.0245 56.584ZM8.16125 55.7207L9.72668 56.5176L6.70813 27.7158L8.16125 55.7207ZM52.63 55.7363L63.8976 38.4004L63.3146 37.2568L52.63 55.7363ZM6.29895 54.6943L7.88098 55.6074L6.29895 25.3428V54.6943ZM67.7306 48.6172V19.2734L66.1476 18.3604L67.7306 48.6172ZM67.3087 46.1377L65.84 18.249L64.3029 17.4668L67.3087 46.1377ZM66.8468 44.4639L64.006 17.3867L62.4532 16.6953L66.8468 44.4639ZM66.1534 42.041L62.1427 16.6572L60.6378 16.0791L66.1534 42.041ZM65.63 40.8506L60.3351 15.9824L58.8331 15.4951L65.63 40.8506ZM64.8243 38.9766L58.5255 15.4961L57.0499 15.1006L64.8243 38.9766ZM63.9757 37.2773L56.7452 15.0391L55.3243 14.7383L63.9757 37.2773ZM10.132 35.5674L10.7335 36.748L21.7736 17.6514L10.132 35.5674ZM62.9288 35.3711L55.0167 14.7686L53.6661 14.5537L62.9288 35.3711ZM9.42981 34.083L9.97473 35.3105L22.1437 16.5781L9.42981 34.083ZM61.9747 33.9932L53.3175 14.5527L51.9943 14.4121L61.9747 33.9932ZM8.755 32.5195L9.24622 33.7998L22.6906 15.3115L8.755 32.5195ZM61.0695 32.8545L51.67 14.417L50.3712 14.3486L61.0695 32.8545ZM8.13489 30.875L8.58899 32.2695L23.8077 13.4746L8.13489 30.875ZM7.62219 29.1191L8.01086 30.5703L24.6251 12.124L7.62219 29.1191ZM7.16321 27.2852L7.49426 28.8408L26.1251 10.2197L7.16321 27.2852ZM6.81262 25.3975L7.06848 27.0215L27.3292 8.78906L6.81262 25.3975ZM6.54211 23.4023L6.7218 25.1221L28.8224 7.23438L6.54211 23.4023ZM6.38 21.3789L6.47083 23.1299L30.0157 6.02734L6.38 21.3789ZM6.29895 19.2734V21.0762L31.2277 4.88867L6.29895 19.2734ZM35.4708 2.44043L61.8019 15.8525L37.0148 1.5498L35.4708 2.44043ZM33.7501 3.60156L60.2579 15.4072L35.2062 2.65723L33.7501 3.60156ZM32.1495 4.81934L58.5597 14.9619L33.5323 3.81738L32.1495 4.81934ZM30.6759 6.08105L56.1534 14.3564L31.9406 5.05762L30.6759 6.08105ZM29.3009 7.36133L54.8751 14.2109L30.4835 6.29785L29.3009 7.36133ZM24.0695 14.1201H45.9796L24.7882 13.0146L24.0695 14.1201ZM24.9376 12.7324L47.1261 13.8984L25.7325 11.6387L24.9376 12.7324ZM28.0714 8.67871L52.38 13.8486L29.1329 7.61914L28.0714 8.67871ZM26.9288 10.0107L51.0529 13.8359L27.8917 8.94238L26.9288 10.0107ZM25.9015 11.3467L48.3126 13.7061L26.7579 10.291L25.9015 11.3467Z" fill="var(--logo-color-invert)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24.0569 24.393C24.3991 23.8226 25.0155 23.4736 25.6806 23.4736H48.403C49.0681 23.4736 49.6845 23.8226 50.0267 24.393L55.7073 33.8606C56.1343 34.5722 56.0481 35.479 55.4947 36.0974L39.3997 54.086C39.3806 54.1073 39.3611 54.1282 39.3411 54.1486C39.0414 54.4545 38.6836 54.6975 38.2888 54.8634C37.894 55.0293 37.4701 55.1148 37.0418 55.1148C36.6135 55.1148 36.1896 55.0293 35.7948 54.8634C35.4 54.6975 35.0422 54.4545 34.7425 54.1486C34.7225 54.1282 34.703 54.1073 34.6839 54.086L18.5889 36.0974C18.0355 35.479 17.9493 34.5722 18.3763 33.8606L24.0569 24.393ZM26.7527 27.2607L22.3417 34.6123L37.0418 51.0418L51.7419 34.6123L47.3309 27.2607H26.7527ZM31.578 30.9385C32.4747 31.4766 32.7655 32.6397 32.2275 33.5364L31.8154 34.2233L34.6558 37.3478C35.3593 38.1216 35.3023 39.3192 34.5285 40.0226C33.7547 40.7261 32.5571 40.6691 31.8536 39.8953L28.0666 35.7295C27.5046 35.1113 27.4142 34.1979 27.844 33.4815L28.9801 31.588C29.5181 30.6913 30.6813 30.4005 31.578 30.9385Z" fill="var(--logo-color-invert)"/></svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Glyphium</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Web app wallet</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://wallet.glyphium.com" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Glyphium</a></div>
</div>
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" fill="none" height="74" viewBox="0 0 74 74" width="74"
xmlns="http://www.w3.org/2000/svg">
<title>Block Explorer icon</title>
<g fill="var(--block-explorer-1)">
<path
d="m36.9769 3.56445 27.6761 15.12155s-27.6534 15.2483-27.6532 15.2812c.0002.0328-27.68718-15.2888-27.68718-15.2888z" />
<path d="m40.0894 39.1313 27.7437-15.296.0635 30.5359-27.8072 15.381z" />
<path
d="m33.9108 39.1309v30.6213l-27.80728-15.381.05421-30.5382.01057.0058c-.01057-.0058 27.7425 15.2921 27.7425 15.2921z" />
</g>
</svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Block Explorer 1</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Explore by blocks</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://explorer.radiantblockchain.org" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Block Explorer</a></div>
</div>
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" fill="none" height="74" viewBox="0 0 74 74" width="74"
xmlns="http://www.w3.org/2000/svg">
<title>Block Explorer icon</title>
<g fill="#2d9cdb">
<path
d="m36.9769 3.56445 27.6761 15.12155s-27.6534 15.2483-27.6532 15.2812c.0002.0328-27.68718-15.2888-27.68718-15.2888z" />
<path d="m40.0894 39.1313 27.7437-15.296.0635 30.5359-27.8072 15.381z" />
<path
d="m33.9108 39.1309v30.6213l-27.80728-15.381.05421-30.5382.01057.0058c-.01057-.0058 27.7425 15.2921 27.7425 15.2921z" />
</g>
</svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Block Explorer 2</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Explore by blocks</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://explorer1.rxd-radiant.com" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Block Explorer</a></div>
</div>
<!-- start Show more cards -->
<div class="p-table__item eco-hidden-card is-hidden col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" fill="none" xmlns="http://www.w3.org/2000/svg"><title>RXD logo</title><path d="M6.06934 25.6064C4.76098 29.1571 4.04689 32.9951 4.04688 37C4.04688 55.1995 18.8005 69.9531 37 69.9531C38.8827 69.9531 40.728 69.7925 42.5244 69.4893C34.2343 61.2884 21.5337 48.4078 13.7559 40.4932C11.207 37.8994 13.052 33.5314 16.6885 33.5312H26.959C27.387 33.5312 27.7979 33.7013 28.1006 34.0039L63.9834 69.876C64.2375 70.1301 64.0575 70.5651 63.6982 70.5654H48.1172C44.6213 71.7227 40.8839 72.3496 37 72.3496C17.4769 72.3496 1.65039 56.5231 1.65039 37C1.6504 32.3157 2.56109 27.8441 4.21582 23.7529L6.06934 25.6064ZM37 1.65039C56.523 1.65046 72.3496 17.477 72.3496 37C72.3496 46.8089 68.3541 55.6846 61.9023 62.0889L60.208 60.3945C66.2261 54.424 69.9531 46.1471 69.9531 37C69.9531 18.8006 55.1994 4.04695 37 4.04688C27.1339 4.04688 18.2805 8.38283 12.2412 15.2529H33.5879C36.191 15.2529 38.7944 15.2528 41.3975 15.3213C42.2194 15.3213 42.973 15.3212 43.7949 15.3896C46.7405 15.6635 49.5492 16.417 52.1523 17.9229C55.3721 19.8396 57.7019 22.509 59.209 25.8633C59.894 27.4377 60.3734 29.0807 60.6475 30.792C60.853 32.0926 60.9212 33.462 60.7842 34.8311C60.5787 38.322 59.3461 41.4025 57.2227 44.209C56.0581 45.715 54.5504 46.8786 52.9062 47.7686C51.8787 48.3162 50.7826 48.7956 49.6865 49.001C49.6809 49.0022 49.6751 49.0036 49.6689 49.0049C49.1764 49.1082 48.6704 48.9173 48.3145 48.5615L39.3271 39.5762C39.1938 39.4429 39.2795 39.2151 39.4678 39.2061C42.028 39.0853 44.2217 37.2098 44.6855 34.6943C45.3021 31.4086 43.0419 28.6698 40.3018 28.1221C39.8907 28.0536 39.4794 28.0537 39.0684 28.0537H18.2598C15.9991 27.9853 14.0126 27.3006 12.2314 26C11.8204 25.7262 11.4773 25.3843 11.1348 25.042C8.09959 22.009 5.43172 18.9396 2.40039 15.9521C2.14164 15.6971 2.32128 15.2529 2.68457 15.2529H9.12988C15.5996 6.97339 25.6781 1.65039 37 1.65039Z" fill="var(--logo-color-invert)"/></svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Glyph Explorer</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Explore tokens and NFTs</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://glyph-explorer.rxd-radiant.com" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Glyph Explorer</a></div>
</div>
<div class="p-table__item eco-hidden-card is-hidden col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" fill="none" xmlns="http://www.w3.org/2000/svg"><title>RXD logo</title><path d="M6.06934 25.6064C4.76098 29.1571 4.04689 32.9951 4.04688 37C4.04688 55.1995 18.8005 69.9531 37 69.9531C38.8827 69.9531 40.728 69.7925 42.5244 69.4893C34.2343 61.2884 21.5337 48.4078 13.7559 40.4932C11.207 37.8994 13.052 33.5314 16.6885 33.5312H26.959C27.387 33.5312 27.7979 33.7013 28.1006 34.0039L63.9834 69.876C64.2375 70.1301 64.0575 70.5651 63.6982 70.5654H48.1172C44.6213 71.7227 40.8839 72.3496 37 72.3496C17.4769 72.3496 1.65039 56.5231 1.65039 37C1.6504 32.3157 2.56109 27.8441 4.21582 23.7529L6.06934 25.6064ZM37 1.65039C56.523 1.65046 72.3496 17.477 72.3496 37C72.3496 46.8089 68.3541 55.6846 61.9023 62.0889L60.208 60.3945C66.2261 54.424 69.9531 46.1471 69.9531 37C69.9531 18.8006 55.1994 4.04695 37 4.04688C27.1339 4.04688 18.2805 8.38283 12.2412 15.2529H33.5879C36.191 15.2529 38.7944 15.2528 41.3975 15.3213C42.2194 15.3213 42.973 15.3212 43.7949 15.3896C46.7405 15.6635 49.5492 16.417 52.1523 17.9229C55.3721 19.8396 57.7019 22.509 59.209 25.8633C59.894 27.4377 60.3734 29.0807 60.6475 30.792C60.853 32.0926 60.9212 33.462 60.7842 34.8311C60.5787 38.322 59.3461 41.4025 57.2227 44.209C56.0581 45.715 54.5504 46.8786 52.9062 47.7686C51.8787 48.3162 50.7826 48.7956 49.6865 49.001C49.6809 49.0022 49.6751 49.0036 49.6689 49.0049C49.1764 49.1082 48.6704 48.9173 48.3145 48.5615L39.3271 39.5762C39.1938 39.4429 39.2795 39.2151 39.4678 39.2061C42.028 39.0853 44.2217 37.2098 44.6855 34.6943C45.3021 31.4086 43.0419 28.6698 40.3018 28.1221C39.8907 28.0536 39.4794 28.0537 39.0684 28.0537H18.2598C15.9991 27.9853 14.0126 27.3006 12.2314 26C11.8204 25.7262 11.4773 25.3843 11.1348 25.042C8.09959 22.009 5.43172 18.9396 2.40039 15.9521C2.14164 15.6971 2.32128 15.2529 2.68457 15.2529H9.12988C15.5996 6.97339 25.6781 1.65039 37 1.65039Z" fill="var(--logo-color-invert)"/></svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Node Crawler</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Real-time node discovery</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://nodes.rxd-radiant.com" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Radiant Node Crawler</a></div>
</div>
<div class="p-table__item eco-hidden-card is-hidden col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" fill="none" xmlns="http://www.w3.org/2000/svg"><title>RXD logo</title><path d="M6.06934 25.6064C4.76098 29.1571 4.04689 32.9951 4.04688 37C4.04688 55.1995 18.8005 69.9531 37 69.9531C38.8827 69.9531 40.728 69.7925 42.5244 69.4893C34.2343 61.2884 21.5337 48.4078 13.7559 40.4932C11.207 37.8994 13.052 33.5314 16.6885 33.5312H26.959C27.387 33.5312 27.7979 33.7013 28.1006 34.0039L63.9834 69.876C64.2375 70.1301 64.0575 70.5651 63.6982 70.5654H48.1172C44.6213 71.7227 40.8839 72.3496 37 72.3496C17.4769 72.3496 1.65039 56.5231 1.65039 37C1.6504 32.3157 2.56109 27.8441 4.21582 23.7529L6.06934 25.6064ZM37 1.65039C56.523 1.65046 72.3496 17.477 72.3496 37C72.3496 46.8089 68.3541 55.6846 61.9023 62.0889L60.208 60.3945C66.2261 54.424 69.9531 46.1471 69.9531 37C69.9531 18.8006 55.1994 4.04695 37 4.04688C27.1339 4.04688 18.2805 8.38283 12.2412 15.2529H33.5879C36.191 15.2529 38.7944 15.2528 41.3975 15.3213C42.2194 15.3213 42.973 15.3212 43.7949 15.3896C46.7405 15.6635 49.5492 16.417 52.1523 17.9229C55.3721 19.8396 57.7019 22.509 59.209 25.8633C59.894 27.4377 60.3734 29.0807 60.6475 30.792C60.853 32.0926 60.9212 33.462 60.7842 34.8311C60.5787 38.322 59.3461 41.4025 57.2227 44.209C56.0581 45.715 54.5504 46.8786 52.9062 47.7686C51.8787 48.3162 50.7826 48.7956 49.6865 49.001C49.6809 49.0022 49.6751 49.0036 49.6689 49.0049C49.1764 49.1082 48.6704 48.9173 48.3145 48.5615L39.3271 39.5762C39.1938 39.4429 39.2795 39.2151 39.4678 39.2061C42.028 39.0853 44.2217 37.2098 44.6855 34.6943C45.3021 31.4086 43.0419 28.6698 40.3018 28.1221C39.8907 28.0536 39.4794 28.0537 39.0684 28.0537H18.2598C15.9991 27.9853 14.0126 27.3006 12.2314 26C11.8204 25.7262 11.4773 25.3843 11.1348 25.042C8.09959 22.009 5.43172 18.9396 2.40039 15.9521C2.14164 15.6971 2.32128 15.2529 2.68457 15.2529H9.12988C15.5996 6.97339 25.6781 1.65039 37 1.65039Z" fill="var(--logo-color-invert)"/></svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Radiant Explorer</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Explore Radiant Blockchain</p>
</div>
</div>
<div class="margin-top-auto"><a href="https://radiantcore.org/explorer/" target="_blank"
class="btn btn--subtle btn--md width-100%">Visit Radiant Explorer</a></div>
</div>
</div>
<!-- end Show more cards -->
<div class="flex flex-wrap flex-center margin-top-lg">
<button id="ecosystem-toggle" class="btn btn--primary col-12" type="button" aria-expanded="false">Show more</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Ecosystem -->
<!-- start Technicals -->
<section class="position-relative z-index-1 padding-y-md">
<div class="container max-width-adaptive-lg">
<div class="text-component text-center margin-top-lg margin-bottom-lg">
<h1 class="section-title">Technicals</h1>
<p class="subtitle-2">Dive into how Radiant works</p>
</div>
<div class="grid gap-sm">
<div class="p-table__item col-4@xl col-4@lg col-2@md col-2@sm col-6@xs">
<div class="text-center margin-bottom-sm">
<div class="margin-bottom-sm">
<svg class="icon icon--xl" width="74" height="74" viewBox="0 0 74 74" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Radiant logo</title><path d="M47.8217 67.302C48.1589 67.6348 48.6045 67.8121 49.0783 67.8121H70.7862C71.188 67.8121 71.3891 67.3263 71.105 67.0423L31.0055 26.9542C30.6673 26.616 30.2086 26.4261 29.7303 26.4261H18.2528C14.1888 26.4261 12.1268 31.3077 14.9753 34.2063C23.8887 43.2765 38.5858 58.1845 47.8217 67.302Z" fill="var(--logo-color-invert)"/><path d="M37.1382 6H2.60251C2.19653 6 1.99605 6.4961 2.28522 6.78107C5.67292 10.1197 8.65454 13.5498 12.0465 16.9394C12.4293 17.3219 12.8121 17.7044 13.2714 18.0103C15.2619 19.4638 17.482 20.2288 20.0083 20.3053H43.2624C43.7218 20.3053 44.1811 20.3053 44.6404 20.3818C47.7026 20.9938 50.2289 24.0538 49.5399 27.7257C49.0217 30.537 46.5703 32.6329 43.709 32.7678C43.4984 32.7777 43.4023 33.0326 43.5514 33.1816L53.5951 43.2224C53.9929 43.6201 54.5581 43.8338 55.1087 43.7183C55.1156 43.7169 55.1222 43.7154 55.1285 43.714C56.3533 43.4845 57.5782 42.949 58.7266 42.337C60.5639 41.3426 62.2481 40.0421 63.5495 38.3591C65.9228 35.2226 67.3007 31.7802 67.5304 27.8787C67.6835 26.3487 67.607 24.8188 67.3773 23.3653C67.0711 21.4528 66.5352 19.6168 65.7696 17.8573C64.0854 14.1089 61.4825 11.1254 57.8845 8.98346C54.9754 7.30048 51.8366 6.45899 48.5447 6.153C47.6261 6.0765 46.784 6.0765 45.8653 6.0765C42.9563 6 40.0472 6 37.1382 6Z" fill="var(--logo-color-invert)"/></svg>
</div>
<div class="text-center margin-bottom-xs">
<h2>Whitepaper</h2>
</div>
<div class="text-center margin-bottom-sm">
<p class="subtitle-3">Radiant Blockchain Whitepaper</p>
</div>
</div>
<div class="margin-top-auto"><a
href="/radiant.pdf"
target="_blank" class="btn btn--subtle btn--md width-100%">Read the whitepaper</a></div>
</div>