Merge branch 'dev' of https://github.com/veruscoin/veruscoin into dev
This commit is contained in:
10
kmd/linux/README.txt
Normal file
10
kmd/linux/README.txt
Normal file
@@ -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.
|
||||
@@ -4,4 +4,4 @@
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
cd $DIR
|
||||
|
||||
../komodo-cli -ac_name=VRSC "$@"
|
||||
./komodo-cli -ac_name=VRSC "$@"
|
||||
7
kmd/linux/verusd
Executable file
7
kmd/linux/verusd
Executable file
@@ -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 "$@"
|
||||
10
kmd/mac/README.txt
Normal file
10
kmd/mac/README.txt
Normal file
@@ -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.
|
||||
7
kmd/mac/verus
Executable file
7
kmd/mac/verus
Executable file
@@ -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 "$@"
|
||||
6
kmd/mac/verusd
Executable file
6
kmd/mac/verusd
Executable file
@@ -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 "$@"
|
||||
@@ -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 "$@"
|
||||
|
||||
10
kmd/windows/README.txt
Normal file
10
kmd/windows/README.txt
Normal file
@@ -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.
|
||||
14
kmd/windows/verus.bat
Normal file
14
kmd/windows/verus.bat
Normal file
@@ -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
|
||||
|
||||
|
||||
|
||||
|
||||
10
kmd/windows/verusd.bat
Normal file
10
kmd/windows/verusd.bat
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user