2018-08-07 15:51:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
MNEMONIC_PHRASE="whisper ordinary mystery awesome wood fox auction february blind volcano spare soft"
|
|
|
|
PORT=7545
|
2018-08-07 20:17:29 +00:00
|
|
|
DATABASE_PATH=pkg/transformers/test_data/test_chain/
|
2018-08-07 15:51:34 +00:00
|
|
|
echo Starting ganache chain on port $PORT...
|
|
|
|
|
|
|
|
ganache-cli --port $PORT \
|
|
|
|
--db $DATABASE_PATH \
|
|
|
|
2>&1 > ganache-output.log &
|