-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlinks.html
More file actions
1247 lines (978 loc) · 78.1 KB
/
Copy pathlinks.html
File metadata and controls
1247 lines (978 loc) · 78.1 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="Links to Radiant RXD related resources, all in one place">
<meta name="keywords" content="Radiant, Radiant Blockchain, Radiant Network, RXD, Blockchain, Radiant Foundation, Inititatives, Radiant Community, 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">
<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 Blockchain Links</title>
<!-- OpenGraph Meta Tags -->
<meta property="og:url" content="https://radiantblockchain.org/links.html">
<meta property="og:type" content="website">
<meta property="og:title" content="Radiant Blockchain - Links">
<meta property="og:description" content="Links to Radiant RXD related resources, all in one place">
<meta property="og:image" content="https://radiantblockchain.org/radiant-blockchain-links-social.jpg">
<!-- 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/links.html">
<meta property="twitter:url" content="https://radiantblockchain.org/links.html">
<meta name="twitter:title" content="Radiant Blockchain - Links">
<meta name="twitter:description" content="Links to Radiant RXD related resources, all in one place">
<meta name="twitter:image" content="https://radiantblockchain.org/radiant-blockchain-links-twitter.jpg">
<!-- Schema.org markup -->
<meta itemprop="name" content="Radiant Blockchain - Quick Links">
<meta itemprop="description" content="Links to Radiant RXD related resources, all in one place">
<meta itemprop="image" content="https://radiantblockchain.org/radiant-blockchain-links-social.jpg">
</head>
<body>
<!-- start Progress bar -->
<progress aria-hidden="true" class="reset reading-progressbar js-reading-progressbar" max="100" value="0">
<div class="reading-progressbar__fallback js-reading-progressbar__fallback"></div>
</progress>
<!-- end Progress bar -->
<!-- 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"><a href="/" 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><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 href="/" 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">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" aria-current="page">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 Links content -->
<div class="container bg-transparent max-width-adaptive-lg margin-bottom-xs padding-y-md js-reading-content">
<div class="grid gap-md flex-row-reverse@md">
<div class="col-3@md">
<div class="toc toc--static@md position-sticky@md js-toc"><button class="toc__control padding-sm no-js:hide js-toc__control" aria-controls="toc"><span class="toc__control-text"><i class="js-toc__control-label">Contents <span class="sr-only">- press button to select new section.</span></i> <i aria-hidden="true">Select</i> </span><svg class="toc__icon-arrow icon icon--xs margin-left-3xs no-js:hide" viewBox="0 0 16 16" aria-hidden="true">
<g class="icon__group" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path d="M3 3l10 10"></path>
<path d="M13 3L3 13"></path>
</g>
</svg></button>
<nav class="toc__nav">
<ul class="toc__list js-toc__list">
<li class="toc__label" tabindex="0">Categories</li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-ecosystem">Ecosystem</a></li>
<ul class="toc__list">
<li><a class="toc__link js-smooth-scroll" href="#rxd-wallets">Wallets</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-glyph-tokens">Glyph Tokens</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-faucets">Faucets</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-organisations">Organisations</a></li>
</ul>
<li><a class="toc__link js-smooth-scroll" href="#rxd-exchanges">Exchanges</a></li>
<ul class="toc__list">
<li><a class="toc__link js-smooth-scroll" href="#rxd-usdt">RXD/USDT</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-btc">RXD/BTC</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-swaps">Swaps</a></li>
</ul>
<li><a class="toc__link js-smooth-scroll" href="#rxd-communication">Communication</a></li>
<ul class="toc__list">
<li><a class="toc__link js-smooth-scroll" href="#rxd-community-chat">Community Chat</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-international">International</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-xtwitter">X - Twitter</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-articles">Articles</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-foundation">Foundation</a></li>
</ul>
<li><a class="toc__link js-smooth-scroll" href="#rxd-explorers">Explorers</a></li>
<ul class="toc__list">
<li><a class="toc__link js-smooth-scroll" href="#rxd-mainnet-explorers">Mainnet Explorers</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-electrumx-servers">ElectrumX Servers</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-glyph-explorers">Glyph Explorers</a></li>
</ul>
<li><a class="toc__link js-smooth-scroll" href="#rxd-guides">Guides</a></li>
<ul class="toc__list">
<li><a class="toc__link js-smooth-scroll" href="#rxd-user-guides">User Guides</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-technical-guides">Technical Guides</a></li>
</ul>
<li><a class="toc__link js-smooth-scroll" href="#rxd-statistics">Statistics</a></li>
<ul class="toc__list">
<li><a class="toc__link js-smooth-scroll" href="#rxd-market-stats">Market Stats</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-miner-stats">Miner Stats</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-blockchain-stats">Blockchain Stats</a></li>
</ul>
<li><a class="toc__link js-smooth-scroll" href="#rxd-technicals">Technicals</a></li>
<ul class="toc__list">
<li><a class="toc__link js-smooth-scroll" href="#rxd-papers">Papers</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-code-repo-info">Code Repos + Info</a></li>
</ul>
<li><a class="toc__link js-smooth-scroll" href="#rxd-mining">Mining</a></li>
<ul class="toc__list">
<li><a class="toc__link js-smooth-scroll" href="#rxd-pools">Pools</a></li>
<li><a class="toc__link js-smooth-scroll" href="#rxd-wares">Wares</a></li>
</ul>
<li><a class="toc__link js-smooth-scroll" href="#rxd-merch">Merch</a></li>
</ul>
</nav>
</div>
</div>
<div class="col-9@md">
<div class="text-component text-component--relaxed toc-content js-toc-content">
<h1 class="article-h1">Radiant Blockchain Links</h1>
<p class="text-md color-contrast-medium">Links to Radiant RXD related resources, all in one place.</p>
<!---start RXD Ecosystem Links-->
<h2 class="toc-h2-links" id="rxd-ecosystem" class="toc-content__target">Ecosystem</h2>
<h3 class="toc-h3-links step-color" id="rxd-wallets" class="toc-content__target">Wallets</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://tangem.com/en/pricing/?promocode=RADIANT" target="_blank">Tangem Wallet - Hardware</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://apps.apple.com/us/app/chainbow-wallet/id1568850934" target="_blank">ChainBow Wallet v2 - iOS</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://play.google.com/store/apps/details?id=io.chainbow.bsvwallet" target="_blank">ChainBow Wallet v2 - Android</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/Electron-Wallet/releases" target="_blank">Electron Radiant Wallet - Desktop</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://photonic-wallet.com" target="_blank">Photonic Wallet - Web App</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://chromewebstore.google.com/detail/photonic-wallet/ldagidbelgfoonfhbggfgmlhaccfeepb?pli=1" target="_blank">Photonic Wallet - Extension</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://xetch.net" target="_blank">Xetch - Social Network + Wallet</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://chromewebstore.google.com/detail/warwallet/ppohfcljpmdapjfidicjpnpjcgdmgmil" target="_blank">WarWallet - Extension</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://wallet.glyphium.com" target="_blank">Glyphium Wallet - Web App</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://dex.gleec.com/wallet" target="_blank">GLEEC DEX - Multi-Chain Wallet</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-glyph-tokens" class="toc-content__target">Glyph Tokens + WAVE</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://photonic-wallet.com" target="_blank">Photonic Wallet - Web App</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://glyph-explorer.rxd-radiant.com" target="_blank">RXD Glyph Explorer</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://wallet.glyphium.com" target="_blank">Glyphium Wallet - Web App</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://chromewebstore.google.com/detail/photonic-wallet/ldagidbelgfoonfhbggfgmlhaccfeepb?pli=1" target="_blank">Photonic Wallet - Extension</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/RadiantBlockchain-Community/photonic-wallet" target="_blank">Photonic Wallet - Source</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://glyph-miner.com" target="_blank">Glyph Miner - Web App</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/RadiantBlockchain-Community/glyph-miner" target="_blank">Glyph Miner - Source</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://glyph-explorer.rxd-radiant.com/contracts" target="_blank">RXD Glyph Explorer - Fungibles Contracts</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://rxd.zone" target="_blank">Radiant Wave Zone - Manage DNS records</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-faucets" class="toc-content__target">RXD Faucets</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://faucet.radiant4people.com" target="_blank">RXD Faucet - Mainnet</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://faucet-testnet.radiant4people.com" target="_blank">RXD Faucet - Testnet</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-organisations" class="toc-content__target">Organisations</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://radiantfoundation.org" target="_blank">Radiant Foundation</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org" target="_blank">Radiant Core</a>
</div>
</div>
<!---end RXD Ecosystem Links-->
<!---start RXD Exchanges Links-->
<h2 class="toc-h2-links" id="rxd-exchanges" class="toc-content__target">Exchanges</h2>
<h3 class="toc-h3-links step-color" id="rxd-usdt" class="toc-content__target">RXD/USDT</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://www.mexc.com/exchange/RXD_USDT" target="_blank">MEXC</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.coinex.com/en/exchange/rxd-usdt" target="_blank">CoinEx</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://nonkyc.io/market/RXD_USDT" target="_blank">NonKyc</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.xt.com/en/trade/rxd_usdt" target="_blank">XT</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-btc" class="toc-content__target">RXD/BTC</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://www.coinex.com/en/exchange/rxd-btc" target="_blank">CoinEx</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-swaps" class="toc-content__target">Swaps</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://letsexchange.io/exchange/usdt-to-rxd?ref_id=EiDWiy7xrxZTeAiy" target="_blank">LetsExchange</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://simpleswap.io/coins/rxd" target="_blank">SimpleSwap</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://dex.gleec.com/dex" target="_blank">Gleec DEX</a>
</div>
</div>
<!---end RXD Exchanges Links-->
<!---start RXD Communication Links-->
<h2 class="toc-h2-links" id="rxd-communication" class="toc-content__target">Communication</h2>
<h3 class="toc-h3-links step-color" id="rxd-community-chat" class="toc-content__target">Community Chat</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://discord.gg/radiantblockchain" target="_blank">Discord - Main</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/RadiantBlockchain" target="_blank">Telegram - Main</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/RadiantBlockchainTraders" target="_blank">Telegram - Traders</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/rxdradiantmining" target="_blank">Telegram - Miners</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/radiant_glyphium" target="_blank">Telegram - Glyphium</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.instagram.com/radiant_rxd_official" target="_blank">Instagram - Community</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.tiktok.com/@radiant_rxd_community" target="_blank">Tiktok - Community</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://youtube.com/@theradianttube?si=BtLaz3ZoxNneVlm1" target="_blank">YouTube - Community</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.reddit.com/r/Radiant_RXD" target="_blank">Reddit - Main</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.reddit.com/r/RadiantBlockchain" target="_blank">Reddit - Initial</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://bitcointalk.org/index.php?topic=5436028.0;all" target="_blank">Bitcointalk</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-international" class="toc-content__target">International</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://t.me/Radiant_ES" target="_blank">Telegram - Spanish</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://x.com/RXDEspanol" target="_blank">X @RXDEspanol - Spanish</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/RadiantBlockchain_CN" target="_blank">Telegram - Chinese</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/radiant_ru_official" target="_blank">Telegram - Russian</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/RadiantBlockchainFrench" target="_blank">Telegram - French</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/RXDIndonesia" target="_blank">Telegram - Indonesian</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://t.me/RadiantBlockchainTurkiye" target="_blank">Telegram - Turkish</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-xtwitter" class="toc-content__target">X - Twitter</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://x.com/Planet_Radiant" target="_blank">X @Planet_Radiant</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://x.com/RadiantCoreOrg" target="_blank">X @RadiantCoreOrg</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://x.com/RXDFoundation" target="_blank">X @RXDFoundation</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://x.com/RXD_Community" target="_blank">X @RXD_Community</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://x.com/RadiantLayerOne" target="_blank">X @RadiantLayerOne - Initial</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-articles" class="toc-content__target">Articles</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://open.substack.com/pub/nocookie9107" target="_blank">Substack - Radiant Community</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantfoundation.medium.com" target="_blank">Medium - Radiant Foundation</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiant-community.medium.com" target="_blank">Medium - Radiant Community</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://medium.com/@RadiantLayerOne" target="_blank">Medium - Initial</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-foundation" class="toc-content__target">Foundation</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://radiantfoundation.org" target="_blank">Website - Radiant Foundation</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantfoundation.medium.com" target="_blank">Medium - Radiant Foundation</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://x.com/RXDFoundation" target="_blank">X @RXDFoundation</a>
</div>
</div>
<!---end RXD Communication Links-->
<!---start RXD Block Explorer Links-->
<h2 class="toc-h2-links" id="rxd-explorers" class="toc-content__target">Explorers</h2>
<h3 class="toc-h3-links step-color" id="rxd-mainnet-explorers" class="toc-content__target">Mainnet Explorers</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://explorer.radiantblockchain.org" target="_blank">Block Explorer 1</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://explorer1.rxd-radiant.com" target="_blank">Block Explorer 2</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://explorer2.rxd-radiant.com" target="_blank">Block Explorer 3</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/explorer/" target="_blank">Radiant Explorer 4 - Core</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantexplorer.com" target="_blank">Block Explorer 5</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://nodes.rxd-radiant.com" target="_blank">Radiant Node Crawler</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-electrumx-servers" class="toc-content__target">ElectrumX Servers</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://radiantblockchain-community.github.io/electrumx-check" target="_blank">ElectrumX Public Servers Status</a>
</div>
<div class="p-link__item text-left col-6">
<a href="/glyphs-guide.html#electrumx-server-list">ElectrumX Public Server List</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-glyph-explorers" class="toc-content__target">Glyph Explorers</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://glyph-explorer.rxd-radiant.com" target="_blank">RXD Glyph Explorer</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://glyphium.com" target="_blank">Glyphium</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/explorer/#/tokens" target="_blank">Radiant Explorer Core - Tokens</a>
</div>
</div>
<!---end RXD Block Explorer Links-->
<!---start RXD Guides Links-->
<h2 class="toc-h2-links" id="rxd-guides" class="toc-content__target">Guides</h2>
<h3 class="toc-h3-links step-color" id="rxd-user-guides" class="toc-content__target">User Guides</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="/glyphs-guide.html" target="_blank">Glyphs User Guide - Mine and Create</a>
</div>
<div class="p-link__item text-left col-6">
<a href="/rxd-brand-guide.html" target="_blank">Radiant RXD Brand Guide</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiant-community.medium.com/how-to-recover-a-wallet-in-radiant-3db3638331a5" target="_blank">Recover a wallet in Radiant</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiant-community.medium.com/how-to-keep-your-radiant-safe-and-secure-2b2531fb9382" target="_blank">How to keep your Radiant safe and secure</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-technical-guides" class="toc-content__target">Technical Guides</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/docs/" target="_blank">Radiant Technical Docs</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/docs/quick-reference.html" target="_blank">Radiant Quick Reference</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/docs/developer-guide.html" target="_blank">Radiant Developer Guide</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/docs/token-creation.html" target="_blank">Radiant Token Creation Guide</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/docs/contract-best-practices.html" target="_blank">Radiant Smart Contract Best Practices</a>
</div>
<div class="p-link__item text-left col-6">
<a href="/glyphs-protocol-guide.html" target="_blank">Glyphs Protocol Technical Guide</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/Glyph-Token-Standards" target="_blank">Glyph Token Standards</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/telostia/radiant-server-easy-setup" target="_blank">Radiant ElectrumX Server Setup Guide</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiant-community.medium.com/host-your-electrumx-radiant-node-via-the-flux-marketplace-ecf2388832d6" target="_blank">Host ElectrumX Radiant Node via Flux</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantblockchain.gitbook.io/wiki" target="_blank">Radiant Community Wiki</a>
</div>
</div>
<!---end RXD Guides Links-->
<!---start RXD Statistics Links-->
<h2 class="toc-h2-links" id="rxd-statistics" class="toc-content__target">Statistics</h2>
<h3 class="toc-h3-links step-color" id="rxd-market-stats" class="toc-content__target">Market Stats</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://www.coingecko.com/en/coins/radiant" target="_blank">CoinGecko</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://coinmarketcap.com/currencies/radiant" target="_blank">CoinMarketCap</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://coinpaprika.com/coin/rxd-radiant" target="_blank">CoinPaprika</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.livecoinwatch.com/price/Radiant-RXD" target="_blank">Live Coin Watch</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://coincodex.com/crypto/radiant" target="_blank">CoinCodex</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://cryptorank.io/price/radiant" target="_blank">CryptoRank</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.cryptocompare.com/coins/rxd/analysis/USDT" target="_blank">CryptoCompare</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.coincarp.com/currencies/radiant/price/" target="_blank">CoinCarp</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-miner-stats" class="toc-content__target">Miner Stats</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://minerstat.com/coin/RXD" target="_blank">Minerstat</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://miningpoolstats.stream/radiant" target="_blank">MiningPoolStats</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://www.hashrate.no/coins/RXD" target="_blank">Hashrate</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://whattomine.com/coins/356-rxd-sha512256d" target="_blank">Whattomine</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://poolbay.io/crypto/5814/radiant" target="_blank">PoolBay</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-blockchain-stats" class="toc-content__target">Blockchain Stats</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://explorer.radiantblockchain.org" target="_blank">Radiant Explorer ORG</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/explorer/" target="_blank">Radiant Explorer Core</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://explorer.radiantblockchain.org/mempool-summary" target="_blank">Mempool Summary</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://explorer.radiantblockchain.org/block-stats" target="_blank">Block Stats</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://explorer.radiantblockchain.org/tx-stats" target="_blank">Transaction Stats</a>
</div>
</div>
<!---end RXD Statistics Links-->
<!---start RXD Technicals Links-->
<h2 class="toc-h2-links" id="rxd-technicals" class="toc-content__target">Technicals</h2>
<h3 class="toc-h3-links step-color" id="rxd-papers" class="toc-content__target">Papers</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="/radiant.pdf" target="_blank">Radiant Blockchain Whitepaper</a>
</div>
<div class="p-link__item text-left col-6">
<a href="/radiant-system-design.pdf" target="_blank">Radiant Blockchain System Design Paper</a>
</div>
<div class="p-link__item text-left col-6">
<a href="/radiant.zh.pdf" target="_blank">Radiant Blockchain Whitepaper - Chinese</a>
</div>
<div class="p-link__item text-left col-6">
<a href="/radiant.es.pdf" target="_blank">Radiant Blockchain Whitepaper - Spanish</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-code-repo-info" class="toc-content__target">Code Repos and Info</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://github.com/orgs/Radiant-Core/repositories" target="_blank">GitHub - Radiant Core - Active</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/orgs/RadiantBlockchain-Community/repositories" target="_blank">GitHub - Community</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/RadiantBlockchain?tab=repositories" target="_blank">GitHub - Initial - Public Archive</a>
</div>
<div class="p-link__item text-left col-6">
<a href="hhttps://radiantcore.org/docs/" target="_blank">Radiant Technical Docs</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/Radiant-Core" target="_blank">Radiant-Core Node</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/radiant-node-helper" target="_blank">Radiant Node Helper</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/radiant-sdk" target="_blank">Radiant TypeScript SDK</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/MudwoodLabs/pyrxd" target="_blank">Pyrxd: Python SDK for Radiant</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/Glyph-Token-Standards" target="_blank">Glyph Token Standards</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/radiant-mcp-server" target="_blank">Radiant MCP Server</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/RXinDexer" target="_blank">RXinDexer - Radiant Indexer (RXD + Glyphs)</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/RadiantMM" target="_blank">RadiantMM - Trustless token swaps</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/radiantblockchain-constants" target="_blank">Radiant Blockchain Constants</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/radiant-stratum-proxy" target="_blank">Radiant Stratum Proxy</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/ElectrumX" target="_blank">Radiant ElectrumX Core</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/RadiantScript" target="_blank">RadiantScript</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/rxdeb" target="_blank">rxdeb - Radiant Script Debugger</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/radiantjs" target="_blank">RadiantJS</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/RadiantBlockchain-Community/rxd-wasm" target="_blank">RXD.WASM/RXD-RS</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/Photonic-Wallet" target="_blank">Photonic Wallet - Source</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/Glyph-miner" target="_blank">Glyph Miner - Source</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/MuonPaySDK" target="_blank">MuonPay SDK</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/WAVE-Protocol" target="_blank">WAVE: Name System</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantcore.org/docs/developer-guide.html#running-node" target="_blank">Docker for Radiant Node</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://radiantblockchain.gitbook.io/wiki" target="_blank">Radiant Blockchain Community Wiki</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/Project-Gravity" target="_blank">Gravity Whitepaper</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://glyph-explorer.rxd-radiant.com" target="_blank">RXD Glyph Explorer</a>
</div>
</div>
<!---end RXD Technicals Links-->
<!---start RXD Mining Links-->
<h2 class="toc-h2-links" id="rxd-mining" class="toc-content__target">Mining</h2>
<h3 class="toc-h3-links step-color" id="rxd-pools" class="toc-content__target">Solo</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://github.com/Radiant-Core/radiant-stratum-proxy" target="_blank">Radiant Stratum Proxy</a>
</div>
</div>
<h3 class="toc-h3-links step-color" id="rxd-pools" class="toc-content__target">Pools</h3>
<div class="grid gap-xs">
<div class="p-link__item text-left col-6">
<a href="https://miningpoolstats.stream/radiant" target="_blank">MiningPoolStats - Radiant Rank</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://humpool.com" target="_blank">HumPool</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://vipor.net/mine/rxd_pplns_1" target="_blank">Vipor</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://pool.rplant.xyz/#radiant" target="_blank">Rplant Pool</a>
</div>
<div class="p-link__item text-left col-6">
<a href="https://pool.kryptex.com/rxd" target="_blank">Kryptex</a>
</div>