Complete rebranding of all components: - Core miner: xmrig -> miner (binary, version.h, CMakeLists.txt) - Proxy: xmrig-proxy -> miner-proxy - CUDA plugin: xmrig-cuda -> miner-cuda - Heatmap: xmrig-nonces-heatmap -> miner-nonces-heatmap - Go CLI wrapper: miner-cli -> miner-ctrl Vendored XMRig ecosystem into miner/ directory: - miner/core - XMRig CPU/GPU miner - miner/proxy - Stratum proxy - miner/cuda - NVIDIA CUDA plugin - miner/heatmap - Nonce visualization tool - miner/config - Configuration UI - miner/deps - Pre-built dependencies Updated dev fee to use project wallet with opt-out (kMinimumDonateLevel=0) Updated branding to Lethean (domain, copyright, version 0.1.0) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
821 B
Batchfile
16 lines
821 B
Batchfile
:: Example batch file for mining Monero solo
|
|
::
|
|
:: Format:
|
|
:: xmrig.exe -o <node address>:<node port> -a rx/0 -u <wallet address> --daemon
|
|
::
|
|
:: Fields:
|
|
:: node address The host name of your monerod node or its IP address. It can also be a public node with RPC enabled, for example node.xmr.to
|
|
:: node port The RPC port of your monerod node to connect to, usually 18081.
|
|
:: wallet address Check your Monero CLI or GUI wallet to see your wallet's address.
|
|
::
|
|
:: Mining solo is the best way to help Monero network be more decentralized!
|
|
:: But you will only get a payout when you find a block which can take more than a year for a single low-end PC.
|
|
|
|
cd /d "%~dp0"
|
|
xmrig.exe -o YOUR_NODE_IP:18081 -a rx/0 -u 48edfHu7V9Z84YzzMa6fUueoELZ9ZRXq9VetWzYGzKt52XU5xvqgzYnDK9URnRoJMk1j8nLwEVsaSWJ4fhdUyZijBGUicoD --daemon
|
|
pause
|