Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tesa-klebeband/ducoforge
DucoForge is a versatile Duino-Coin miner emulator enabling users to simulate mining rigs made from Arduinos, ESP32s and ESP8266s
https://github.com/tesa-klebeband/ducoforge
Last synced: about 1 month ago
JSON representation
DucoForge is a versatile Duino-Coin miner emulator enabling users to simulate mining rigs made from Arduinos, ESP32s and ESP8266s
- Host: GitHub
- URL: https://github.com/tesa-klebeband/ducoforge
- Owner: tesa-klebeband
- License: gpl-3.0
- Created: 2024-02-13T19:35:05.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-09-07T11:12:11.000Z (4 months ago)
- Last Synced: 2024-09-07T12:28:48.364Z (4 months ago)
- Language: C++
- Size: 48.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DucoForge
DucoForge is a versatile Duino-Coin miner emulator enabling users to simulate mining rigs made from Arduinos, ESP32s and ESP8266s## Disclaimer
This project is for educational purposes only. Using this tool to mine on the official Duino-Coin network will probably get you banned. Use at your own risk. I am **not** responsible for any damage caused by this project to your account.## Building
Install the following packages by running the command suitable for your package manager:
- Debian/Ubuntu
```bash
sudo apt update && sudo apt install -y git make libcurl4-openssl-dev build-essential libssl-dev libsfml-dev rapidjson-dev
```
- Fedora
```bash
sudo dnf install -y git make libcurl-devel gcc-c++ openssl-devel sfml-devel rapidjson-devel
```
- Arch
```bash
sudo pacman -Syu --needed git make curl gcc openssl sfml rapidjson
```
Then clone the repository and build the project:
```bash
git clone https://github.com/tesa-klebeband/DucoForge.git
cd DucoForge
make
```## Using DucoForge
DucoForge relies on a JSON configuration file to run. An example configuration file is provided in the repository. To run DucoForge, simply run the following command:
```bash
build/ducoforge config.json
```## License
All files within this repo are released under the GNU GPL V3 License as per the LICENSE file stored in the root of this repo.