-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathelectrum.html
97 lines (86 loc) · 4.47 KB
/
electrum.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
---
layout: base
title: Electrum ABC
---
<div class="flex-content">
<div id="ecashpage">
<div class="ecash-section">
<img src="/img/electrum-abc.png" alt="Electrum ABC" />
<h1>The official desktop wallet for eCash (XEC)</h1>
<p>Electrum ABC is an open source, fast and secure <a href="http://bitcoinabc.org/ecash">eCash</a> wallet for Windows, MacOS and Linux. It supports mnemonic seed phrases, hardware wallets, multisig wallets, and importing private keys.</p>
<p>It enables you to verify that your transactions are in the blockchain without downloading the entire blockchain or trusting a centralized server. Anyone can run a backend server for Electrum ABC — no single entity controls the network.</p>
<p><a href="https://t.me/ElectrumABC" target="_blank">Join the Electrum ABC telegram group</a> to get in contact with developers or to get help from the community.</p>
</div>
{% assign releases = site.data.github-releases-electrum %}
{% if releases.size > 0 %}
{% assign latestVersion = releases[0].tag_name %}
<div class="hero-box">
<h1>Download Electrum ABC {{ latestVersion }}</h1>
<div style="margin: 6px">Published: {{ releases[0].published_at | date: "%a %b %e %Y" }}</div>
<div>
<a class="btn btn-primary download-button" href="https://github.com/Bitcoin-ABC/ElectrumABC/releases/download/{{ latestVersion }}/ElectrumABC-{{ latestVersion }}-x86_64.AppImage">
<i class="fab fa-linux"></i>
Linux
</a>
<a class="btn btn-primary download-button" href="https://github.com/Bitcoin-ABC/ElectrumABC/releases/download/{{ latestVersion }}/ElectrumABC-{{ latestVersion }}-macosx.dmg">
<i class="fab fa-apple"></i>
OSX
</a>
<a class="btn btn-primary download-button" href="https://github.com/Bitcoin-ABC/ElectrumABC/releases/download/{{ latestVersion }}/ElectrumABC-{{ latestVersion }}-setup.exe">
<i class="fab fa-windows"></i>
Windows
</a>
<a class="btn btn-primary download-button" href="https://github.com/Bitcoin-ABC/ElectrumABC/releases/download/{{ latestVersion }}/ElectrumABC-{{ latestVersion }}.tar.gz">
<i class="fas fa-code-branch"></i>
Source Snapshot
</a>
</div>
</div>
<div class="hero-box">
<a href="https://www.bitcoinabc.org/electrum/RELEASE-NOTES.html">Read the release notes.</a>
</div>
<!-- Offset the version anchor of the first past release up here so that the top of the table is in view -->
<a class="offset-anchor" id="{{ releases[1].tag_name }}"></a>
<div style="text-align: center;">
{% assign pastReleases = releases | slice:1,5 %}
{% if pastReleases.size > 0 %}
<h2>Past Releases</h2>
<table style="margin: 0 auto;">
<tbody>
<tr>
<td>Version</td>
<td>Published</td>
<td>Downloads</td>
</tr>
{% for release in pastReleases %}
{% assign version = release.tag_name %}
<tr>
<td>
{{ version }}
</td>
<td>{{ release.published_at | date: "%Y %b %e" }}</td>
<td>
<a class="btn btn-primary" href="https://github.com/Bitcoin-ABC/ElectrumABC/releases/download/{{ version }}/ElectrumABC-{{ version }}-x86_64.AppImage">
<i class="fab fa-linux"></i>
</a>
<a class="btn btn-primary" href="https://github.com/Bitcoin-ABC/ElectrumABC/releases/download/{{ version }}/ElectrumABC-{{ version }}-macosx.dmg">
<i class="fab fa-apple"></i>
</a>
<a class="btn btn-primary" href="https://github.com/Bitcoin-ABC/ElectrumABC/releases/download/{{ version }}/ElectrumABC-{{ version }}-setup.exe">
<i class="fab fa-windows"></i>
</a>
<a class="btn btn-primary" href="https://github.com/Bitcoin-ABC/ElectrumABC/releases/download/{{ version }}/ElectrumABC-{{ version }}.tar.gz">
<i class="fas fa-code-branch"></i>
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
</div>
{% else %}
<h3 style="text-align: center"><a href="https://github.com/Bitcoin-ABC/ElectrumABC/releases">Download Electrum ABC on Github</a></h3>
{% endif %}
</div>
</div>