• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

darkcoind-ncurses-0.23: Terminal front-end for darkcoin daemon.

vertoe

Three of Nine
darkcoind-ncurses-splash.png

I just sat down and ported the bitcoind-ncurses tool for darkcoin. It's basically working but I still have to add a masternode monitor. This is great to monitor darkcoin on headless environments, for example on your masternode host. Have fun:
https://github.com/vertoe/darkcoind-ncurses

Forked from bitcoind-ncurses by azeteki:
https://github.com/azeteki/bitcoind-ncurses
https://bitcointalk.org/index.php?topic=668475.0
 
Good Job, i connected with python-darkcoinrpc

but i have a problem:

File "/home/marco/Downloads/darkcoind-ncurses-master/monitor.py", line 3, in <module>
import darkcoin_subsidy as ds
ImportError: No module named darkcoin_subsidy
 
Good Job, i connected with python-darkcoinrpc

but i have a problem:

File "/home/marco/Downloads/darkcoind-ncurses-master/monitor.py", line 3, in <module>
import darkcoin_subsidy as ds
ImportError: No module named darkcoin_subsidy
Well, the message is pretty straight forward, isnt it?
https://github.com/vertoe/darkcoind-ncurses/blob/master/README.md

dependencies

https://github.com/vertoe/darkcoin_subsidy ;-)
 
Pretty cool, vertoe.

Detailed steps to get it running on a mac

mkdir ~/someprojectdir
cd ~/someprojectdir

git clone https://github.com/vertoe/python-darkcoinrpc.git
cd python-darkcoinrpc/
python setup.py install
cd ..

git clone https://github.com/vertoe/darkcoin_subsidy.git
cd darkcoin_subsidy/
python setup.py install
cd ..

# Note: I need this as I am working on a mac and there is no darkcoind binary for mac (that I know about)
git clone https://github.com/darkcoin/darkcoin.git
cd darkcoin
./autogen.sh
./configure
make

setup test1-darkcoin.conf in ~/Library/Application Support/Darkcoin
testnet=1
addnode=128.127.106.235:20004
rpcuser=foo
rpcpassword=bar

start up darkcoind on testnet
cd darkcoin/src
./darcoind -wallet=test1-wallet.dat -conf=test1-darkcoin.conf
Note: Leave this running and fire up a new terminal.

cd ~/someprojectdir
git clone https://github.com/vertoe/darkcoind-ncurses.git
cd darkcoind-ncurses
python main.py -conf=test1-darkcoin.conf
 
Back
Top