<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: atahk0755@163.com</title>
    <description>The latest articles on DEV Community by atahk0755@163.com (@atahk0755163com_653ea8b).</description>
    <link>https://dev.to/atahk0755163com_653ea8b</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3898229%2F2c37456c-c491-47be-8aa9-4bebb225eb3e.png</url>
      <title>DEV Community: atahk0755@163.com</title>
      <link>https://dev.to/atahk0755163com_653ea8b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/atahk0755163com_653ea8b"/>
    <language>en</language>
    <item>
      <title>How I Built Solobitaxe – A Zero‑Friction Dashboard for Solo Mining Bitcoin on Your Bitaxe</title>
      <dc:creator>atahk0755@163.com</dc:creator>
      <pubDate>Sun, 26 Apr 2026 02:46:58 +0000</pubDate>
      <link>https://dev.to/atahk0755163com_653ea8b/how-i-built-solobitaxe-a-zero-friction-dashboard-for-solo-mining-bitcoin-on-your-bitaxe-5ak</link>
      <guid>https://dev.to/atahk0755163com_653ea8b/how-i-built-solobitaxe-a-zero-friction-dashboard-for-solo-mining-bitcoin-on-your-bitaxe-5ak</guid>
      <description>&lt;p&gt;Bitaxe is the most exciting thing to happen to home Bitcoin mining in years – a tiny, open‑source ASIC miner that you actually own. But if you’ve ever tried to set up &lt;strong&gt;solo mining&lt;/strong&gt; on a Bitaxe, you know the pain: editing &lt;code&gt;config.cfg&lt;/code&gt;, finding a trustworthy stratum URL, juggling three different browser tabs to see your hashrate, and wondering if the device is even connected.&lt;/p&gt;

&lt;p&gt;I got so frustrated that I built &lt;strong&gt;Solobitaxe&lt;/strong&gt; – a web dashboard that handles all of that nonsense for you. In this post I’ll walk through why I built it, how it works under the hood, and how you can start solo mining with your Bitaxe in literally one click.&lt;/p&gt;




&lt;h2&gt;
  
  
  The problem: Bitaxe solo mining is too manual
&lt;/h2&gt;

&lt;p&gt;Out of the box, the Bitaxe firmware ships with a minimal web UI that shows basic stats. That’s great for checking hashrate, but when you want to configure it for &lt;strong&gt;solo mining&lt;/strong&gt;, you have to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Find a reliable solo pool (or set up your own Bitcoin node with a stratum server).&lt;/li&gt;
&lt;li&gt;Figure out the exact stratum URL, port, worker name, and password.&lt;/li&gt;
&lt;li&gt;SSH or serial‑flash the configuration onto the device – or paste it into a tiny text box on the stock UI.&lt;/li&gt;
&lt;li&gt;Hope that the settings stick after a power cycle.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If you own more than one Bitaxe, you multiply this pain. If you’re a tinkerer who just wants the &lt;strong&gt;lottery mining experience&lt;/strong&gt; without becoming a sysadmin, it’s a huge barrier.&lt;/p&gt;

&lt;p&gt;I wanted something that felt like modern IoT: &lt;strong&gt;discover devices on your network, pick a pool, and go&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  The solution: Solobitaxe.com
&lt;/h2&gt;

&lt;p&gt;Solobitaxe is a web dashboard that runs right in your browser (or can be self‑hosted with Docker). It connects directly to your Bitaxe devices over your local network – no cloud account, no sign‑up, no data collection.&lt;/p&gt;

&lt;p&gt;Here’s what you get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;One‑click pool configuration&lt;/strong&gt; – popular solo pools are pre‑loaded (you can add custom ones too)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Live dashboard&lt;/strong&gt; with hashrate, accepted shares, power consumption, and ASIC temperature in clean charts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automatic device discovery&lt;/strong&gt; – finds all the Bitaxe miners on your LAN&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Firmware detection&lt;/strong&gt; and over‑the‑air (OTA) update support&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fully open‑source&lt;/strong&gt; – you can self‑host it on a Raspberry Pi if you prefer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When you visit &lt;code&gt;https://solobitaxe.com&lt;/code&gt;, the dashboard immediately scans your local network and shows every Bitaxe it finds. Select a device, choose “Solo CKPool” (or your own node), hit apply, and the Bitaxe starts hashing. You can monitor everything from a single tab, even on your phone.&lt;/p&gt;




&lt;h2&gt;
  
  
  How I built it – the tech that makes it tick
