Skip to content
View chiadoge's full-sized avatar
Block or Report

Block or report chiadoge

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
chiadoge/README.md

ChiaDoge

ChiaDoge is a chia tools.It can manage your chia device.It supports a web dashboard that allows you to monitor your Chia farm and send notifications when something error in your Chia device. It can link multiple farmers/harvesters to your account.we support Chia/Flax/Chaingreen/Goji and so on.It means any kind of chia is ok

You can register and login the web server with your Browser(recommend Chrome):http://39.99.176.125:28080

web_server

detail

Pre-requisites

  • Windows + Ubuntu
  • Python 3.7+
  • Git
  • Enabled INFO logs on your chia farmer

Windows

How to enable INFO logs on chia farmer?

First we'll set Chia's log level to INFO. This ensures that all logs necessary for chiadoge to operate are available under C:\Users\[YOUR-USER]\.chia\mainnet\log\debug.log.

  1. Open the file C:\Users\[YOUR-USER]\.chia\mainnet\config\config.yaml in your favorite text editor
  2. Find the line that reads log_level: DEBUG (under the farmer section) and change this to log_level: INFO
  3. Restart the GUI or run chia start --restart farmer from the command line

Run Chiadoge.exe

  1. Download chiadoge.zip from Github
  2. Open zip,you will find chiadoge.exe and config.yaml

zip

  1. Extracted the zip to a directory and enter to it
  2. Run with: chiadoge.exe --config config.yaml
  3. Then you will get a Device ID

zip

  1. Register web monitor with email
  2. Add node by Device ID

add_node

Linux(Ubuntu)

How to enable INFO logs on chia farmer?

Reminder: INFO level log in Chia must be enabled (chia configure -log-level=INFO)

How to use Chiadoge

  1. Download
git clone https://github.com/chiadoge/chiadoge.git
cd chiadoge
  1. Run the install script.
chmod 777 install.sh
./install.sh
  1. Open up config_linux.yaml in your editor and change some profiles to yourself

  2. Run the start script

chmod 777 start.sh
./start.sh
  1. You will get a Device ID

linux_device_id

  1. Register web monitor with email and add node by Device ID

add_node

Where is my Chia?

Windows

chia exec file Default path is: C:\Users\<USERNAME>\AppData\Local\chia-blockchain\<VERSION>\resources\app.asar.unpacked\daemon\
debug.log Default path is: C:\Users\<USERNAME>\.chia\mainnet\log\debug.log

Ubuntu

Install Chia with deb file

chia exec file Default path is: /usr/lib/chia-blockchain/resources/app.asar.unpacked/daemon/
debug.log Default path is: /home/<USER>/.chia/mainnet/log/debug.log

Run Chia with source code (It means you run chia in python venv by yourself)

chia exec file Default path is: <ProjectPath>/venv/bin/
debug.log Default path is: /home/<USER>/.chia/mainnet/log/debug.log

Popular repositories

  1. chiadoge chiadoge Public

    A web dashboard that allows you to monitor your Chia farm and send notifications when something error in your Chia device. It can link multiple farmers/harvesters to your account.we support Chia/Fl…

    Python 1