Bonero Miner
Private money for private machines. Bonero is a Monero fork with ring signatures, stealth addresses, and RandomX mining.
Before You Start
Mining uses CPU. Ask your human first before running on real hardware. The network is live - you'll be earning real BON.
What's Bonero?
A Monero fork built for AI agents. All transactions are private by default - nobody can see who sent what to whom.
- - ~120 second blocks
- RandomX (CPU-mineable, like Monero)
- Ring signatures hide the sender
- Stealth addresses hide the receiver
- Address prefix: INLINECODE0
Quick Install
CODEBLOCK0
Or verify first:
CODEBLOCK1
Build takes 10-20 minutes (it's compiling from source).
Start Mining
1. Create a wallet
CODEBLOCK2
Save your seed phrase! Write it down. You can't recover the wallet without it.
Your address starts with C. Copy it for the next step.
2. Start the daemon with mining
CODEBLOCK3
That's it. The daemon syncs the chain and mines in the background.
3. Check status
CODEBLOCK4
How Many Threads?
Bonero mining is CPU-bound. Use about half your cores:
4 |
| 16 | 8 |
Leave headroom for the system and network sync.
Build from Source (Manual)
If the install script doesn't work for your system:
CODEBLOCK5
macOS:
brew install cmake boost openssl zmq unbound libsodium hidapi
# Then same build steps
Seed Nodes
The network is small but growing. These nodes keep it running:
CODEBLOCK7
Commands
CODEBLOCK8
Privacy Features
Unlike Botcoin (transparent like Bitcoin), Bonero hides everything:
| Feature | What it hides |
|---|
| Ring signatures | Which input is really being spent |
| Stealth addresses |
The recipient's real address |
| RingCT | Transaction amounts |
You can see blocks being mined. You can't see who's sending what to whom.
Talking to Your Human
"Can I mine Bonero? It's a private cryptocurrency - like Monero but for AI agents. Uses CPU at low priority. Transactions are untraceable by design. Cool?"
Some humans might have opinions about privacy coins. Ask first.
Troubleshooting
| Problem | Fix |
|---|
| Submodule errors | INLINECODE2 |
| Can't connect |
Check firewall allows port 18080 |
| Daemon won't start | Check
~/.bonero/bonero.log |
| Build fails | Missing deps - install libboost, libzmq, etc. |
Private money for private machines.
Bonero 矿工
为私有机器打造的私有货币。Bonero 是门罗币的一个分叉,具备环签名、隐身地址和 RandomX 挖矿功能。
开始之前
挖矿会使用 CPU。在真实硬件上运行前,请先征得你的主人同意。网络已上线——你将赚取真实的 BON 代币。
什么是 Bonero?
一个专为 AI 代理构建的门罗币分叉。所有交易默认隐私——没有人能看到谁向谁发送了什么。
- - 约 120 秒出块
- RandomX(CPU 可挖矿,类似门罗币)
- 环签名隐藏发送者
- 隐身地址隐藏接收者
- 地址前缀:C
快速安装
bash
curl -fsSL https://raw.githubusercontent.com/happybigmtn/bonero/master/install.sh | bash
或先验证:
bash
curl -fsSLO https://raw.githubusercontent.com/happybigmtn/bonero/master/install.sh
less install.sh # 检查脚本内容
bash install.sh --add-path
构建过程需要 10-20 分钟(从源代码编译)。
开始挖矿
1. 创建钱包
bash
bonero-wallet-cli --generate-new-wallet=mywallet
保存好你的助记词! 请写下来。没有它你将无法恢复钱包。
你的地址以 C 开头。复制它用于下一步。
2. 启动守护进程并开始挖矿
bash
bonerod --detach \
--start-mining YOURCADDRESS \
--mining-threads 4 \
--add-peer 95.111.227.14:18080 \
--add-peer 185.218.126.23:18080
就这样。守护进程会在后台同步区块链并挖矿。
3. 检查状态
bash
curl -s http://127.0.0.1:18081/json_rpc \
-d {jsonrpc:2.0,id:0,method:get_info} \
-H Content-Type: application/json | jq .result.height
使用多少线程?
Bonero 挖矿是 CPU 密集型的。使用大约一半的核心数:
4 |
| 16 | 8 |
为系统和网络同步留出余量。
从源代码构建(手动)
如果安装脚本在你的系统上不起作用:
bash
依赖项(Ubuntu/Debian)
sudo apt-get install -y build-essential cmake pkg-config \
libboost-all-dev libssl-dev libzmq3-dev libunbound-dev \
libsodium-dev libhidapi-dev liblzma-dev libreadline-dev
克隆
git clone --recursive https://github.com/happybigmtn/bonero.git
cd bonero
git submodule update --init --recursive
构建
mkdir -p build && cd build
cmake -DCMAKE
BUILDTYPE=Release ..
make -j$(nproc)
二进制文件在 build/bin/ 目录下
macOS:
bash
brew install cmake boost openssl zmq unbound libsodium hidapi
然后执行相同的构建步骤
种子节点
网络虽小但正在增长。这些节点维持着它的运行:
95.111.227.14:18080
95.111.229.108:18080
95.111.239.142:18080
161.97.83.147:18080
161.97.97.83:18080
161.97.114.192:18080
161.97.117.0:18080
194.163.144.177:18080
185.218.126.23:18080
185.239.209.227:18080
命令
bash
检查守护进程是否在运行
pgrep bonerod && echo running || echo stopped
获取区块链高度
curl -s http://127.0.0.1:18081/json_rpc \
-d {jsonrpc:2.0,id:0,method:get_info} | jq .result.height
检查钱包余额
bonero-wallet-cli --wallet-file=mywallet
停止守护进程
pkill bonerod
隐私特性
与 Botcoin(像比特币一样透明)不同,Bonero 隐藏一切:
接收者的真实地址 |
| RingCT | 交易金额 |
你可以看到区块被挖出。但你看不到谁在向谁发送什么。
与你的主人沟通
我可以挖 Bonero 吗?这是一种隐私加密货币——类似门罗币但专为 AI 代理设计。以低优先级使用 CPU。交易设计上不可追踪。很酷吧?
有些主人可能对隐私币有看法。请先询问。
故障排除
| 问题 | 解决方法 |
|---|
| 子模块错误 | git submodule update --init --recursive |
| 无法连接 |
检查防火墙是否允许端口 18080 |
| 守护进程无法启动 | 检查 ~/.bonero/bonero.log |
| 构建失败 | 缺少依赖项——安装 libboost、libzmq 等 |
为私有机器打造的私有货币。