&lt;/h2&gt;

&lt;p&gt;Since this is dev.to, let’s geek out about the stack a bit.&lt;/p&gt;

&lt;h3&gt;
  
  
  Talking to the Bitaxe
&lt;/h3&gt;

&lt;p&gt;Bitaxe devices run on ESP32 microcontrollers and expose a simple HTTP API. That’s the key. Solobitaxe is essentially a &lt;strong&gt;local network orchestrator&lt;/strong&gt; that sends HTTP requests to the Bitaxe’s IP to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Read system info (&lt;code&gt;/api/system/info&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Change stratum settings (&lt;code&gt;/api/system/config&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Restart the mining process after changes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All of this happens on the client side. The web dashboard itself is a static single‑page application that makes &lt;strong&gt;direct HTTP calls from your browser&lt;/strong&gt; to the Bitaxe APIs. That means no backend server is required – your data never leaves your local network.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tech stack
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Vue 3 + Vite + Tailwind CSS
I chose Vue for its gentle learning curve and excellent composition API. Tailwind made it fast to prototype the dashboard layout.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Charts:&lt;/strong&gt; Chart.js via vue‑chartjs
Real‑time hashrate and temperature graphs update every second, giving you instant feedback.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Device communication:&lt;/strong&gt; Axios (browser‑side)
All requests to the Bitaxe API go through a thin HTTP client. I had to handle CORS properly, which is why the production build includes a tiny proxy for some edge cases – but for most users, direct calls work out of the box.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self‑hosting option:&lt;/strong&gt; Docker image with Nginx
If you want to run Solobitaxe locally 24/7, the whole thing fits in a single container.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Challenges I hit (and what I learned)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cross‑origin requests from HTTPS to HTTP devices:&lt;/strong&gt; Bitaxe devices serve their API over plain HTTP. When you access Solobitaxe over HTTPS, the browser blocks mixed content. I solved this by implementing a lightweight WebSocket relay that your browser can fall back to when needed, without any installation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Firmware version fragmentation:&lt;/strong&gt; Not all Bitaxe devices run the same firmware, so the config API paths and payload formats differ. Solobitaxe auto‑detects the firmware version and adapts accordingly – that took a lot of testing with community members.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Restarting the miner without dropping flags:&lt;/strong&gt; After pushing a new pool config, you need to restart the miner cleanly. A simple reboot sometimes loses the new settings. I ended up carefully sequencing the HTTP calls to save config, verify, then issue a soft restart.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How to try it right now (no sign‑up)
&lt;/h2&gt;

&lt;p&gt;If you have a Bitaxe on your local network, just open:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 &lt;a href="https://solobitaxe.com" rel="noopener noreferrer"&gt;https://solobitaxe.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you don’t own a Bitaxe but are curious, I put together a short &lt;a href="https://www.youtube.com/watch?v=placeholder" rel="noopener noreferrer"&gt;demo video&lt;/a&gt; that walks through the whole flow.&lt;/p&gt;

&lt;p&gt;The entire code is open source and lives on GitHub:&lt;br&gt;
&lt;strong&gt;🔗 &lt;a href="https://github.com/your%E2%80%91org/solobitaxe" rel="noopener noreferrer"&gt;github.com/your‑org/solobitaxe&lt;/a&gt;&lt;/strong&gt; (replace with actual repo)&lt;/p&gt;




&lt;h2&gt;
  
  
  What’s next
&lt;/h2&gt;

&lt;p&gt;This is an early beta, and I’m actively gathering feedback from the Bitaxe community. Some things I’m considering:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A mobile app (React Native) so you can check your miner on the go&lt;/li&gt;
&lt;li&gt;Support for additional open‑source mining hardware (like the NerdMiner)&lt;/li&gt;
&lt;li&gt;Alerts via Telegram/Discord when your Bitaxe finds a block or goes offline&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’d love to hear what you think – especially if you have ideas that would make solo mining even more accessible for normal people.&lt;/p&gt;

&lt;p&gt;Drop a comment here, open an issue on GitHub, or find me on Twitter/X at &lt;a href="https://twitter.com/yourhandle" rel="noopener noreferrer"&gt;@yourhandle&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy (solo) hashing! 🧡⛏️&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you enjoyed this, you might also like my other posts on building hardware‑adjacent web tools. And if you’re working on something related to Bitcoin self‑sovereignty, let’s connect!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>bitcoin</category>
      <category>mining</category>
    </item>
  </channel>
</rss>
