-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathxdc-accelerator-program.php
More file actions
939 lines (912 loc) · 62.7 KB
/
xdc-accelerator-program.php
File metadata and controls
939 lines (912 loc) · 62.7 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
<?php
$title = "XDC Accelerator Program";
$desc = "XDC Acceleration Program.";
include('inc/header.php') ?>
<!-- Hero Home Starts -->
<section class="px-200 px-t250-b100 hero-inside">
<!--<div class="container p-relative">-->
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10 col-md-12 hero-content">
<h1 class="title-m text-center mb-0">XDC Accelerator Program</h1>
<h2 class="subtitle subtitle-s fw-500 text-center mb-0">
The XDC Accelerator Program supports blockchain startups on XDC Network, providing mentorship, resources, and networking. It guides participants through product development, marketing, fundraising, and community building
to foster innovation and blockchain adoption.
</h2>
<h2 class="subtitle subtitle-m text-gradient fw-500 text-center mb-0">
Projects that believe in their vision and wish to gain community support can create a proposal on XDCDAO for funding and go through a decentralized procedure to access the funds.
</h2>
<div class="btn-block">
<a href="https://www.xdcdao.org/" target="_blank">
<button class="btn-blue">Visit XDCDAO</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Home Ends -->
<!-- Program Starts -->
<section class="px-80 pt-0">
<div class="container">
<div class="row justify-content-center mt-4 mb-4">
<div class="col-lg-10">
<h1 class="title-s text-center mb-3">Ongoing Programs</h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-12 col-md-12 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/plugandplay.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/plugandplay_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">XDC Enterprise RWA Accelerator</span></div>
<p class="fs-6">
The XDC Real World Asset (RWA) tokenization accelerator, powered by Plug and Play, is open to all RWA projects and will offer selected founders access to XDC Network’s internal resources, mentorship, and
customized support from industry experts.
</p>
<p class="fs-6">
Plug and Play is the leading innovation platform, connecting startups, corporations, venture capital firms, universities, and government agencies. Headquartered in Silicon Valley, we’re present in 60+ locations
across five continents. We offer corporate innovation programs and help our corporate partners in every stage of their innovation journey, from education to execution. We also organize startup acceleration
programs and have built an in-house VC to drive innovation across multiple industries where we’ve invested in hundreds of successful companies including Dropbox, Guardant Health, Honey, Lending Club, N26, PayPal,
and Rappi.
</p>
<p class="fs-6 mb-0">For more information, visit <a href="https://www.plugandplaytechcenter.com/">https://www.plugandplaytechcenter.com/</a></p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> 07 July 2025</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Deadline:</span> 04 August 2025</p>
</div>
<a href="https://www.plugandplaytechcenter.com/innovation-services/our-programs/xdc-rwa-accelerator" target="_blank" class="btn socialHead-button internalLink mt-auto">
Apply Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/thub.svg" class="incLogo bg-light75" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">XDC Network Finternet Accelerator Program</span></div>
<p class="fs-6">
The XDC Network Finternet Accelerator Program, in collaboration with T Hub, is designed to support and nurture Web3 startups in the Indian subcontinent by providing MVP-ready startups with essential resources,
mentorship, and infrastructure to accelerate their growth.
</p>
<p class="fs-6 mb-0">
Aligned with the Government of India's "Make in India" initiative, this program focuses on incubating and accelerating promising blockchain startups, fostering innovation and development within the country's
thriving startup sector. Through this initiative, startups gain access to a vibrant ecosystem that promotes innovation, collaboration, and advancement in the rapidly evolving Web3 and blockchain industry.
</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> 4th week of January 2025</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Deadline:</span> 15 December 2024</p>
</div>
<a href="https://t-hub.co/programs/xdc-network-finternet-accelerator/" target="_blank" class="btn socialHead-button internalLink mt-auto">
Apply Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/foundershiphq.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/foundershiphq_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">XDC 0xCAMP Token Launch - Season 2</span></div>
<p class="fs-6">A 3-month world-class cohort program where top startups from around the globe join to get token-launch ready and get upto $100,000 investment from XDC Network.</p>
<p class="fs-6 mb-0">Open for Token Launch & Relaunch</p>
<p class="fs-6 mb-0">Themes: RWA, DeFi, Gaming, Payments</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> 2 February 2025</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Starts:</span> 1 December 2025</p>
</div>
<h2 class="comingTag"><i>*Season 1 XDC 0XCamp Cohort 1 - Completed in October 2024</i></h2>
<a href="https://foundershiphq.com/xdc-0xcamp" target="_blank" class="btn socialHead-button internalLink mt-auto">
Apply Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/pivot.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/pivot_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">Let's Pivot to XDC</span></div>
<p class="fs-6">Let's Pivot to XDC is a customized program for startups to be selected on a rolling basis, ensuring tailored onboarding and support based on individual project needs.</p>
<p class="fs-6 mb-0">Themes: RWA, DeFi, Gaming, Payments</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> Rolling Basis</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Starts:</span> 1 December 2025</p>
</div>
<a href="https://0xpivot.com/Startup-Application" target="_blank" class="btn socialHead-button internalLink mt-auto">
Apply Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/rakdao.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/rakdao_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">RAKDAO Accelerator Program</span></div>
<p class="fs-6">
XDC has partnered with RAKDAO, world's first free zone dedicated to Digital Assets and Virtual Assets to offer an exclusive token launch accelerator program focussed on Gaming, DEPIN and Web3 Infrastructure.
</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> February 2025</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Starts:</span> Stay Tuned!</p>
</div>
<h2 class="comingTag">Coming Soon!</h2>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/blockon.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/blockon_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">BlockOn XDC</span></div>
<p class="fs-6">
Blockon is a leading Venture Builder providing incubation, acceleration and advisory support to global innovators with blockchain-based visions since 2013. XDC has partnered with Blockon to offer customised 1:1
mentorship for early stage Web3 projects wanting to get token ready. BlockOn and XDC Network will coinvest in each shortlisted project.
</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> Rolling Basis</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Starts:</span> Stay Tuned!</p>
</div>
<h2 class="comingTag">Coming Soon!</h2>
</div>
</div>
</div>
</div>
<div class="row justify-content-center pt-5 mt-5 mb-4">
<div class="col-lg-10">
<h1 class="title-s text-center mb-3">Completed Programs</h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/plugandplayapac.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/plugandplayapac_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">XDC Payments Program</span></div>
<p class="fs-6 mb-0">
The XDC Payments Program will identify and collaborate with the best payments-based Web 3.0 solutions that can enrich the XDC Network. Startups will have the chance to leverage XDC Network's resources and support
and shape the future of payments on a secure, scalable blockchain.
</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> 4 April 2025</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Deadline:</span> 14 March 2025</p>
</div>
<h2 class="closedTag">Applications Closed!</h2>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/launchpool.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/launchpool_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">LaunchpoolXDC</span></div>
<p class="fs-6 mb-0">
Launchpool XDC accelerator program will be Europe-centric. To qualify, startups must have raised at least $100k in an initial Angel/Pre-seed round with a valuation under US $20 million, be prepared for a token
launch within six months, and have at least one Tech CoFounder or Technical Partner. join to get token-launch ready and get upto $100,000 investment from XDC Network.
</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> 10 July to 10 October 2024</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Deadline:</span> 10 August 2024</p>
</div>
<h2 class="closedTag">Applications Closed!</h2>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/brinc.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/brinc_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">XDC Accelerator Program</span></div>
<p class="fs-6">12 week Brinc accelerator program is tailored to provide startups with the support, resources, curriculum and mentorship to help them succeed with their token launch.</p>
<p class="fs-6 mb-0">Brinc has a proven track record of investing in 239 companies from more than 36 countries.</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> 30 September 2024</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Deadline:</span> 12 September 2024</p>
</div>
<h2 class="closedTag">Applications Closed!</h2>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-4">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="mb-4">
<img src="assets/images/inside-page/incubator/tenity.svg" class="incLogo bg-light75 iconD" />
<img src="assets/images/inside-page/incubator/tenity_light.svg" class="incLogo bg-light75 iconL" />
</div>
<div class="card-infoHead mb-3"><span class="fw-600">XDC Accelerator Program</span></div>
<p class="fs-6 mb-0">XDC Accelerator is a 12-week accelerator program aim at helping early stage blockchain startups build and grow in the vibrant XDC Ecosystem.</p>
<div class="dateBox mt-3">
<p class="pDate fs-6 mb-0"><span class="fw-600">Program Starts:</span> 22 July to 11 October 2024</p>
<p class="aDate fs-6 mb-0"><span class="fw-600">Application Open:</span> 13 May to 14 June 2024</p>
</div>
<h2 class="closedTag">Applications Closed!</h2>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Program Ends -->
<!-- Live Network Starts -->
<section class="px-80 bg-lightgray">
<div class="container">
<div class="row tools-guide">
<div class="col-lg-12 col-md-12 mb-5">
<div class="row align-items-center">
<div class="col-lg-10 col-md-9 col-sm-12 mb-4 mb-md-4 mb-lg-0">
<h3 class="title-m text-md-start text-lg-start text-center mb-3">Explore the Live Network</h3>
<div class="subtitle subtitle-s text-center text-md-start text-lg-start">
Discover the Tools and Resources at Your Fingertips. The XDC Chain Network Tools include a variety of tools that can be used to interact with the XDC network.
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-12">
<div class="mt-sm-2 mt-md-0 mt-lg-0">
<div class="d-flex justify-content-center align-items-center">
<div class="btn-block">
<a href="https://xinfin.network" target="_blank">
<button class="btn-blue">xinfin.network</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 mt-2 mb-2">
<a href="https://wallet.xinfin.network/" target="_blank" class="hero-ftr-card tools-guide-block align-items-center h-100 card p-3 bg-light75 br-20 border-0">
<div class="card-info">
<div class="exchangeCard-header align-items-center">
<div class="icon">
<div class=""><img src="assets/images/inside-page/masternode/web-wallet.svg" alt="Web Wallet" /></div>
</div>
<div class="desc">
<div class="card-infoHead">Web Wallet</div>
<p class="exchangeCard-type fs-6 lh-base mb-0">Securely manage your XDC assets with ease.</p>
</div>
</div>
</div>
<div class="hero-ftr-arrow">
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</div>
</a>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 mt-2 mb-2">
<a href="https://xdcscan.io/" target="_blank" class="hero-ftr-card tools-guide-block align-items-center h-100 card p-3 bg-light75 br-20 border-0">
<div class="card-info">
<div class="exchangeCard-header align-items-center">
<div class="icon">
<div class=""><img src="assets/images/inside-page/masternode/block-explorer.svg" alt="Web Wallet" /></div>
</div>
<div class="desc">
<div class="card-infoHead">Block Explorer</div>
<p class="exchangeCard-type fs-6 lh-base mb-0">Gain real-time insights into blockchain transactions and data.</p>
</div>
</div>
</div>
<div class="hero-ftr-arrow">
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</div>
</a>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 mt-2 mb-2">
<a href="https://master.xinfin.network/" target="_blank" class="hero-ftr-card tools-guide-block align-items-center h-100 card p-3 bg-light75 br-20 border-0">
<div class="card-info">
<div class="exchangeCard-header align-items-center">
<div class="icon">
<div class=""><img src="assets/images/inside-page/masternode/transaction-validation.svg" alt="Web Wallet" /></div>
</div>
<div class="desc">
<div class="card-infoHead link-break-out">Become a Masternode/Validator</div>
<p class="exchangeCard-type fs-6 lh-base mb-0">Elevate your involvement and earn impressive returns.</p>
</div>
</div>
</div>
<div class="hero-ftr-arrow">
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- Live Network Ends -->
<!-- Apothem/Testnet Starts -->
<section class="px-80 pt-3 bg-lightgray">
<div class="container">
<div class="row tools-guide">
<div class="col-lg-12 col-md-12 mb-5">
<div class="row align-items-center">
<div class="col-lg-10 col-md-9 col-sm-12 mb-4 mb-md-4 mb-lg-0">
<h3 class="title-m text-md-start text-lg-start text-center mb-3">Dive into Apothem/Testnet</h3>
<div class="subtitle subtitle-s text-center text-md-start text-lg-start">Unlock the Potential of Apothem/Testnet with XDC Chain Network Tools that can be used to interact with the XDC network.</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-12">
<div class="mt-sm-2 mt-md-0 mt-lg-0">
<div class="d-flex justify-content-center align-items-center">
<div class="btn-block">
<a href="https://apothem.network" target="_blank">
<button class="btn-blue">apothem.network</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 mt-2 mb-2">
<a href="https://apothem.network/#getTestXDC" target="_blank" class="hero-ftr-card tools-guide-block align-items-center h-100 card p-3 bg-light75 br-20 border-0">
<div class="card-info">
<div class="exchangeCard-header align-items-center">
<div class="icon">
<div class=""><img src="assets/images/inside-page/masternode/faucet.svg" alt="Web Wallet" /></div>
</div>
<div class="desc">
<div class="card-infoHead">Faucet</div>
<p class="exchangeCard-type fs-6 lh-base mb-0">Access test XDC to prepare for financial processes.</p>
</div>
</div>
</div>
<div class="hero-ftr-arrow">
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</div>
</a>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 mt-2 mb-2">
<a href="https://apothem.xdcscan.io/" target="_blank" class="hero-ftr-card tools-guide-block align-items-center h-100 card p-3 bg-light75 br-20 border-0">
<div class="card-info">
<div class="exchangeCard-header align-items-center">
<div class="icon">
<div class=""><img src="assets/images/inside-page/masternode/block-explorer.svg" alt="Web Wallet" /></div>
</div>
<div class="desc">
<div class="card-infoHead">Block Explorer</div>
<p class="exchangeCard-type fs-6 lh-base mb-0">Gain real-time insights into blockchain transactions and data.</p>
</div>
</div>
</div>
<div class="hero-ftr-arrow">
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</div>
</a>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 mt-2 mb-2">
<a href="https://master.xinfin.network/" target="_blank" class="hero-ftr-card tools-guide-block align-items-center h-100 card p-3 bg-light75 br-20 border-0">
<div class="card-info">
<div class="exchangeCard-header align-items-center">
<div class="icon">
<div class=""><img src="assets/images/inside-page/masternode/transaction-validation.svg" alt="Web Wallet" /></div>
</div>
<div class="desc">
<div class="card-infoHead link-break-out">Become a Masternode/Validator</div>
<p class="exchangeCard-type fs-6 lh-base mb-0">Elevate your involvement and earn impressive returns.</p>
</div>
</div>
</div>
<div class="hero-ftr-arrow">
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- Apothem/Testnet Ends -->
<!-- Seamless Integration Starts -->
<section class="px-80">
<div class="container">
<div class="row">
<div class="col-lg-10 offset-lg-1 mb-5">
<h3 class="title-m text-center">Integrate with XDC MainNet Chain</h3>
<div class="subtitle subtitle-s text-center">
Seamless Integration for Tech Enthusiasts : Integrating with the XDC Network is a breeze for tech-savvy individuals, as we've forked out of go-ethereum. Here are the essential integration components:
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-4 mt-2 mb-2">
<a href="https://www.npmjs.com/package/xdc-connect" target="_blank">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="card-infoHead mb-3">XDC Connect</div>
<p class="fs-6 mb-0">Connect your application to major XDC wallet providers, hardware, and software, and manage transactions effortlessly.</p>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 mt-2 mb-2">
<a href="https://www.npmjs.com/package/xdc3" target="_blank">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="card-infoHead mb-3">XDC3</div>
<p class="fs-6 mb-0">The XinFin JavaScript API seamlessly interfaces with the Generic JSON RPC spec.</p>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 mt-2 mb-2">
<a href="https://github.com/XinFinOrg/XDPoSChain" target="_blank">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="card-infoHead mb-3">GitHub</div>
<p class="fs-6 mb-0">Access the source code of XDPoSChain on GitHub.</p>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 mt-2 mb-2">
<a href="https://github.com/xinfinorg/XinFin-Node" target="_blank">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="card-infoHead mb-3">XinFin Docker Integration</div>
<p class="fs-6 mb-0">Get the integration code at XinFin-Node.</p>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 mt-2 mb-2">
<a href="exchange-listing-resource">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="card-infoHead mb-3">Integration Code</div>
<p class="fs-6 mb-0">Find all the necessary integration resources at Exchange Listing Resource.</p>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 mt-2 mb-2">
<a href="https://howto.xinfin.org/general/networks/" target="_blank">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info">
<div class="card-infoHead mb-3">XinFin Network</div>
<p class="fs-6 mb-0">Dive deeper into the network at XinFin Network</p>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- Seamless Integration Ends -->
<!-- RPC Endpoint Starts -->
<section class="px-80 bg-lightgray">
<div class="container">
<div class="row">
<div class="col-lg-10 offset-lg-1 mb-5">
<h3 class="title-m text-center">RPC Endpoint</h3>
<div class="subtitle subtitle-s text-center">Obtain the RPC Endpoint for XDC Network</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-light75 br-20 border-0">
<div class="row">
<div class="card-infoHead mb-3">XDC MainNet</div>
<div class="col-xl-6 col-lg-12 mb-5 mb-xl-0">
<div class="card-info">
<div class="fs-6 card-infoHead mb-2">RPC</div>
<p class="fs-6 mb-2"><a href="https://rpc.xinfin.network" target="_blank">https://rpc.xinfin.network</a></p>
<p class="fs-6 mb-2"><a href="https://erpc.xinfin.network" target="_blank">https://erpc.xinfin.network</a></p>
<p class="fs-6 mb-2"><a href="https://arpc.xinfin.network" target="_blank">https://arpc.xinfin.network</a></p>
<p class="fs-6 mb-2"><a href="https://earpc.xinfin.network" target="_blank">https://earpc.xinfin.network</a></p>
<p class="fs-6 mb-0"><a href="https://xdc.public-rpc.com/" target="_blank">https://xdc.public-rpc.com/</a></p>
</div>
</div>
<div class="col-xl-6 col-lg-12 col-md-12">
<div class="card-info">
<div class="fs-6 card-infoHead mb-2">WEB SOCKET</div>
<ul class="listStyle fs-6">
<li>wss://ws.xinfin.network</li>
<li>wss://ews.xinfin.network</li>
<li>wss://aws.xinfin.network</li>
<li>wss://eaws.xinfin.network</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-light75 br-20 border-0">
<div class="row">
<div class="card-infoHead mb-3">XDC Apothem Network</div>
<div class="col-xl-6 col-lg-12 mb-5 mb-xl-0">
<div class="card-info">
<div class="fs-6 card-infoHead mb-2">RPC</div>
<p class="fs-6 mb-2"><a href="https://rpc.apothem.network" target="_blank">https://rpc.apothem.network</a></p>
<p class="fs-6 mb-2"><a href="https://erpc.apothem.network" target="_blank">https://erpc.apothem.network</a></p>
<p class="fs-6 mb-0"><a href="https://arpc.apothem.network" target="_blank">https://arpc.apothem.network</a></p>
</div>
</div>
<div class="col-xl-6 col-lg-12">
<div class="card-info">
<div class="fs-6 card-infoHead mb-2">WEB SOCKET</div>
<ul class="listStyle fs-6">
<li>wss://ws.apothem.network</li>
<li>wss://ews.apothem.network</li>
<li>wss://aws.apothem.network</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- RPC Endpoint Ends -->
<!-- Other Tools Starts -->
<section class="px-80 pt-5">
<div class="container">
<div class="row align-items-center pb-5">
<nav>
<div class="nav nav-pills transparant justify-content-center mb-3" id="nav-pills" role="tablist">
<button class="nav-link active" id="nav-xdcScan-tab" data-bs-toggle="tab" data-bs-target="#nav-xdcScan" type="button" role="tab" aria-controls="nav-xdcScan" aria-selected="false">XDCScan</button>
<button class="nav-link" id="nav-xdcPay-tab" data-bs-toggle="tab" data-bs-target="#nav-xdcPay" type="button" role="tab" aria-controls="nav-xdcPay" aria-selected="false">XDCPay</button>
<button class="nav-link" id="nav-xdcRemix-tab" data-bs-toggle="tab" data-bs-target="#nav-xdcRemix" type="button" role="tab" aria-controls="nav-xdcRemix" aria-selected="true">XDC Remix</button>
<button class="nav-link" id="nav-xdcFaucet-tab" data-bs-toggle="tab" data-bs-target="#nav-xdcFaucet" type="button" role="tab" aria-controls="nav-xdcFaucet" aria-selected="true">XDC Faucet</button>
</div>
</nav>
<div class="tab-content mt-5" id="nav-tabContent">
<div class="tab-pane fade active show" id="nav-xdcScan" role="tabpanel" aria-labelledby="nav-xdcScan-tab">
<div class="col-lg-12">
<div class="row align-items-center">
<div class="col-xl-6 col-lg-6 mb-5 mb-xl-0 mb-lg-0">
<h3 class="title-m">XDCScan</h3>
<p class="subtitle subtitle-s fw-600">Unveil the Blockchain Insights.</p>
<p class="subtitle subtitle-s">XDCScan is your dedicated Block Explorer and Public API for XDC Network, empowering you with insights into this decentralized smart contracts platform.</p>
<div class="btn-block d-block mt-4">
<a href="https://xdcscan.io/" target="_blank"><button class="btn-blue">XDCScan MainNet</button></a>
<a href="https://explorer.apothem.network/" target="_blank"><button class="btn-transp-bordered">XDCScan TestNet</button></a>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<picture>
<source srcset="assets/images/inside-page/quick-tools-guide/xdcScan.avif" type="image/avif" class="img-fluid br-20" alt="XDCScan">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcScan.webp" type="image/webp" class="img-fluid br-20" alt="XDCScan">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcScan.png" type="image/png" class="img-fluid br-20" alt="XDCScan">
<!-- D: Fallback -->
<img src="assets/images/inside-page/quick-tools-guide/xdcScan.png" class="img-fluid br-20" alt="XDCScan">
</picture>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-xdcPay" role="tabpanel" aria-labelledby="nav-xdcPay-tab">
<div class="col-lg-12">
<div class="row align-items-center">
<div class="col-xl-6 col-lg-6 mb-5 mb-xl-0 mb-lg-0">
<h3 class="title-m">XDCPay</h3>
<p class="subtitle subtitle-s fw-600">Experience the Future of Browsing.</p>
<p class="subtitle subtitle-s">
XDCPay is your gateway to experiencing the distributed web of tomorrow in your browser today. Securely store, send, and receive XDC and XRC20 tokens with XDCPay's self-hosted wallet.
</p>
<div class="btn-block d-block mt-4">
<a href="https://chromewebstore.google.com/detail/xdcpay/dgimfmajflciajjbhbkibdbfmpncbnmj?hl=en" target="_blank"><button class="btn-blue">Download XDCPay</button></a>
<a href="https://docs.xdc.org/xdc-tools/xdc-pay" target="_blank"><button class="btn-transp-bordered">Get Started</button></a>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<picture>
<source srcset="assets/images/inside-page/quick-tools-guide/xdcPay.avif" type="image/avif" class="img-fluid br-20" alt="XDCPay">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcPay.webp" type="image/webp" class="img-fluid br-20" alt="XDCPay">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcPay.png" type="image/png" class="img-fluid br-20" alt="XDCPay">
<!-- D: Fallback -->
<img src="assets/images/inside-page/quick-tools-guide/xdcPay.png" class="img-fluid br-20" alt="XDCPay">
</picture>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-xdcRemix" role="tabpanel" aria-labelledby="nav-xdcRemix-tab">
<div class="col-lg-12">
<div class="row align-items-center">
<div class="col-xl-6 col-lg-6 mb-5 mb-xl-0 mb-lg-0">
<h3 class="title-m">XDC Network Remix</h3>
<p class="subtitle subtitle-s fw-600">Develop with Ease.</p>
<p class="subtitle subtitle-s">
XDC Network Remix, formerly known as Browser Solidity, is your web browser-based Integrated Development Environment (IDE). Write, deploy, and run solidity smart contracts with ease.<!-- Connect XDC Network Remix to your local development blockchain, the TestNet blockchain, or the MainNet blockchain via the XDC Network API.-->
</p>
<div class="btn-block d-block mt-4">
<a href="https://remix.xinfin.network/" target="_blank"><button class="btn-blue">Use Remix</button></a>
<a href="https://docs.xdc.org/xdc-tools/xdc-remix" target="_blank"><button class="btn-transp-bordered">Get Started</button></a>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<picture>
<source srcset="assets/images/inside-page/quick-tools-guide/xdcsRemix.avif" type="image/avif" class="img-fluid br-20" alt="XDC Network Remix">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcsRemix.webp" type="image/webp" class="img-fluid br-20" alt="XDC Network Remix">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcsRemix.png" type="image/png" class="img-fluid br-20" alt="XDC Network Remix">
<!-- D: Fallback -->
<img src="assets/images/inside-page/quick-tools-guide/xdcsRemix.png" class="img-fluid br-20" alt="XDC Network Remix">
</picture>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-xdcFaucet" role="tabpanel" aria-labelledby="nav-xdcFaucet-tab">
<div class="col-lg-12">
<div class="row align-items-center">
<div class="col-xl-6 col-lg-6 mb-5 mb-xl-0 mb-lg-0">
<h3 class="title-m">XDC Network Faucet</h3>
<p class="subtitle subtitle-s fw-600">Prepare for financial processes by accessing test currency.</p>
<p class="subtitle subtitle-s">
The XDC Apothem Network Faucet is a valuable resource for developers and users which allows you to request free XDC testnet tokens, which can be used to test applications and smart contracts on the XDC
Apothem Network.
</p>
<div class="btn-block d-block mt-4">
<a href="https://www.apothem.network/" target="_blank"><button class="btn-blue">Apothem Network</button></a>
<a href="https://www.apothem.network/#getTestXDC" target="_blank"><button class="btn-transp-bordered">Get Test XDC</button></a>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<picture>
<source srcset="assets/images/inside-page/quick-tools-guide/xdcFaucet.avif" type="image/avif" class="img-fluid br-20" alt="XDC Faucet">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcFaucet.webp" type="image/webp" class="img-fluid br-20" alt="XDC Faucet">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcFaucet.png" type="image/png" class="img-fluid br-20" alt="XDC Faucet">
<!-- D: Fallback -->
<img src="assets/images/inside-page/quick-tools-guide/xdcFaucet.png" class="img-fluid br-20" alt="XDC Faucet">
</picture>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center mt-1">
<div class="col-xl-7 col-lg-8 mb-4 mt-5 mb-4 mt-5">
<h3 class="title-m text-center">XDC Network Assessment and Chain Analysis</h3>
</div>
</div>
<div class="row justify-content-center">
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info text-center">
<img src="assets/images/inside-page/exchange-listing/slowmist-light.svg" class="center logoFs img-fluid iconL" />
<img src="assets/images/inside-page/exchange-listing/slowmist.svg" class="center logoFs img-fluid iconD" />
<div class="card-infoHead mt-5 mb-1">XDC Network Audit Report</div>
<p class="fs-7 mb-0">by SlowMist</p>
<a href="docs/reports/xdposchain-security-audit-report.pdf" target="_blank" class="btn socialHead-button mt-auto">
View Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info text-center">
<img src="assets/images/inside-page/exchange-listing/certik-light.svg" class="center logoFs img-fluid iconL" />
<img src="assets/images/inside-page/exchange-listing/certik.svg" class="center logoFs img-fluid iconD" />
<div class="card-infoHead mt-5 mb-1">XDC Network Audit Report</div>
<p class="fs-7 mb-0">by Certik</p>
<a href="https://skynet.certik.com/projects/xdc-network?auditId=XDC%20Network%20-%20Audit%201#code-security" target="_blank" class="btn socialHead-button mt-auto">
View Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info text-center">
<img src="assets/images/inside-page/exchange-listing/big-light.svg" class="center logoFs img-fluid iconL" />
<img src="assets/images/inside-page/exchange-listing/big.svg" class="center logoFs img-fluid iconD" />
<div class="card-infoHead mt-5 mb-1">XDC Network Chain Analysis</div>
<p class="fs-7 mb-0">By Blockchain Intelligence Group</p>
<a href="https://blockchaingroup.io/announcements/blockchain-intelligence-group-to-support-xinfin-xdc-on-its-crypto-investigation-platform/" target="_blank" class="btn socialHead-button mt-auto">
View Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info text-center">
<img src="assets/images/inside-page/exchange-listing/elliptic-light.svg" class="center logoFs img-fluid iconL" />
<img src="assets/images/inside-page/exchange-listing/elliptic.svg" class="center logoFs img-fluid iconD" />
<div class="card-infoHead mt-5 mb-1">XDC Network Chain Analysis</div>
<p class="fs-7 mb-0">By Elliptic</p>
<a href="https://www.elliptic.co/" target="_blank" class="btn socialHead-button mt-auto">
Visit Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info text-center">
<img src="assets/images/inside-page/exchange-listing/bcas-light.svg" class="center logoFs img-fluid iconL" />
<img src="assets/images/inside-page/exchange-listing/bcas.svg" class="center logoFs img-fluid iconD" />
<div class="card-infoHead mt-5 mb-1">XDC Network Legal Opinion Korea</div>
<p class="fs-7 mb-0">By BCAS</p>
<a href="docs/reports/legal-opinion-liechtenstein-bcas-xdc-14jan2021.pdf" target="_blank" class="btn socialHead-button mt-auto">
View Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info text-center">
<img src="assets/images/inside-page/blockchain-analytics-tools/miller-thomson-light.svg" class="center logoFs img-fluid iconL" />
<img src="assets/images/inside-page/blockchain-analytics-tools/miller-thomson.svg" class="center logoFs img-fluid iconD" />
<div class="card-infoHead mt-5 mb-1">XDC Network Legal Opinion Canada</div>
<p class="fs-7 mb-0">By MILLER THOMSON</p>
<a href="docs/reports/xdc-network-opinion-letter.pdf" target="_blank" class="btn socialHead-button mt-auto">
View Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info text-center">
<img src="assets/images/inside-page/blockchain-analytics-tools/mcdermott-will-&-emery.svg" class="center logoFs img-fluid" />
<div class="card-infoHead mt-5 mb-1">XDC Network Legal Opinion USA</div>
<p class="fs-7 mb-0">By McDermott Will & Emery</p>
<a href="docs/reports/xdc-network-regulatory-risk-memo-mwe-2022-jul-15-usa.pdf" target="_blank" class="btn socialHead-button mt-auto">
View Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6 col-sm-6 mt-2 mb-2">
<div class="h-100 card p-4 bg-lightgray br-20 border-0">
<div class="card-info text-center">
<img src="assets/images/inside-page/blockchain-analytics-tools/law-firm-bergt-&-partners-ltd-light.svg" class="center logoFs img-fluid iconL" />
<img src="assets/images/inside-page/blockchain-analytics-tools/law-firm-bergt-&-partners-ltd.svg" class="center logoFs img-fluid iconD" />
<div class="card-infoHead mt-5 mb-1">XDC Network Legal Opinion Europe</div>
<p class="fs-7 mb-0">By Law Firm Bergt & Partners Ltd.</p>
<a href="docs/reports/xdc-token-2024-03-11-europe.pdf" target="_blank" class="btn socialHead-button mt-auto">
View Now
<svg class="w-6 h-6 icon ml-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- RPC Endpoint Starts -->
<section class="px-80 bg-lightgray">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-6 col-lg-6 mb-5 mb-xl-0 mb-lg-0">
<h3 class="title-m">XDC Index — Vinter</h3>
<p class="subtitle subtitle-s fw-600">XDC Regulated Index Provider</p>
<p class="subtitle subtitle-s">
The Vinter Xinfin XDC Index is a single asset index, measuring the price of XDC in USD. The index is developed to provide a rule-based and transparent way to capture the price of one XDC. The administration and
calculation are compliant with the IOSCO principles and the EU Benchmarks Regulation. VNXDC uses a Vinter reference rate for the XDC price calculation.
</p>
<div class="btn-block d-block mt-4">
<a href="https://docs.kaiko.com/formerly-vinter-indices/api/multi-assets-indexes/active-multi-assets" target="_blank"><button class="btn-blue">Visit Now</button></a>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<picture>
<source srcset="assets/images/inside-page/quick-tools-guide/xdcIndexVinter.avif" type="image/avif" class="img-fluid br-20" alt="XDC Index — Vinter">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcIndexVinter.webp" type="image/webp" class="img-fluid br-20" alt="XDC Index — Vinter">
<source srcset="assets/images/inside-page/quick-tools-guide/xdcIndexVinter.png" type="image/png" class="img-fluid br-20" alt="XDC Index — Vinter">
<!-- D: Fallback -->
<img src="assets/images/inside-page/quick-tools-guide/xdcIndexVinter.png" class="img-fluid br-20" alt="XDC Index — Vinter">
</picture>
</div>
</div>
</div>
</section>
<!-- RPC Endpoint Ends -->
<!-- Need More Help Starts -->
<section class="px-80">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2">
<h3 class="title-m text-center">Need More Help?</h3>
<div class="subtitle subtitle-s text-center">For technical inquiries or integration assistance, join the XDC Network Developer Forum, access XDC documents, or join Telegram's Developers community.</div>
</div>
</div>
<div class="row mb-2">
<div class="col-lg-12 text-center">
<div class="btn-block multi mt-5">
<a href="https://www.xdc.dev/" target="_blank">
<button class="btn-blue"><i class="fas fa-comments me-1"></i> XDC Forum</button>
</a>
<a href="https://t.me/xinfintech" target="_blank">
<button class="btn-blue"><i class="fa fa-paper-plane me-1"></i> XDC Dev Community</button>
</a>
<a href="https://docs.xdc.network" target="_blank">
<button class="btn-blue"><i class="fa fa-book me-1"></i> XDC Documents</button>
</a>
<a href="https://coderun.ai/" target="_blank">
<button class="btn-blue">
<i class="fa me-1">
<svg class="svg-icn" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 39 39">
<path
fill="#FFFFFF"
d="M32,0H7.1C3.2,0,0,3.2,0,7.1V32C0,35.9,3.2,39,7.1,39H32c3.9,0,7.1-3.2,7.1-7.1V7.1C39,3.2,35.9,0,32,0zM7.4,16.3l6.5-7.1h6.9l-6.6,7.1l6.6,7.1h-6.9L7.4,16.3z M26.3,30.2h-6.9l6.6-7.1l-6.6-7.1h6.9l6.5,7.1L26.3,30.2z"
/>
</svg>
</i>
AI based Technical Support
</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Need More Help Ends -->
<?php include('inc/footer.php') ?>