-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.php
713 lines (660 loc) · 32.2 KB
/
index.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
<?php
session_start();
session_regenerate_id();
// set on each page load
$currTimeStamp = new DateTime();
$_SESSION['started'] = $currTimeStamp->format('Y-m-d\TH:i:s');
function hashCreate($name) {
return $_SESSION[$name] = bin2hex(random_bytes(24));
} // hashCreate
// Always invalidate the hash
$_SESSION['contactHash'] = '';
echo '<!DOCTYPE html><html lang="en"><head><meta charset="utf-8">
<meta
name="viewport"
content="width=device-width,height=device-height,initial-scale=1"
>
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="favicon_appleTouch_144.png">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="icon" type="image/webp" href="favicon.webp">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
media="screen"
>
<link
rel="stylesheet"
href="static/homepage.screen.css?v=1"
media="screen,projection,tv"
>
<title>Conceal.Network - Privacy-Protected De-Fi & Encrypted Communications</title>
</head><body>
<div id="loader-wrapper">
<b></b>
<div id="loader"></div>
</div>
<div id="top">
<header>
<h1>Conceal Network</h1>
<div id="mainMenuModal"><a href="#" class="modalClose"></a><div>
<input type="radio" id="toggle_submenusOff" name="toggle_submenu" lass="toggle" hidden>
<ul id="mainMenu">
<li>
<input type="radio" id="toggle_about" name="toggle_submenu" class="toggle" hidden>
<label for="toggle_about">About</label>
<label for="toggle_submenusOff"></label>
<ul>
<li><a href="about/">What\'s Conceal?</a></li>
<li><a href="roadmap/">Roadmap</a></li>
<li><a href="team/">Team</a></li>
<li><a href="https://conceal.network/wiki/doku.php?id=start" target="_blank" rel="noopener">Wiki</a></li>
</ul>
</li>
<li>
<input type="radio" id="toggle_info" name="toggle_submenu" class="toggle" hidden>
<label for="toggle_info">Community</label>
<label for="toggle_submenusOff"></label>
<ul>
<li><a href="community/">Channels</a></li>
<li><a href="#mining">Mining</a></li>
<li><a href="#partners">Partners</a></li>
<li><a href="donate">Donate</a></li>
</ul>
</li>
<li>
<input type="radio" id="toggle_info" name="toggle_submenu" class="toggle" hidden>
<label for="toggle_info">Developers</label>
<label for="toggle_submenusOff"></label>
<ul>
<li><a href="branding/">Branding</a></li>
<li><a href="labs/">Conceal-Labs</a></li>
<li><a href="https://github.com/ConcealNetwork/conceal-core/wiki" target="_blank" rel="noopener">Documentation</a></li>
<li><a href="https://github.com/ConcealNetwork" target="_blank" rel="noopener">GitHub</a></li>
</ul>
</li>
<li>
<input type="radio" id="toggle_apps" name="toggle_submenu" class="toggle" hidden>
<label for="toggle_apps">News</label>
<label for="toggle_submenusOff"></label>
<ul>
<li><a href="https://concealnetwork.medium.com/" target="_blank" rel="noopener">Official Medium</a></li>
<li><a href="in-the-media/">Other Media</a></li>
</ul>
</li>
<li>
<input type="radio" id="toggle_apps" name="toggle_submenu" class="toggle" hidden>
<label for="toggle_apps">Tools</label>
<label for="toggle_submenusOff"></label>
<ul>
<li><a href="https://bridge.conceal.network" target="_blank" rel="noopener">Bridge</a></li>
<li><a href="https://explorer.conceal.network" target="_blank" rel="noopener">Explorer</a></li>
<li><a href="https://wallet.conceal.network" target="_blank" rel="noopener">Web Wallet</a></li>
</ul>
</li>
<li class="navStandalone"><a href="#wallets">Wallets</a></li>
<li class="navStandalone"><a href="https://conceal.network/support" target="_blank" rel="noopener">Contact</a></li>
</ul>
<ul id="socialMenu">
<li>
<a href="https://conceal.network/wiki/doku.php" target="_blank" rel="noopener">
<i class="fab fa-wikipedia-w"></i>
<span>Documentation</span>
</a>
</li><li>
<a href="http://discord.conceal.network" target="_blank" rel="noopener">
<i class="fab fa-discord"></i>
<span>Discord</span>
</a>
</li><li>
<a href="https://t.me/concealcommunity" target="_blank" rel="noopener">
<i class="fab fa-telegram"></i>
<span>Telegram</span>
</a>
</li><li>
<a href="https://twitter.com/ConcealNetwork" target="_blank" rel="noopener">
<i class="fab fa-twitter"></i>
<span>Twitter</span></a>
</li><li>
<a href="https://www.youtube.com/channel/UC_YtRUcy0FR0yIc3H6DDxuw" target="_blank" rel="noopener">
<i class="fab fa-youtube"></i>
<span>Youtube</span>
</a>
</li><li>
<a href="https://concealnetwork.medium.com/" target="_blank" rel="noopener">
<i class="fab fa-medium"></i>
<span>Medium</span></a>
</li><li>
<a href="https://www.facebook.com/concealnetwork/" target="_blank" rel="noopener">
<i class="fab fa-facebook"></i>
<span>Facebook</span></a>
</li><li>
<a href="https://github.com/ConcealNetwork" target="_blank" rel="noopener">
<i class="fab fa-github"></i>
<span>Github</span>
</a>
</li><li>
<a href="https://bitcointalk.org/index.php?topic=5086106" target="_blank" rel="noopener">
<i class="fab fa-bitcoin"></i>
<span>BitcoinTalk</span>
</a>
</li><li>
<a href="https://bridge.conceal.network" target="_blank" rel="noopener">
<i class="fas fa-archway"></i>
<span>Bridge</span>
</a>
</li>
<!-- #mainMenu --></ul>
</div><!-- #mainMenuModal --></div>
<a href="#mainMenuModal" class="mainMenuOpen"></a>
<div class="header-language">
<a id="langSelector" href="#">
<i class="fas fa-language fa-2x align-middle"></i>
<span id="selectedLanguage">English</span>
</a>
<div id="langDropdown" class="dropdown-content"></div>
</div>
</header>
<section>
<div>
<h2>
<span>Conceal.Network</span>
</h2>
<p>Privacy-Protected De-Fi & Encrypted Communications</p>
<ul class="majorLinks">
<li><a href="#markets"><i class="fa fa-cart-shopping"></i> <span>Buy</span></a></li>
<li><a href="#features"><i class="fa fa-money-bill-trend-up"></i> <span>Earn</span></a></li>
<li><a href="#wallets"><i class="fa fa-wallet"></i> <span>Hodl</span></a></li>
<li><a href="https://conceal.network/labs/" target="_blank" rel="noopener"><i class="fa fa-trowel-bricks"></i> <span>Build</span></a></li>
</ul>
</div>
<a href="#features" class="moreLink"></a>
</section>
<!-- #top --></div>
<a href="#top" id="socialMenuBackToTop">
<i class="fas fa-arrow-up"></i>
<span>Back to Top</span>
</a>
<main>
<section id="features">
<div>
<h2>
<span>What We\'re About?</span>
<span>Privacy</span>
</h2>
<picture>
<source srcset="images/ecosystem.webp" type="image/webp">
<img
src="images/ecosystem.png"
alt="some random cloud nonsense"
class="leadingPlate circularPlate"
>
</picture>
<p>
Conceal is a decentralized blockchain prioritizing privacy for De-Fi and encrypted communications. It provides protocol-level private transactions, blockchain deposits, and on-chain encrypted messages, all without relying on a central authority.
</p>
<p>
Powered by open-source code and driven by the community, Conceal\'s network is truly decentralized and resistant to censorship. It ensures accessibility for users worldwide, regardless of their location or status, while guaranteeing that all interactions, transactions, and messages remain private and untraceable.
</p>
<p>
No one owns Conceal, everyone can take part.
</p>
<div class="iconSubsections">
<section>
<i class="fas fa-money-check-alt"></i>
<h3><span>De-Fi</span>: <span>Conceal-Earn</span></h3>
<p>
Decentralized Finance forms the backbone of the Conceal ecosystem, providing users with a decentralized and egalitarian form of cold-staking that earns interess on locked deposits.
</p>
</section><section>
<i class="fas fa-comments"></i>
<h3>Encrypted Messages</h3>
<p>
A truly private, decentralized, anonymous, untraceable, and end-to-end encrypted messaging service that operates on the blockchain while allowing messages that self-destruct.
</p>
</section>
<!-- .iconSubsections --></div>
<form id="compoundInterestCalc">
<h3>Compound Interest Calculator</h3>
<noscript>
<p>
Sorry, this section of the page requires JavaScript to function. Please enable it, or revisit this page in a supported browser.
</p>
</noscript>
<fieldset>
<label>
<span>Deposit</span>
<input type="number" id="nPrincipal" value="20000" min="1" max="9999999">
<span>CCX</span>
</label>
<label>
<span>for</span>
<input type="number" id="nMonths" min="1" max="12" value="12">
<span>Months</span>
</label>
</fieldset>
<div>
<span>Total</span>:<span id="nTEA">0</span> CCX
<span>Profit</span>:<span id="nProfit">0</span> CCX
</div>
<div class="tableContain" id="compoundInterestCalcTable"><table>
<thead>
<tr>
<th scope="row">Compound Level</th>
<th scope="col" colspan="2">Tier 1</th>
<th scope="col" colspan="2">Tier 2</th>
<th scope="col" colspan="2">Tier 3</th>
</tr>
<tr>
<th scope="row">Principal</th>
<td colspan="2">Under 10,000 CCX</td>
<td colspan="2">10,000 - 19,999 CCX</td>
<td colspan="2">Over 20,000 CCX</td>
</tr>
<tr>
<th scope="row">Base/APR</th>
<td colspan="2">2.90%</td>
<td colspan="2">3.90%</td>
<td colspan="2">4.90%</td>
</tr>
<tr>
<th scope="row">Example</th>
<td colspan="2">5,000 CCX</td>
<td colspan="2">10,000 CCX</td>
<td colspan="2">20,000 CCX</td>
</tr>
<tr>
<th scope="row">Maximum Interest</th>
<td colspan="2">4.00%</td>
<td colspan="2">5.00%</td>
<td colspan="2">6.00%</td>
</tr><tr>
<th scope="col"><span>Duration</span>: <span>Months</span></th>
<th scope="col">Interest</th>
<th scope="col">Total</th>
<th scope="col">Interest</th>
<th scope="col">Total</th>
<th scope="col">Interest</th>
<th scope="col">Total</th>
</tr>
</thead>
<tbody></tbody>
</table><!-- .tableContain --></div>
<!-- #compoundInterestCalc --></form>
</div>
<!-- #features --></section>
<section id="wallets">
<div>
<h2><span>Using Conceal</span> <span>Wallets</span></h2>
<h3 class="text-center wallet-subheader">Conceal-Desktop | Full-Node Graphical Wallet</h3>
<ul>
<li>
<i class="fab fa-windows"></i><br>
<a href="https://github.com/ConcealNetwork/conceal-desktop/releases/latest" target="_blank" rel="noopener">Windows</a>
</li>
<li>
<i class="fab fa-ubuntu"></i><br>
<a href="https://github.com/ConcealNetwork/conceal-desktop/releases/latest" target="_blank" rel="noopener">Ubuntu/Linux</a>
</li>
<li>
<i class="fab fa-apple"></i><br>
<a href="https://github.com/ConcealNetwork/conceal-desktop/releases/latest" target="_blank" rel="noopener">MacOS</a>
</li>
</ul>
<p>
Conceal-Desktop is the central point of interaction for the primary features of Conceal and is available for all major platforms. With Conceal Desktop you can send and receive CCX and encrypted secure messages, and manage your deposits.
</p>
<h3 class="text-center wallet-subheader">Conceal-Core | Full-Node Command Line Wallet</h3>
<ul>
<li>
<i class="fab fa-windows"></i><br>
<a href="https://github.com/ConcealNetwork/conceal-core/releases/latest" target="_blank" rel="noopener">Windows</a>
</li>
<li>
<i class="fab fa-linux"></i><br>
<a href="https://github.com/ConcealNetwork/conceal-core/releases/latest" target="_blank" rel="noopener">Linux</a>
</li>
<li>
<i class="fab fa-apple"></i><br>
<a href="https://github.com/ConcealNetwork/conceal-core/releases/latest" target="_blank" rel="noopener">MacOS</a>
</li>
</ul>
<p>
Conceal-Core is the heart of our peer-to-peer privacy-preserving network. It\'s a full local node of our network.
</p>
<h3 class="text-center wallet-subheader">Conceal-Mobile | Lite Wallet</h3>
<ul>
<li>
<i class="fab fa-android"></i><br>
<a href="https://github.com/ConcealNetwork/conceal-wallet-cordova/releases/latest" target="_blank" rel="noopener">Android APK</a><br>
<a href="https://play.google.com/store/apps/details?id=com.ConcealNetwork.ConcealMobile" target="_blank" rel="noopener">
Google Play
</a>
</li>
<li>
<i class="fab fa-apple"></i><br>
<a href="https://wallet.conceal.network/" target="_blank" rel="noopener">iOS</a>
</li>
</ul>
<p>
Conceal-Mobile is a wrapped version of our web wallet.
</p>
<h3 class="text-center wallet-subheader">Other Wallet Types</h3>
<ul>
<li>
<i class="fas fa-paper-plane"></i><br>
<a href="https://conceal.network/paperwallet" target="_blank" rel="noopener">Offline/Paper</a>
</li><li>
<i class="fab fa-chrome"></i><br>
<a href="https://wallet.conceal.network/" target="_blank" rel="noopener">Web Wallet</a>
</li>
</ul>
<p>
Conceal Web Wallet runs in your Browser on any device, Mobile, PC or Mac! It is completely Client-Side, stores your encrypted wallet keys on your device, and is the perfect lightweight alternative to the Full Node Wallet. The Conceal Paper wallet is the easiest way to create an offline wallet with simple Key generation tools.
</p>
<img src="images/newgui.png" alt="Conceal GUI" class="plate">
</div>
<!-- #wallets --></section>
<section id="mining">
<div>
<h2>
<span>Getting CCX</span>
<span>Mining</span>
</h2>
<h3>Quick Start</h3>
<div class="codeBlocks">
<div>
<h4><a href="https://github.com/fireice-uk/xmr-stak/releases" target="_blank" rel="noopener">XMRStak</a></h4>
<pre><code>"pool_list": [
{
"pool_address": "pool.conceal.network:3333",
"wallet_address": "YOUR_WALLET_ADDRESS",
"rig_id": "YOUR_WORKER_NAME",
"pool_password": "x",
"use_nicehash": false,
"use_tls": false,
"tls_fingerprint": "",
"pool_weight": 1
},
],
"currency": "cryptonight_gpu",</code></pre>
</div>
<div>
<h4><a href="https://github.com/CryptoDredge/miner/releases" target="_blank" rel="noopener">CryptoDredge</a></h4>
<pre>c:/cryptodredge/CryptoDredge.exe -a cngpu -o stratum+tcp://pool.conceal.network:3333 -u wallet_address -p WorkerName --api-type ccminer-tcp -b</pre>
</div>
<div>
<h4><a href="https://github.com/Bendr0id/xmrigCC" target="_blank" rel="noopener">XMRigCC</a></h4>
<pre>xmrigDaemon --no-cpu -a cn/gpu -o pool:port -u wallet_address -p x -k --cc-url=127.0.0.1:3344 --cc-access-token=your_token --cc-worker-id=worker_name pause</pre>
</div>
<div>
<h4><a href="https://www.srbminer.com/" target="_blank" rel="noopener">SRBMiner</a></h4>
<pre><samp>SRBMiner-MULTI.exe --algorithm gpu --pool pool.conceal.network:3333 --wallet "YOUR_WALLET_ADDRESS" --gpu-tweak-profile 5</samp></pre>
</div>
<!-- .codeBlocks --></div>
<p>
<span>The easiest way to get CCX is to mine with CPU or GPU using one of the miners that support CCX. Check out our</span>
<a href="https://conceal.network/wiki/doku.php?id=mining" target="_blank" rel="noopener">documentation</a>
<span>for more detailed information about mining CCX.</span>
</p>
<div class="tableContain" id="poolsTable"><table>
<caption><span>Mining</span> <span>Pools</span></caption>
<thead>
<tr>
<th scope="col">
<i class="fa fa-server"></i>
<span>Pools</span>
</th>
<th scope="col">
<i class="fa fa-th-large"></i>
<span>Height</span>
</th>
<th scope="col">
<i class="fas fa-coins"></i>
<span>Fee</span>
</th>
<th scope="col">
<i class="fas fa-tachometer-alt"></i>
<span>Hashrate</span>
</th>
<th scope="col">
<i class="fas fa-users-cog"></i>
<span>Miners</span>
</th>
</tr>
</thead>
<tbody></tbody>
</table><!-- .tableContain --></div>
</div>
<!-- #mining --></section>
<section id="markets">
<div>
<h2>
<span>Buying</span> <span>CCX</span>
<span>Markets</span>
</h2>
<ul class="majorLinks">
<li><a href="https://tradeogre.com/exchange/BTC-CCX" target="_blank" rel="noopener">Buy on TradeOgre with BTC</a></li>
<li><a href="https://tradeogre.com/exchange/USDT-CCX" target="_blank" rel="noopener">Buy on TradeOgre with USDT</a></li>
<li><a href="https://nonkyc.io/market/CCX_BTC" target="_blank" rel="noopener">Buy on nonKYC with BTC</a></li>
<li><a href="https://nonkyc.io/market/CCX_USDT" target="_blank" rel="noopener">Buy on nonKYC with USDT</a></li>
<li><a href="https://www.sevenseas.exchange/market/CCX-USDT" target="_blank" rel="noopener">Buy on Seven Seas with USDT</a></li>
</ul>
</div>
<!-- #markets --></section>
<section id="buyingwCCXPOLYGON">
<div>
<h2>
<span>Buying</span> <span>wCCX</span>
<span>Polygon</span>
</h2>
<ul class="majorLinks">
<li><a href="https://app.sushi.com/" target="_blank" rel="noopener">SushiSwap</a></li>
<li><a href="https://app.uniswap.org/" target="_blank" rel="noopener">Uniswap</a></li>
</ul>
</div>
<!-- #buyingwCCXBNB --></section>
<section id="buyingwCCXBNB">
<div>
<h2>
<span>Buying</span> <span>wCCX</span>
<span>Binance Smart Chain</span>
</h2>
<ul class="majorLinks">
<li><a href="https://1inch.exchange/#/wCCX/BNB" target="_blank" rel="noopener">1Inch</a></li>
<li><a href="https://exchange.pancakeswap.finance/#/swap?outputCurrency=0x988c11625472340b7b36ff1534893780e0d8d841" target="_blank" rel="noopener">Pancakeswap</a></li>
<li><a href="https://www.bakeryswap.org/#/swap?inputCurrency=0xe9e7cea3dedca5984780bafc599bd69add087d56&outputCurrency=0x988c11625472340b7b36ff1534893780e0d8d841" target="_blank" rel="noopener">Bakeryswap</a></li>
</ul>
<a href="https://conceal.network/community/#exchanges">
<i class="fa fa-plus"></i>
<span>More</span>
</a>
</div>
<!-- #buyingwCCXBNB --></section>
<section id="buyingwCCXETH">
<div>
<h2>
<span>Buying</span> <span>wCCX</span>
<span>Ethereum</span>
</h2>
<ul class="majorLinks">
<li><a href="https://1inch.exchange/#/r/0x9be82c0E5B75C53F32E63b40442E9dA8cCA06f21/ETH/wCCX" target="_blank" rel="noopener">1Inch</a></li>
<li><a href="https://app.uniswap.org/#/swap?outputCurrency=0x21686f8ce003a95c99acd297e302faacf742f7d4" target="_blank" rel="noopener">Uniswap</a></li>
</ul>
<a href="https://conceal.network/community/#exchanges">
<i class="fa fa-plus"></i>
<span>More</span>
</a>
</div>
<!-- #buyingwCCXETH --></section>
<section id="partners">
<div>
<h2>
<span>Working Together</span>
<span>Our Partners</span>
</h2>
<ul class="partnerCards">
<li>
<picture>
<a href="https://ergoplatform.org" target="_blank" rel="noopener"><img src="images/partners/ERGO.png" alt="ERGO"><br></a>
</picture>
</li>
</ul><ul class="partnerCards">
<li>
<picture>
<a href="https://crypto.com/price/conceal/" target="_blank" rel="noopener"><img src="images/partners/CRYPTO.png" alt="Crypto.com"><br></a>
</picture>
</li>
</ul><ul class="partnerCards">
<li>
<picture>
<a href="https://cryptocurrencycheckout.com/" target="_blank" rel="noopener"><img src="images/partners/cyprtocurrencycheckout.png" alt="cryptocurrencycheckout.com"><br></a>
</picture>
</li>
</ul>
</div>
<!-- #community --></section>
<section id="helpdesk">
<div>
<h2>
<span>Do you have a problem or need to contact us?</span>
<span>Use our helpdesk</span>
</h2>
<ul class="majorLinks">
<li><a href="https://conceal.network/support/" id="helpdeskButton" target="_blank" rel="noopener"><span>Send Ticket</span></a></li>
</ul>
</div>
<!-- #helpdesk --></section>
<section id="cryptoWidget">
<script src="https://crypto.com/price/static/widget/index.js"></script>
<div
id="crypto-widget-CoinTicker"
data-transparent="true"
data-theme="dark"
data-design="modern"
data-coins="conceal">
</div>
<!-- #cryptoWidget --></section>
</main>
<footer style="background: unset;background-color: #181A20;">
<div style="padding:20px 0 0 0;">
<a href="#top">Back to Top</a>
</div>
<div class="fcontain">
<div class="flistwrap">
<ul>
<h2>General</h2>
<li>
<a href="about/" >About</a>
</li>
<li>
<a href="https://bridge.conceal.network/" target="_blank" rel="noopener">Bridge</a>
</li>
<li>
<a href="https://conceal.network/wiki/doku.php" target="_blank" rel="noopener">Documentation</a>
</li>
<li>
<a href="https://explorer.conceal.network/" target="_blank" rel="noopener">Explorer</a>
</li>
<li>
<a href="community/#exchanges" >Exchanges</a>
</li>
<li>
<a href="https://conceal.network/wiki/doku.php?id=FAQ" target="_blank" rel="noopener">FAQ</a>
</li>
<li>
<a href="labs/" >Labs</a>
</li>
<li>
<a href="https://conceal.network/wiki/doku.php?id=wrapped-conceal" target="_blank" rel="noopener">wCCX</a>
</li>
<li>
<a href="https://conceal.network/support/" target="_blank" rel="noopener">Support</a>
</li>
</ul>
</div>
<div class="flistwrap">
<ul>
<h2>Products</h2>
<li>
<a href="#wallets" >Wallets</a>
</li>
<li>
<a href="https://bridge.conceal.network/" >Conceal-Bridge</a>
</li>
<li>
<a href="defi/" >Conceal-Earn</a>
</li>
<li>
<a href="https://wallet.conceal.network/" >Conceal-WebWallet</a>
</li>
<li>
<a href="messaging/" >Conceal-Messaging</a>
</li>
</ul>
</div>
<div class="flistwrap">
<ul>
<h2>Community</h2>
<li>
<a href="https://discord.conceal.network">
Discord
<i class="fab fa-discord"></i>
</a>
</li><li>
<a href="https://t.me/concealcommunity">
Telegram
<i class="fab fa-telegram"></i>
</a>
</li><li>
<a href="https://twitter.com/ConcealNetwork">
Twitter
<i class="fab fa-twitter"></i>
</a>
</li><li>
<a href="https://www.youtube.com/channel/UC_YtRUcy0FR0yIc3H6DDxuw">
Youtube
<i class="fab fa-youtube"></i>
</a>
</li><li>
<a href="https://medium.com/@ConcealNetwork">
Medium
<i class="fab fa-medium"></i>
</a>
</li><li>
<a href="https://www.facebook.com/concealnetwork/">
Facebook
<i class="fab fa-facebook"></i>
</a>
</li><li>
<a href="https://github.com/ConcealNetwork">
Github
<i class="fab fa-github"></i>
</a>
</li><li>
<a href="https://bitcointalk.org/index.php?topic=5086106">
BitcoinTalk
<i class="fab fa-bitcoin"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="footerelm" data-aos="fade-up" data-aos-delay="100">
<span class="url_terms"><a href="tc/index.html">T&C</a></span>
<div class="vl"></div>
<span class="url_terms"><a href="privacy/index.html">Privacy</a></span>
</div class="footerelm">
<div class="footerelm" data-aos="fade-up" data-aos-delay="100">
© 2017-<span id="crFullYear"></span><span> Conceal.Network, Conceal DAO, Conceal Team & Conceal Developers - All rights reserverd.</span><br>
</div>
</footer>
<script src="static/homepage.js?v=1"></script>
<script src="js/language.js?v=1"></script>
<script src="js/pools.js?v=1"></script>
<script src="js/calc.js?v=1"></script>
</body></html>';
?>