PIVX is an opensource crypto-currency focused on fast private transactions with low transaction fees
517
pivxd)PIVX core Wallet Daemon for headless wallets and masternodes.
For a list of all available wallet images see https://lepetitbloc.github.io/wallets/
Parameters value issues should be reported at: https://github.com/LePetitBloc/wallets
All other issues should be reported at: https://github.com/LePetitBloc/wallets-builder
The container can either be used as a classic headless wallet or a masternode, only the command arguments will differ.
rpcuser and rpcpassword to interact with the PIVX daemon:docker run --name pivx-wallet --restart always -d lepetitbloc/pivxd:v3.1.0.3 -rpcuser=pivx-wallet -rpcpassword=9x169li8
We recommend to mount a volume for easier access to the data and the configuration files. You should also create a configuration for your RPC credentials (see
./wallet/.pivx/pivx.conf) to avoid retyping them when using the internalpivx-cli.docker run --name pivx-wallet --restart always -d -v ${PWD}/wallet/:/home/pivx/ lepetitbloc/pivxd:v3.1.0.3
:warning: Ensure that a
datadirectory exists and is writable in the mounted host directory.
docker exec pivx-wallet pivx-cli getaccountaddress ""
GK92mbjS9bCAUuU7DEyyuK9US1qLqkoyce
You can use
pwgenfirst to generate your passphrase:pwgen 32 1quohd4kaw9guvi8ie7phaighawaiLoo6
docker exec pivx-wallet pivx-cli encryptwallet quohd4kaw9guvi8ie7phaighawaiLoo6
Wallet encrypted; PIVX Core server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup.
:bangbang: Don't forget to backup your passphrase.
Note1: If the 10000 PIVX came from multiple transactions, you can send them back to yourself.
Note2: Beware of the transaction cost, you should own 10001 PIVX as a safety measure.
hash and index :docker exec pivx-wallet pivx-cli masternode outputs
{ "8e835a7d867d335434925c32f38902268e131e99a5821557d3e77f8ca3829fd8" : "0" }
masternode genkey
7ev3RXQXYfztreEz8wmPKgJUpNiqkAkkdxt24C3ZKtg5qEVfou9
./wallet/.pivx//masternode.conf file, and fill in following this template:
mn01 masternode:21529 YouMasterNodePrivateKey TransactionHash 0 YourWalletAddress:100
touch ./wallet/.pivx//masternode.conf
./masternode/.pivx/pivx.conf configuration filerpcuser=pivx-mn01
rpcpassword=9x169li8
masternode=1
masternodeprivkey=7ev3RXQXYfztreEz8wmPKgJUpNiqkAkkdxt24C3ZKtg5qEVfou9
externalip=YOUR.EXTERNAL.IP:51472
docker run --name pivx-masternode --restart always -d -p 51472:51472 -p 51473:51473 -v ${PWD}/masternode/:/home/pivx/ lepetitbloc/pivxd:v3.1.0.3 -masternode=1
blocks until the chain is sync:docker exec pivx-masternode pivx-cli getinfo
docker exec pivx-wallet pivx-cli pivx-masternode start-all
You might need to unlock your wallet first:
docker exec pivx-wallet pivx-cli walletpassphrase quohd4kaw9guvi8ie7phaighawaiLoo6 60:warning: Mind the space before the command above, that's not a typo, it’s meant to avoid storing your passphrase in history.
docker exec pivx-wallet pivx-cli masternodelist | grep 6d94f70499c3f7ba2c59acaa5c04e54ef123d0e460bb07c55ace6464deaf3c85
"6d94f70499c3f7ba2c59acaa5c04e54ef123d0e460bb07c55ace6464deaf3c85-1": "ENABLED",
You could setup both at the same time using docker-compose.
Check the provided docker-compose.yml as an example and tweak it to your needs!
docker-compose up --build
null
FROM lepetitbloc/bdb:4.8.30.NCMIT
Content type
Image
Digest
Size
262.4 MB
Last updated
about 8 years ago
docker pull lepetitbloc/pivxd