Document hushd a bit

This commit is contained in:
Duke Leto
2020-09-07 08:51:50 -04:00
parent 043d58709d
commit 58f7ae1336
2 changed files with 18 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
# Copyright (c) 2019 Hush developers # Copyright (c) 2019-2020 Hush developers
# set working directory to the location of this script # set working directory to the location of this script
# readlink -f does not always exist # readlink -f does not always exist
@@ -8,29 +8,36 @@ cd $DIR
DIR="$( cd "$( dirname "$( readlink "${BASH_SOURCE[0]}" )" )" && pwd )" DIR="$( cd "$( dirname "$( readlink "${BASH_SOURCE[0]}" )" )" && pwd )"
cd $DIR cd $DIR
# Chain parameters
NAME=HUSH3 NAME=HUSH3
# this corresponds to FR address RHushEyeDm7XwtaTWtyCbjGQumYyV8vMjn # this corresponds to FR address RHushEyeDm7XwtaTWtyCbjGQumYyV8vMjn
SCRIPT=76a9145eb10cf64f2bab1b457f1f25e658526155928fac88ac SCRIPT=76a9145eb10cf64f2bab1b457f1f25e658526155928fac88ac
# Chain parameters # First Pure Sapling Zcash Protocol chain!
SAPLING=1
# We use 3 "eras" of different supply curves
ERAS=3 ERAS=3
BLOCKTIME=150
# These values are historical and over-ridden by internals!
# Do not change these values, change internals.
BLOCKTIME=150 # Hush goes to 75s blocktime at Block 340K
REWARD=0,1125000000,562500000
HALVING=129,340000,840000
PERC=11111111
END=128,340000,5422111
# 6250000 - (sprout pool at block 500,000) # 6250000 - (sprout pool at block 500,000)
SUPPLY=6178674 SUPPLY=6178674
FOUNDERS=1 FOUNDERS=1
REWARD=0,1125000000,562500000 # NOTE: komodo_bitcoind.h decides these values
PERC=11111111
HALVING=129,340000,840000
# NOTE: keep in sync with komodo_bitcoind.h
END=128,340000,5422111
CLIENTNAME=GoldenSandtrout CLIENTNAME=GoldenSandtrout
NODE1=188.165.212.101 # EU NODE1=188.165.212.101 # EU
NODE2=64.120.113.130 # AR NODE2=64.120.113.130 # AR
NODE3=209.58.144.205 # NA NODE3=209.58.144.205 # NA
NODE4=94.130.35.94 # EU NODE4=94.130.35.94 # EU
CCLIB=hush3 CCLIB=hush3
# First Pure Sapling Zcash Protocol chain!
SAPLING=1
# CryptoConditions/Custom Consensus params # CryptoConditions/Custom Consensus params
FAUCET=228 FAUCET=228

View File

@@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
# Copyright (c) 2019 Hush developers # Copyright (c) 2019-2020 Hush developers
# set working directory to the location of this script # set working directory to the location of this script
DIR="$( cd "$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )" && pwd )" DIR="$( cd "$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )" && pwd )"