Skip to content

maded2/plotng

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PlotNG - plotting utility for Chia.Net

This utility consisted of server backend and UI which manages the chia plot creation.
It uses the chia command line interface to start the plot.
It will schedule new plots when a plot finishes as specified by the configuration file. The server backend does a cycle every minute and check if the configuration file has been changed, if it detects that it has been changed then it reloads the configuration file. Once a valid configuration file has been loaded then it will start one new plot per cycle.

Donation: XCH xch1wzvlj0ncv9uhjzcz43clkk0r84t6p2vp8k3yg762pglx6ufycmrsqnxj4v

Installation

Please download the latest release Pre-built binaries available for 64-bits Linux, Windows and MacOS (I've only tested Linux version, although other users confirmed it is working on Windows and MacOS)

Advance Installation from Source Code

go get github.com/maded2/plotng
cd plotng
go install plotng/cmd/plotng-client plotng/cmd/plotng-server

Running Server (runs on the plotter)

plotng-server -config <required, json config file> -port <optional, plotter port number, default: 8484> -address <optional, address to bind to, default is blank (any)>

Please note: chia environment should be activated before starting plotng-server, or ChiaRoot should be set in the configuration file.

Running Monitoring UI (run anywhere)

PlotNG UI

The UI can run on any host and point back to the server using the host and port parameter

plotng-client -hosts <comma separated list of plotters host name or IP with/without port number> -alternate-mouse <optional, may be needed for mouse support through PuTTY)

eg. plotng-client -hosts plotter1:8484,plotter2,plotter3:8485

Configuration File (JSON format)

    {
        "Fingerprint": "",
        "FarmerPublicKey": "",
        "PoolPublicKey": "",
        "ContractAddress": "",
        "Threads": 0,
        "Buffers": 0,
        "DisableBitField": false,
        "NumberOfParallelPlots": 1,
        "TempDirectory": ["/media/eddie/tmp1", "/media/eddie/tmp2", "/media/eddie/tmp3"],
        "TargetDirectory": ["/media/eddie/target1", "/media/eddie/target2"],
        "StaggeringDelay": 5,
        "ShowPlotLog": false,
        "DiskSpaceCheck": false,
        "DelaysBetweenPlot": 0,
        "MaxActivePlotPerTarget": 0,
        "MaxActivePlotPerTemp": 0,
        "MaxActivePlotPerPhase1": 0,
        "UseTargetForTmp2": false,
        "AsyncCopying": true,
        "BucketSize": 0,
        "SavePlotLogDir": "",
        "PlotSize": 32,
        "ChiaRoot": "",
        "MadMaxPlotter": "",
        "Tmp2": ""
    }

Please note for Windows, please use capital drive letter and '/' eg. "D:/temp"

Settings

  • Fingerprint : fingerprint passed to the chia command line tool (you can either use the fingerprint if the private has been installed on the plotter or use the following farmer/pool public key instead)
  • FarmerPublicKey : Farmer Public Key passed to the chia command line tool
  • PoolPublicKey : Pool Public Key passed to the chia command line tool
  • ContractAddress: Pool NFT Contract Address for Portable Plot
  • Threads : number of threads use by the chia command line tool. If the value is zero or missing then chia will use the default
  • Buffers : number of buffers use by the chia command line tool. If the value is zero or missing then chia will use the default
  • DisableBitField : With BitField your plotting almost always gets faster. Set true if your CPU designed before 2010.
  • NumberOfParallelPlots : number of parallel plots to create. Set to zero for orderly shutdown
  • TempDirectory : list of plot directories / drives. The server process will choose the next directory path on the list and wraps to the beginning when it reaches the end.
  • TargetDirectory : list destination directories / drives. The server process will choose the next directory path on the list and wraps to the beginning when it reaches the end.
  • StaggeringDelay : when the TargetDirectory wraps to the beginning, it will delays the next plot create by the specified minutes.
  • ShowPlotLog : shows the last 10 lines of the plot logs in the server log output.
  • DiskSpaceCheck : check if destination directories have enough disk space to hold a new plot (only tested on Linux, may not work on MacOS / Windows)
  • DelaysBetweenPlot : Delays in mins between starting a new plot (minimum is 1 min)
  • MaxActivePlotPerTarget : Maximum active plots per target directory (default: 0 - no limit)
  • MaxActivePlotPerTemp : Maximum active plots per temp directory (default: 0 - no limit)
  • MaxActivePlotPerPhase1 : Maximum active plots per Phase 1 (default: 0 - no limit)
  • UseTargetForTmp2 : use target directory for tmp2
  • AsyncCopying: start next plot before copying
  • BucketSize : specify custom busket size (default: 0 - use chia default)
  • SavePlotLogDir : saves plotting logs to this directory. logs are not saved if no directory is provided (default: "")
  • PlotSize : plot size, default to k32 is not set. If set then it also pick sensible buffers for the given size.
  • ChiaRoot : the directory to find the chia binary in (typically this should remain as an empty string and the environment should be activated instead)
  • MadMaxPlotter : location of the madmax plotter binary (experimental support)
  • Tmp2 : specify Temporary Directory 2 for Madmax plotter

Please note PlotNG now skips any destination directory which have less than 105GB of disk space, if you set DiskSpaceCheck to true.