forked from XinFinOrg/Official-XinFinOrg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbounty.php
1493 lines (1376 loc) · 98.9 KB
/
bounty.php
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 = "XinFin Bug Bounty Program, Airdrop for community contributor";
$desc = "XinFin is launching a Bug Bounty Program for Community! We Invite our Community and all bug bounty hunters !";
include('inc/header.php') ?>
<section id="bountybanner">
<!-- <div id="particle-canvas" ></div> -->
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12 bannertext">
<h1>XinFin Bounty Program</h1>
<h4>Contribute to the XinFin Blockchain Ecosystem and earn rewards!</h4>
<p>XinFin is launching a Bounty Program for Community on Launch of Mainnet! We Invite our Community and all bug bounty hunters to participate in the bounty program and win lots of rewards.</p>
<p>
Check out the <a href="https://howto.xinfin.org/" target="_blank">Developer Information Center</a> for technical documentation and
<a href="https://t.me/XinFinDevelopers" target="_blank">Official Telegram Developer Channel</a> to find the development resources.
</p>
</div>
</div>
</div>
</section>
<section id="protocol" class="bounty">
<div class="container-fluid">
<div class="row">
<div class="setup-masternode-row">
<div class="container">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#running-bounty">Running Bounty</a></li>
<li><a data-toggle="tab" href="#completed-bounty">Completed Bounty</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="tab-content">
<div id="running-bounty" class="tab-pane fade in active">
<div class="row flex-row">
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/create-xdc-explorer-bounty.jpg" alt="Create XDC Explorer Bounty" />
</div>
<div class="content">
<h3>Create XDC Explorer Bounty</h3>
<h4 class="highlight small">Up to 140% of technical integration cost</h4>
<p class="text-muted">Purpose: To Create Multiple XDC Network Explorer.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1h">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/masternode-one-click-node-setup-bounty.jpg" alt="Masternode (One-click node setup) Bounty" />
</div>
<div class="content">
<h3>Masternode (One-click node setup) Bounty</h3>
<h4 class="highlight small">Up to 140% of technical integration cost</h4>
<p class="text-muted">Create easy One-click XinFin-Node setup on AWS, Azure, Google Cloud, Oracle Cloud, IBM Cloud.</p>
<!--<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status pull-right">RUNNING</span></div>-->
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1g">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/introduction-distribution-bounty.jpg" alt="Introduction/Distribution Bounty" />
</div>
<div class="content">
<h3>Introduction/Distribution Bounty</h3>
<h4 class="highlight small">Up to 10% of the bounty distribution</h4>
<p class="text-muted">Are you a XinFin (XDC) Network community member looking to introduce the bounties to the right institutions?</p>
<!--<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status pull-right">RUNNING</span></div>-->
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1f">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/special-projects-bounty.jpg" alt="Special Projects Bounty" />
</div>
<div class="content">
<h3>Special Projects Bounty</h3>
<h4 class="highlight small">Up to 200% of the project fees</h4>
<p class="text-muted">Are you a software development company working with Government, Central Banks, or Fortune 500 institutions?</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1e">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/jurisdiction-specific-legal-opinion-fees-bounty.jpg" alt="Jurisdiction specific Legal Opinion Fees Bounty" />
</div>
<div class="content">
<h3>Jurisdiction specific Legal Opinion Fees Bounty</h3>
<h4 class="highlight small">Up to 140% of the legal opinion fees in your jurisdiction</h4>
<p class="text-muted">If you are a financial institution/Fintech or enterprise looking to work with XDC to ...</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1d">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/pre-approved-bounty.jpg" alt="Pre-Approved Bounty" />
</div>
<div class="content">
<h3>Pre-Approved Bounty<br /></h3>
<h4 class="highlight small">Up To 140% XDC of cost incurred</h4>
<p class="text-muted">Apply for any wallet, Custodian or Exchange integration or Building dapps on XDC Blockchain Network.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1c">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/crypto-custodian-integration-fees-bounty.jpg" alt="Crypto Custodian Integration Fees Bounty" />
</div>
<div class="content">
<h3>Crypto Custodian Integration Fees Bounty</h3>
<h4 class="highlight small">Up to 140% of the crypto custodian Technical Integration Fees</h4>
<p class="text-muted">Want to see XDC listed on your favourite Cryptocurrency asset custodian?</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1b">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/hardware-software-wallet-integration-fees-bounty.jpg" alt="Hardware/Software Wallet Integration Fees Bounty" />
</div>
<div class="content">
<h3>Hardware/Software Wallet Integration Fees Bounty</h3>
<h4 class="highlight small">Up to 140% of the hardware/software wallet Technical Integration Fees</h4>
<p class="text-muted">Want to see XDC listed on your favourite hardware/software wallet?</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1a">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/exchange-integration-fees-bounty.jpg" alt="Exchange Integration Fees Bounty" />
</div>
<div class="content">
<h3>Exchange Integration Fees Bounty</h3>
<h4 class="highlight small">Up to 140% of the Exchange Technical Integration Fees</h4>
<p class="text-muted">Want to see XDC listed on your favourite Digital Asset Exchange?</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-1">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/developers-bounty-for-swap-between-xdc-eth-coins.jpg" alt="Developers Bounty for Swap between XDC ETH/ERC20 Coins" />
</div>
<div class="content">
<h3>Developers Bounty for Swap between XDC ETH/ERC20 Coins</h3>
<h4 class="highlight">Up to 1 Million XDC</h4>
<p class="text-muted">Develop a real-time decentralized swap between XDC and ETH or any ERC20 coins.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-2">Detailed Rules</button>
</div>
</div>
</div>
<!--<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/deploy-solidity-smart-contract.jpg" alt="Deploy Solidity Contract on XinFin MainNet (DSCXM Bounty)">
</div>
<div class="content">
<h3>Deploy Solidity Contract on XinFin MainNet (DSCXM Bounty)</h3>
<h4 class="highlight">Up to 10,000 USD worth XDC</h4>
<p class="text-muted">Deploy Solidity Contract on XinFin MainNet and get rewards.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status finished pull-right">FINISHED</span></div>
<a href="#" class="disabled">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-4">Detailed Rules</button>
</div>
</div>
</div>-->
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/xinfin-android-wallet-bounty.jpg" alt="XinFin Android Wallet Bug Bounty" />
</div>
<div class="content">
<h3>XinFin Android Wallet Bug Bounty</h3>
<h4 class="highlight">Up to 200 USD worth XDC</h4>
<p class="text-muted">Explore vulnerabilities in XinFin Android Wallet and get rewards.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://docs.google.com/forms/d/1api3woqg6oY4Lk7sRL2fnaBj8etfB-XF6fZNKLU6zFo" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-5">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/xinfin-extension-wallet-xinpay-bounty.jpg" alt="Bug Bounty Program for testing XinFin Extension Wallet: XinPay" />
</div>
<div class="content">
<h3>Bug Bounty Program for testing XinFin Extension Wallet: XinPay</h3>
<h4 class="highlight">Up to 200 USD worth XDC</h4>
<p class="text-muted">Test XinPay for any errors, bugs on XinFin TestNet and provide ideas to enhance eWallet.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between">
<div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div>
<span class="status pull-right">RUNNING</span>
</div>
<a href="https://docs.google.com/forms/d/1SklUqUFpncyj2GqYT48qR6sgC3jYMkvuCBy_UVDLovw" target="_blank">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-6">Detailed Rules</button>
</div>
</div>
</div>
<!--<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/masternode-bounty-program.jpg" alt="Masternode Bounty Program: For hosting Masternode">
</div>
<div class="content">
<h3>Masternode Bounty Program: For hosting Masternode</h3>
<h4 class="highlight">Up to 900 USD worth XDC</h4>
<p class="text-muted">Host Masternode and get incentives as well as a special bonus bounty.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status finished pull-right">FINISHED</span></div>
<a href="#" class="disabled">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-7">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/masternode-luck-user-bounty.jpg" alt="Masternode Luck User Bounty: To set-up Masternode">
</div>
<div class="content">
<h3>Masternode Luck User Bounty: To set-up Masternode</h3>
<h4 class="highlight">Up to 2,000,000 XDC</h4>
<p class="text-muted">Set-up a Masternode using the one-click installer guide.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status finished pull-right">FINISHED</span></div>
<a href="#" class="disabled">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-8">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/memes-bounty.jpg" alt="XinFin Android Wallet Bug Bounty">
</div>
<div class="content">
<h3>XinFin Memes Campaign (Bounty on Memes)</h3>
<h4 class="highlight">Up to 5,000 XDC</h4>
<p class="text-muted">Participate in XinFin Memes Bounty and get rewards.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status finished pull-right">FINISHED</span></div>
<a href="#" class="disabled">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-3">Detailed Rules</button>
</div>
</div>
</div>-->
</div>
</div>
<div id="completed-bounty" class="tab-pane fade">
<div class="row flex-row">
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/deploy-solidity-smart-contract.jpg" alt="Deploy Solidity Contract on XinFin MainNet (DSCXM Bounty)">
</div>
<div class="content">
<h3>Deploy Solidity Contract on XinFin MainNet (DSCXM Bounty)</h3>
<h4 class="highlight">Up to 10,000 USD worth XDC</h4>
<p class="text-muted">Deploy Solidity Contract on XinFin MainNet and get rewards.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status finished pull-right">FINISHED</span></div>
<a href="#" class="disabled">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-4">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/masternode-bounty-program.jpg" alt="Masternode Bounty Program: For hosting Masternode">
</div>
<div class="content">
<h3>Masternode Bounty Program: For hosting Masternode</h3>
<h4 class="highlight">Up to 900 USD worth XDC</h4>
<p class="text-muted">Host Masternode and get incentives as well as a special bonus bounty.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status finished pull-right">FINISHED</span></div>
<a href="#" class="disabled">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-7">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/masternode-luck-user-bounty.jpg" alt="Masternode Luck User Bounty: To set-up Masternode">
</div>
<div class="content">
<h3>Masternode Luck User Bounty: To set-up Masternode</h3>
<h4 class="highlight">Up to 2,000,000 XDC</h4>
<p class="text-muted">Set-up a Masternode using the one-click installer guide.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status finished pull-right">FINISHED</span></div>
<a href="#" class="disabled">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-8">Detailed Rules</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 mb-3">
<div class="bounty-box">
<div class="image-container">
<img class="img-responsive" src="assets/images/bounty/memes-bounty.jpg" alt="XinFin Android Wallet Bug Bounty">
</div>
<div class="content">
<h3>XinFin Memes Campaign (Bounty on Memes)</h3>
<h4 class="highlight">Up to 5,000 XDC</h4>
<p class="text-muted">Participate in XinFin Memes Bounty and get rewards.</p>
</div>
<div class="btn-block mb-1">
<div class="progress-labels flex-container space-between"><div class="timer pull-left"><img src="assets/images/timer.png" /><span>STATUS</span></div><span class="status finished pull-right">FINISHED</span></div>
<a href="#" class="disabled">
<button class="btn-hover color-1">Apply</button>
</a>
<button class="btn-hover color-3" data-toggle="modal" data-target="#exampleModalCenter-3">Detailed Rules</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div id="network" class="col-md-12 col-sm-12 col-xs-12">
<p class="sub-header">Help/Questions?</p>
<p class="link-break-out"><strong>Telegram Channel:</strong> <a href="https://t.me/XinFinDevelopers" target="_blank">https://t.me/XinFinDevelopers</a></p>
<p class="link-break-out"><strong>Slack Channel:</strong> <a href="https://xinfin-public.slack.com/messages/CELR2M831/" target="_blank">https://xinfin-public.slack.com/messages/CELR2M831/</a></p>
<p class="link-break-out"><strong>Forum:</strong> <a href="http://XinFin.net" target="_blank">http://XinFin.net</a></p>
</div>
</div>
<!-- Modal 1h -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1h" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Create XDC Explorer Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p class="text-left mb-0"><strong>Purpose:</strong> To Create Multiple XDC Network Explorer.</p>
<p class="sub-header-small no-color mt-3 mb-2">What is Blockchain Explorer?</p>
<p>
A <strong>blockchain explorer</strong> is a piece of software that uses API and <strong>blockchain</strong> nodes to draw various data from a <strong>blockchain</strong> and then uses a database to arrange
the searched data and to present the data to the user in a searchable format. (<a href="https://www.softwaretestinghelp.com/blockchain-explorer-tutorial/" target="_blank">ref</a>)
</p>
<p>XinFin.Network Explorer allows you to explore and search the XDC blockchain for transactions, addresses, tokens, prices, smart contracts, and other activities taking place on XinFin Network (XDC).</p>
<p>
<a href="https://coinmarketcap.com/guides/blockexplorer#guide-main" target="_blank" class="fw-4">Coinmarketcap digital guide on Blockchain Explorer <i class="fa fa-external-link"></i></a>
</p>
<p class="sub-header-small no-color mt-3 mb-2">Reference website:</p>
<p class="link-break-out mb-0 pb-1"><a href="https://explorer.xinfin.network" target="_blank" class="fw-4">https://explorer.xinfin.network</a></p>
<p class="link-break-out mb-0 pb-1"><a href="https://www.blockchain.com/explorer" target="_blank" class="fw-4">https://www.blockchain.com/explorer</a></p>
<p class="link-break-out mb-0 pb-1"><a href="https://etherscan.io" target="_blank" class="fw-4">https://etherscan.io</a></p>
<p class="link-break-out mb-0 pb-1"><a href="https://www.blockchain.com/explorer" target="_blank" class="fw-4">https://www.blockchain.com/explorer</a></p>
<p class="sub-header-small no-color mt-3 mb-2">Function should be covered under the XDC Blockchain Explorer?</p>
<p>
Setup Explorer Website: Create a new website with various search features like wallet address, token address, transaction reference with the ability to display transactions or smart contracts details of
XinFin Network. All features should be accessible using various XDC Network node API or frontend API.
</p>
<p class="text-left link-break-out">
<strong>XDC Network's Node HTTP API, SDK Frontend APIs and Developer tool kit:</strong> <a href="https://mycontract.co/" target="_blank" class="fw-4">https://mycontract.co/</a>
</p>
<p class="text-left link-break-out"><strong>Basic Explorer Installation process:</strong> <a href="https://github.com/XinFinOrg/XDCScan" target="_blank" class="fw-4">Clone the repo</a></p>
<p class="text-left">Download <a href="https://docs.npmjs.com/downloading-and-installing-node-js-and-npm" target="_blank" class="fw-4">Nodejs and npm</a> if you don't have them.</p>
<p class="text-left"><a href="https://docs.mongodb.com/manual/tutorial/install-mongodb-on-windows/" target="_blank" class="fw-4">Install mongodb</a> or other backend Database System.</p>
<p class="text-left">This will fetch and parse the entire blockchain.</p>
<p class="text-left">Setup your configuration file: <code>cp config.example.json config.json</code></p>
<p class="text-left">Edit <code>config.json</code> as you wish</p>
<p class="text-left mt-3 mb-1"><strong>Basic settings:</strong></p>
<pre><code>{
"nodeAddr": "localhost",
"gethPort": 8545,
"startBlock": 0,
"endBlock": "latest",
"quiet": true,
"syncAll": true,
"patch": true,
"patchBlocks": 100,
"CMCKey": abcd,
"settings": {
"symbol": "XDC",
"name": "XDC Network",
"title": "XDC Network Block Explorer",
"author": "XDC Network"
}
}</code></pre>
<p class="text-left"><code>nodeAddr</code> Your node API RPC address.</p>
<p class="text-left"><code>gethPort</code> Your node API RPC port.</p>
<p class="text-left"><code>startBlock</code> This is the start block of the blockchain, should always be 0 if you want to sync the whole CLO blockchain.</p>
<p class="text-left">
<code>endBlock</code> This is usually the 'latest'/'newest' block in the blockchain, this value gets updated automatically, and will be used to patch missing blocks if the whole app goes down.
</p>
<p class="text-left"><code>quiet</code> Suppress some messages. (admittedly still not quiet)</p>
<p class="text-left">
<code>syncAll</code> If this is set to true at the start of the app, the sync will start syncing all blocks from lastSync, and if lastSync is 0 it will start from whatever the endBlock or latest block in the
blockchain is.
</p>
<p class="text-left"><code>patch</code> If set to true and below value is set, a sync will be iterated through the # of blocks specified.</p>
<p class="text-left"><code>patchBlocks</code> If the patch is set to true, the amount of block specified will be check from the latest one.</p>
<p class="sub-header-small no-color mt-3 mb-2">Run:</p>
<p class="text-left">The below will start both the web-GUI and sync.js (which populates MongoDB with blocks/transactions). <code>npm start</code></p>
<p class="text-left">You can leave sync.js running without app.js and it will sync and grab blocks based on config.json parameters node <code>./tools/sync.js</code></p>
<p class="text-left">
You can configure intervals (how often a new data point is pulled) and range (how many blocks to go back) with the following: <code>RESCAN=1000:100000 node tools/stats.js</code> (New data point every 1,000
blocks. Go back 100,000 blocks).
</p>
<p class="sub-header-small no-color mt-3 mb-2">Troubleshooting</p>
<p>If you are having problems with Setup, the first step is to collect more information to accurately characterize the problem. From there, it can be easier to figure out a root cause and a fix.</p>
<p class="link-break-out">Please drop a message with all possible detail and screenshot at the Community Support forum: <a href="http://xinfin.Net" target="_blank" class="fw-4">http://xinfin.Net</a></p>
<p class="link-break-out">Telegram Community: <a href="https://t.me/XinFinDevelopers" target="_blank" class="fw-4">https://t.me/XinFinDevelopers</a></p>
<p class="link-break-out">Slack Community: <a href="https://xinfin-public.slack.com/messages/CELR2M831/" target="_blank" class="fw-4">https://xinfin-public.slack.com/messages/CELR2M831/</a></p>
<p class="link-break-out">Reference source code: <a href="https://github.com/XinFinOrg/XDCScan" target="_blank" class="fw-4">https://github.com/XinFinOrg/XDCScan</a></p>
<p class="sub-header-small no-color mt-3 mb-2">Reference website:</p>
<p class="link-break-out mb-0 pb-1"><a href="https://github.com/binance-chain/bsc-explorer" target="_blank" class="fw-4">https://github.com/binance-chain/bsc-explorer</a></p>
<p class="link-break-out mb-0 pb-1"><a href="https://github.com/poanetwork/chain-explorer" target="_blank" class="fw-4">https://github.com/poanetwork/chain-explorer</a></p>
<p class="link-break-out mb-0 pb-1"><a href="https://github.com/bing-chou/etherscan-explorer" target="_blank" class="fw-4">https://github.com/bing-chou/etherscan-explorer</a></p>
<p class="link-break-out mb-0 pb-1">
<a href="https://github.com/nebulasio/explorer/tree/develop/explorer-front" target="_blank" class="fw-4">https://github.com/nebulasio/explorer/tree/develop/explorer-front</a>
</p>
<p class="link-break-out mb-0 pb-1"><a href="https://github.com/hyperledger/blockchain-explorer" target="_blank" class="fw-4">https://github.com/hyperledger/blockchain-explorer</a></p>
<p class="sub-header-small no-color mt-3 mb-2">Bounty:</p>
<p class="text-left">Please fill up the bounty form and pre-approve your bounty budget from the link: <a href="https://xinfin.org/bounty" target="_blank" class="fw-4">https://xinfin.org/bounty</a></p>
<p class="sub-header-small no-color mt-3 mb-2">Revenue Steam:</p>
<div class="orderList">
<ol>
<li>Weekly or Monthly fixed Advertisement income from the XDC Network's ecosystem tokens or DApps like TradeFinex, MyContract.co, Blockdegree, XcelTrip, etc.</li>
<li>Pay per view based advertisement revenue.</li>
</ol>
</div>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1g -->
<!-- Modal 1g -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1g" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Masternode (One-click node setup) Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p class="text-left mb-0">
<strong>Purpose:</strong> To Create an easy One-click XinFin-Node setup on AWS, Azure, Google Cloud, Oracle Cloud, IBM Cloud.
<span class="vsmall">(From the command-based Masternode setup method. Reference steps after the instruction)</span>
</p>
<p class="sub-header-small mt-3 mb-2">Function covered under one click XinFin Node setup:</p>
<p><strong>STEP 1:</strong> Add or Copy Updated XinFin-Node Docker file to the Cloud provider like AWS, Azure, Google, Oracle, or IBM.</p>
<p>Clone repository command:</p>
<pre><code>git clone https://github.com/XinFinOrg/XinFin-Node.git</code></pre>
<p class="text-left"><strong>Step 2:</strong> Install XinFin-Node using command:</p>
<pre><code>sudo ./install_docker.sh</code></pre>
<p><strong>Step 3:</strong> Ask for required information like Node_Name and email.</p>
<p><strong>Step 4:</strong> Start node using command:</p>
<pre>sudo docker-compose -f docker-services.yml up -d</pre>
<p class="sub-header-small no-color mt-3 mb-2">Reference shell scripts for the XinFin-Node:</p>
<p><a href="https://github.com/XinFinOrg/XinFin-Node/blob/master/install_docker.sh" target="_blank" class="fw-4">install_docker.sh</a></p>
<p><a href="https://github.com/XinFinOrg/XinFin-Node/blob/master/start-node.sh" target="_blank" class="fw-4">Start Node</a></p>
<p><a href="https://github.com/XinFinOrg/XinFin-Node/blob/master/bootstrap.sh" target="_blank" class="fw-4">bootstrap</a></p>
<p class="link-break-out mt-3">
<span class="sub-header-small no-color">Docker file, Commands, Howto steps, .sh script available at:</span>
<a href="https://github.com/XinFinOrg/XinFin-Node" target="_blank" class="fw-4">https://github.com/XinFinOrg/XinFin-Node</a>
</p>
<p class="sub-header-small no-color mt-3">Reference Steps:</p>
<p>
Cloud provider IndSoft.net already setup One-click XinFin-Node setup. (
<a href="https://indsoft.net/blog/deploy-a-nodejs-and-expressjs-app-on-indsoft-system-cloud-with-nginx/" target="_blank" class="fw-4">ref URL</a> and
<a href="https://www.youtube.com/watch?v=_NbwZs5muaY&feature=youtu.be" target="_blank" class="fw-4">ref video</a> )
</p>
<p class="sub-header-small no-color mt-3">Reference:</p>
<p class="text-left">Website and information resource to setup masternode: <a href="https://xinfin.org/setup-masternode" target="_blank" class="fw-4">https://xinfin.org/setup-masternode</a></p>
<p class="sub-header-small no-color mt-3">Other tip:</p>
<p>
Add XinFin-Node Dockers file to the marketplace like <a href="https://aws.amazon.com/marketplace/search/results?x=0&y=0&searchTerms=blockchain+" target="_blank" class="fw-4">AWS Marketplace</a>. This option
allows an easy Drag and Drop option to setup masternode.
</p>
<p class="sub-header mt-5 mb-3">Understand detail step by step command method to setup masternode</p>
<p class="sub-header-small no-color pb-3">CentOS or RedHat Enterprise Linux (latest release) or Ubuntu (15.04+) supported</p>
<p class="mb-1"><strong>Clone repository</strong></p>
<pre><code>git clone https://github.com/XinFinOrg/XinFin-Node.git</code></pre>
<p>Enter <code>XinFin-Node</code> directory</p>
<pre><code>cd XinFin-Node</code></pre>
<p class="text-left mt-3 mb-1"><strong>Step 1: Install docker & docker-compose</strong></p>
<pre><code>sudo ./install_docker.sh</code></pre>
<p class="mt-3 mb-1"><strong>Step 2: Update .env file with details</strong></p>
<p class="text-left link-break-out">Create <code>.env</code> file by using the sample - <code>.env.example</code></p>
<p class="link-break-out">Enter your node name in the INSTANCE_NAME field.</p>
<p class="link-break-out">Enter your email address in the CONTACT_DETAILS field.</p>
<pre>cp env.example .env<br />nano .env</pre>
<p class="mt-3 mb-1"><strong>Step 3: Start your Node</strong></p>
<p>Run:</p>
<pre>sudo docker-compose -f docker-services.yml up -d</pre>
<p class="link-break-out">
You should be able to see your node listed on this page: <a href="http://xinfin.network" target="_blank" class="fw-4">http://xinfin.network</a> Select Menu "Switch to TestNet" for Test Network and Select
"Switch to LiveNet" to check Live Network Stats.
</p>
<p>Your Coinbase address can be found in xdcchain/coinbase.txt file.</p>
<p>To stop the node or if you encounter any issues use:</p>
<pre>sudo docker-compose -f docker-services.yml down</pre>
<p class="mb-1"><strong>Upgrade</strong></p>
<p>To upgrade please use the following commands</p>
<pre><code>sudo docker-compose -f docker-services.yml down
sudo ./upgrade.sh
sudo docker-compose -f docker-services.yml up -d
</code></pre>
<p class="sub-header-small no-color mt-3 mb-2">Troubleshooting</p>
<p>If you are having problems with Setup, the first step is to collect more information to accurately characterize the problem. From there, it can be easier to figure out a root cause and a fix.</p>
<p class="link-break-out">Please drop a message with all possible detail and screenshot at the Community Support forum: <a href="http://xinfin.Net" target="_blank" class="fw-4">http://xinfin.Net</a></p>
<p class="link-break-out">Telegram Community: <a href="https://t.me/XinFinDevelopers" target="_blank" class="fw-4">https://t.me/XinFinDevelopers</a></p>
<p class="link-break-out">Slack Community: <a href="https://xinfin-public.slack.com/messages/CELR2M831/" target="_blank" class="fw-4">https://xinfin-public.slack.com/messages/CELR2M831/</a></p>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1g -->
<!-- Modal 1f -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1f" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Introduction/Distribution Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p>
Are you a XinFin (XDC) Network community member looking to introduce the bounties to the right institutions? If you introduce the bounties to eligible institutions and get pre-approval or qualify for
successful distribution of the bounties to the institutions, you will get 10% of the bounty distributed.
</p>
<p class="sub-header-small mb-2">Rules:</p>
<div class="orderList">
<ol>
<li>The introduction and potential distribution partner should be pre-approved.</li>
<li>The institution should be strategic in expanding the adoption of XDC Network.</li>
<li>Include <a href="mailto:[email protected]">[email protected]</a> in your communication with the partners</li>
<li>XDC Governance Committee reserves the right to accept or reject bounty distribution.</li>
</ol>
</div>
<p class="text-small">
e.g. If you introduce an institution that is willing to take up legal opinion and listing of XDC in an exchange by paying for technical integration fees, then the institution gets up to 140% reimbursement on
the fees and the one who introduces the institution will get 10% of the entire bounty distributed. E.g. the institution that you introduced paid USD 50,000 for technical integration + legal fees, then they
get USD 70,000 worth XDC and you get USD 7000 worth XDC.
</p>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1f -->
<!-- Modal 1e -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1e" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Special Projects Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p>
Are you a software development company working with Government, Central Banks, or Fortune 500 institutions? If you choose to build your solution on XDC Network & qualify for a special project then you can
secure up to 200% reimbursement on your project fees in XDC. I.e. if you incur a cost of USD 25,000 for the project working with Central banks, Governments, or Fortune 500 companies, then your bounty will be
up to USD 50,000 equivalent to XDC as per market rate.
</p>
<p class="sub-header-small mb-2">Rules:</p>
<div class="orderList">
<ol>
<li>The project should be directed for Central banks, Governments, regulators, or Fortune 500 companies.</li>
<li>The project should be publicly visible to XDC community.</li>
<li>The project should preferably be open source.</li>
<li>Include <a href="mailto:[email protected]">[email protected]</a> in your communication with the customers.</li>
<li>Share estimate budget for the project with XinFin team and get pre-approval on the budget.</li>
<li>You will get reimbursement for up to 200% of the fees incurred in your wallet.</li>
</ol>
</div>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1e -->
<!-- Modal 1d -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1d" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Jurisdiction specific Legal Opinion Fees Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p>
If you are a financial institution/Fintech or enterprise looking to work with XDC to use its liquidity or pay platform utility fees and are looking for legal clarity on the classification of XDC token? If you
are willing to pay for legal/law firm fees before integration with the XDC network, then you will get up to 140% of the legal costs incurred reimbursed in XDC. I.e. if you incur a cost of USD 10,000 for legal
opinion with a law firm in a specific jurisdiction, then your bounty will be up to USD 14,000 equivalent XDC as per market rate.
</p>
<p class="sub-header-small mb-2">Rules:</p>
<div class="orderList">
<ol>
<li>The law firm should be accredited by regulators in the jurisdiction.</li>
<li>Should have prior experience working in blockchain.</li>
<li>Include <a href="mailto:[email protected]">[email protected]</a> in your communication with the law firm.</li>
<li>Get an invoice for legal opinion for XDC network.</li>
<li>You will get reimbursement for upto 140% of the fees incurred in your wallet.</li>
</ol>
</div>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1d -->
<!-- Modal 1c -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1c" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Pre-Approved Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p>Get a quick pre-approval for the Bounty.</p>
<p>Apply for any wallet, Custodian or Exchange integration or Building dapps on XDC Blockchain Network.</p>
<p><b>Program type:</b> Public bug bounty.</p>
<p>Bounty subject to approval by governance community.</p>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1c -->
<!-- Modal 1b -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1b" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Crypto Custodian Integration Fees Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p>
Want to see XDC listed on your favorite Cryptocurrency asset custodian? If you are willing to pay for technical integration fee for the custodian, then you will get upto 140% of the tech integration fees in
XDC. I.e. if you incur a cost of USD 20,000 for technical integration with a crypto exchange, then your bounty will be upto USD 28,000 equivalent XDC as per market rate.
</p>
<p class="sub-header-small mb-2">Rules:</p>
<div class="orderList">
<ol>
<li>The crypto asset custodian should be regulated.</li>
<li>Should be listed on other top projects.</li>
<li>Include <a href="mailto:[email protected]">[email protected]</a> in your communication with wallet technical integration team.</li>
<li>Get an invoice for Tech integration for XDC network.</li>
<li>You will get upto 140% of the tech integration fees in your wallet.</li>
</ol>
</div>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1b -->
<!-- Modal 1a -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1a" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Hardware/Software Wallet Integration Fees Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p>
Want to see XDC listed on your favorite hardware/software wallet? If you are willing to pay for technical integration fee for the wallet, then you will get up to 140% of the tech integration fees in XDC. I.e.
if you incur a cost of USD 20,000 for technical integration with a crypto exchange, then your bounty will be up to USD 28,000 equivalent XDC as per market rate.
</p>
<p class="sub-header-small mb-2">Rules:</p>
<div class="orderList">
<ol>
<li>The wallet should be a credible one 4+ stars in review. Should have 100,000+ in downloads.</li>
<li>Should be listed on other top projects.</li>
<li>Include <a href="mailto:[email protected]">[email protected]</a> in your communication with wallet technical integration team.</li>
<li>Get an invoice for Tech integration for XDC network.</li>
<li>You will get upto 140% of the tech integration fees in your wallet.</li>
</ol>
</div>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1a -->
<!-- Modal 1 -->
<div class="modal fade bs-example-modal-lg" id="exampleModalCenter-1" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered bounty-modal" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title" id="exampleModalCenterTitle">Exchange Integration Fees Bounty</h3>
</div>
<div class="modal-body">
<div class="bounty">
<p>
Want to see XDC listed on your favorite Digital Asset Exchange? If you are willing to pay for technical integration fee for an exchange, then you will get up to 140% of the tech integration fees in XDC. I.e.
if you incur a cost of USD 50,000 for technical integration with a crypto exchange, then your bounty will be up to USD 70,000 equivalent XDC as per market rate.
</p>
<p class="sub-header-small mb-2">Rules:</p>
<div class="orderList">
<ol>
<li>The exchange should be a credible one. Ranked within top 100 on CMC. Regulated exchange is preferable.</li>
<li>The pairing should be in Fiat currency.</li>
<li>Include <a href="mailto:[email protected]">[email protected]</a> in your communication with exchange technical integration team.</li>
<li>Get an invoice for Tech integration for XDC network.</li>
<li>You will get upto 140% of the tech integration fees in your wallet.</li>
</ol>
</div>
<div class="btn-block mt-3 mb-1">
<a href="https://forms.gle/e8EyGLLpBPw29WnC8" target="_blank">
<button class="btn-hover color-1 btn-block no-width">Apply For Bounty</button>
</a>
</div>
</div>
</div>
<div class="modal-footer"></div>
</div>
</div>
</div>
<!-- /. Modal 1 -->
<!-- Modal 2 -->