<?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: Brisvia</title>
    <description>The latest articles on DEV Community by Brisvia (@brisvia).</description>
    <link>https://dev.to/brisvia</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4024344%2Ffcc68ccb-be98-42ed-bc3e-008a8bbcd06a.png</url>
      <title>DEV Community: Brisvia</title>
      <link>https://dev.to/brisvia</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/brisvia"/>
    <language>en</language>
    <item>
      <title>Building Brisvia: A Fair-Launch CPU-Mineable PoW Network with Bitcoin Core and RandomX</title>
      <dc:creator>Brisvia</dc:creator>
      <pubDate>Fri, 10 Jul 2026 17:09:03 +0000</pubDate>
      <link>https://dev.to/brisvia/building-brisvia-a-fair-launch-cpu-mineable-pow-network-with-bitcoin-core-and-randomx-5ad4</link>
      <guid>https://dev.to/brisvia/building-brisvia-a-fair-launch-cpu-mineable-pow-network-with-bitcoin-core-and-randomx-5ad4</guid>
      <description>&lt;p&gt;Brisvia started from a simple idea: Proof-of-Work mining should remain accessible to people with ordinary computers.&lt;/p&gt;

&lt;p&gt;Many cryptocurrency networks eventually become dominated by specialized hardware, large mining operations, or private allocations created before the public can participate. Brisvia is an attempt to take a different path: open development, CPU-oriented mining, no premine, and a public launch where issuance begins through mining.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Brisvia?
&lt;/h2&gt;

&lt;p&gt;Brisvia (BRVA) is an open-source Proof-of-Work cryptocurrency based on Bitcoin Core v30.2.&lt;/p&gt;

&lt;p&gt;It keeps the transparent UTXO model and peer-to-peer architecture of Bitcoin Core while replacing SHA-256 mining with RandomX, an algorithm designed around general-purpose CPUs.&lt;/p&gt;

&lt;p&gt;The network uses ASERT to adjust mining difficulty and targets an average block interval of approximately two minutes.&lt;/p&gt;

&lt;p&gt;Mainnet is scheduled to launch on:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;August 1, 2026 at 15:00 UTC&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Brisvia is currently experimental software under active development.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fair-launch principles
&lt;/h2&gt;

&lt;p&gt;The launch is being designed around the following rules:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;0% premine&lt;/li&gt;
&lt;li&gt;No ICO&lt;/li&gt;
&lt;li&gt;No presale&lt;/li&gt;
&lt;li&gt;No private allocation&lt;/li&gt;
&lt;li&gt;No developer tax&lt;/li&gt;
&lt;li&gt;No spendable genesis reward&lt;/li&gt;
&lt;li&gt;Public source code&lt;/li&gt;
&lt;li&gt;Public and verifiable issuance through mining&lt;/li&gt;
&lt;li&gt;A finite maximum supply&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Nothing is currently being sold, and BRVA has no guaranteed economic value, profitability, liquidity, or exchange listing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why RandomX?
&lt;/h2&gt;

&lt;p&gt;RandomX is designed to make effective use of general-purpose processors.&lt;/p&gt;

&lt;p&gt;Brisvia uses it to reduce the barrier to mining and allow people to participate without requiring specialized ASIC hardware.&lt;/p&gt;

&lt;p&gt;This does not mean that every processor will perform equally or that mining rewards are guaranteed. Results depend on network difficulty, processing power, uptime, and whether valid blocks are found.&lt;/p&gt;

&lt;p&gt;The objective is accessibility, not a promise of profit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building on Bitcoin Core
&lt;/h2&gt;

&lt;p&gt;Brisvia is based on Bitcoin Core v30.2.&lt;/p&gt;

&lt;p&gt;The integration required more than replacing one hashing function. RandomX Proof of Work must be verified consistently across:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Block creation&lt;/li&gt;
&lt;li&gt;Block-header validation&lt;/li&gt;
&lt;li&gt;Initial synchronization&lt;/li&gt;
&lt;li&gt;Peer-to-peer header processing&lt;/li&gt;
&lt;li&gt;Mining&lt;/li&gt;
&lt;li&gt;Difficulty adjustment&lt;/li&gt;
&lt;li&gt;Chain reorganization handling&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The block header remains compatible with the standard 80-byte Bitcoin-style structure. Its network identifier continues to use double SHA-256, while the Proof-of-Work validity is determined using RandomX.&lt;/p&gt;

&lt;p&gt;The project also uses a deterministic RandomX seed schedule based on block height, allowing nodes to validate competing branches without depending on only the currently active chain.&lt;/p&gt;

&lt;h2&gt;
  
  
  Difficulty adjustment
&lt;/h2&gt;

