Pavcoin is a modern, efficient, and secure cryptocurrency with advanced privacy and energy-efficient staking mechanisms.
Instructions to run nodes on Linux or via Docker. Configure your node with a unique pavcoin.conf
and manage multiple instances securely.
Install a node for your coin on Ubuntu Server 22.04 with the following tutorial:
sudo apt-get update && sudo apt-get upgrade -y
wget "https://pavchain.com/downloads/pavcoin-daemon-linux.tar.gz" -O pavcoin-daemon-linux.tar.gz
tar -xzvf pavcoin-daemon-linux.tar.gz
wget "https://pavchain.com/downloads/pavcoin-qt-linux.tar.gz" -O pavcoin-qt-linux.tar.gz
tar -xzvf pavcoin-qt-linux.tar.gz
sudo mv pavcoind pavcoin-cli pavcoin-tx /usr/bin/
mkdir $HOME/.pavcoin
nano $HOME/.pavcoin/pavcoin.conf
Paste the following into the config file:
rpcuser=rpc_pavcoin
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
txindex=1
daemon=1
Then start the node with:
pavcoind
Clone the official explorer repo, configure it to use your nodeβs RPC settings, and keep it synced using systemd or cron jobs.
pavcoin-cli getstakinginfo
Install and start mining Pavcoin automatically with a pre-configured Windows installer.
Click here to download pavcoin-auto.zip
pavcoin-auto.zip
and choose PropertiesExtract the contents to any folder you prefer.
Double-click install.bat
to install and start mining your first block.
Wallet files are saved in: %APPDATA%\Pavcoin\
This content has been moved under the "Run a Node" tab.