deleted NOTES_CLI.MD and NOTES_XMRIG-PROXY.md

This commit is contained in:
cheese 2024-11-08 15:10:00 +01:00
parent 0b75ede99f
commit c4563ca964
2 changed files with 0 additions and 78 deletions

View file

@ -1,56 +0,0 @@
# **Notes CLI**
## **Features**
- fetch P2Pool node stratum data
- start XMRig instance
- stop with descriptive errors if P2Pool/XMRig have issue at launch
- output status of algo
- output on demand public stats
- output on demand account stats
## **Launch args**
- XVB token
- XMR address
- optional: hero
- optional: quiet algo
- optional: quiet XMRig
- optional: path of XMRig
- optional: path of P2Pool or P2Pool address:port
### Example:
```
gupaxx --cli --token xxxxx --address xxxxx --hero --p2pool="127.0.0.1:3333" -t 8 -q --path-xmrig="/path/to/xmrig-binary"
```
## **Commands**
### Possible input at runtime:
- all commands of XMRig: transfer the commands to the xmrig instance and return output.
- pubstats/ps: returns the stats of the public API.
- accountstats/as: returns the stats of your account.
- quit: quit the program, shutting down XMRig.
### Example:
```
as ↵
failures: 0
donated_last_hour: 0.00kH/s
donated_last_24_hours: 0.00kH/s
Round: VIP
You are not the winner
```
## **Technical implementation**
The CLI args are managed by [clap](https://docs.rs/clap).
The code for managing current args from upstream will be replaced to use this crate.
The CLI mode is enabled by passing the argument cli.
It will autostart XMRig/XvB processes.
p2pool process will be started if no address is given in args.
Otherwise, it will watch P2Pool data and mine on it.
Each argument can be omitted if it's already present in the state file.

View file

@ -1,22 +0,0 @@
# **Integration of Xmrig-Proxy**
## **Objective**
Allows a user to point his miners on the Gupaxx instance.
1 to have the sum of the HR in his stats
2 to let the algorithm of distribution of HR controls the HR of all the external miners.
## **UI implementation**
New Tab to start XMRig-Proxy, interact with console output, give custom options, select a pool from the pool list.
New process column in Status Tab for XMRig-Proxy.
## **Technical implementation**
XMRig-Proxy will mine on P2Pool instead of XMRig.
When XMRig-proxy is enabled, XMRig is automatically redirected to it instead of P2Pool.
XvB algo will check if XMRig-Proxy is enabled and watch/control his data instead of XMRig.