forked from XinFinOrg/Official-XinFinOrg
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
1080 lines (1002 loc) · 71.3 KB
/
Copy pathindex.php
File metadata and controls
1080 lines (1002 loc) · 71.3 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
<?php
$title = "Enterprise Ready Hybrid Blockchain";
$desc = "XinFin is a global open source Hybrid Blockchain protocol/platform with independent community contributors comprising of long term backers, network utility and tech developers that help build various enterprise use cases.";
include('inc/header.php') ?>
<section id="homebanner">
<!-- <div id="particle-canvas" ></div> -->
<div class="container">
<div class="bannertext">
<div class="row align-items-center">
<div class="col-md-7">
<div class="banner-content-box">
<div style="display:block;position:relative;">
<div>
<h1 style="text-align:left;" class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">Enterprise Ready Hybrid Blockchain For Global Trade and Finance</h1>
<p style="text-align: left;text-transform:none;" class="wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.7s">Combining the power of Public & Private blockchains with Interoperable Smart Contracts</p>
<div class="btn-block mt-4 mb-1 playTriggerBlock wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="setup-masternode"><button class="btn-hover color-1">JOIN AS NETWORK NODE</button></a>
<a href="https://play.google.com/store/apps/details?id=com.xdcwallet" target="_blank"><button class="btn-hover color-3">Open Source Wallet</button></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5">
<div class="video-frame">
<div class="video-container">
<iframe width="100%" height="auto" src="https://www.youtube.com/embed/K-tHZkV6zAs" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="hybrid-state" class="home-page-sections small-padd bg-light-grey">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6 col-md-push-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h3>Decentralized, Hybrid, Interoperable & Liquid Network</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>eXchange inFinite (XinFin), is a Delegated Proof of Stake Consensus network (XDPoS), enabling Hybrid Relay Bridges, Instant Block Finality and Interoperability with ISO20022 messaging standards, making XinFin's Hybrid Architecture Developer friendly.</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="https://chrome.google.com/webstore/detail/xinpay/bocpokimicclpaiekenaeelehdjllofo" target="_blank"><button class="btn-hover color-1">Download XinPay</button></a>
<a href="https://docs.xinfin.org/"><button class="btn-hover color-3">Developer Resource</button></a>
</div>
</div>
</div>
<div class="col-md-6 col-md-pull-6 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.7s">
<img src="assets/images/home/standardised-dapps.gif" class="img-responsive" width="100%" alt="Hybrid State">
</div>
</div>
</div>
</div>
</section>
<section id="comparison-chart" class="home-page-sections small-padd">
<div class="comparison">
<div class="comparison-wrapper">
<div class="comparison-left">
<div class="comparison-content">
<h2 class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">XinFin XDPoS Hybrid Network, Powered by XDC Protocol</h2>
<div class="comparison-content-body mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>Interoperable Blockchain Network for <a href="https://www.tradefinex.org/" target="_blank" style="color:#25aae1;font-weight:600;">Global Trade & Finance</a> which enables Digitization, Tokenization and instant settlement of trade transactions, increases efficiency and reduces reliance on complex FX infrastructures, allowing for increased flexibility in liquidity management for financial institutions.</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="setup-masternode">
<button class="btn-hover color-1">JOIN AS NETWORK NODE</button>
</a>
</div>
</div>
</div>
<div class="comparison-right">
<div class="compare_btc_eth_xdc">
<table>
<thead>
<tr>
<th class="tl tl2"></th>
<th class="first"><span>1ST</span> GENERATION</th>
<th class="second"><span>2ND</span> GENERATION</th>
<th class="third"><span>3RD</span> GENERATION</th>
</tr>
<!--<tr>
<th class="tl"></th>
<th class="compare-heading">BTC</th>
<th class="compare-heading">ETH</th>
<th class="compare-heading">XDC</th>
</tr>-->
<tr>
<th class="criteria-head">COMPARISON CRITERIA</th>
<th class="criteria-info">
<div class="criteria-logo"><img src="assets/images/comparison/bitcoin_logo.png"></div>
<div class="criteria-logo_desc"><span class="hide-mobile">Bitcoin</span> BTC</div>
</th>
<th class="criteria-info">
<div class="criteria-logo"><img src="assets/images/comparison/ethereum_logo.png"></div>
<div class="criteria-logo_desc"><span class="hide-mobile">Ethereum</span> ETH</div>
</th>
<th class="criteria-info bg_xdc">
<div class="criteria-logo"><img src="assets/images/brand-assets/xdc-icon.png"></div>
<div class="criteria-logo_desc"><span class="hide-mobile">XinFin</span> XDC</div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td class="description-head" colspan="3">TRANSACTIONS PER SECOND</td>
</tr>
<tr class="compare-row">
<td class="description-head">TRANSACTIONS PER SECOND</td>
<td><span class="description-details"><strong>3-6</strong> TPS</span></td>
<td><span class="description-details"><strong>12-16</strong> TPS</span></td>
<td class="bg_xdc"><span class="description-details"><strong>2000+</strong> TPS</span></td>
</tr>
<tr>
<td> </td>
<td class="description-head" colspan="3">AVERAGE FEE</td>
</tr>
<tr class="compare-row">
<td class="description-head">AVERAGE FEE</td>
<td><span class="description-details"><strong>$15</strong> USD</span></td>
<td><span class="description-details"><strong>$10</strong> USD</span></td>
<td class="bg_xdc"><span class="description-details"><strong>$0.00001</strong> USD</span></td>
</tr>
<tr>
<td> </td>
<td class="description-head" colspan="3">TRANSACTION CONFIRMATION</td>
</tr>
<tr class="compare-row">
<td class="description-head">TRANSACTION CONFIRMATION</td>
<td><span class="description-details"><strong>10-60</strong> MINUTES</span></td>
<td><span class="description-details"><strong>10-20</strong> SECONDS</span></td>
<td class="bg_xdc"><span class="description-details"><strong>2</strong> SECONDS (w/finality)</span></td>
</tr>
<tr>
<td> </td>
<td class="description-head" colspan="3">SMART CONTRACT SUPPORT</td>
</tr>
<tr class="compare-row">
<td class="description-head">SMART CONTRACT SUPPORT</td>
<td><span class="description-details"><strong>NO</strong></span></td>
<td><span class="description-details"><strong>YES</strong></span></td>
<td class="bg_xdc"><span class="description-details"><strong>YES</strong></span></td>
</tr>
<tr>
<td> </td>
<td class="description-head" colspan="3">ENERGY CONSUMPTION</td>
</tr>
<tr class="compare-row">
<td class="description-head">ENERGY CONSUMPTION</td>
<td><span class="description-details"><strong>71.12</strong> TWh</span></td>
<td><span class="description-details"><strong>20.61</strong> TWh</span></td>
<td class="bg_xdc"><span class="description-details"><strong>0.0000074</strong> TWh</span></td>
</tr>
</tbody>
</table>
</div>
<!--<div class="comparison-chart">
<div class="comparison-chart-wrapper">
<div class="spacer comparison-column-0 comparison-row-1"></div>
<div class="comparison-divider comparison-divider-1 comparison-column-0 comparison-row-2"><span><p>Transactions<br>per second</p></span></div>
<div class="comparison-divider comparison-divider-2 comparison-column-0 comparison-row-3"><span><p>average<br>fee</p></span></div>
<div class="comparison-divider comparison-divider-3 comparison-column-0 comparison-row-4"><span><p>transaction<br>confirmation</p></span></div>
<div class="comparison-column-1 comparison-row-1">
<div class="comparison-column-title">
<p><strong>1st</strong>
<br>Generation</p>
</div>
<img src="assets/images/bitcoin_logo.png">
<div class="comparison-subtitle">
<p>Bitcoin</p>
</div>
<div class="comparison-nickname">
<p>BTC</p>
</div>
</div>
<div class="comparison-column-1 comparison-row-2">
<p>3+</p>
<span><p>TPS</p></span>
</div>
<div class="comparison-column-1 comparison-row-3">
<p>$0.20</p>
<span><p>usd</p></span>
</div>
<div class="comparison-column-1 comparison-row-4">
<p>10-60</p>
<span><p>minutes</p></span>
</div>
<div class="comparison-column-2 comparison-row-1">
<div class="comparison-column-title">
<p><strong>2nd</strong>
<br>Generation</p>
</div>
<img src="assets/images/ethereum_logo.png">
<div class="comparison-subtitle">
<p>Ethereum</p>
</div>
<div class="comparison-nickname">
<p>ETH</p>
</div>
</div>
<div class="comparison-column-2 comparison-row-2">
<p>12+</p>
<span><p>TPS</p></span>
</div>
<div class="comparison-column-2 comparison-row-3">
<p>$0.13</p>
<span><p>usd</p></span>
</div>
<div class="comparison-column-2 comparison-row-4">
<p>10-20</p>
<span><p>seconds</p></span>
</div>
<div class="comparison-column-3 comparison-row-1">
<div class="comparison-column-title">
<p><strong>3rd</strong>
<br><strong>Generation</strong></p>
</div>
<img src="assets/images/brand-assets/xdc-icon.png">
<div class="comparison-subtitle">
<p>XinFin</p>
</div>
<div class="comparison-nickname">
<p>XDC</p>
</div>
</div>
<div class="comparison-column-3 comparison-row-2">
<p>2,000+</p>
<span><p>TPS</p></span>
</div>
<div class="comparison-column-3 comparison-row-3">
<p>$0.0001</p>
<span><p>usd</p></span>
</div>
<div class="comparison-column-3 comparison-row-4">
<p>2</p>
<span><p>Seconds</p>
<p>(w/finality)<br></p></span>
</div>
</div>
</div>-->
</div>
</div>
</div>
</section>
<section id="xinfin-public-dpos-consensus" class="home-page-sections small-padd">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.7s">
<img src="assets/images/home/xinfin-public-dpos-consensus.gif" class="img-responsive" width="100%" alt="XinFin Public XSDPoS Consensus">
</div>
<div class="col-md-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<!--<h1 class="text-transform-none" style="text-align:left;">XinFin Public DPOS Consensus</h1>-->
<h3>The World's Fastest and Most Energy Efficient Consensus is here!</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>Delegated Proof of Stake (XDPoS) leverages the power of stakeholder approval voting to resolve consensus issues in a fair and democratic way.</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="xinfin-consensus">
<button class="btn-hover color-1">XinFin Public XDPoS Consensus</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="iso-compatible-messaging" class="home-page-sections small-padd bg-light-grey">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<!--<h1 class="text-transform-none" style="text-align:left;">ISO20022 Compatible Messaging</h1>-->
<h3>ISO 20022 Compatible Messaging for Private and Hybrid State</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>Higher interoperability with legacy systems and other blockchain platforms makes XinFin Protocol (XDC) the language of core banking systems, ERP systems and SWIFT systems and many more.</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="ISO20022">
<button class="btn-hover color-1">Read More</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.7s">
<img src="assets/images/home/iso20022-compatible-messaging.gif" class="img-responsive" width="100%" alt="ISO20022 Compatible Messaging">
</div>
</div>
</div>
</div>
</section>
<section id="xinfin-blockchain-ecosystem-glance" class="home-page-sections small-padd bg-dark-blue">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.7s">
<img src="assets/images/home/HOW-IT-WORKS-ANIMATION.gif" class="img-responsive" width="100%" alt="The XinFin Blockchain Ecosystem At A Glance">
</div>
<div class="col-md-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h3 class="text-transform-none" style="color:#FFFFFF;">The XinFin Blockchain Ecosystem At A Glance</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p style="color:#FFFFFF;" class="mb-2">Host a Private Network, Run Smart Contracts, Explore Wallet and Leverage Cross Chain Interoperability.</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="https://github.com/XinFinorg" target="_blank">
<button class="btn-hover color-1">Explore GitHub</button>
</a>
<a href="https://mycontract.co" target="_blank">
<button class="btn-hover color-3">Create Smart Contract</button>
</a>
<a href="https://xinfin.network" target="_blank">
<button class="btn-hover color-1">Network Status</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="xdc-xdce-utility" class="home-page-sections small-padd bg-light-grey">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<!--<h1 class="text-transform-none" style="text-align:left;">XDC/XDCe Utility</h1>-->
<h3>XDC Utility is available here. Stake XDC & Start Using</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>XinFin Digital Contract (XDC) is the Digital Asset Powering XinFin Network.</p>
<p>Explore Apps, Demo versions, APIs and GitHubs all in one place.</p>
<p>Have your own application? List it!</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="xdc-utility">
<button class="btn-hover color-1">Explore More</button>
</a>
<a href="https://xinfin.network/#webWallet" target="_blank">
<button class="btn-hover color-3">Access XinFin Wallet</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.7s">
<img src="assets/images/home/dia-03-ani.gif" class="img-responsive" width="100%" alt="XDC Utility">
</div>
</div>
</div>
</div>
</section>
<!--<section id="standardised-dapps" class="home-page-sections small-padd bg-grey" style="border-top: 1px solid #b1b1b1;">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.7s">
<img src="assets/images/home/standardised-dapps.gif" class="img-responsive" width="100%" alt="Standardised dApps">
</div>
<div class="col-md-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h3>Don't Develop from Scratch, Standardized dApps for you Check here</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>Get started without any delay with developer-friendly tools and guides.</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="https://docs.xinfin.org/"><button class="btn-hover color-1">Build With XinFin</button></a>
<a href="https://github.com/XinFinOrg/Open-Hackathon" target="_blank"><button class="btn-outline">Online Hackathon</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!--<section id="api-based-access" class="home-page-sections small-padd">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h3>API's For Customers and Use Case Access</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>Open 'plug-and-play' access through API tools. All in the language of core banking systems, ERP systems and SWIFT systems which provides enterprises with a platform to build, deploy and run high-operating dApps on XinFin's Hybrid Blockchain Network.
</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="xdc-utility"><button class="btn-hover color-1">Explore APIs</button></a>
<a href="bounty"><button class="btn-hover color-3">Bounty Program</button></a>
</div>
</div>
</div>
<div class="col-md-6 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.7s">
<img src="assets/images/home/api-based-access.png" class="img-responsive" width="100%" alt="API's For Customers and Use Case Access">
</div>
</div>
</div>
</div>
</section>-->
<section id="setting-up-masterNodes" class="home-page-sections small-padd">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6 col-md-push-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h3>Stake XDC and Setup Masternodes</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<p>Deploying KYC compliant masternodes upon the XDC Protocol makes XinFin's Hybrid Blockchain the most trusted network for institutional adoption.</p>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<a href="setup-masternode">
<button class="btn-hover color-1">Explore Masternode</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-md-pull-6 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.7s">
<img src="assets/images/home/setting-up-masterNodes.gif" class="img-responsive" width="100%" alt="XinFin Network">
</div>
</div>
</div>
</div>
</section>
<section id="wto-icc" class="home-page-sections padd-70">
<div class="action-wrapper">
<div class="container">
<div class="flex-row align-items-center">
<div class="col-md-9 col-sm-8">
<div class="action-text">
<p class="action-subtitle">WTO (World Trade Organization) and ICC (International Chamber of Commerce) talking about TradeFinex & XinFin.</p>
</div>
</div>
<div class="col-md-3 col-sm-4">
<div class="action-btn text-center">
<a href="https://www.tradefinanceglobal.com/blockchain/dlt-download"><button class="btn-hover color-1">DOWNLOAD REPORT</button></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="partners" class="home-page-sections small-padd bg-light-grey">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8 col-md-offset-2">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h1>Partnerships, Associations & Alliances</h1>
</div>
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>Be a part of XinFin's rapidly growing Network.</p>
</div>
</div>
</div>
<div class="row" style="margin-top:20px;">
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.5s">
<a href="https://medium.com/xinfin/copper-co-appointed-by-xinfin-for-institutional-custody-solution-e912601737d3" target="_blank"><img src="assets/images/home/partners/copper-logo.png" alt="Copper" class="img-responsive logoc"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://www.prnewswire.com/news-releases/aix-an-ai-fintech-firm-is-launching-bondsai---the-worlds-first-artificial-intelligence-bond-broker-setting-their-sights-on-disrupting-a-15-trillion-market-300824068.html" target="_blank"><img src="assets/images/home/partners/aix-logo.png" alt="AiX" class="img-responsive logoc"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.7s">
<a href="https://marketplace.r3.com/directory/xinfin-fintech-pte-ltd-a00119" target="_blank"><img src="assets/images/home/partners/r3Marketplace-logo.png" alt="R3 Marketplace" class="img-responsive logoc"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.8s">
<a href="http://new.sotatek.com/en/news/vietnam-based-sotatek-partners-with-xinfin-network" target="_blank"><img src="assets/images/home/partners/sotatek-logo.png" alt="Sotatek" class="img-responsive logoc"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="https://www.adgm.com/mediacentre/press-releases/abu-dhabi-global-market-admits-3rd-reglab-cohort-with-more-uae-fintech-firms/" target="_blank"><img src="assets/images/home/partners/adgm-logo.png" alt="ADGM" class="img-responsive logoc"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1s">
<a href="https://www.circle.com/blog/usdc-ecosystem-spotlight-idcm-crypto-exchange-along-with-alphawallet-changenow-loopring-salt-platform-and-xinfin-the-latest-companies-to-support-usdc" target="_blank"><img src="assets/images/home/partners/circle-logo.png" alt="Circle" class="img-responsive logoc"></a>
</div>
<div class="col-md-offset-1 col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.1s">
<a href="https://www.tp.edu.sg/about-tp/media-centre/press-releases/tp-infotech-day-2018" target="_blank"><img src="assets/images/home/partners/temasek-logo.png" alt="Temasek" class="img-responsive logoc"></a>
</div>
<!--<div class="col-md-offset-1 col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1s">
<a href="https://www.prweb.com/releases/2018/01/prweb15141717.htm" target="_blank"><img src="assets/images/home/partners/enterprise-logo.png" alt="Enterprise" class="img-responsive logoc"></a>
</div>-->
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.2s">
<a href="https://www.ramco.com/newsroom/press/releases/feb-18/ramco-partners-with-xinfin-to-provide-blockchain-solutions/" target="_blank"><img src="assets/images/home/partners/ramco-logo.png" alt="Ramco" class="img-responsive logoc"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.3s">
<img src="assets/images/home/partners/indsoft-logo.png" alt="indsoft" class="img-responsive logoc">
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.4s">
<a href="http://www.asianage.com/technology/in-other-news/170118/xinfin-unveils-blockchain-powered-tradefinex-platform-with-indias-assocham.html" target="_blank"><img src="assets/images/home/partners/assocham-logo.png" alt="Assocham" class="img-responsive logoc"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.5s">
<a href="https://medium.com/xinfin/karan-bharadwaj-cto-xinfin-speaks-at-blockchain-and-businesses-event-organized-by-nanyang-29f780daf989
" target="_blank"><img src="assets/images/home/partners/nanyang-logo.png" alt="Nanyang" class="img-responsive logoc"></a>
</div>
</div>
<div class="clear"></div>
</div>
</section>
<section id="featured-in">
<div class="container">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h1>Featured In</h1>
</div>
<div style="margin-top:30px;">
<div class="row">
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://www.coindesk.com/r3-corda-now-has-a-bridge-to-public-blockchains-with-arrival-of-ethereum-based-xdc" target="_blank"><img src="assets/images/home/media/coindesk-logo.png" alt="Coindesk" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://newsbit.nl/xinfin-roadmap-voor-2021-wallet-custodian-integratie-xdc-snelle-adoptie/" target="_blank"><img src="assets/images/home/media/newsbit-logo.png" alt="Newsbit" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://thecurrencyanalytics.com/19326/xinfins-mycontract-co-expands-chainlinks-oracles-beyond-trade-finance/" target="_blank"><img src="assets/images/home/media/the-currency-analytics-logo.png" alt="The Currency Analytics" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://hackernoon.com/u/XinFin_Official" target="_blank"><img src="assets/images/home/media/hackernoon.png" alt="Hacker Noon" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://www.marketwatch.com/press-release/xinfin-network-secures-ex-swift-corporate-trade-head-andre-casterman-as-an-advisor-2020-07-16" target="_blank"><img src="assets/images/home/media/marketwatch-logo.png" alt="MarketWatch" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://in.finance.yahoo.com/news/buyucoin-becomes-first-indian-cryptocurrency-053950377.html" target="_blank"><img src="assets/images/home/media/in-yahoofinance-logo.png" alt="Yahoo Finance" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="http://forbes.com/sites/lukefitzpatrick/2020/05/24/spending-on-blockchain-solutions-could-surpass-16-billion-by-2023/" target="_blank"><img src="assets/images/home/media/forbes-logo.png" alt="Forbes" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://finance.yahoo.com/news/xinfin-appoints-copper-institutional-crypto-200004056.html" target="_blank"><img src="assets/images/home/media/yahoofinance-logo.png" alt="Yahoo Finance" class="img-responsive margin-auto-lr"></a>
</div>
<!--<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.5s">
<a href="https://blockfolio.com/coin/XDCE" target="_blank"><img src="assets/images/home/media/blockfolio-logo.png" alt="Blockfolio" class="img-responsive margin-auto-lr"></a>
</div>-->
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.5s">
<a href="https://www.techradar.com/news/have-you-heard-of-the-xinfin-hybrid-blockchain-heres-why-you-should-get-involved" target="_blank"><img src="assets/images/home/media/techradar-logo.png" alt="TechRadar" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.6s">
<a href="https://finance.yahoo.com/news/xinfin-org-launches-first-kind-200000968.html" target="_blank"><img src="assets/images/home/media/yahoofinance-logo.png" alt="Yahoo Finance" class="img-responsive margin-auto-lr"></a>
</div>
<!--<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.7s">
<a href="https://globalcoinreport.com/xinfin-xdce-cryptocurrency-surges/" target="_blank"><img src="assets/images/home/media/globalcoin-logo.png" alt="GlobalCoinReport" class="img-responsive margin-auto-lr"></a>
</div>-->
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.8s">
<a href="https://e27.co/tradefinex-aims-minimise-global-infra-deficit-blockchain-powered-p2p-marketplace-20171219/" target="_blank"><img src="assets/images/home/media/e27-logo.png" alt="e27" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="https://www.livebitcoinnews.com/xinfin-unveils-xdc-hybrid-blockchain-protocol-opens-utility-token-sale/" target="_blank"><img src="assets/images/home/media/livebitcoinnews-logo.png" alt="LivebitcoinNews" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1s">
<a href="http://www.digitaljournal.com/pr/3871242" target="_blank"><img src="assets/images/home/media/Digital-Journal-logo.png" alt="DigitalJournal" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.1s">
<a href="https://cointelegraph.com/press-releases/bitcoins-roger-ver-and-mate-tokay-join-xinfinio-advisory-board" target="_blank"><img src="assets/images/home/media/cointelegraph-logo.png" alt="CoinTelegraph" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.2s">
<a href="https://icobench.com/thebench-post/21-how-can-stock-exchange-industry-benefit-from-using-blockchain-technology" target="_blank"><img src="assets/images/home/media/icobench-logo.png" alt="ICOBench" class="img-responsive margin-auto-lr"></a>
</div>
<!--<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.3s">
<a href="https://bitcoinist.com/xinfin-ties-up-with-koinok-com-gets-its-utility-token-xdce-listed-on-one-of-indias-top-exchange/" target="_blank"><img src="assets/images/home/media/bitcoinist-logo.png" alt="Bitcoinist" class="img-responsive margin-auto-lr"></a>
</div>-->
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.4s">
<a href="https://news.bitcoin.com/pr-former-head-of-strategy-operations-consulting-at-kpmg-joins-xinfin-platform/" target="_blank"><img src="assets/images/home/media/bitcoincom-logo.png" alt="Bitcoin.com" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.5s">
<a href="https://ambcrypto.com/tradefinex-launches-an-updated-website-supporting-financial-instruments/" target="_blank"><img src="assets/images/home/media/ambcrypto-logo.png" alt="AMBCrypto" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.6s">
<a href="https://www.bbc.com/marathi/india-42566173?ocid=wsmarathi.chat-apps.in-app-msg.whatsapp.trial.link1_.auin/" target="_blank"><img src="assets/images/home/media/bbcnews-logo.png" alt="BBC News" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.7s">
<a href="https://in.reuters.com/article/brief-indias-ramco-systems-xinfin-to-dev/brief-indias-ramco-systems-xinfin-to-develop-hybrid-blockchain-solution-for-enterprises-idINFWN1Q31FM" target="_blank"><img src="assets/images/home/media/reuters-logo.png" alt="Reuters" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.8s">
<a href="https://www.newsbtc.com/2018/06/28/xinfin-opens-its-blockchain-engineering-and-business-development-lab-at-university-of-california/" target="_blank"><img src="assets/images/home/media/newsbtc-logo.png" alt="NewsBTC" class="img-responsive margin-auto-lr"></a>
</div>
<!--<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="1.9s">
<a href="https://www.cryptassets.com/pg/newsfeeds/rss_source/item/62461/xinfin-network-xdce-makes-a-major-leap-in-the-us-is-china-next" target="_blank"><img src="assets/images/home/media/cryptassets-logo.png" alt="CryptAssets" class="img-responsive margin-auto-lr"></a>
</div>-->
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="2s">
<a href="https://www.entrepreneur.com/article/317193" target="_blank"><img src="assets/images/home/media/entrepreneurindia-logo.png" alt="Entrepreneur" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="2.1s">
<a href="https://www.ccn.com/xinfin-botswana-government-discuss-blockchain-solution-infrastructure-deficit/" target="_blank"><img src="assets/images/home/media/ccn-logo.png" alt="CCN" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="2.2s">
<a href="https://www.prnewswire.com/news-releases/xinfin-kick-starts-blockchain-engineering-and-business-development-lab-at-university-of-california-berkeley-usa-685819171.html" target="_blank"><img src="assets/images/home/media/prncision-logo.png" alt="PR Newswire" class="img-responsive margin-auto-lr"></a>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="2.2s">
<a href="https://www.cardrates.com/news/xinfin-blockchain-delivers-international-transactions/" target="_blank"><img src="assets/images/home/media/cardrates-logo.png" alt="Cardrates" class="img-responsive margin-auto-lr"></a>
</div>
</div>
</div>
</div>
</section>
<section id="video-section" class="home-page-sections small-padd bg-light-grey">
<div class="container">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h1>Videos</h1>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 mb-3 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.5s">
<div class="embed-responsive embed-responsive-16by9 embed-div">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/K-tHZkV6zAs" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-3 col-sm-4 mb-3 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.7s">
<div class="embed-responsive embed-responsive-16by9 embed-div">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/jLaqms1IHWE" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-3 col-sm-4 mb-3 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.9s">
<div class="embed-responsive embed-responsive-16by9 embed-div">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/_jVH_x5wT1M" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-3 col-sm-4 mb-3 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="1.1s">
<div class="embed-responsive embed-responsive-16by9 embed-div">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/J6F4iYzF1ew" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-3 col-sm-4 mb-3 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="1.3s">
<div class="embed-responsive embed-responsive-16by9 embed-div">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/bYIJETgOY_g" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-3 col-sm-4 mb-3 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="1.5s">
<div class="embed-responsive embed-responsive-16by9 embed-div">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/thR-pTpF7Sw" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-3 col-sm-4 mb-3 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="1.7s">
<div class="embed-responsive embed-responsive-16by9 embed-div">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/mjrhTnZ16f8" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</section>
<!--<section id="download-xdc-wallet" class="home-page-sections small-padd">
<div class="container">
<div class="bannertext">
<div class="flex-row align-items-center">
<div class="col-md-6">
<div class="content-box">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h3>Download XDC Wallet</h3>
</div>
<div class="mb-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<ul class="list_check">
<li>Securely send and receive XDC anytime and anywhere</li>
<li>User-friendly and clear UI/UX</li>
<li>Send and receive XDC rapidly using XinFin Network</li>
<li>Maintain the balance record easily using dashboard</li>
<li>Supports XDC token</li>
<li>A decentralized and highly secure wallet</li>
</ul>
</div>
<div class="btn-block mb-1 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="https://play.google.com/store/apps/details?id=com.xdcwallet&hl=en_IN" target="_blank" class="btn-hover color-3 btn-download"><img src="assets/images/google-play.svg" class="icon icon-md" alt=""><p class="ml-1"><span class="small">Get it on</span> <span class="d-block bold color-1">Google Play</span></p></a>
<a href="https://chrome.google.com/webstore/detail/xinpay/bocpokimicclpaiekenaeelehdjllofo" target="_blank"><button class="btn-hover color-1 button-big">Download XinPay</button></a>
</div>
</div>
</div>
<div class="col-md-6">
<img src="assets/images/home/xdc-android-wallet.png" class="img-responsive wow fadeInDown" data-wow-duration="1s" data-wow-delay="0.7s" width="100%" alt="XDC Android Wallet">
</div>
</div>
</div>
</div>
</section>-->
<section id="wallet-supports" class="home-page-sections small-padd">
<div class="container">
<div class="flex-row align-items-center">
<div class="col-md-6">
<h1 class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.2s">Supporting Wallets</h1>
<p class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.4s">Download wallets supporting XDC.</p>
</div>
<div class="col-md-6">
<div class="wallet-supports_block wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.6s">
<div class="item">
<a href="https://guarda.com/" target="_blank">
<div class="logo-wrapper">
<img src="assets/images/exchanges/guarda-wallet/guarda-wallet-logo.png" alt="Gaurda Wallet" class="logo-wrapper_top" />
</div>
</a>
<div class="content-wrapper">
<div class="text_top"><a href="https://guarda.com/" target="_blank">Guarda Wallet</a></div>
<div class="text_list">
<a href="https://guarda.co/app/" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="Web Wallet">
<img src="assets/images/exchanges/guarda-wallet/wallet.png" class="icon" />
</a>
<a href="https://play.google.com/store/apps/details?id=com.crypto.multiwallet" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="Android Wallet">
<img src="assets/images/exchanges/guarda-wallet/android.png" class="icon" />
</a>
<a href="https://apps.apple.com/app/guarda-wallet/id1442083982" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="iOS Wallet">
<img src="assets/images/exchanges/guarda-wallet/apple.png" class="icon" />
</a>
<a href="https://guarda.com/desktop/" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="MacOS">
<img src="assets/images/exchanges/guarda-wallet/mac-os.png" class="icon" />
</a>
<a href="https://guarda.com/desktop/" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="Windows 32">
<img src="assets/images/exchanges/guarda-wallet/windows.png" class="icon" />
</a>
<a href="https://guarda.com/desktop/" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="Ubuntu">
<img src="assets/images/exchanges/guarda-wallet/ubuntu.png" class="icon" />
</a>
<a href="https://guarda.com/chrome-extension/" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="Chrome Extension">
<img src="assets/images/exchanges/guarda-wallet/chrome-extension.png" class="icon" />
</a>
</div>
</div>
</div>
</div>
<div class="wallet-supports_block mt-4 wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.8s">
<div class="item">
<a href="https://dcentwallet.com/MobileApp" target="_blank">
<div class="logo-wrapper">
<img src="assets/images/exchanges/dcent-wallet/dcent-wallet-logo.png" alt="D'CENT Wallet" class="logo-wrapper_top" />
</div>
</a>
<div class="content-wrapper">
<div class="text_top"><a href="https://dcentwallet.com/MobileApp" target="_blank">Biometric Hardware Wallet (D'CENT)</a></div>
<div class="text_list">
<a href="https://play.google.com/store/apps/details?id=com.kr.iotrust.dcent.wallet&utm_source=dcent_medium&utm_campaign=xdc_support" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="Android Wallet">
<img src="assets/images/exchanges/guarda-wallet/android.png" class="icon" />
</a>
<a href="https://apps.apple.com/kr/app/dcent-hardware-wallet/id1447206611" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="iOS Wallet">
<img src="assets/images/exchanges/guarda-wallet/apple.png" class="icon" />
</a>
<a href="https://dcentwallet.com/products/BiometricWallet" target="_blank" class="list-item has-tooltip" data-toggle="tooltip" data-placement="bottom" data-color="success" title="Hardware Wallet">
<img src="assets/images/exchanges/dcent-wallet/hardware-wallet.png" class="icon" />
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--<section id="contact-home" class="bg-light-grey">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="custodian_block">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h1>Institutional Custodian</h1>
</div>
<div class="text-center wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="https://copper.co/" target="_blank"><img src="assets/images/copper-logo.png" class="img-fluid" /></a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="contact-home_block">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h1>Contact us</h1>
</div>
<div class="text-center wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>Come build dApps, learn more about XinFin and the XDC Hybrid Blockchain, host a Masternode, or speak to our team.</p>
</div>
<div class="text-center wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="contactus.php">
<button class="btn-hover color-1">CONTACT NOW</button>
</a>
</div>
</div>
</div>
</div>
<br/>
<div class="clear"></div>
</div>
</section>-->
<section id="get-started-with" class="bg-light-grey">
<div class="container">
<div class="row mb-5">
<div class="col-lg-10 col-lg-offset-1">
<div class="custodian-box_block">
<div class="flex-row align-items-center">
<div class="col-lg-6">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h1 class="pb-0 mb-0">Institutional Custodian</h1>
</div>
</div>
<div class="col-lg-6">
<div class="text-center wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="https://copper.co/" target="_blank"><img src="assets/images/copper-logo.png" class="img-responsive" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pt-2 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h1>Get Started With</h1>
</div>
<div class="row row-flex">
<div class="col-lg-4 col-md-4 col-sm-6 col-sm-12 px-1 mt-1 mb-1">
<a href="https://github.com/xinfinorg/Wallet" target="_blank">
<div class="services-block wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.2s">
<div class="inner-box">
<div class="icon-img-box align-self-center">
<img src="assets/images/get-started-icons/setup-wallet.png">
</div>
<div class="media-body align-self-center">
<h3>Setup Wallet</h3>
<p>How to Setup Wallet Apps on XDC Network.</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-sm-12 px-1 mt-1 mb-1">
<a href="https://github.com/xinfinorg/XDCScan" target="_blank">
<div class="services-block wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.4s">
<div class="inner-box">
<div class="icon-img-box align-self-center">
<img src="assets/images/get-started-icons/setup-explorer.png">
</div>
<div class="media-body align-self-center">
<h3>Setup Explorer</h3>
<p>How to Setup Explorer on XDC Network.</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-sm-12 px-1 mt-1 mb-1">
<a href="https://mycontract.co" target="_blank">
<div class="services-block wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.6s">
<div class="inner-box">
<div class="icon-img-box align-self-center">
<img src="assets/images/get-started-icons/decentralized-oracle.png">
</div>
<div class="media-body align-self-center">
<h3>Decentralized Oracle</h3>
<p>How to Setup Decentralized Oracle Network on XDC Network.</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-sm-12 px-1 mt-1 mb-1">
<a href="https://mycontract.co" target="_blank">
<div class="services-block wow fadeIn" data-wow-duration="0.5s" data-wow-delay="0.8s">
<div class="inner-box">
<div class="icon-img-box align-self-center">
<img src="assets/images/get-started-icons/build-dapps.png">
</div>
<div class="media-body align-self-center">
<h3>Build DApps</h3>
<p>How to Build DApps on XDC Network.</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-sm-12 px-1 mt-1 mb-1">
<a href="https://github.com/xinfinorg/XinFin-Node" target="_blank">
<div class="services-block wow fadeIn" data-wow-duration="0.5s" data-wow-delay="1s">
<div class="inner-box">
<div class="icon-img-box align-self-center">
<img src="assets/images/get-started-icons/institutional-rpc.png">
</div>
<div class="media-body align-self-center">
<h3>Institutional RPC</h3>
<p>Institutional RPC and node setup through AWS, Azure, IBM cloud...<!-- , oracle cloud etc or any other hosting provider including indsoft.--></p>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-sm-12 px-1 mt-1 mb-1">
<a href="https://xinfin.org/custody-services-integration" target="_blank">
<div class="services-block wow fadeIn" data-wow-duration="0.5s" data-wow-delay="1.2s">
<div class="inner-box">
<div class="icon-img-box align-self-center">
<img src="assets/images/get-started-icons/wallets-custodians.png">
</div>
<div class="media-body align-self-center">
<h3>Wallets & Custodians</h3>
<p>How to connect various decentralized wallets, custodians for XDC.</p>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!--<section id="contact-home" class="bg-light-grey">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8 col-md-offset-2">
<div class="wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s">
<h1>Contact us</h1>
</div>
<div class="text-center wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.7s">
<p>Come build dApps, learn more about XinFin and the XDC Hybrid Blockchain, host a Masternode, or speak to our team.</p>
</div>
<div class="text-center wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.9s">
<a href="contactus.php">
<button class="btn-hover color-1">CONTACT NOW</button>
</a>
</div>
</div>
</div>
<br/>
<div class="clear"></div>
</div>
</section>-->