Skip to content

Instantly share code, notes, and snippets.

@bakasura980
Last active April 30, 2020 07:46
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 bakasura980/00e0358ee29a6b7a119db28cb4a2448b to your computer and use it in GitHub Desktop.
Save bakasura980/00e0358ee29a6b7a119db28cb4a2448b to your computer and use it in GitHub Desktop.
Run single-node EOS blockchain
mkdir nodeos
# Start a local single node blockchain
nodeos -e -p eosio \
--plugin eosio::producer_plugin \
--plugin eosio::producer_api_plugin \
--plugin eosio::chain_api_plugin \
--plugin eosio::http_plugin \
--data-dir "./nodeos/data" \
--config-dir "./nodeos/config" \
--access-control-allow-origin="*" \
--contracts-console \
--verbose-http-errors \
--http-validate-host=false \
>> ./nodeos/nodeos.log 2>&1 &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment