Skip to content

Getting Started

So you want to start farming CHIA with your HDD?

Preparation

  1. First install the CHIA wallet, you can find the latest release here.
  2. After starting the CHIA wallet for the first time you are prompted to select the wallet mode, select "Farming Mode" here: wallet mode selection

  3. Next create a new wallet, this will show you 24 words (your wallet seed) which you need to write down/store safely in a secure location.

    Attention

    Losing these 24 words means losing your funds! Never share them with anyone!

    wallet creation

  4. Your wallet (full node and wallet service) are now syncing the blockchain: wallet syncing

  5. (Optional) Speed up syncing by downloading the full node database from a mirror. To do so please stop your chia client, download the database file (blockchain_v2_mainnet.sqlite) and overwrite the existing database file located in your chia db directory (for example on Windows: C:\Users\<User>\.chia\mainnet\db). Start the chia client again once done.

Creating a PlotNFT

  1. To create a PlotNFT we first need a tiny bit of XCH, which we can obtain using the faucet provided by Chia. First copy your XCH receive address by clicking the one shown at the top of the GUI and paste it into the faucet form and hit submit: copy receiving address faucet submit

  2. Once you see the XCH in your balance it is time to create a PlotNFT by selecting "Pooling" in the sidebar on the left in the Chia GUI and clicking on "Join a Pool": empty pooling tab

  3. Input the pool url https://farmer-chia.foxypool.io and hit "Create" at the bottom:

create-plotnft

  1. Once the PlotNFT is created we can log in to the Pool UI by selecting the 3 dot menu at the top right and clicking on "View Pool Login Link" and opening the link in a browser: view pool login link

Creating the plots

To create the plots you can use the GUI, but for more advanced users using the CLI is recommended. Currently, the GUI does not support creating compressed plots.

  1. Click on the 3 dot menu of the PlotNFT and select "Add a plot"
  2. Select the madMAx Plotter, input the number of plots to create and select a directory for temporary files during plotting.

    Info

    Plotting takes up a bit of temporary space on your SSD, about 270 GB in case of k32. Make sure the temp directory is on a fast drive.

  3. Finally input the directory where you want your plot files to be stored to in the "Final Directory" and hit "Create": create a plot

  4. The plotting progress can be observed in the "Plots" tab: plot progress

To create any plots in the CLI we first need to extract the Farmer Public Key (FPK) as well as the PlotNFT contract address.

The FPK can be extracted by first logging out of the wallet at the top right and then selecting "Details" in the 3 dot menu of the key:

wallet details wallet details open

The PlotNFT contract address can be extracted by hovering over the question mark icon to the right of the PlotNFT name:

PlotNFT contract address

  1. To plot compressed plots using madMAx using your GPU (fast) first download the latest release here.
  2. Open a Powershell window and run the cuda_plot_k32.exe with the following arguments:

    -n <number of plots here> -C <compression level here> -x 8444 -t <tmp directory here> -d <final directory here> -f <FPK here> -c <PlotNFT contract address here>
    

    Info

    Run .\cuda_plot_k32.exe --help for a detailed list of all supported arguments. See here for more detailed infos on Gigahorse.

  1. To plot compressed plots using madMAx using your CPU (slow) first download the latest release here.
  2. Open a Powershell window and run the chia_plot.exe with the following arguments:

    -n <number of plots here> -C <compression level here> -x 8444 -t <tmp directory here> -d <final directory here> -f <FPK here> -c <PlotNFT contract address here>
    

    Info

    Run .\chia_plot.exe --help for a detailed list of all supported arguments. See here for more detailed infos on Gigahorse.

Farming

Info

If you plotted madMAx compressed plots you need to run the Gigahorse full node, farmer and harvester using the CLI and start your regular Chia wallet afterward. Please see here for more details.

Once you have created your first plots and your full node is synced you can see them farming in the Farming tab as well as the Pooling tab: Plots farming Plots farming PlotNFT

In the pools My Farmer tab you can see your farm in detail and keep track of it: My Farmer

When viewing your Harvesters you can see more fine-grained info corresponding to your harvester(s): Harvesters Harvester Proof times

Additionally, you can configure all sorts of settings related to name, payouts, difficulty and notifications by opening the settings: Settings

There are lots more things to explore on the Pool UI, just visit My Farmer to check them out!

More Infos

For a more in detail explanation of all things Chia please see the official docs.