Skip to content

Instantly share code, notes, and snippets.

@michaelsbradleyjr
Created October 1, 2019 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelsbradleyjr/4226711f72fb9c476616b3312e910227 to your computer and use it in GitHub Desktop.
Save michaelsbradleyjr/4226711f72fb9c476616b3312e910227 to your computer and use it in GitHub Desktop.
docker \
run \
-it \
--rm \
-v "$PWD/geth":"/geth" \
michaelsbradleyjr/geth-hera:ubuntu-ewasm-testnet-milestone1 \
--nousb \
--datadir=/geth/development/datadir \
init /geth/ewasm-testnet-geth-config.json
docker \
run \
-d \
-p 8545:8545 \
-p 8546:8546 \
-p 8547:8547 \
-p 0.0.0.0:30303:30303 \
-p 0.0.0.0:30303:30303/udp \
-v "$PWD/geth":"/geth" \
michaelsbradleyjr/geth-hera:ubuntu-ewasm-testnet-milestone1 \
--nousb \
--verbosity=4 \
--vm.ewasm="/usr/local/lib/libhera.so,metering=true,fallback=true" \
--vmodule="miner=12,rpc=12" \
--datadir=/geth/development/datadir \
--etherbase=031159dF845ADe415202e6DA299223cb640B9DB0 \
--ipcpath=/tmp/geth.ipc \
--rpc \
--rpcport=8545 \
--rpcapi=web3,net,eth,debug \
--rpcaddr=0.0.0.0 \
--rpccorsdomain=* \
--networkid=66 \
--syncmode "fast" \
--mine \
--miner.threads 1 \
--bootnodes "enode://53458e6bf0353f3378e115034cf6c6039b9faed52548da9030b37b4672de4a8fd09f869c48d16f9f10937e7398ae0dbe8b9d271408da7a0cf47f42a09e662827@23.101.78.254:30303"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment