-
Notifications
You must be signed in to change notification settings - Fork 22
/
run.bash
executable file
·204 lines (170 loc) · 7.92 KB
/
run.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#!/bin/bash
VERCOMP='/cliquebait/vercomp.bash'
STRIPPED_GETH_VERSION=`echo $GETH_VERSION | sed s/v//`
DEFAULT_ALLOC_WEI="0x3635C9ADC5DEA00000"
export GETHROOT=/cbdata
export CBROOT=$GETHROOT/_cliquebait
export GETHDATADIR="$GETHROOT/ethereum"
export DEFAULT_PASSWORD_PATH=${DEFAULT_PASSWORD_PATH:-"/cliquebait/default-password"}
export ACCOUNTS_TO_CREATE=${ACCOUNTS_TO_CREATE:-"5"}
export EXTERNAL_ALLOCS=${EXTERNAL_ALLOCS:-""}
export ALLOC_WEI=${ALLOC_WEI:-""}
if $VERCOMP $STRIPPED_GETH_VERSION '>=' 1.10.0; then
export RPCARGS='--http --http.addr=0.0.0.0 --http.corsdomain=* --http.vhosts=* --http.api=admin,debug,eth,miner,net,personal,shh,txpool,web3 --graphql --graphql.corsdomain=* --graphql.vhosts=* --ws --ws.addr=0.0.0.0 --ws.origins=* --ws.api=admin,debug,eth,miner,net,personal,shh,txpool,web3 '
else
export RPCARGS='--rpc --rpcaddr 0.0.0.0 --rpccorsdomain=* --rpcapi "admin,debug,eth,miner,net,personal,shh,txpool,web3" --ws --wsaddr 0.0.0.0 --wsorigins=* --wsapi "admin,debug,eth,miner,net,personal,shh,txpool,web3" '
if $VERCOMP $STRIPPED_GETH_VERSION '>=' 1.8.0; then
echo 'adding --rpcvhosts=* as we are in geth >= v1.8.0 and < 1.10.0'
export RPCARGS="${RPCARGS} --rpcvhosts=* "
fi
fi
if $VERCOMP $STRIPPED_GETH_VERSION '>=' 1.9.0; then
echo 'adding --allow-insecure-unlock as we are in geth >= 1.9.0'
export RPCARGS="${RPCARGS} --allow-insecure-unlock "
fi
function make_account() {
mkdir -p /tmp/cliquebait/make_account
mkdir -p /tmp/cliquebait/accounts
mkdir -p /tmp/cliquebait/account-passwords
PASSWORD=`cat $DEFAULT_PASSWORD_PATH`
if $VERCOMP $STRIPPED_GETH_VERSION '<' 1.9.0; then
ADDRESS=`geth account new --lightkdf --keystore /tmp/cliquebait/make_account --password $DEFAULT_PASSWORD_PATH 2>/dev/null | sed 's/Address: {\([A-Fa-f0-9]*\)}/\1/'`
else
ADDRESS=`geth account new --lightkdf --keystore /tmp/cliquebait/make_account --password $DEFAULT_PASSWORD_PATH 2>/dev/null | grep 'Public address' | sed 's/.*0x\([A-Fa-f0-9]*\)$/\1/'`
fi
echo 0x$ADDRESS > /tmp/cliquebait/accounts/accounts-$ADDRESS
echo $PASSWORD > /tmp/cliquebait/account-passwords/account-passwords-$ADDRESS
echo "made account $ADDRESS"
}
function initialize_geth() {
mkdir -p $GETHROOT
# Echo back the genesis block, for debugging purposes.
# It'll get echoed again before the geth node itself runs
echo "Genesis block is:"
cat $CBROOT/genesis.json
# Write it to $GETHROOT/genesis.json
cp $CBROOT/genesis.json $GETHROOT/genesis.json
# Run geth init to initialize geth's storage
# and feed it the genesis block we just persisted
geth --datadir=$GETHDATADIR init $GETHROOT/genesis.json
}
# $1 = source genesis, $2 = the FULL address (with 0x)
function give_ether_in_genesis() {
mkdir -p /tmp/cliquebait/give_ether_in_genesis
BAREADDRESS=`echo $2 | sed s/0x//`
CLEANED_ALLOC_WEI=$(echo $ALLOC_WEI | sed -e 's/^0x//')
VALIDATED_ALLOC_WEI=$(echo $CLEANED_ALLOC_WEI | grep -o "[0-9A-Fa-f]\{${#CLEANED_ALLOC_WEI}\}$")
if [ -z "$VALIDATED_ALLOC_WEI" ]; then
echo "$DEFAULT_ALLOC_WEI Wei will be allocated from default environment variable, because ALLOC_WEI is not set or includes an invalid value of $ALLOC_WEI Wei."
MOREALLOCS="{\"$BAREADDRESS\": {\"balance\": \"$DEFAULT_ALLOC_WEI\"}}"
else
echo "Matched $ALLOC_WEI Wei for allocation!"
MOREALLOCS="{\"$BAREADDRESS\": {\"balance\": \"0x$VALIDATED_ALLOC_WEI\"}}"
fi
cat $1 | jq ".alloc += $MOREALLOCS" > /tmp/cliquebait/give_ether_in_genesis/new_genesis.json
rm $1
mv /tmp/cliquebait/give_ether_in_genesis/new_genesis.json $1
rm -rf /tmp/cliquebait/give_ether_in_genesis
}
# this works because we have DEPLOY_ACCOUNT_ADDRESS in place of the actual hex in the extraData field of the genesis JSON
# that genesis block is specifically set up for a single-signer to be filled in at runtime by substituting
#
# todo: use jq to make sure it operates on extraData field specifically instead of just a dumb sed
#
# $1 = source genesis, $2 = the FULL address (with 0x)
function set_genesis_signer_address() {
mkdir -p /tmp/cliquebait/set_genesis_signer_address
BAREADDRESS=`echo $2 | sed s/0x//`
cat $1 | sed "s/DEPLOY_ACCOUNT_ADDRESS/$BAREADDRESS/" > /tmp/cliquebait/set_genesis_signer_address/new_genesis.json
rm $1
mv /tmp/cliquebait/set_genesis_signer_address/new_genesis.json $1
rm -rf /tmp/cliquebait/set_genesis_signer_address
}
function run_geth_bare() {
set -e
set -x
geth --datadir=$GETHDATADIR $RPCARGS $@
}
function initialize_cliquebait() {
if [[ "$ACCOUNTS_TO_CREATE" -lt "1" ]]; then
echo "ACCOUNTS_TO_CREATE must be at least 1 (got $ACCOUNTS_TO_CREATE)"
exit 1
fi
# move the base cliquebait genesis json to our working one
if [ -z "$GENESIS_JSON" ]; then
cp /cliquebait/cliquebait.json $CBROOT/genesis.json
else
echo "Using genesis base from environment variable"
echo "$GENESIS_JSON" > $CBROOT/genesis.json
fi
# geth init sometimes wipes our keystore, so we have to make a temporary one
mkdir -p $CBROOT/keystore
# make a bunch of accounts
for n in `seq 1 $ACCOUNTS_TO_CREATE`
do
make_account &
done
wait
# accumulate results of make_account
mv /tmp/cliquebait/make_account/* $CBROOT/keystore
cat /tmp/cliquebait/accounts/accounts-* > $CBROOT/accounts
cat /tmp/cliquebait/account-passwords/account-passwords-* > $CBROOT/account-passwords
rm -rf /tmp/cliquebait/accounts/
rm -rf /tmp/cliquebait/account-passwords/
# Pre-seed the miner account first in case we have to seed in more passwords to unlock other accounts as well
export DEPLOY_ACCOUNT_ADDRESS=`cat $CBROOT/accounts | head -1`
# Store it for when we run geth
echo $DEPLOY_ACCOUNT_ADDRESS > $CBROOT/etherbase
# authorize the miner as the authority in genesis
set_genesis_signer_address $CBROOT/genesis.json $DEPLOY_ACCOUNT_ADDRESS
# load extra specified accounts
if [ -s "/extra-accounts.json" ]; then
# Add these accounts to the unlock list
cat /extra-accounts.json | jq -r '"0x" + .[].keystore.address' >> $CBROOT/accounts
# Seed the passwords to unlock the extra accounts
cat /extra-accounts.json | jq -r '.[].password' >> $CBROOT/account-passwords
# Put their blobs in the keystore directory
for account in `cat extra-accounts.json| jq -c '.[]'`; do
echo "$account" | jq .keystore > $CBROOT/keystore/0x`echo "$account" | jq -r .keystore.address`.json
done
fi
# give all the loaded accounts tons of ether
for address in `cat $CBROOT/accounts`; do give_ether_in_genesis $CBROOT/genesis.json $address; done
# give accounts listed in $EXTERNAL_ALLOCS some ether as well
for extra in $(echo $EXTERNAL_ALLOCS | tr ',' ' '); do
cleaned_extra=$(echo $extra | sed -e 's/^0x//' | grep -o '^[0-9A-Fa-f]\{40\}$')
if [ -z "$cleaned_extra" ]; then
echo $extra is an invalid address and will not have any ether allocated.
else
echo "matched $extra for allocation!"
give_ether_in_genesis $CBROOT/genesis.json 0x$cleaned_extra
fi
done
# Save our chain ID for when we run geth later
cat $CBROOT/genesis.json | jq .config.chainId > $CBROOT/chainid
initialize_geth
# move the $CBROOT/keystore where it belongs
# has to happen after initialize_geth as geth init may wipe keystore!
mv $CBROOT/keystore $GETHDATADIR/
# finally, touch our "init complete" sentinel
touch $CBROOT/.cliquebait-initialized
}
mkdir -p $CBROOT
if [ -e $CBROOT/.cliquebait-initialized ]; then
echo Cliquebait appears to already be initialized, will not init
else
echo Ephemeral or first-run of Cliquebait, will init
initialize_cliquebait
fi
# figure out what accounts we need to unlock, and finally run cliquebait!
ACCOUNTS_TO_UNLOCK=`cat $CBROOT/accounts | tr '\n' ',' | sed s/,$//`
if $VERCOMP $STRIPPED_GETH_VERSION '>=' 1.10.0; then
export MINERARGS="--miner.etherbase $(cat $CBROOT/etherbase)"
if $VERCOMP $STRIPPED_GETH_VERSION '<' 1.12.0; then
export MINERARGS="${MINERARGS} --miner.threads 1"
fi
else
export MINERARGS="--minerthreads 1 --etherbase $(cat $CBROOT/etherbase)"
fi
run_geth_bare --networkid="$(cat $CBROOT/chainid)" --mine $MINERARGS \
--unlock "$ACCOUNTS_TO_UNLOCK" --password $CBROOT/account-passwords $@