Skip to Content
Getting StartedInstallation

Installation

Download

Ready-to-use binaries of the app are available for all desktop platforms. Choose your platform and follow the instructions.

Download

Download the latest release from our download page 

Install

Open the downloaded eigenwallet_<version>.exe installer

Setup

Follow the installation wizard

Launch

Open the eigenwallet application from your Start menu


Sometimes the website does not display the latest release. In that case you can also find the binaries on our latest Github release . Search for the eigenwallet_<version>_<platform>.<extension> file that fits to your system.


Verifying Release Binaries

Each release includes .asc signature files alongside the binaries.

Import the signing key

# Download the key from GitHub wget https://raw.githubusercontent.com/eigenwallet/core/master/utils/gpg_keys/binarybaron_and_einliterflasche.asc # Import it gpg --import binarybaron_and_einliterflasche.asc

Download the signature

You can find the signature of each binary by appending .asc to the download path of the binary. In this example we verify the .dmg of version 3.1.3, but the same process works for newer versions. Replace the binary version with the lastest one.

You can also download the signatures to our latest releases from our download page .

# Download both the binary and its signature wget https://github.com/eigenwallet/core/releases/download/3.1.3/eigenwallet_3.1.3_aarch64.dmg wget https://github.com/eigenwallet/core/releases/download/3.1.3/eigenwallet_3.1.3_aarch64.dmg.asc

Verify

# Verify the signature gpg --verify eigenwallet_3.1.3_aarch64.dmg.asc eigenwallet_3.1.3_aarch64.dmg

Successful verification shows something like this:

gpg: Signature made Sat Oct 11 20:26:07 2025 CEST gpg: using RSA key 0518460FEBEC1DA14A155A7B44AE6F0B166AAD5A gpg: Good signature from "binarybaron-flatpak <binarybaron@protonmail.com>" [ultimate]

Building from source