<?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: byze</title>
    <description>The latest articles on DEV Community by byze (@byze_dev).</description>
    <link>https://dev.to/byze_dev</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%2F3953432%2F844ece57-3b6f-44b8-84ce-27854d08c5fa.png</url>
      <title>DEV Community: byze</title>
      <link>https://dev.to/byze_dev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/byze_dev"/>
    <language>en</language>
    <item>
      <title>BYZE</title>
      <dc:creator>byze</dc:creator>
      <pubDate>Wed, 27 May 2026 02:36:49 +0000</pubDate>
      <link>https://dev.to/byze_dev/byze-1mgf</link>
      <guid>https://dev.to/byze_dev/byze-1mgf</guid>
      <description>&lt;h1&gt;
  
  
  Building Byze: An Experimental RandomX Layer-1 With Browser-Side Signing
&lt;/h1&gt;

&lt;p&gt;Over the past months I’ve been building an experimental Layer-1 blockchain project called Byze.&lt;/p&gt;

&lt;p&gt;The goal is not to create “another token,” but to explore a full open-source ecosystem around:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;RandomX mining&lt;/li&gt;
&lt;li&gt;browser-side non-custodial signing&lt;/li&gt;
&lt;li&gt;mining pool infrastructure&lt;/li&gt;
&lt;li&gt;Qt wallet development&lt;/li&gt;
&lt;li&gt;self-hosted blockchain infrastructure&lt;/li&gt;
&lt;li&gt;quantum-signature experimentation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Current ecosystem status
&lt;/h2&gt;

&lt;p&gt;The infrastructure stack is now operational:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Qt desktop wallet&lt;/li&gt;
&lt;li&gt;standalone CPU miner&lt;/li&gt;
&lt;li&gt;mining pool&lt;/li&gt;
&lt;li&gt;block explorer&lt;/li&gt;
&lt;li&gt;browser wallet with local signing&lt;/li&gt;
&lt;li&gt;payout infrastructure&lt;/li&gt;
&lt;li&gt;nginx/Cloudflare deployment stack&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Main services:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://byze.org" rel="noopener noreferrer"&gt;https://byze.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://wallet.byze.org" rel="noopener noreferrer"&gt;https://wallet.byze.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://explorer.byze.org" rel="noopener noreferrer"&gt;https://explorer.byze.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://pool.byze.org" rel="noopener noreferrer"&gt;https://pool.byze.org&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Browser-side signing
&lt;/h2&gt;

&lt;p&gt;One area I wanted to explore was fully browser-side transaction signing.&lt;/p&gt;

&lt;p&gt;The web wallet keeps:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;mnemonic generation&lt;/li&gt;
&lt;li&gt;HD derivation&lt;/li&gt;
&lt;li&gt;XMSS/SPHINCS signing&lt;/li&gt;
&lt;li&gt;transaction construction&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;inside the browser.&lt;/p&gt;

&lt;p&gt;The server only:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;serves chain data&lt;/li&gt;
&lt;li&gt;broadcasts signed raw transactions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No private keys or mnemonics are uploaded to the server.&lt;/p&gt;

&lt;h2&gt;
  
  
  Mining architecture
&lt;/h2&gt;

&lt;p&gt;Byze uses RandomX and currently supports:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;in-process solo mining&lt;/li&gt;
&lt;li&gt;standalone pooled mining&lt;/li&gt;
&lt;li&gt;Stratum pool infrastructure&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I also built a standalone miner instead of depending entirely on XMRig-style integrations.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;```bash id="5h2u7x"&lt;br&gt;
./byze-miner \&lt;br&gt;
  --pool pool.byze.org:3333 \&lt;br&gt;
  --wallet YOUR_WALLET \&lt;br&gt;
  --worker rig01 \&lt;br&gt;
  --threads 8&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;


## Infrastructure lessons

The majority of the work was not consensus code.

It was:

* payout reliability
* wallet solvability edge cases
* browser bundling
* mempool parity testing
* systemd deployment
* nginx/static deployment
* chain synchronization
* explorer APIs
* production restart behavior
* low-memory VPS tuning

Building a blockchain is easy compared to operating one reliably.

## Current focus

The project is still pre-launch/private while infrastructure stabilizes.

Current priorities:

* release engineering
* wallet UX polish
* deterministic signing parity
* reproducible builds
* monitoring
* documentation
* deployment automation

## Why I’m posting

I’m interested in connecting with:

* blockchain infrastructure developers
* mining/pool operators
* wallet developers
* cryptography researchers
* self-hosted/open-source builders

especially people working on the practical operational side of crypto systems rather than just token launches.

More updates soon as the project approaches launch.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>blockchain</category>
      <category>cryptocurrency</category>
      <category>showdev</category>
      <category>web3</category>
    </item>
  </channel>
</rss>
