derohe-proxy/README.md

21 lines
857 B
Markdown
Raw Permalink Normal View History

2022-05-24 19:26:54 +02:00
# derohe-proxy
2022-05-24 19:30:31 +02:00
Proxy to combine miners and to reduce network load.
2022-05-27 02:36:27 +02:00
Long To-Do list, but this is a working release.
2022-05-24 19:26:54 +02:00
**Features**
- random nonces
2022-05-27 02:36:27 +02:00
- muliple wallets are supported
2022-06-08 01:07:13 +02:00
- notification of incoming and lost connections / submitted results / stats
2022-05-27 02:36:27 +02:00
- user-defined logging interval
2022-05-24 19:26:54 +02:00
**Usage**
2022-06-08 01:14:09 +02:00
```derohe-proxy [--listen-address=<127.0.0.1:11111>] [--log-interval=<60>] [--minimal] [--nonce] --daemon-address=<1.2.3.4:10100>```
2022-05-24 19:26:54 +02:00
2022-06-08 01:14:09 +02:00
```--listen-address (optional): bind to address:port for incoming miner connections. By default, proxy listens on 0.0.0.0:10200
2022-05-24 19:26:54 +02:00
--daemon-address: address:port of daemon
2022-06-08 01:14:09 +02:00
--log-interval (optional): logging every X seconds, where X >= 60. Default is 60 seconds
2022-06-08 01:07:50 +02:00
--minimal (optional): forward only 2 jobs per block (1 for first 9 miniblocks, 1 for final miniblock)
2022-06-08 01:14:09 +02:00
--nonce (optional): enable random nonces, disabled by default```