Downloads
Prebuilt binaries are published on GitHub releases. The Linux binaries link against GLIBC_2.39, so
they need glibc 2.39 or newer, which means Ubuntu 24.04 or later.
To build from source instead, see build the binaries.
Node 4.0.3
Release tag v4.0.3, or the latest release and all releases.
| Platform | Asset | Unpacks to |
|---|---|---|
| Linux x86-64 | epic-4.0.3-linux-amd64.tar.gz | epic-4.0.3-linux-amd64/ |
| macOS Apple silicon | MacOS-aarch64-4.0.3.zip | MacOS-aarch64-4.0.3/ |
| Windows x86-64 | Windows-v4.0.3.zip | epic.exe, no wrapping directory |
macOS Intel and Linux ARM need a source build.
Wallet 4.0.0
Release tag v4.0.0, or the latest release and all releases.
| Platform | Asset | Unpacks to |
|---|---|---|
| Linux x86-64 | epic-wallet-4.0.zip | epic-wallet, no wrapping directory |
| Windows x86-64 | epic-wallet.exe | the executable itself, not an archive |
The archive is named for the 4.0 line rather than the full 4.0.0 tag, and holds a Linux x86-64 ELF binary.
Download and verify
Each asset publishes a checksum file beside it, named for the asset with its extension replaced by
-sha256sum.txt: epic-4.0.3-linux-amd64-sha256sum.txt for the Linux node tarball,
epic-wallet-4.0-sha256sum.txt for the wallet archive.
- Linux
- macOS
- Windows
curl -LO https://github.com/EpicCash/epic/releases/download/v4.0.3/epic-4.0.3-linux-amd64.tar.gz
curl -LO https://github.com/EpicCash/epic/releases/download/v4.0.3/epic-4.0.3-linux-amd64-sha256sum.txt
sha256sum -c epic-4.0.3-linux-amd64-sha256sum.txt
# expect: epic-4.0.3-linux-amd64.tar.gz: OK
tar xzf epic-4.0.3-linux-amd64.tar.gz
./epic --usernet
curl -LO https://github.com/EpicCash/epic/releases/download/v4.0.3/MacOS-aarch64-4.0.3.zip
curl -LO https://github.com/EpicCash/epic/releases/download/v4.0.3/MacOS-aarch64-4.0.3-sha256sum.txt
shasum -a 256 -c MacOS-aarch64-4.0.3-sha256sum.txt
unzip MacOS-aarch64-4.0.3.zip
Gatekeeper refuses an unsigned binary on first run. Allow it in System Settings, Privacy and Security.
$tag = 'v4.0.3'
$base = "https://github.com/EpicCash/epic/releases/download/$tag"
Invoke-WebRequest "$base/Windows-$tag.zip" -OutFile "Windows-$tag.zip"
Invoke-WebRequest "$base/Windows-$tag-sha256sum.txt" -OutFile "sha256sum.txt"
# PowerShell has no `sha256sum -c`, so compare the two values.
(Get-FileHash "Windows-$tag.zip" -Algorithm SHA256).Hash.ToLower()
Get-Content sha256sum.txt
Expand-Archive "Windows-$tag.zip" -DestinationPath .
Release binaries are built without --features with-tor, so they ship no Tor support. Set
use_tor_listener = false in epic-wallet.toml, or build from source with
the feature.
Other software
| Software | Repository |
|---|---|
| Miner | EpicCash/epic-miner |
| Desktop GUI wallet | EpicCash/epic-gui-wallet |
| Block explorer | EpicCash/epic_explorer |
| Epicbox relay | EpicCash/epic-epicbox-docker |
| Docker build files | EpicCash/epic-node-docker, EpicCash/epic-node-wallet-docker |
Mobile wallets are third party. Stack Wallet supports Epic and operates one of the public epicbox relays.