Privacy-first codebase. Full node, wallet tools, and core protocol logic in one tree.
This repository contains the Monero core source tree: the daemon, wallet CLI, wallet RPC service, tests, build tooling, and supporting docs. It is not a thin client and not a UI wrapper. It is the main implementation layer.
| Area | Value |
|---|---|
| Runtime | Native binaries |
| Stack | C++17, C11, CMake |
| Main targets | monerod, monero-wallet-cli, monero-wallet-rpc |
| Core code | src/ |
| Docs and tooling | docs/, contrib/, utils/ |
src/daemon/ -> node process and daemon flow
src/simplewallet/ -> terminal wallet layer
src/wallet/ -> wallet engine and RPC side
tests/ -> regression and behavior coverage
external/ + .gitmodules -> bundled dependency surface
sync deps -> git submodule update --init --recursive
configure -> cmake -S . -B build
compile -> cmake --build build -j
node -> ./build/bin/monerod
wallet -> ./build/bin/monero-wallet-cli

