CodexaCoin Core for Linux (x86_64) - built on Ubuntu 22.04
============================================================

This package contains:
  bin/codexacoin-qt     - graphical wallet (start here)
  bin/codexacoind        - full node / wallet daemon (no GUI)
  bin/codexacoin-cli     - command-line RPC client
  bin/codexacoin-tx      - offline transaction tool
  bin/codexacoin-util    - wallet/key utility
  bin/codexacoin-wallet  - wallet tool (no running node needed)

Requirements (Ubuntu / Debian and derivatives)
-----------------------------------------------
These binaries link against your system's shared libraries rather than
bundling everything, which is normal for Linux. On a stock Ubuntu 22.04
desktop install, everything needed is already present. If something is
missing, install it with:

    sudo apt install libqt5widgets5 libqt5network5 libqt5dbus5 \
        libevent-2.1-7 libboost-dev libzmq5 libsqlite3-0 \
        libminiupnpc17 libnatpmp1

Other distributions/versions: package names may differ slightly (e.g.
libqt5widgets5t64 on newer Ubuntu, or the equivalent Fedora/Arch package
names) - if codexacoin-qt or codexacoind refuses to start, the error will
name the missing library; look up the matching package for your distro.

Running it
----------
    tar xf CodexaCoin-Core-x86_64-linux-gnu.tar.gz
    cd CodexaCoin-Core-x86_64-linux-gnu/bin
    chmod +x *
    ./codexacoin-qt          # graphical wallet
    # or, headless:
    ./codexacoind -daemon
    ./codexacoin-cli getblockchaininfo

Verifying this download
------------------------
There's no Linux equivalent of Windows SmartScreen for a plain downloaded
binary, so there's nothing to "unblock" - but you should still confirm
this file is really what the project published, not something tampered
with in transit. From the downloads page, get SHA256SUMS.asc and the
project's public GPG key, then:

    gpg --verify SHA256SUMS.asc SHA256SUMS
    sha256sum -c SHA256SUMS --ignore-missing

Both should report success.
