forked from autonomoussoftware/metronome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy
executable file
·386 lines (338 loc) · 12 KB
/
deploy
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
#!/bin/bash
#set -e
#set -o pipefail
<< LICENSE
The MIT License (MIT)
Copyright 2017 - 2018, Alchemy Limited, LLC.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
LICENSE
usage()
{
cat <<- _EOM_
deploy: compile and push metronome to a local parity instance by default,
overriding auction launch date, price and supply, if specified.
By default, deploy deploys to a local clean ETH "dev chain" instance of parity.
If -i or --interactive is offerred in local deployment then it will do deploy and launch in one step.
If --test is offered, deploy will connect to the New Alchemy test network and
deploy there. Note you will need NA testnet ETH. Contact your SA for help.
For live and testnet, launch has to be done in second step after deploy and initialization done
If --live is offered, deploy will connect to the default parity instance.
If --chain etc is offered, deploy will deploy to ETC. Note that deploy will
consider ETC to be the "Non OG" chain, and initialize a destination metronome.
usage: deploy [--supply supply of Metronome] [-P | --pass <password> ]
[-p | --price <price at start of MET Auction] [--live | --test]
[-O | --owner <owner eth address> ] [--auction auction_epoch_seconds] [-t | --timescale Time Mult]
[-i | --interactive] [--seed ] [--chain eth|etc ] | [-h]
[-v | --validators <list of three validators address>]
_EOM_
}
check_system()
{
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) SOLDEPLOY=bin/soldeploy.amd64.bin;;
Darwin*) SOLDEPLOY=bin/soldeploy.osx.bin;;
*) echo "What Architecture is this? Punting."
exit 1;;
esac
parityString=`parity --version | grep version\ P`
parityVersion=${parityString:18:3}
if [[ "$parityString" = *"1.10"* ]]; then
echo "You have Parity 1.10"
else
echo "Need Parity 1.10 - You have $parityString. Punting."
exit 1
fi
mkdir -p log
}
check_system
AUCTION=0
SEED=""
INTERACTIVE=0
SUPPLY=10000000
DEST="Parity DevChain Local ETH"
LIVE=0
PASS=""
TEST=0
LOCAL=1
TIMESCALE=1
CHAIN="eth"
RPC=8545
WS=8546
PORT=33333
CHAINARG="--chain dev"
BOOTNODES=""
DATADIR=/tmp/parity/local/eth
GASARGS="--reseal-min-period 0 --min-gas-price 0 --gasprice 0"
RPCAPI="--rpcapi=web3,eth,personal,rpc,net,parity "
OWNER_ADDRESS=0x0 #Todo- for live network enter owner's actual address here
ETH_TEST_BOOTNODE="enode://a90b36105811c87207b3a9bef260c2bff02355b0f8c1bfbc1e8341ee332fc803bc0f62cbec61fcc443228580a7f2ec3eeab3b57a649203f6ae6955e54ee9dfac@35.202.109.171:30303"
ETC_TEST_BOOTNODE="enode://5c604378ba83b38a4d8a47e45305d4c5b3a6841172fe2b55e062bde6fdd8b7a6f44f01ef5cc8e4c3a5d40ce78d2040e33b4f9697d23f9c20a1914e24278477d3@35.184.26.97:30303"
ETH_TEST_PARITYSPEC="parity-spec.json"
ETC_TEST_PARITYSPEC="parity-spec-etc.json"
VALIDATORS="[]"
# Price in ETH per MET at start
PRICE=2
while [ "$1" != "" ]; do
case $1 in
--live ) PARITY="parity --geth $RPCAPI >log/parity.eth.log 2>log/parity.eth.err.log"
DEST="Eth Live Net"
LIVE=1
LOCAL=0
;;
--test )
LIVE=0
TEST=1
LOCAL=0
;;
-h | --help ) usage
exit
;;
-s | --supply ) shift
SUPPLY=$1
;;
-p | --price ) shift
PRICE=$1
;;
-a | --auction ) shift
AUCTION=$1
;;
-v | --validators ) shift
if [[ "$1" = "0x"* ]] && [[ "$2" = "0x"* ]] && [[ "$3" = "0x"* ]]; then
VALIDATORS="['$1', '$2', '$3']"
shift
shift
else
usage
echo "Invalid address of validators or number of address passed is not correct. Require three address. [$1,$2,$3]"
exit 1
fi
;;
-P | --pass ) shift
PASS=$1
;;
-O | --owner ) shift
OWNER_ADDRESS=$1
;;
-c | --chain ) shift
CHAIN=$1
;;
-t | --timescale ) shift
TIMESCALE=$1
;;
-i | --interactive )
INTERACTIVE=1
;;
--seed )
SEED=,js/$CHAIN/testStart.js
;;
* ) usage
exit 1
esac
shift
done
if [[ "$CHAIN" = "eth" ]]
then
SUPPLY=10000000
RPC=8545
WS=8546
PORT=33333
if [[ $LIVE = 1 ]]
then
DEST="Eth Live Net"
elif [[ $TEST = 1 ]]
then
DATADIR=./parity/testnet/eth
DEST="New Alchemy ETH Testnet"
CHAINARG="--chain $ETH_TEST_PARITYSPEC"
BOOTNODES="--bootnodes $ETH_TEST_BOOTNODE"
else
DATADIR=/tmp/parity/local/eth
DEST="Parity DevChain Local ETH"
fi
elif [[ "$CHAIN" = "etc" ]]
then
SUPPLY=0
RPC=8555
WS=8556
PORT=30305
if [[ $LIVE = 1 ]]
then
DEST="Etc Live Net"
CHAINARG="--chain classic"
elif [[ $TEST = 1 ]]
then
DATADIR=./parity/testnet/etc
DEST="New Alchemy ETC Testnet"
CHAINARG="--chain $ETC_TEST_PARITYSPEC"
BOOTNODES="--bootnodes $ETC_TEST_BOOTNODE"
else
DATADIR=/tmp/parity/local/etc
DEST="New Alchemy ETC Local"
fi
fi
if [[ $LIVE = 0 ]]; then
# PARITY="parity --geth --fat-db on --jsonrpc-port=$RPC --ws-port=$WS --port=$PORT --datadir=$DATADIR --tracing on --pruning archive $CHAINARG $BOOTNODES $GASARGS > log/parity.$CHAIN.log 2>log/parity.$CHAIN.err.log"
PARITY="parity --geth $RPCAPI --jsonrpc-port=$RPC --ws-port=$WS --port=$PORT --datadir=$DATADIR --tracing off --pruning archive $CHAINARG $BOOTNODES $GASARGS > log/parity.$CHAIN.log 2>log/parity.$CHAIN.err.log"
fi
PARITY_URL="http://127.0.0.1:$RPC"
LOCAL_ETH=$ETHER_ADDR
if [[ $LOCAL = 1 ]]; then
LOCAL_ETH=0x00a329c0648769a73afac7f9381e08fb43dbea72
if [[ $AUCTION = 0 ]]; then
AUCTION=$(expr `date +%s` + 10)
fi
else
if [[ $PASS = "" ]]
then
echo "Live and Test net deploy requires password. Use -P or --pass."
exit 1
fi
if [[ $OWNER_ADDRESS = 0x0 ]]
then
echo " Live and Test net deploy requires owner's address. Use -O or --owner."
exit 1
fi
if [[ $VALIDATORS = "[]" ]]
then
echo " Live and Test net deploy requires validators address. Use -v or --validators."
exit 1
fi
fi
echo "About to Deploy Metronome with Supply $SUPPLY to $DEST.."
if [[ $LOCAL = 1 ]] && [[ $TIMESCALE = 1 ]]
then
echo "Running on local chain but realtime.. Can I suggest -t 1000?"
fi
read -p "Press enter to continue"
echo "Cleaning up old deploy stuff..."
rm js/$CHAIN/launched
rm js/$CHAIN/metronome.js
echo "Turning off Parity..."
if [[ "$CHAIN" = "etc" ]]
then
CHAINPID=$(lsof -t -i:8555)
if [[ ! -z "$CHAINPID" ]]; then
echo "Turning off ETC parity at port 8555"
kill -9 $CHAINPID
fi
else
CHAINPID=$(lsof -t -i:8545)
if [[ ! -z "$CHAINPID" ]]; then
echo "Turning off ETH parity at port 8545"
kill -9 $CHAINPID
fi
fi
sleep 5
if [[ $LOCAL = 1 ]]
then
rm -rf $DATADIR
mkdir -p $DATADIR
fi
NODES_CACHE=/tmp/natestnet/chains/GethTranslation/network/nodes.json
if [ $TEST = 1 ] && [ -f $NODES_CACHE ]
then
rm $NODES_CACHE
fi
echo "Loading Parity: $PARITY"
eval $PARITY &
if [ $LIVE = 1 ] || [ $TEST = 1 ]
then
sleep 5
else
sleep 1
fi
echo "Authorizing.."
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"personal_unlockAccount","params":["'$LOCAL_ETH'", "'$PASS'","0x3000"],"id":1}' $PARITY_URL
OWNER_PASS='newOwner'
if [[ $LOCAL = 1 ]] && [[ $OWNER_ADDRESS = 0x0 ]]
then
sleep 5
echo "creating new account for the owner"
response=$(curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"personal_newAccount","params":["'$OWNER_PASS'"],"id":1}' $PARITY_URL)
echo "$response"
OWNER_ADDRESS=`echo "$response" | jq .result`
OWNER_ADDRESS=${OWNER_ADDRESS//\"/}
echo "Metronome owner for dev chain $OWNER_ADDRESS"
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_sendTransaction","params":[{"from":"'$LOCAL_ETH'", "to":"'$OWNER_ADDRESS'", "value":"0x1BC16D674EC80000"}],"id":1}' $PARITY_URL
fi
sleep 5
echo "Deploying on $DEST.."
echo "" > js/$CHAIN/metronome.js
echo -e "contracts/monolithic.sol:Proceeds\njs/$CHAIN/Proceeds.js" | SETH_URL=$PARITY_URL ETHER_ADDR=$LOCAL_ETH $SOLDEPLOY contracts/monolithic.sol >/dev/null
echo -e "contracts/monolithic.sol:Auctions\njs/$CHAIN/Auctions.js" | SETH_URL=$PARITY_URL ETHER_ADDR=$LOCAL_ETH $SOLDEPLOY contracts/monolithic.sol >/dev/null
echo -e "contracts/monolithic.sol:AutonomousConverter\njs/$CHAIN/AutonomousConverter.js" | SETH_URL=$PARITY_URL ETHER_ADDR=$LOCAL_ETH $SOLDEPLOY contracts/monolithic.sol >/dev/null
echo -e "contracts/monolithic.sol:SmartToken\njs/$CHAIN/SmartToken.js" | SETH_URL=$PARITY_URL ETHER_ADDR=$LOCAL_ETH $SOLDEPLOY contracts/monolithic.sol >/dev/null
echo -e "contracts/monolithic.sol:METToken\njs/$CHAIN/METToken.js" | SETH_URL=$PARITY_URL ETHER_ADDR=$LOCAL_ETH $SOLDEPLOY contracts/monolithic.sol >/dev/null
echo -e "contracts/monolithic.sol:TokenPorter\njs/$CHAIN/TokenPorter.js" | SETH_URL=$PARITY_URL ETHER_ADDR=$LOCAL_ETH $SOLDEPLOY contracts/monolithic.sol >/dev/null
echo -e "contracts/monolithic.sol:Validator\njs/$CHAIN/Valiator.js" | SETH_URL=$PARITY_URL ETHER_ADDR=$LOCAL_ETH $SOLDEPLOY contracts/monolithic.sol >/dev/null
echo -e "contracts/monolithic.sol:ChainLedger\njs/$CHAIN/ChainLedger.js" | SETH_URL=$PARITY_URL ETHER_ADDR=$LOCAL_ETH $SOLDEPLOY contracts/monolithic.sol >/dev/null
cat js/$CHAIN/Proceeds.js js/$CHAIN/Auctions.js js/$CHAIN/AutonomousConverter.js js/$CHAIN/SmartToken.js js/$CHAIN/METToken.js js/$CHAIN/TokenPorter.js js/$CHAIN/Valiator.js js/$CHAIN/ChainLedger.js > js/$CHAIN/metronome.js
echo "ABIs and Contract info written to $CHAIN/metronome.js"
echo "Supply: $SUPPLY"
#Reading founder list
foundersArray="[]"
if [[ "$CHAIN" = "eth" ]]
then
input="./foundersList.csv"
foundersArray=""
while IFS=',' read -r f1 f2
do
#echo "$f1 $f2"
f2=${f2//[$'\r']}
foundersArray="$foundersArray'$f1$f2', "
done < <(tail -n "+2" $input)
foundersArray="[$foundersArray]"
foundersArray=${foundersArray/, ]/]}
fi
foundersArray="var FOUNDERS = $foundersArray"
#echo $foundersArray
if [[ $LOCAL = 1 ]] && [[ $VALIDATORS = "[]" ]]; then
VALIDATORS="['$OWNER_ADDRESS', '$LOCAL_ETH', '$OWNER_ADDRESS']"
echo "VALIDATORS $VALIDATORS"
fi
cat <<EOF > js/$CHAIN/const.js
// File generated by deploy -- edits will get overwritten!
var PRICE = $PRICE
var ONE = 1
var NUMTOKENS = $SUPPLY
var START = $AUCTION
var TIMESCALE = $TIMESCALE
var MINPRICE = 3300000000000
var ETHER_ADDR = '$LOCAL_ETH'
var OWNER_ADDRESS = '$OWNER_ADDRESS'
var OWNER_PASS = '$OWNER_PASS'
var VALIDATORS = $VALIDATORS
$foundersArray
EOF
PRELOAD="--preload js/$CHAIN/metronome.js,js/$CHAIN/const.js,js/common.js,js/$CHAIN/initMetronome.js"
# Local with interactive will deploy, init and launch Metronome.
if [[ $LOCAL = 1 ]] && [[ $INTERACTIVE = 1 ]]
then
geth attach $PARITY_URL $PRELOAD,js/$CHAIN/launchMetronome.js$SEED
exit 0
fi
# For live and test environment, we want to force two step process 1) Deploy and init 2) launch
if [[ $INTERACTIVE = 1 ]]
then
geth attach $PARITY_URL $PRELOAD
else
geth --exec 'eth.blockNumber' attach $PARITY_URL $PRELOAD
fi
echo 'To launch metronome, execute launch script using command ./launch --owner <address of new owner of contracts> --pass <password of owners address>, --auction <start time in epoc seconds>'
exit 0