&lt;p&gt;Brisvia uses ASERT to adjust difficulty after every block.&lt;/p&gt;

&lt;p&gt;A new network can experience large changes in available mining power, especially during its first days. Per-block adjustment is intended to respond more smoothly than systems that wait for long fixed intervals before changing difficulty.&lt;/p&gt;

&lt;p&gt;The initial difficulty remains particularly important because no adjustment algorithm can help until the first blocks are found.&lt;/p&gt;

&lt;h2&gt;
  
  
  Brisvia Desktop
&lt;/h2&gt;

&lt;p&gt;A major goal is to make participation possible without requiring terminal commands or complicated manual configuration.&lt;/p&gt;

&lt;p&gt;Brisvia Desktop is being built with Tauri, Rust, and a web-based interface. It combines:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A BRVA wallet&lt;/li&gt;
&lt;li&gt;A local Brisvia node&lt;/li&gt;
&lt;li&gt;CPU mining&lt;/li&gt;
&lt;li&gt;Sending and receiving&lt;/li&gt;
&lt;li&gt;Wallet backup and recovery&lt;/li&gt;
&lt;li&gt;Mining controls&lt;/li&gt;
&lt;li&gt;Network status&lt;/li&gt;
&lt;li&gt;Spanish and English interfaces&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The application is being prepared for Windows, Linux, and macOS.&lt;/p&gt;

&lt;p&gt;Users will be able to choose between individual mining and group mining through a pool. Pool mining will remain optional, and the project is being designed so that independent pools can also be created.&lt;/p&gt;

&lt;h2&gt;
  
  
  Network independence
&lt;/h2&gt;

&lt;p&gt;Brisvia should not depend permanently on one computer or one server controlled by its founder.&lt;/p&gt;

&lt;p&gt;The network is being prepared with multiple seed nodes hosted by different providers. These servers help new installations discover peers, but they do not control consensus or the blockchain.&lt;/p&gt;

&lt;p&gt;Participants will be able to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Run independent full nodes&lt;/li&gt;
&lt;li&gt;Verify the blockchain locally&lt;/li&gt;
&lt;li&gt;Connect directly with other peers&lt;/li&gt;
&lt;li&gt;Mine individually&lt;/li&gt;
&lt;li&gt;Use independent mining pools&lt;/li&gt;
&lt;li&gt;Review the consensus implementation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The long-term objective is for the community to operate nodes and infrastructure independently.&lt;/p&gt;

&lt;h2&gt;
  
  
  Testing before mainnet
&lt;/h2&gt;

&lt;p&gt;Current testing includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;RandomX block validation&lt;/li&gt;
&lt;li&gt;Local and public test networks&lt;/li&gt;
&lt;li&gt;Synchronization between nodes&lt;/li&gt;
&lt;li&gt;Wallet creation and recovery&lt;/li&gt;
&lt;li&gt;CPU mining&lt;/li&gt;
&lt;li&gt;Mining-pool share verification&lt;/li&gt;
&lt;li&gt;PPLNS accounting&lt;/li&gt;
&lt;li&gt;Reorganization and maturity handling&lt;/li&gt;
&lt;li&gt;Desktop application testing&lt;/li&gt;
&lt;li&gt;Reproducible builds and signed updates&lt;/li&gt;
&lt;li&gt;Monitoring of public seed nodes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The project is still under development, and finding problems before mainnet is more valuable than presenting an image of perfection.&lt;/p&gt;

&lt;p&gt;Technical criticism, code review, compatibility testing, and responsible bug reports are welcome.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Public development: active&lt;/li&gt;
&lt;li&gt;Testnet and integration testing: active&lt;/li&gt;
&lt;li&gt;Mainnet launch: August 1, 2026 at 15:00 UTC&lt;/li&gt;
&lt;li&gt;Premine: 0%&lt;/li&gt;
&lt;li&gt;Guaranteed economic value: none&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Official resources
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Website:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://brisvia.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=pre_mainnet" rel="noopener noreferrer"&gt;brisvia.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Source code:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/brisvia/brisvia" rel="noopener noreferrer"&gt;Brisvia on GitHub&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Community:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://discord.gg/ZF4MExMJn4" rel="noopener noreferrer"&gt;Official Brisvia Discord&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Final note
&lt;/h2&gt;

&lt;p&gt;Brisvia is an experimental open-source project.&lt;/p&gt;

&lt;p&gt;It does not promise financial returns, mining profitability, liquidity, or future exchange listings. Testnet coins have no economic value and do not transfer to mainnet.&lt;/p&gt;

&lt;p&gt;The purpose of publishing the project now is to make its development visible, receive technical feedback, and allow people to independently verify how the network is being built.&lt;/p&gt;

</description>
      <category>bitcoin</category>
      <category>blockchain</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
