github.com/shyftnetwork/go-empyrean@v1.8.3-0.20191127201940-fbfca9338f04/shyft-config/shyft-cli/startShyftGethShyftDev.sh (about) 1 #!/bin/sh 2 if [ -z "${DBENV}" ]; then 3 ./build/bin/geth --config ./shyft-config/config.toml --ws --nat=any --mine --minerthreads 4 --targetgaslimit 8000000 --rpc --rpcapi="personal,eth,network,net,web3" --rpcport 8545 --rpcaddr "localhost" --disablepg --unlock "0x43EC6d0942f7fAeF069F7F63D0384a27f529B062,0x9e602164C5826ebb5A6B68E4AFD9Cd466043dc4A,0x5Bd738164C61FB50eb12E227846CbaeF2dE965Aa,0xC04eE4131895F1d0C294D508AF65D94060AA42BB,0x07D899C4aC0c1725C35C5f816e60273B33a964F7" --password ./shyft-config/unlockPasswords.txt 4 else 5 /bin/geth --config ./shyft-config/config.toml --ws --nat=any --mine --minerthreads 4 --targetgaslimit 8000000 --rpc --rpcapi="personal,eth,network,net,web3" --rpcport 8545 --rpcaddr "localhost" --disablepg --unlock "0x43EC6d0942f7fAeF069F7F63D0384a27f529B062,0x9e602164C5826ebb5A6B68E4AFD9Cd466043dc4A,0x5Bd738164C61FB50eb12E227846CbaeF2dE965Aa,0xC04eE4131895F1d0C294D508AF65D94060AA42BB,0x07D899C4aC0c1725C35C5f816e60273B33a964F7" --password ./shyft-config/unlockPasswords.txt 6 fi