Add HUSH testnet script to test frfix branch
This commit is contained in:
43
src/hushd-testnet
Executable file
43
src/hushd-testnet
Executable file
@@ -0,0 +1,43 @@
|
||||
#!/bin/bash
|
||||
# Copyright (c) 2019 Hush developers
|
||||
|
||||
# set working directory to the location of this script
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
cd $DIR
|
||||
|
||||
# TESTING VALUES, DO NOT USE EXCEPT FOR DEVELOPMENT
|
||||
NAME=HUSHT3
|
||||
# this corresponds to FR address RHushEyeDm7XwtaTWtyCbjGQumYyV8vMjn
|
||||
SCRIPT=76a9145eb10cf64f2bab1b457f1f25e658526155928fac88ac
|
||||
|
||||
# Chain parameters
|
||||
ERAS=3
|
||||
BLOCKTIME=150
|
||||
SUPPLY=6250000
|
||||
FOUNDERS=1
|
||||
REWARD=0,1125000000,562500000
|
||||
PERC=11111111
|
||||
HALVING=129,340,840
|
||||
END=128,340,5422111
|
||||
CLIENTNAME=GoldenSandtrout
|
||||
|
||||
# CryptoConditions/Custom Consensus params
|
||||
FAUCET=228
|
||||
HEIR=234
|
||||
CHANNEL=235
|
||||
ORACLE=236
|
||||
GATEWAY=241
|
||||
CCENABLE=$FAUCET,$HEIR,$CHANNEL,$ORACLE,$GATEWAY
|
||||
|
||||
KMD=${KOMODOD:-./komodod}
|
||||
$KMD -ac_name=$NAME -ac_sapling=1 \
|
||||
-ac_reward=$REWARD \
|
||||
-ac_halving=$HALVING \
|
||||
-ac_end=$END \
|
||||
-ac_eras=$ERAS \
|
||||
-ac_blocktime=$BLOCKTIME \
|
||||
-ac_cc=2 -ac_ccenable=$CCENABLE \
|
||||
-ac_founders=$FOUNDERS -ac_supply=$SUPPLY \
|
||||
-ac_perc=$PERC \
|
||||
-clientname=$CLIENTNAME \
|
||||
-ac_script=$SCRIPT "$@"
|
||||
Reference in New Issue
Block a user