Hush Full Node software. We were censored from Github, this is where all development happens now. https://hush.is
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

#!/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=HUSHT
# this corresponds to FR address RHushEyeDm7XwtaTWtyCbjGQumYyV8vMjn
SCRIPT=76a9145eb10cf64f2bab1b457f1f25e658526155928fac88ac
# chain params
SUPPLY=6250000
FOUNDERS=500
HALVING=129,340000,840000
END=128,340000,5422111
CLIENTNAME=GoldenSandtrout
# CryptoConditions/Custom Consensus settings
FAUCET=228
HEIR=234
CHANNEL=235
ORACLE=236
GATEWAY=241
CCENABLE=$FAUCET,$HEIR,$CHANNEL,$ORACLE,$GATEWAY
# TODO: support KOMODOD env var to use custom binary
./komodod -ac_name=$NAME -ac_sapling=1 \
-ac_reward=0,1250000000,675000000 \
-ac_halving=$HALVING \
-ac_end=$END \
-ac_eras=3 -ac_blocktime=150 \
-ac_cc=2 -ac_ccenable=$CCENABLE \
-ac_founders=$FOUNDERS -ac_supply=$SUPPLY \
-ac_perc=10000000 \
-clientname=$CLIENTNAME \
-ac_script=$SCRIPT "$@"