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>
1.4 KiB
1.4 KiB
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Repository Purpose
This is a binary distribution repository containing precompiled static libraries and headers for XMRig cryptocurrency mining software. There is no source code to build, test, or lint - only precompiled binaries.
Included Dependencies
- libuv 1.51.0 - Asynchronous I/O library
- OpenSSL 3.0.16 - Cryptography and SSL/TLS
- hwloc 2.12.1 - Hardware topology library
Directory Structure
<compiler>/<arch>/
├── include/ # Header files (hwloc.h, uv.h, openssl/)
└── lib/ # Static libraries (.a for Unix, .lib for Windows)
Supported platforms:
gcc/x64,gcc/x86- MSYS2/MinGWclang/arm64- Clang ARM64msvc2015/x64,msvc2015/x86- Visual Studio 2015msvc2017/x64,msvc2017/x86- Visual Studio 2017msvc2019/x64- Visual Studio 2019msvc2022/x64,msvc2022/arm64- Visual Studio 2022
Usage with XMRig
When building XMRig from source, point CMake to the appropriate directory:
# Visual Studio 2022 x64
cmake .. -G "Visual Studio 17 2022" -A x64 -DXMRIG_DEPS=c:\xmrig-deps\msvc2022\x64
# Visual Studio 2019 x64
cmake .. -G "Visual Studio 16 2019" -A x64 -DXMRIG_DEPS=c:\xmrig-deps\msvc2019\x64
# MSYS2 x64
cmake .. -G "Unix Makefiles" -DXMRIG_DEPS=c:/xmrig-deps/gcc/x64