当前位置: 首页 > 软件库 > Web3 > 区块链 >

electrum-axe

lightweight client for AXE network
授权协议 MIT License
开发语言
所属分类 Web3、 区块链
软件类型 开源软件
地区 不详
投 递 者 乐正涵忍
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Axe Electrum - Lightweight AXE client

Getting started

Homebrew

On macOS you can install Axe Electrum using Homebrew:

brew cask install axe-electrum

PPA

On Ubuntu/Linux Mint you can try to install Axe Electrum with next commands:

sudo add-apt-repository ppa:axerunners/axe-electrum
sudo apt-get update
sudo apt-get install axe-electrum

Source

Axe Electrum is a pure python application. If you want to use theQt interface, install the Qt dependencies:

sudo apt-get install python3-pyqt5

If you downloaded the official package (tar.gz), you can runAxe Electrum from its root directory without installing it on yoursystem; all the python dependencies are included in the 'packages'directory (except x11-hash).

To install x11-hash dependency in the 'packages' dir run once:

python3 -m pip install -t packages x11-hash

To install precise tested versions of HW libs (trezor, ledeger, etc) run once:

python3 -m pip install -t packages -r contrib/deterministic-build/requirements-hw.txt

To install precise tested version of pyqt5 run once:

python3 -m pip install -t packages -r contrib/deterministic-build/requirements-binaries.txt

To run Axe Electrum from its root directory, just do:

./electrum-axe

You can also install Axe Electrum on your system, by running this command:

sudo apt-get install python3-setuptools
python3 -m pip install .[fast]

This will download and install the Python dependencies used byAxe Electrum instead of using the 'packages' directory.The 'fast' extra contains some optional dependencies that we thinkare often useful but they are not strictly needed.

If you cloned the git repository, you need to compile extra filesbefore you can run Axe Electrum. Read the next section, "DevelopmentVersion".

Using Tor proxy

Starting from Axe Electrum release 3.2.3.1 automatic Tor Proxydetection and use on wallet startup is added toNetwork preferences.

To use Tor Proxy on Ubuntu set it up with:

sudo apt-get install tor
sudo service tor start

Other platforms setup is described at docs/tor.md

Development version

Check out the code from GitHub:

git clone https://github.com/axerunners/electrum-axe.git
cd electrum-axe

Run install (this should install dependencies):

python3 -m pip install .[fast]

Compile the protobuf description file:

sudo apt-get install protobuf-compiler
protoc --proto_path=electrum_axe --python_out=electrum_axe electrum_axe/paymentrequest.proto

Create translations (optional):

sudo apt-get install python-requests gettext
./contrib/make_locale