Skip to content

Commit

Permalink
Add page about fast farmer
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed Nov 13, 2023
1 parent 274f5cd commit 46e9813
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions docs/proof-of-spacetime/fast-farmer/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: Fast Farmer
---

[Fast Farmer](https://github.com/GalactechsLLC/dg_fast_farmer){target=_blank} is a 3rd-party lightweight farmer for the chia blockchain written in rust and works by connecting to a regular chia full node.

- [x] Fast Farmer is fully supported on Foxy-Pool!
- [x] NFT and OG plots are supported!
- [x] Bladebit compressed plots are supported!
- [ ] Gigahorse plots are not yet supported, but support is being worked on


Fast Farmer can be used without a local full node, by using the Foxy [Chia Farming Gateway](../chia-farming-gateway/index.md). To use it just edit your `fast_farmer.yaml`:
```yaml
fullnode_ws_host: node.chia.foxypool.io
fullnode_ws_port: 28444
```
To initialize a new setup completely without a local full node run:
```bash
./ff init \
--fullnode-rpc-host node-rpc-gateway-chia.foxypool.io \
--fullnode-rpc-port 443 \
--fullnode-ws-host node.chia.foxypool.io \
--fullnode-ws-port 28444 \
--mnemonic "<your 24 words here>" \
--payout-address <your xch address here> \
-d <your plot directory here> \
-d <your other plot directory here>
```

!!! info "Note"
If you can run a full node, you should!
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ nav:
- Updating: proof-of-spacetime/foxy-gh-farmer/updating.md
- Configuration: proof-of-spacetime/foxy-gh-farmer/configuration.md
- Systemd service: proof-of-spacetime/foxy-gh-farmer/setup-systemd-service.md
- Fast-Farmer:
- proof-of-spacetime/fast-farmer/index.md
- Chia Farming Gateway:
- proof-of-spacetime/chia-farming-gateway/index.md
- Monitoring apps:
Expand Down

0 comments on commit 46e9813

Please sign in to comment.