This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1792 lines (1722 loc) · 86 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html>
<head>
<title>ZelCore - part of Zel Technologies GmbH</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="./assets/css/main.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/tachyons.min.css"/>
<link rel="stylesheet" href="https://zel.cash/css/unified.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<noscript><link rel="stylesheet" href="./assets/css/noscript.css" /></noscript>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- Favicon -->
<link href="./images/favicon.ico" rel="shortcut icon"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120023197-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120023197-1');
</script>
</head>
<body class="is-preload" onload="hidefield()">
<div id="myNav" class="overlay" onclick="closeNav()">
<!-- Button to close the overlay navigation -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<!-- Overlay content -->
<div class="overlay-content">
<a href="https://zeltechnologies.com"><img src="https://zel.cash/img/logo-zeltech-text.svg"></a>
<a href="https://zel.cash"><img src="https://zel.cash/img/logo-zelcash-text-light.svg"></a>
<a href="https://zelcore.io"><img src="https://zel.cash/img/logo-zelcore-text-light.svg"></a>
<a href="https://zelid.io"><img src="https://zel.cash/img/logo-zelid-text.svg"></a>
</div>
</div>
<div class="unified" onclick="openNav()">
<a href="#" onclick="openNav()"><i class="fas fa-bars"></i> Zel Ecosystem</a>
</div>
<div class="triangle-down">
<p>
<i class="fas fa-caret-down fa-2x"></i>
</p>
</div>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#roadmap">Roadmap</a></li>
<li><a href="#affiliates">Affiliates</a></li>
<li><a href="#support">Support</a></li>
<li><a href="#getlisted">Get Listed</a></li>
</ul>
</nav>
<svg id="icons" class="hide">
<symbol id="arrow" viewBox="0 0 451.846 451.847"><path fill="#FFF" d="M345.44 248.292l-194.286 194.28c-12.36 12.366-32.397 12.366-44.75 0-12.354-12.353-12.354-32.39 0-44.743l171.914-171.91-171.91-171.905c-12.353-12.36-12.353-32.394 0-44.748 12.355-12.36 32.392-12.36 44.75 0L345.446 203.55c6.177 6.18 9.262 14.27 9.262 22.367 0 8.098-3.09 16.195-9.267 22.372z"/></symbol>
</svg>
<div class="slider-content">
<div class="slider-wrapper">
<div class="slider-container">
<div class="control-nav">
<ul></ul>
</div>
<div class="nav-wrapper">
<div class="next">
<div class="next-button">
<svg>
<use xlink:href="#arrow"></use>
</svg>
</div>
</div>
</div>
<div class="slide active" data-order="1" data-color="#f59600" data-name="red">
<div class="slide-content ">
<div class="clip-svg">
<img class="" src="./images/slide001.jpg" alt="" />
<div class="title-wrapper">
<h1>Multi-Asset Encrypted Wallet</h1>
<h2>ZelCore keeps your assets safe.</h2>
</div>
</div>
</div>
</div>
<div class="slide " data-order="2" data-color="#f59600" data-name="orange">
<div class="slide-content ">
<div class="clip-svg">
<img class="" src="./images/slide002.jpg" alt="" />
<div class="title-wrapper bigger">
<h1>Desktop</h1>
<h2>Support Windows, Linux and macOS</h2>
</div>
</div>
</div>
</div>
<div class="slide " data-order="3" data-color="#f59600" data-name="blue">
<div class="slide-content ">
<div class="clip-svg">
<img class="" src="./images/slide003.jpg" alt="" />
<div class="title-wrapper bigger">
<h1>Mobile</h1>
<h2>Support for Android and iOS</h2>
</div>
</div>
</div>
</div>
<div class="slide " data-order="3" data-color="#f59600" data-name="blue">
<div class="slide-content ">
<div class="clip-svg">
<img class="" src="./images/slide004.jpg" alt="" />
<div class="title-wrapper bigger">
<h1>Over 100+ assets</h1>
<h2>Including <span class="dn-m">Zelcash</span> (ZEL), <span class="dn-m">Bitcoin</span> (BTC), <span class="dn-m">Litecoin</span> (LTC), <span class="dn-m">Ethereum</span> (ETH), <span class="dn-m">Monero</span> (XMR), <span class="dn-m">Zcash</span> (ZEC), <span class="dn-m">Tether</span> (USDT) and many more.</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Main -->
<div id="main">
<!-- About -->
<article id="about">
<h2 class="major">About ZelCore</h2>
<span class="image main"><img src="./images/zelcore-portfolio.png" alt="" /></span>
<h3>Multi-Asset Encrypted Wallet</h3>
<p>ZelCore keeps your assets safe. With support for 100+ assets including Zelcash (ZEL), Bitcoin (BTC), Litecoin (LTC), Ethereum (ETH), Monero (XMR), Zcash (ZEC), Tether (USDT) and many more.</p>
<span class="image main"><img src="./images/zelcore-login.png" alt="" /></span>
<h3>Support for Multiple Accounts</h3>
<p>Our login system allows you to have multiple encrypted wallets and accounts on the same computer and to login on multiple devices while still maintaining privacy as we don't store any user information. Privacy is something we at Zel strongly believe in.</p>
<span class="image main"><img src="./images/zelcore-fullnode.png" alt="" /></span>
<h3>Light Node or Full Node. The Choice is Yours.</h3>
<p>ZelCore gives you the power to choose if you want speed or advanced features. All wallets are available as light nodes, with the option to download the Full Node should you required the advanced features like shielded addresses, recovering existing wallets, and much more.</p>
<span class="image main"><img src="./images/zelcore-exchange.png" alt="" /></span>
<h3>Built-in Exchanges</h3>
<p>ZelCore users can utilise built-in ShapeShift, Changelly and Kyber exchanges. Swap cryptocurrencies directly inside the ZelCore platform on both Desktop and Mobile.</p>
</article>
<!-- Download -->
<article id="download">
<h2 class="major">Desktop</h2>
<p>Version 2.0.1 <span class="space">|</span> <a href="#releasenotes">Release Notes</a> <span class="space">|</span> <a href="#sha">SHA256</a> <span class="space">|</span> <a href="/pdf/ZelCore_Desktop_Overview_v1.3.0_08Jan2018.pdf" target="_blank">Getting Started</a></p>
<ul class="actions">
<li><a href="./downloads/zelcore.dmg" id="macOS" class="button"><i class="fab fa-apple"></i> macOS</a></li>
<li><a href="./downloads/zelcore.exe" id="Windows" class="button"><i class="fab fa-windows"></i> Windows</a></li>
<li><a href="./downloads/zelcore-portable.exe" id="Windows" class="button"><i class="fab fa-windows"></i> Windows (Portable)</a></li>
</ul>
<ul class="actions">
<li><a href="#linux" id="Linux" class="button"><i class="fab fa-linux"></i> Linux builds</a></li>
</ul>
<h2 class="major">Mobile</h2>
<p>Version 1.5.0 <span class="space">|</span> <a href="#releasenotesmobile">Release Notes</a></p>
<ul class="actions">
<li><a href="https://itunes.apple.com/us/app/zelcore/id1436296839?mt=8" class="noborder" target="_blank"><img src="images/badge-appstore.svg" class="appstore"></a></li>
<li><a href="https://play.google.com/store/apps/details?id=com.zelcash.zelcore" class="noborder" target="_blank"><img src="images/badge-googleplay.svg" class="playstore"></a></li>
</ul>
</article>
<!-- SHA -->
<article id="sha">
<h3>ZelCore v2.0.1 has following SHA256 hashes</h3>
<p>All ZelCore releases are signed by Zel Technologies GmbH. Furthermore we provide calculated SHA256 hashes of our releases </p>
f36e0ea539d08effaa549307db4121b2c5df13a9025475bdf928f1c96ab24888
<h5>* zelcore.dmg</h5>
7b7e4c092e25587734d767826a136ee8860f19a3c4b51f80a04f9b0a4b4cadbf
<h5>* zelcore.exe</h5>
a5f582c9fd11ea5f47bf744a8fcf542637c5b26a9ae03c469865b6324190c621
<h5>* zelcore-portable.exe</h5>
19a46ceb82abb9cd55badf7e200c59c9cbf99b7ea075c1eaddcf1be7fda33162
<h5>* zelcore.AppImage & zelcore4x.AppImage</h5>
7365a8745b155182df3a6a6ec41d90995d42572404b83b1e15e626ff4895f8ca
<h5>* zelcore.deb & zelcore4x.deb</h5>
e4a876ebe2097d4fc47f99183fa8f6826cae4db450fc6916ff47b517894b148a
<h5>* zelcore3x.AppImage</h5>
b2642c5e3fdc606d6f3c24c38ddbfb15386724538567205523c0c15d974598a9
<h5>* zelcore3x.deb</h5><br>
<p>GPG Fingerprint: 4F7F EBBF 1BDD D239 7DAB E2CF 4B69 CA27 A986 265D</p>
<p>Zel Technologies GmbH (TD7JHAFH65)</p>
<h5>Always check hashes and certificates prior running software.</h5>
</article>
<!-- Linux -->
<article id="linux">
<h2 class="major">Linux</h2>
<ul class="actions">
<li><a href="https://apt.zel.cash/" id="Linux" class="button"><i class="fab fa-linux"></i> APT repository </a></li>
</ul>
<ul class="actions">
<li><a href="./downloads/zelcore.AppImage" id="Linux" class="button"><i class="fab fa-linux"></i> Linux (.AppImage)</a></li>
<li><a href="./downloads/zelcore.deb" id="Linux" class="button"><i class="fab fa-linux"></i> Linux (.deb)</a></li>
</ul>
<ul class="actions">
<li><a href="./downloads/zelcore3x.AppImage" id="Linux" class="button"><i class="fab fa-linux"></i> Linux (3x kernel)</a></li>
<li><a href="./downloads/zelcore3x.deb" id="Linux" class="button"><i class="fab fa-linux"></i> Linux (3x kernel .deb)</a></li>
</ul>
<ul class="actions">
<li><a href="./downloads/zelcore4x.AppImage" id="Linux" class="button"><i class="fab fa-linux"></i> Linux (4x kernel)</a></li>
<li><a href="./downloads/zelcore4x.deb" id="Linux" class="button"><i class="fab fa-linux"></i> Linux (4x kernel .deb)</a></li>
</ul>
</article>
<!-- Release notes -->
<article id="releasenotes">
<h2 class="major">Release Notes</h2>
<!-- 2.0.1 -->
<p>2.0.1 Release Notes</p>
<h4>Info</h4>
<p>Version 2.0.1 Plus </p>
<h4>Bugs</h4>
<ul>
<li>Fixes ETH and ZEC not correctly loading for ZelCore+</li>
</ul>
<!-- END -->
<hr>
<!-- 2.0.0 -->
<p>2.0.0 Release Notes</p>
<h4>Info</h4>
<p>Version 2.0.0 Plus </p>
<h4>Features</h4>
<ul>
<li>ZelCore+ is now available</li>
<li>ZelCore+ users now have 3 additional premium addresses - those are kept forever and synced accross devices</li>
<li>ZelCore+ users can import up to 6 addresses/wallets</li>
<li>ZelCore+ users have direct access to Binance, Kraken, Bittrex exchange via API</li>
<li>ZelCore+ users can utilize Portfolio Tracker</li>
<li>ZelCore+ users have access to market history of coins</li>
<li>ZelCore+ features redesigned asset overview. User can see coin statistics, graphs and coin news</li>
<li>ZelCore+ adds a posibility to sign message and proove ownership of any of users address</li>
<li>ZelCore+ user can now utilize the full length of payment notes (80 characters instead of 20) and unlimited for ETH, ETC</li>
<li>News aggregation in login page has been added</li>
<li>Reworked fiat rates backend</li>
<li>Buy orders are now in a better order on Binance Chain DEX</li>
<li>Economy Mode bringing legacy ZelCore style is now available in Appearance settings</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes fiat price not being always available</li>
<li>Corrects order in buy order book</li>
<li>Fixes empty donut not always be visible</li>
</ul>
<!-- END -->
<hr>
<!-- 1.6.0 -->
<p>1.6.0 Release Notes</p>
<h4>Info</h4>
<p>Version 1.6.0 Dexter </p>
<h4>Features</h4>
<ul>
<li>Binance Chain Decentralised Exchange is now available</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes drag and drop issues</li>
<li>Fixes close button</li>
<li>Fixes aligment in full node</li>
</ul>
<!-- END -->
<hr>
<!-- 1.5.0 -->
<p>1.5.0 Release Notes</p>
<h4>Info</h4>
<p>Version 1.5.0 Chain </p>
<h4>Features</h4>
<ul>
<li>Binance mainnet Binance Chain is now available</li>
<li>It is now possible to send data (payment notes) on Ethereum and Ethereum Classic</li>
<li>Wallets now can have different activated coins</li>
<li>Smartify button now works separately on each wallet</li>
<li>Notification center added showing assets in maintaince and other important messages</li>
<li>Showing empty donut instead of no donut when wallet is empty</li>
<li>Anon full node binaries updated</li>
<li>Minor features</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes blinkly showing transaction list from a different coin</li>
<li>Fixes showing some incorrect error messages</li>
<li>Minor fixes</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.4 -->
<p>1.4.4 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.4 Minor </p>
<h4>Features</h4>
<ul>
<li>ZelCash full node binaries updated to version 3.1.1</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.3 -->
<p>1.4.3 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.3 Wolf </p>
<h4>Features</h4>
<ul>
<li>CryptoWolf exchanging featuring ZelCash is now available!</li>
<li>Bitcoin transaction fees are adjusted.</li>
<li>Updated Genesis binaries to 3.0.2.</li>
<li>Updated Zcash binaries to 2.0.4.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Some users were experiencing problems with BitcoinZ solution due to cached permanent redirect to wrong site. This version uses different backend BitcoinZ solution and thus fixes the issue.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.2 -->
<p>1.4.2 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.2 Sasha </p>
<h4>Features</h4>
<ul>
<li>Adds support for BitcoinZ fork.</li>
<li>Adds support for Genesis fork.</li>
<li>Bitcoin Zero is now available.</li>
<li>Following ERC20 assets added: SingularityNET, Ambrosus, BlockMason Credit Protocol, Blox, CelerToken, Cindicator, Streamr DATAcoin, Dock, Everex, Gifto, Genesis Vision, HoloToken, Insolar, IoTeX, SelfKey, Lunyr, Monetha, oax, OST, Populous, Quantstamp, Ren, iExec RLC, SingularDTV, Tierion, Viberate, VIBE, Tael, WePower, Dibicoin, Fuel Token.</li>
<li>It is now possible to reorder asset with drag and drop.</li>
<li>Icons of add, hide and smartify added.</li>
<li>Made with Love by Zel animation added.</li>
<li>Following languages added: Español, Norsk, Srpski.</li>
<li>Following full node binaries updated: BitcoinZ, Genesis, GroestlCoin, Ravencoin, Zclassic.</li>
<li>Minor tweaks.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes not putting correct payment ID on CoinSwitch while selling Monero.</li>
<li>Maximum button has been corrected.</li>
<li>Fixes showing shield coinbase command in non Zcash type coins.</li>
<li>Fixes not properly displaying selected fiat currency in account settings.</li>
<li>GroestlCoin may have had issues on downloading full node binaries on some platforms.</li>
<li>While sending Tether and not having enough BTC a working animation was stil shown preventing actions.</li>
<li>Minor fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.1 -->
<p>1.4.1 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.1 Samuel </p>
<h4>Features</h4>
<ul>
<li>Adds support for BZEdge fork.</li>
<li>Adds support for Monero fork.</li>
<li>Option to disable full node encryption is now for experienced users available.</li>
<li>Gunthy is now available.</li>
<li>ZelNodes section redesigned.</li>
<li>Couple of minor tweaks.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes Safecoin sending issues.</li>
<li>macOS full node wallet encryption is corrected and by default enabled! ATTENTION: Users that were used to mix Swing wallet and ZelCore wallet on macOS now either must choose their full node wallet or disable ZelCore encryption in settings!</li>
<li>"Fixes not showing shieldable amount in full node.</li>
<li>Couple minor fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.0 -->
<p>1.4.0 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.0 Elise </p>
<h4>Features</h4>
<ul>
<li>Full node tools section has been redesigned.</li>
<li>Following full node binaries update: ZelCash, Test Coin.</li>
<li>Following languages are now available: Russian, Chinese, Greek, German.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes wrongly displayed texts.</li>
<li>Fixes replay protection between ETH/ETC chains.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.3.8 -->
<p>1.3.8-10 Release Notes</p>
<h4>Info</h4>
<p>Version 1.3.8-10 Hoi-An </p>
<h4>Features</h4>
<ul>
<li>Groestlcoin is now available.</li>
<li>ZelNodes are now available.</li>
<li>Following binaries updated: Zclassic, Snowgem, Safecoin, Zcoin, Zcash, Test Coin, ZelCash, Bitcoin.</li>
<li>German and Russian translation is now available.</li>
<li>Various minor tweaks.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes erroring message of full node connection.</li>
<li>Fixes not showing correct error message when transaction construction fails on Bithereum and Genesis coins.</li>
<li>Fixes failover solution which was causing problems with logging for some users in restricted countries.</li>
<li>Various minor fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.3.6 -->
<p>1.3.6 Release Notes</p>
<h4>Info</h4>
<p>Version 1.3.6 Douglas </p>
<h4>Features</h4>
<ul>
<li>Monero is now available.</li>
<li>Ethereum classic now supports showing fees.</li>
<li>Anon binaries updated.</li>
<li>Various minor tweaks.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Ethereum Classic backend service was malfunctioning.</li>
<li>Fixes pasting.</li>
<li>Fixes selecting wallet from dropdown menu on windows.</li>
<li>Fixes full node Test Coin binaries on unix platforms.</li>
<li>Various string fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.3.5 -->
<p>1.3.5 Release Notes</p>
<h4>Info</h4>
<p>Version 1.3.5 Dibi </p>
<h4>Features</h4>
<ul>
<li>Bithereum is now available.</li>
<li>Hoovering over token shows its contract address.</li>
<li>Settings section.</li>
<li>Hiding and smartifying assets is now in Portfolio section.</li>
<li>Commercium (CMM) is now available.</li>
<li>Test Coin (TESTZEL) - ZelCash testnet is now available.</li>
<li>ZelNodes management system in now avilable in full node of Test Coin.</li>
<li>Transactions including private addresses are now better displayed.</li>
<li>Following binaries updated: Dash, Genesis, Komodo, Raven, Snowgem, Horizen.</li>
<li>Various minor tweaks.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>TrueUSD contract address fix.</li>
<li>Fixes pasting.</li>
<li>Zcoin unconfirmed balance is now disabled due to a backend issues.</li>
<li>Various minor fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.3.4 -->
<p>1.3.4 Release Notes</p>
<h4>Info</h4>
<p>Version 1.3.4 Denver </p>
<h4>Features</h4>
<ul>
<li>Bithereum is now available.</li>
<li>Anon binaries updated.</li>
<li>An option to directly modify coin configuration file is now available in full node.</li>
<li>It is now possible to Shield your coinbase transactions in full node.</li>
<li>Exporting your ZelCash wallet is now available in full node.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.3.3 -->
<p>1.3.3 Release Notes</p>
<h4>Info</h4>
<p>Version 1.3.3 Austin </p>
<h4>Features</h4>
<ul>
<li>Hoovering over token shows its contract address.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Substratum had old contract address.</li>
<li>Loopring decimals were failing to obtain as it is not following erc20 standard.</li>
<li>Storj token fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.3.2 -->
<p>1.3.2 Release Notes</p>
<h4>Info</h4>
<p>Version 1.3.2 Georgia </p>
<h4>Features</h4>
<ul>
<li>New Stable Asset: Stasis EURS.</li>
<li>New Help Center with Live Support, Forums and new reworked FAQ.</li>
<li>Ethereum is now showing errored transactions.</li>
<li>Zcoin is now correctly showin unconfirmed balance.</li>
<li>Value per one asset added.</li>
<li>Several minor tweaks.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes Kyber Exchange.</li>
<li>Fixes import of address and dumping wallet in full node.</li>
<li>Fixes ethereum/erc20 sometimes showing 10 times bigger value in fiat amount.</li>
<li>Small minor fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.3.1 -->
<p>1.3.1 Release Notes</p>
<h4>Info</h4>
<p>Version 1.3.1 Jaeger </p>
<h4>Bugs</h4>
<ul>
<li>Fixes blank screen on some coins due to missing exception of contacts.</li>
<li>Fixes sending issues on some ERC20 Tokens.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.3.0 -->
<p>1.3.0 Release Notes</p>
<h4>Info</h4>
<p>Version 1.3.0 Jaeger </p>
<h4>Features</h4>
<ul>
<li>Multiple addresses.</li>
<li>Better checks for locally stored contacts.</li>
<li>Hard working indicators prohibiting multiple presses of send buttons and beginning of exchanges when previous one is ongoing.</li>
<li>Several minor tweaks.</li>
<li>BTCP binaries updated.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes update progress.</li>
<li>Several UI and minor bug fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.2.5 -->
<p>1.2.5 Release Notes</p>
<h4>Info</h4>
<p>Version 1.2.5 Papaja </p>
<h4>Features</h4>
<ul>
<li>CoinSwitch exchange is now available.</li>
<li>Proxy servers are now available</li>
<li>Following ERC20 assets added: Digix Gold (DGX), Electrify (ELEC), Iconomi (ICN), WAX (WAX), EnjinCoin (ENJ), ChainLink (LINK), Loopring (LRC), Ripio Credit (RCN), Eidoo (EDO), Dentacoin (DCN), Data (DTA), Aurora (AOA), Theta (THETA), AdToken (ADT), Mainframe Token (MFT), ATLANT (ATL), Aragon (ANT), Aeron (ARN), Bread (BRD), Augur (REP), QuarkChain Token (QKC), LOOM (LOOM)</li>
<li>Komodo, ZelCash, Zero, Snowgem Sapling ready release.</li>
<li>Komodo now construct transactions with locktime specified for the ability of interest claim.</li>
<li>Zero, ZelCash, Zcoin, Snowgem and Komodo full node binaries updated.</li>
<li>Timeouts to some requests added.</li>
<li>In case of corrupted full node blockchains, reindex will now start automatically.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Full node configuration file was not generating correctly on Windows platform.</li>
<li>Export to csv was corrected to take very large amount of transactions into consideration.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.2.4 -->
<p>1.2.4 Release Notes</p>
<h4>Info</h4>
<p>Version 1.2.4 Durian </p>
<h4>Features</h4>
<ul>
<li>BZedge (BEZ) is now available.</li>
<li>Zero (ZER) binaries updated.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Genesis was showing 30 oldest transactions instead of 30 newest transactions.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.2.3 -->
<p>1.2.3 Release Notes</p>
<h4>Info</h4>
<h4>Bugs</h4>
<ul>
<li>Payment note was mandatory.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.2.2 -->
<p>1.2.2 Release Notes</p>
<h4>Info</h4>
<p>Version 1.2.2 Ovechka </p>
<h4>Features</h4>
<ul>
<li>Following assets added: Genesis (GENX), Proof Of Review (POR).</li>
<li>BitcoinCash is now available and defaults to ABC version.</li>
<li>Export to CSV option activated for all assets.</li>
<li>d2FA accounts can now be accessed in offline mode as well.</li>
<li>Better protection against flooding attacks.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>BitcoinCash contact addresses from successful transactions were saving in legacy format instead of CashAddr format.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.2.1 -->
<p>1.2.1 Release Notes</p>
<h4>Info</h4>
<p>Version 1.2.1 AirCrispX2 </p>
<h4>Features</h4>
<ul>
<li>An experimantal feature to export transactions to CSV has been added for some coins. We are looking for a feedback to completely activate this feature in the next release.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>A wrong iteration was preventing sending from full node.</li>
<li>Fixes table overlapping on installation page.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.2.0 -->
<p>1.2.0 Release Notes</p>
<h4>Info</h4>
<p>Version 1.2.0 AirCrisp </p>
<h4>Features</h4>
<ul>
<li>UI has been upgraded.</li>
<li>Stable coins are now in a separate category.</li>
<li>Close dialog has been added.</li>
<li>Fiat rates have been reworked and few additional added.</li>
<li>New auto updater.</li>
<li>Following assets have been added: Ethereum Classic (ETC), CoinBene Coin (CONI), TOKOK (TOK).</li>
<li>Changelly exchange has been upgraded to recent API and to reflect possible KYC requirement.</li>
<li>Optimised performance for large transactions.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Some fiat currencies were showing wrong value.</li>
<li>Sending large amount of token sometimes resulted in an error.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.1.3 -->
<p>1.1.3 Release Notes</p>
<h4>Info</h4>
<p>Version 1.1.3a Sapling </p>
<h4>Features</h4>
<ul>
<li>Following stable coins added: Paxos Standard, USD Coin, Gemini Dollar.</li>
<li>Sapling is now supported in both light and full mode.</li>
<li>Reworked backend of full node binaries installation.</li>
<li>Following full node binaries updated: Zcash, Hush, Ravencoin.</li>
<li>ShapeShift is temporarily disabled due to their KYC requirements.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Cosmetic fixes.</li>
<li>Fixes stuck at verification while installing a full node coin</li>
<li>v1.1.3a fixes full node installation bug especially on macOS introduce in v1.1.3 and freeze issue when dealing with enormously large transactions.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.1.2 -->
<p>1.1.2 Release Notes</p>
<h4>Info</h4>
<p>Version 1.1.2 Hodler </p>
<h4>Features</h4>
<ul>
<li>Adds a start-up splash screen.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes Doughnut flickering.</li>
<li>Fixes white screen at start.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.1.1 -->
<p>1.1.1 Release Notes</p>
<h4>Info</h4>
<p>Version 1.1.1 Zel ID </p>
<h4>Features</h4>
<ul>
<li>Zel ID zel: protocol allows easy authentication on websites and much more.</li>
<li>Zel ID Message signing allows proving of particular zel identity.</li>
<li>Zel ID d2FA is decentralised two factor authentication system making ZelCore the safest platform utilizing blockchain for securing accounts.</li>
<li>Zel ID Easy Login allows simple loggining into your account with just a passphrase.</li>
<li>Dash is now available in both lite and full node.</li>
<li>Many fullnodes binaries updated: Bitcoin, Litecoin, Horizen, Bitcoin Gold, Komodo, Snowgem, Bitcore, Ravencoin, Anon.</li>
<li>New interactive doughnut chart.</li>
<li>A few asset names, asset logos corrected.</li>
<li>Smart Portfolio button lets you easily add or hide assets depending on assets balance.</li>
<li>Button for rolling back to default background or avatar added.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Back Button in full node was not working properly giving false errors of daemon still running even though all actions have been successfully completed.</li>
<li>If non zero balance asset was hidden, it still remained in the doughnut until account was reloged.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.1.0 -->
<p>1.1.0 Release Notes</p>
<h4>Info</h4>
<p>Version 1.1.0 ZelCore has arrived </p>
<h4>Features</h4>
<ul>
<li>Rebrand to ZelCore.</li>
<li>New icons.</li>
<li>Upgraded backend.</li>
<li>Custom QR generation in receiving tab.</li>
<li>Allowing right click pasting in lite mode.</li>
<li>Reworked input on sending page, displaying address instead of contact name.</li>
<li>Transaction fees are now hidden by default. You can include them in the amount by clicking on confirmation column.</li>
<li>Spaces are now automatically removed from addresses.</li>
<li>Fiat currencies and WIF private keys can be filtered.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>ShapeShift ToS link updated.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.11 -->
<p>1.0.11 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.11 ZelTreZ SALT</p>
<h4>Features</h4>
<ul>
<li>ZelCore is coming!</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes a bug when some ethereum tokens were occasionally impossible to send.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.10 -->
<p>1.0.10 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.10 ZelTreZ More?</p>
<h4>Features</h4>
<ul>
<li>Following coins added: ANON.</li>
<li>Zero binaries have been updated in order to support upcoming fork.</li>
<li>Fiat rates backend site improvements.</li>
<li>Errors are now saved to local log.log file.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.9 -->
<p>1.0.9 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.9 ZelTreZ More?</p>
<h4>Features</h4>
<ul>
<li>Following ERC20 Tokens added: ArcBlock (ARC), AirSwap (AST), CoinFi (COFI), Dent (DENT), Po.Et (POE), Raiden (RDN), Request (REQ), Storm (STORM), TrueUSD (TUSD), Sirin (SRN), Polymath (POLY), ETHLend (LEND), Power Ledger (POWR.)</li>
<li>Improved information on the ZClassic fork, ANON and how users can claim their ANON.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.8 -->
<p>1.0.8 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.8. ZelTreZ Hero to Hero!</p>
<h4>Features</h4>
<ul>
<li>Following coins added: Zero (ZER), Bitcoin Cash (BCH), ZClassic (ZCL).</li>
<li>Following ERC20 Tokens added: Kin (KIN), FunFair (FUN), Wings (WINGS), SALT (SALT), Status (SNT), MCO (MCO), Status (SNT), Decentraland (MANA), IOST (IOST), Storj (STORJ), AELF (ELF), DAI (DAI), Bancor (BNT), Aion (AION), Aeternity (AE), KuCoin Shares (KCS).</li>
<li>Rates have been reworked to make less requests and peform better.</li>
<li>Litecoin now support SegWit addresses and fees have been optimised due to it's network requirements.</li>
<li>New Ravencoin fullnode binaries 2.0.4.</li>
<li>Auto logout added by default for new accounts and by default is set at 15 mins. It can be enabled by existing accounts in settings.</li>
<li>Improved coin management. Users can now add multiple assets at once and we have reorganised coins and ERC20 tokens separately and added a search bar.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.7 -->
<p>1.0.7 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.7. ZelTreZ grows!</p>
<h4>Features</h4>
<ul>
<li>Following coins added: Thether (USDT), Bitcoin Private (BTCP), Kyber (KNC), Enigma (ENG), TenX (PAY), Substratum (SUB).</li>
<li>A confirmation dialog is now showing when clicking full node button to prevent accidental clicks.</li>
<li>Payment notes are now accessible in light mode in all coins except ethereum and tokens. You can receive and send coins with a short note attached to a transaction.</li>
<li>Kyber - decentralized exchange for ethereum and its tokens added.</li>
<li>New Ravencoin fullnode binaries in order to support upcoming hardfork.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Sometimes it was possible that Zcoin showed wrong balance as some coins are staying in both states - confirmed and unconfirmed. User will now see only balance that is fully onfirmed by the network.</li>
<li>When having a lot of activated ethereum tokens, the initial proccess of obtaining transactions was failing for a few tokens.</li>
<li>Changelly status after a shift was not working properly.</li>
<li>When firstly installing a full node coin a stuck at verification of the files may occured.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.6 -->
<p>1.0.6 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.6. ZelTreZ grows!</p>
<h4>Features</h4>
<ul>
<li>Changelly exchange is now available.</li>
<li>Following coins added: Stox, Civic, Zcoin, Komodo, Zen, Safecoin and Snowgem.</li>
<li>Reindex option added to full node.</li>
<li>New Zcash 1.1.2 full node binaries.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Zcash private transaction in full node on windows were not working correcetly.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.5 -->
<p>1.0.5 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.5. ZelTreZ welcomes ShapeShift exchange and BitcoinGold!</p>
<h4>Features</h4>
<ul>
<li>ShapeShift exchange is now available.</li>
<li>BitcoinGold added.</li>
<li>Version and installation details are now shown in help section.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>BAT colour fixed.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.4 -->
<p>1.0.4 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.4. ZelTreZ is faster than ever!</p>
<h4>Features</h4>
<ul>
<li>ZelCash has new binaries, now Algoswap ready.</li>
<li>Following ERC20 tokens added: 0x, OmiseGo, BAT, Zilliqa, Golem.</li>
<li>User now has the option to hide and add coins to their Portfolio as well as fully sort the coins order. Only coins showing in Portfolio are being synchronised.</li>
<li>Performance improvements.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Currently there are no bugs that we know of.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.3 -->
<p>1.0.3 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.3. ZelTreZ welcomes Bitcore (BTX)!</p>
<h4>Features</h4>
<ul>
<li>Bitcore (BTX) added.</li>
<li>Ethereum and Binance now utilises smart fees according to current network state.</li>
<li>Maximum button added. Upon clicking calculates maximum amount possible to send.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Sometimes Ethereum and Binance transaction were not showing success nor error message after creating a transaction.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.2 -->
<p>1.0.2 Release Notes</p>
<h4>Info</h4>
<p>Version 1.0.2. ZelTreZ welcomes Binance Coin (BNB) and brings full support for Zcash Overwinter transactions.</p>
<h4>Features</h4>
<ul>
<li>Binance Coin (BNB) added.</li>
<li>Ethereum now shows Contracts (eg. BNB token transfer).</li>
<li>To make it consistent with other coins, Ethereum amount sent in transaction table now shows amount as a sum of actual amount and a transaction fee (previously only amount).</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Zcash transactions in light wallet are now also comaptible with Overwinter.</li>
<li>In some cases when a light transaction was rejected by the network an error message was not displayed properly.</li>
<li>Sometimes transaction table was not formatted properly.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.0.1 -->
<p>1.0.1 Release notes</p>
<h4>Info</h4>
<p>Version 1.0.1 provides new BitcoinZ daemon in order to stay on chain as of fork due to mining algorithm to Zhash. This update is mandatory for BitcoinZ full node users. During testing we have exporienced that local blockchain data might have to be deleted and ZelTreZ can not fixed that automatically. If you experience issues with BitcoinZ in full node mode, please check BitcoinZ debug.log file to indentify the error. This version also brings support to dump wallet for non privacy coins.</p>
<h4>Features</h4>
<ul>
<li>Added option to dump wallet for non privacy (zcash forks) coins.</li>
<li>Added option to select BTC as fiat currency.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixed hard QR code scanning.</li>
<li>Fixed typos.</li>
<li>Fixed ethereum server error.</li>
</ul>
<!-- END -->
</article>
<!-- Release notes Mobile -->
<article id="releasenotesmobile">
<h2 class="major">Release Notes</h2>
<!-- 1.5.0 -->
<p>1.5.0 Release Notes</p>
<h4>Info</h4>
<p>Version 1.5.0 Chain </p>
<h4>Features</h4>
<ul>
<li>Binance mainnet Binance Chain is now available</li>
<li>It is now possible to send data (payment notes) on Ethereum and Ethereum Classic</li>
<li>Wallets now can have different activated coins</li>
<li>Smartify button now works separately on each wallet</li>
<li>Notification center added showing assets in maintaince and other important messages</li>
<li>Showing empty donut instead of no donut when wallet is empty</li>
<li>Performance improvements</li>
<li>Minor tweaks</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Minor bugs resolved</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.3 -->
<p>1.4.3 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.3 Wolf </p>
<h4>Features</h4>
<ul>
<li>CryptoWolf exchanging featuring ZelCash is now available!</li>
<li>Bitcoin fees are optimized to reflect current Bitcoin demand.</li>
<li>Following languages are now available: English, German, Chinese, Spanish, Greek, Norwegian, Serbian, Russian.</li>
<li>It is now possible to organise your coins in Portfolio.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Some users were experiencing problems with BitcoinZ solution due to cached permanent redirect to wrong site. This version uses different backend BitcoinZ solution and thus fixes the issue.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.2 -->
<p>1.4.2 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.2 Sasha </p>
<h4>Features</h4>
<ul>
<li>Adds support for BitcoinZ fork.</li>
<li>Adds support for Genesis fork.</li>
<li>Bitcoin Zero is now available.</li>
<li>Following ERC20 assets added: SingularityNET, Ambrosus, BlockMason Credit Protocol, Blox, CelerToken, Cindicator, Streamr DATAcoin, Dock, Everex, Gifto, Genesis Vision, HoloToken, Insolar, IoTeX, SelfKey, Lunyr, Monetha, oax, OST, Populous, Quantstamp, Ren, iExec RLC, SingularDTV, Tierion, Viberate, VIBE, Tael, WePower, Dibicoin, Fuel Token.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Maximum button has been corrected.</li>
<li>While sending Tether and not having enough BTC a working animation was stil shown preventing actions.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.1 -->
<p>1.4.1 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.1 Samuel </p>
<h4>Features</h4>
<ul>
<li>Adds support for Bzedge fork.</li>
<li>Minor tweaks.</li>
</ul>
<h4>Bugs</h4>
<ul>
<li>Fixes Safecoin sending issues.</li>
<li>Minor fixes.</li>
</ul>
<!-- END -->
<hr>
<!-- 1.4.0 -->
<p>1.4.0 Release Notes</p>
<h4>Info</h4>
<p>Version 1.4.0 Elise </p>
<h4>Features</h4>