2020-03-30 22:23:50 +03:00
|
|
|
. _chia-common
|
2019-11-04 11:27:58 +03:00
|
|
|
|
2020-01-30 11:57:47 +03:00
|
|
|
echo "Starting local blockchain simulation. Runs a local introducer and chia system."
|
2019-12-03 13:03:43 +03:00
|
|
|
echo "Note that this simulation will not work if connected to external nodes."
|
|
|
|
|
|
|
|
# Starts a harvester, farmer, timelord, introducer, and 3 full nodes, locally.
|
|
|
|
# Please note that the simulation is meant to be run locally and not connected to external nodes.
|
2019-11-04 11:27:58 +03:00
|
|
|
|
2020-04-09 20:23:28 +03:00
|
|
|
_run_bg_cmd chia_harvester --logging.log_stdout=True
|
|
|
|
_run_bg_cmd chia_timelord --logging.log_stdout=True
|
|
|
|
_run_bg_cmd chia_timelord_launcher --logging.log_stdout=True
|
|
|
|
_run_bg_cmd chia_farmer --logging.log_stdout=True
|
|
|
|
_run_bg_cmd chia_introducer --logging.log_stdout=True
|
|
|
|
_run_bg_cmd chia_full_node --port=8444 --database_path="simulation_1.db" --connect_to_farmer=True --connect_to_timelord=True --rpc_port=8555 --introducer_peer.host="127.0.0.1" --introducer_peer.port=8445 --logging.log_stdout=True
|
|
|
|
_run_bg_cmd chia_full_node --port=8002 --database_path="simulation_2.db" --rpc_port=8556 --introducer_peer.host="127.0.0.1" --introducer_peer.port=8445 --logging.log_stdout=True
|
2019-11-04 11:27:58 +03:00
|
|
|
|
2019-12-02 21:38:00 +03:00
|
|
|
wait
|