diff --git a/kmd/linux/README.txt b/kmd/linux/README.txt new file mode 100644 index 000000000..71baac625 --- /dev/null +++ b/kmd/linux/README.txt @@ -0,0 +1,10 @@ +VerusCoin Komodo Command Line Tools v0.3.3-beta +Contents: +komodod - the Komodo daemon +komodo-cli - Komodo command line utility +verus - wrapper for komodo-cli that applies the command to the VRSC coin +verusd - wrapper for komodod that sets the VerusCoin parameters to defauls properly + +Run ./verusd to launch komodod, and use ./verus to run commands such as: +./verus stop +Which signals komodod (if it is running) to stop running. diff --git a/kmd/verus b/kmd/linux/verus similarity index 80% rename from kmd/verus rename to kmd/linux/verus index 956ac71c4..67f0e9334 100755 --- a/kmd/verus +++ b/kmd/linux/verus @@ -4,4 +4,4 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR -../komodo-cli -ac_name=VRSC "$@" +./komodo-cli -ac_name=VRSC "$@" diff --git a/kmd/linux/verusd b/kmd/linux/verusd new file mode 100755 index 000000000..11b4d57fb --- /dev/null +++ b/kmd/linux/verusd @@ -0,0 +1,7 @@ +#!/bin/bash + +#set working directory to the location of this script +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd $DIR + +./komodod -ac_name=VRSC -ac_algo=verushash -ac_cc=1 -ac_supply=0 -ac_eras=3 -ac_reward=0,38400000000,2400000000 -ac_halving=1,43200,1051920 -ac_decay=100000000,0,0 -ac_end=10080,226080,0 -addnode=185.25.48.236 -addnode=185.64.105.111 -ac_timelockgte=19200000000 -ac_timeunlockfrom=129600 -ac_timeunlockto=1180800 -ac_veruspos=50 -gen -genproclimit=0 "$@" diff --git a/kmd/mac/README.txt b/kmd/mac/README.txt new file mode 100644 index 000000000..71baac625 --- /dev/null +++ b/kmd/mac/README.txt @@ -0,0 +1,10 @@ +VerusCoin Komodo Command Line Tools v0.3.3-beta +Contents: +komodod - the Komodo daemon +komodo-cli - Komodo command line utility +verus - wrapper for komodo-cli that applies the command to the VRSC coin +verusd - wrapper for komodod that sets the VerusCoin parameters to defauls properly + +Run ./verusd to launch komodod, and use ./verus to run commands such as: +./verus stop +Which signals komodod (if it is running) to stop running. diff --git a/kmd/mac/verus b/kmd/mac/verus new file mode 100755 index 000000000..67f0e9334 --- /dev/null +++ b/kmd/mac/verus @@ -0,0 +1,7 @@ +#!/bin/bash + +#set working directory to the location of this script +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd $DIR + +./komodo-cli -ac_name=VRSC "$@" diff --git a/kmd/mac/verusd b/kmd/mac/verusd new file mode 100755 index 000000000..33410a80b --- /dev/null +++ b/kmd/mac/verusd @@ -0,0 +1,6 @@ +#!/bin/bash +#set working directory to the location of this script +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd $DIR + +./komodod -ac_name=VRSC -ac_algo=verushash -ac_cc=1 -ac_supply=0 -ac_eras=3 -ac_reward=0,38400000000,2400000000 -ac_halving=1,43200,1051920 -ac_decay=100000000,0,0 -ac_end=10080,226080,0 -addnode=185.25.48.236 -addnode=185.64.105.111 -ac_timelockgte=19200000000 -ac_timeunlockfrom=129600 -ac_timeunlockto=1180800 -ac_veruspos=50 -gen -genproclimit=0 "$@" diff --git a/kmd/verusd b/kmd/verusd deleted file mode 100755 index 7ec4f6246..000000000 --- a/kmd/verusd +++ /dev/null @@ -1,2 +0,0 @@ -./komodod -ac_name=VRSC -ac_algo=verushash -ac_cc=1 -ac_veruspos=50 -ac_supply=0 -ac_eras=3 -ac_reward=0,38400000000,2400000000 -ac_halving=1,43200,1051920 -ac_decay=100000000,0,0 -ac_end=10080,226080,0 -ac_timelockgte=19200000000 -ac_timeunlockfrom=129600 -ac_timeunlockto=1180800 -addnode=185.25.48.72 -addnode=185.25.48.236 -addnode=185.64.105.111 "$@" - diff --git a/kmd/windows/README.txt b/kmd/windows/README.txt new file mode 100644 index 000000000..07ba7cbbe --- /dev/null +++ b/kmd/windows/README.txt @@ -0,0 +1,10 @@ +VerusCoin Komodo Command Line Tools v0.3.3-beta +Contents: +komodod.exe - the Komodo daemon +komodo-cli.exe - Komodo command line utility +verus.bat - wrapper for komodo-cli that applies the command to the VRSC coin +verusd.bat - wrapper for komodod that sets the VerusCoin parameters to defauls properly + +Run verusd.bat to launch komodod, and use verus.bat to run commands such as: +./verus.bat stop +Which signals komodod.exe (if it is running) to stop running. diff --git a/kmd/windows/verus.bat b/kmd/windows/verus.bat new file mode 100644 index 000000000..e65bd98ff --- /dev/null +++ b/kmd/windows/verus.bat @@ -0,0 +1,14 @@ +@call :GET_CURRENT_DIR +@cd %THIS_DIR% +komodo-cli.exe -ac_name=VRSC %1 %2 %3 %4 %5 %6 %7 %8 %9 +@goto :EOF + +@:GET_CURRENT_DIR +@pushd %~dp0 +@set THIS_DIR=%CD% +@popd +@goto :EOF + + + + diff --git a/kmd/windows/verusd.bat b/kmd/windows/verusd.bat new file mode 100644 index 000000000..14de35876 --- /dev/null +++ b/kmd/windows/verusd.bat @@ -0,0 +1,10 @@ +@call :GET_CURRENT_DIR +@cd %THIS_DIR% +komodod.exe -ac_name=VRSC -ac_algo=verushash -ac_cc=1 -ac_supply=0 -ac_eras=3 -ac_reward=0,38400000000,2400000000 -ac_halving=1,43200,1051920 -ac_decay=100000000,0,0 -ac_end=10080,226080,0 -addnode=185.25.48.236 -addnode=185.64.105.111 -ac_timelockgte=19200000000 -ac_timeunlockfrom=129600 -ac_timeunlockto=1180800 -ac_veruspos=50 -gen -genproclimit=0 %1 %2 %3 %4 %5 %6 %7 %8 %9 +@goto :EOF + +:GET_CURRENT_DIR +@pushd %~dp0 +@set THIS_DIR=%CD% +@popd +@goto :EOF