EOS 安装本地环境

EOS install

  • git clone https://github.com/EOSIO/eos --recursive
  • cd eos/
  • ./eosio_build.sh
  • vim ~/.local/share/eosio/nodeos/config/config.ini
  • enable-stale-production = true
  • producer-name = eosio
  • plugin = eosio::producer_plugin
  • plugin = eosio::wallet_api_plugin
  • plugin = eosio::chain_api_plugin
  • plugin = eosio::http_plugin

EOS run

  • ./nodeos --http-server-address=0.0.0.0:8888
  • cd build/programs/cleos
  • ./cleos wallet create key
  • ./cleos create account eosio slagga public_key
  • ./cleos get account slagga

猜你喜欢

转载自my.oschina.net/slagga/blog/1824754
eos