Manual Installation
Counterparty Core can be installed on most platforms but, for now, manual installation is being tested and is only officially supported on Ubuntu 22.04 and MacOS.
Dependencies:
- Bitcoin Core
- AddrIndexRS
- Python >= 3.10
- Rust
- Maturin
- LevelDB
Install dependencies
Install Bitcoin Core
Download the latest Bitcoin Core and create
a bitcoin.conf
file (by default located in ~.bitcoin/
) with the following options:
rpcuser=rpc
rpcpassword=rpc
server=1
addresstype=legacy
txindex=1
prune=0
mempoolfullrbf=1
rpcworkqueue=100
[main]
zmqpubrawtx=tcp://0.0.0.0:9332
zmqpubhashtx=tcp://0.0.0.0:9332
zmqpubsequence=tcp://0.0.0.0:9332
zmqpubrawblock=tcp://0.0.0.0:9333
[test]
zmqpubrawtx=tcp://0.0.0.0:19332
zmqpubhashtx=tcp://0.0.0.0:19332
zmqpubsequence=tcp://0.0.0.0:19332
zmqpubrawblock=tcp://0.0.0.0:19333
Adding the following lines, and opening up port 8333
to incoming traffic, may improve your sync speed:
listen=1
dbcache=4000
Install Rust
The recommended way to install Rust is to use rustup
:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source "$HOME/.cargo/env"
See https://www.rust-lang.org/tools/install for more information.
Install Addrindexrs
Download and install the latest AddrIndexRS:
git clone https://github.com/CounterpartyXCP/addrindexrs.git
cd addrindexrs
cargo install --path=.
Start addrindexrs
with:
addrindexrs --cookie=rpc:rpc -vvv
When working with a remote full node or low-memory system, you can tell addrindexrs
to use JSON-RPC to communicate with bitcoind
using the flag --jsonrpc-import
.
You can also limit the resources available for addrindexrs
with:
ulimit -n 8192
Use addrindexrs -h
for more options.
Install Python >= 3.10 and Maturin
On Ubuntu 22.04 and similar:
apt-get install -y python3 python3-dev python3-pip
pip3 install maturin
On MacOS:
brew install python
pip3 install maturin
See https://brew.sh/ to install Homewrew.
Install LevelDB
On Ubuntu 22.04 and similar:
apt-get install -y libleveldb-dev
On MacOS:
brew install leveldb
Install Counterparty Core
Download the latest version counterparty-core
:
git clone https://github.com/CounterpartyXCP/counterparty-core.git
Install the counterparty-rs
library:
cd counterparty-core/counterparty-rs
pip3 install .
Install the counterparty-core
library:
cd counterparty-core/counterparty-core
pip3 install .
Install the counterparty-wallet
library:
cd counterparty-core/counterparty-wallet
pip3 install .
On most platforms you need to update your $PATH variable so that counterparty-server
and counterparty-wallet
are accessible. For example:
export PATH=$PATH:/home/username/.local/bin/
Look at the counterparty-core
and counterparty-wallet
installation logs to find out the path of the binaries on your system.
Note for MacOS users
Use this command if you get an error while installing one of the packages:
CFLAGS="-I/opt/homebrew/include -L/opt/homebrew/lib"
Upgrade Counterparty Core
To update, simply follow the same procedure as for installation.
Notes
Update from 10.0.0 to 10.1.0 or from 10.1.0 to 10.1.1
given the change of names of certain packages you must start by uninstalling the previous version:
pip uninstall counterparty-lib counterparty-cli counterparty-core