b37324bf3d
* Move flip kick files pkg/transformers/flip_kick * Consolidate test database setup * Pull ganache ipcPath from config * Update README to include info about using a Ganache chain
11 lines
325 B
Bash
Executable File
11 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
|
|
MNEMONIC_PHRASE="whisper ordinary mystery awesome wood fox auction february blind volcano spare soft"
|
|
PORT=7545
|
|
DATABASE_PATH=pkg/transformers/test_data/test_chain/
|
|
echo Starting ganache chain on port $PORT...
|
|
|
|
ganache-cli --port $PORT \
|
|
--db $DATABASE_PATH \
|
|
2>&1 > ganache-output.log &
|