Bitcoin mining is the computational process that secures the Bitcoin network by repeatedly hashing an 80-byte block header through the SHA-256 cryptographic hash function until the resulting 256-bit output falls below a network-defined target threshold. Each valid hash constitutes a Proof of Work, granting the miner the right to append a new block of transactions to the blockchain and claim the block reward: 3.125 BTC (approximately $219,750 at ~$70,300 per BTC as of February 2026) plus all transaction fees contained in that block. Mining simultaneously validates transactions, prevents double-spending without a trusted third party, and is the sole mechanism through which new Bitcoin enters circulation at a mathematically fixed, declining rate.
Since Satoshi Nakamoto mined the first block on January 3, 2009, over 19.99 million of Bitcoin’s hard-capped 21 million supply have been mined. Fewer than 1.01 million BTC remain to be created, and the last Bitcoin will not be mined until approximately the year 2140. Mining is the only way new Bitcoin enters circulation, and it is the mechanism that makes Bitcoin the most secure decentralized network in the world.
How Does Bitcoin Mining Work?
Bitcoin mining is the process of repeatedly hashing a block header through the SHA-256 cryptographic hash function until the output meets a specific numeric threshold set by the network. As Satoshi Nakamoto defined in the Bitcoin whitepaper: “The network timestamps transactions by hashing them into an ongoing chain of hash-based proof-of-work, forming a record that cannot be changed without redoing the proof-of-work.” There are no puzzles. There are no equations to solve. Mining is a brute-force search for a single valid hash output, and the process is entirely deterministic in its mechanics but probabilistic in its outcome.
The following sections break down every stage of this process in technical detail.
Stage 1: Transaction Selection from the Mempool
Every Bitcoin transaction begins as a broadcast to the peer-to-peer network. When a user signs a transaction with their private key and sends it, neighboring nodes validate its structure and relay it to other nodes. Valid transactions accumulate in each node’s mempool (memory pool), a temporary holding area for unconfirmed transactions.
A miner (or the miner’s node) selects transactions from the mempool to include in a candidate block. Transaction selection is based on:
- Fee density: Transactions offering higher fees per byte of data (measured in satoshis per virtual byte, or sat/vB) are prioritized, because they maximize the miner’s revenue within the block’s size limit.
- Block weight limit: Each block has a maximum weight of 4,000,000 weight units (approximately 1-4 MB of data depending on transaction types). The miner fills the block up to this limit.
- Validity: Every transaction must have proper digital signatures, sufficient input values, and correctly formatted scripts. Invalid transactions are rejected.
The miner also creates a special transaction called the coinbase transaction. This is the first transaction in every block. It has no inputs (no prior transaction funds it) and creates new Bitcoin from nothing. The coinbase transaction pays the miner the block reward (currently 3.125 BTC) plus the sum of all transaction fees in the block. This is the only mechanism through which new Bitcoin enters circulation.
Stage 2: Constructing the Block Header
Once the miner has assembled their candidate block (a set of transactions plus the coinbase transaction), the mining hardware does not hash the entire block. It hashes only the block header, an 80-byte data structure that serves as a compact fingerprint of the entire block. The block header contains exactly six fields:
| Field | Size | Description |
|---|---|---|
| Version | 4 bytes | The block version number. Indicates which set of validation rules the block follows. Used for signaling protocol upgrades (soft forks). |
| Previous Block Hash | 32 bytes | The SHA-256d hash of the immediately preceding block’s header. This is what links each block to the one before it, forming the chain. Changing any data in a prior block would change its hash, breaking the chain from that point forward. |
| Merkle Root | 32 bytes | A single 256-bit hash derived from all transactions in the block using a binary hash tree (Merkle tree). Each transaction is hashed, then pairs of hashes are hashed together, repeating until one root hash remains. This allows any single transaction to be verified as included in the block without downloading the entire block. |
| Timestamp | 4 bytes | The approximate time the miner began hashing the block, encoded as Unix epoch time (seconds since January 1, 1970). Must be greater than the median of the previous 11 blocks and no more than 2 hours ahead of network-adjusted time. |
| Difficulty Target (nBits) | 4 bytes | A compact representation of the target threshold. The resulting hash must be numerically less than or equal to this target for the block to be valid. A lower target means higher difficulty. |
| Nonce | 4 bytes | A 32-bit integer that the miner increments with each hash attempt. The nonce is the primary variable miners change to produce different hash outputs. Its range is 0 to 4,294,967,295 (2^32 – 1). |
These six fields, totaling exactly 80 bytes, are the only data that gets hashed during mining. Everything else in the block (the actual transactions) is represented by the Merkle Root.
Stage 3: The Hashing Process
This is the core of Bitcoin mining. The miner’s ASIC hardware takes the 80-byte block header and runs it through SHA-256 twice (known as SHA-256d or double-SHA-256). The output is a 256-bit (32-byte) number, typically displayed as a 64-character hexadecimal string.
Here is what happens on each attempt:
- The ASIC takes the current block header (with the current nonce value).
- It computes SHA-256(SHA-256(block_header)), producing a 256-bit output.
- It compares this output to the current difficulty target.
- If the hash is numerically less than or equal to the target, the block is valid. Mining is complete.
- If the hash is greater than the target, the nonce is incremented by one and the process repeats from step 1.
SHA-256 is a one-way hash function. There is no mathematical shortcut to predict which input will produce an output below the target. Every single hash attempt is statistically independent. Whether you have been hashing for one second or one year, your probability of finding a valid hash on the next attempt is identical. This is why mining is fundamentally a game of probability and volume.
The Nonce Alone is Not Enough
The nonce field is only 32 bits, providing 4,294,967,295 possible values. A modern ASIC miner exhausts the entire nonce range in a fraction of a second. A Bitaxe Gamma 602 at 1.2 TH/s cycles through all 4.3 billion nonce values in approximately 3.6 milliseconds. Industrial miners operating at hundreds of TH/s exhaust it even faster.
To generate fresh hash inputs after the nonce is exhausted, miners modify other fields:
- Coinbase extra nonce: The coinbase transaction includes an arbitrary data field. Changing even one bit in this field changes the coinbase transaction hash, which changes the Merkle Root, which changes the entire block header. This provides an effectively unlimited additional search space.
- Timestamp: The timestamp can be adjusted within the allowed range, producing a different header for hashing.
In practice, ASIC mining firmware continuously rotates the coinbase extra nonce to generate new Merkle Roots, while simultaneously iterating through all nonce values for each Merkle Root. This creates a search space that is, for practical purposes, infinite.
Stage 4: A Real-World Analogy
Imagine a sealed vault with a combination lock that has trillions of possible combinations. The lock will open for any combination that starts with a specific number of zeros (for example, any combination beginning with “00000”). There is no way to calculate or reverse-engineer which combinations will work. The only option is to try one combination after another, as fast as possible.
Now imagine millions of people around the world are all spinning their own combination locks simultaneously, each trying a different combination every fraction of a second. The first person whose lock opens wins the prize and gets to announce it to everyone. Everyone else verifies that the winning combination does indeed start with the required zeros (which takes a fraction of a second to check), resets their locks to include the winner’s result, and the next round begins.
In this analogy:
- The combination lock is the SHA-256 hash function applied to the block header.
- Each combination attempt is a single hash (block header with a specific nonce and extra nonce value).
- The requirement that the combination “starts with zeros” is the difficulty target. The more leading zeros required, the harder it is to find a valid combination.
- The people spinning locks are ASIC miners around the world.
- The prize is the 3.125 BTC block reward plus transaction fees.
- Verification is instant because any node can run the same SHA-256 hash on the winning header and confirm the output meets the target.
This is why mining requires enormous computational effort to perform but trivial effort to verify. As Satoshi wrote: “The proof-of-work also solves the problem of determining representation in majority decision making.”
Stage 5: Block Validation and Propagation
When a miner finds a valid hash, they broadcast the completed block to the Bitcoin peer-to-peer network. Every full node that receives the block independently verifies:
- The block header hash is below the current difficulty target.
- The previous block hash references the correct prior block in the chain.
- Every transaction in the block is valid (proper signatures, no double-spends, correct script execution).
- The Merkle Root in the header matches the actual transactions in the block.
- The coinbase transaction does not claim more than the allowed block reward plus fees.
- The timestamp falls within the acceptable range.
If all checks pass, the node adds the block to its local copy of the blockchain and relays it to its connected peers. This propagation takes seconds to reach nodes across the globe. Any node that detects an invalid block rejects it immediately. No single entity can force an invalid block onto the network because every node enforces the rules independently.
Stage 6: The Miner Receives the Reward
The coinbase transaction in the validated block credits the miner’s designated Bitcoin address with the block reward (3.125 BTC as of February 2026, worth approximately $219,750 at ~$70,300 per BTC) plus every transaction fee included in the block. This reward is subject to a 100-block maturity rule: the miner cannot spend the coinbase output until 100 additional blocks have been mined on top of it (approximately 16.7 hours). This safeguard prevents miners from spending rewards from blocks that may later be orphaned due to chain reorganization.
The entire cycle, from transaction selection to reward receipt, then resets. Miners immediately begin constructing and hashing the next candidate block, referencing the hash of the block that was just confirmed. On average, this cycle completes once every 10 minutes, producing approximately 144 blocks per day. The total process is what Satoshi Nakamoto described as “an ongoing chain of hash-based proof-of-work.”
For a deeper look at the technical process happening inside your mining hardware, read our guide on What Exactly is My Bitcoin Miner Doing. For definitions of all terms used in this section, visit our comprehensive Bitcoin Mining Terminology Glossary.

What is Proof of Work (PoW)?
Proof of Work is Bitcoin’s consensus mechanism. It requires miners to prove they have expended computational energy before they can add a block to the blockchain. This expenditure of real-world resources (electricity and hardware) is what gives Bitcoin its security. Altering a confirmed block would require re-doing all the computational work for that block and every block after it, which becomes practically impossible within a few confirmations.
Proof of Work solves two critical problems. First, it prevents double-spending, which is the risk of someone sending the same Bitcoin to two different recipients. Second, it eliminates the need for a trusted third party like a bank to verify transactions. The energy cost of mining is not waste. It is the price of trustless, decentralized security that no central authority can corrupt or censor.
Other blockchains use alternative mechanisms like Proof of Stake (PoS), where validators lock up cryptocurrency as collateral instead of expending energy. Bitcoin’s creator chose Proof of Work because it ties the network’s security to physical resources, making it extremely costly to attack.

Bitcoin Network Difficulty Explained
Bitcoin’s mining difficulty automatically adjusts every 2,016 blocks (approximately every two weeks) to maintain an average block time of 10 minutes. If blocks are being mined faster than 10 minutes, difficulty increases. If blocks are slower, difficulty decreases. This self-correcting mechanism is one of Bitcoin’s most important design features.
As of February 14, 2026, Bitcoin’s mining difficulty sits at 125.86 trillion after an 11.16% decrease on February 7, 2026. This was the largest difficulty adjustment drop since China’s mining ban in 2021. The drop was caused by Winter Storm Fern forcing large-scale miner curtailments across U.S. power grids (MARA alone curtailed 770 MW of capacity) combined with Bitcoin’s price declining from its all-time high of $126,296 in October 2025 to approximately $70,300 today.
The network hashrate (total computing power securing Bitcoin) currently measures approximately 1.15 ZH/s (zettahashes per second). To put that in perspective, that is 1,150,000,000,000,000,000,000 hash calculations per second across all miners globally.
For a comprehensive explanation of how difficulty adjustments work, read our guide on Understanding Bitcoin’s Network Difficulty.

What is the Bitcoin Block Reward?
The block reward is the amount of newly created Bitcoin awarded to the miner who successfully adds a block to the blockchain. When Bitcoin launched in 2009, the reward was 50 BTC per block. This reward halves approximately every four years (every 210,000 blocks) in an event called the Bitcoin halving.
| Halving Event | Date | Block Height | Block Reward | Daily BTC Mined |
|---|---|---|---|---|
| Launch | January 3, 2009 | 0 | 50 BTC | 7,200 BTC |
| 1st Halving | November 28, 2012 | 210,000 | 25 BTC | 3,600 BTC |
| 2nd Halving | July 9, 2016 | 420,000 | 12.5 BTC | 1,800 BTC |
| 3rd Halving | May 11, 2020 | 630,000 | 6.25 BTC | 900 BTC |
| 4th Halving (Current) | April 20, 2024 | 840,000 | 3.125 BTC | ~450 BTC |
| 5th Halving (Next) | ~April 2028 | 1,050,000 | 1.5625 BTC | ~225 BTC |
The halving ensures Bitcoin’s annual inflation rate continues to decrease. After the April 2024 halving, Bitcoin’s inflation rate dropped below 1%, making it less inflationary than gold (~1.6% annually). This predictable, declining supply schedule is a core feature that distinguishes Bitcoin from fiat currencies, which central banks can print in unlimited quantities.
In addition to the block reward, miners collect transaction fees paid by users who want their transactions included in the next block. As block subsidies continue to halve, transaction fees will become an increasingly larger portion of miner revenue. Fees accounted for approximately 1% of total miner revenue in 2025, down from 7% in 2024 when Ordinals and Runes drove on-chain activity.

Bitcoin Mining Equipment: From CPUs to ASICs
The hardware used to mine Bitcoin has evolved dramatically since 2009. Understanding this evolution explains why specialized equipment is now required and how modern home mining hardware has made the process accessible again.
The Evolution of Mining Hardware
CPUs (2009-2010): Satoshi Nakamoto mined Bitcoin’s genesis block using a standard computer processor. In Bitcoin’s earliest days, the network difficulty was so low that a regular laptop could mine blocks. This era ended as more miners joined the network.
GPUs (2010-2013): Graphics processing units offered roughly 100x the hashing power of CPUs. GPU mining made individual CPU mining obsolete but was still accessible to hobbyists with gaming computers.
FPGAs (2011-2013): Field-Programmable Gate Arrays delivered better energy efficiency than GPUs but required technical expertise to configure. They represented a brief transition period.
ASICs (2013-Present): Application-Specific Integrated Circuits are custom-designed chips built exclusively for Bitcoin mining. Modern ASICs deliver millions of times more hashing power per watt than the original CPUs. They are the only hardware capable of mining Bitcoin competitively in 2026.
For a detailed look at this progression, read our article on The Evolution of Bitcoin Mining: From CPUs to ASICs.

Modern Bitcoin Mining Hardware in 2026
Bitcoin mining hardware in 2026 falls into two categories: industrial-scale ASIC miners and open-source home miners.
Industrial ASIC Miners like the Bitmain Antminer S21 XP (270 TH/s) are designed for large-scale data center operations. They require 240V power, dedicated cooling infrastructure, produce significant noise, and cost thousands of dollars. These machines dominate the global hashrate.
Bitcoin Home Miners are compact, low-power ASIC devices designed specifically for home use. These include the Bitaxe family, the Nerdaxe family, and the Canaan Avalon family. They run on standard household outlets, produce minimal noise, consume as little as 12-1700 watts, and connect via Wi-Fi. All designs for bitaxe and Nerdaxe are fully open source and published at bitaxe.org or Github.
| Device | Hashrate | ASIC Chip | Efficiency | Power Draw | Price |
|---|---|---|---|---|---|
| Bitaxe Supra | 650 GH/s | BM1368 | 19 J/TH | ~12W (5V DC) | ~$80 |
| Bitaxe Gamma 602 | 1.2 TH/s | BM1370 | 15 J/TH | ~18W (5V DC) | ~$98 |
| Bitaxe Duo 650 | 1.63 TH/s | 2x BM1370 | 15 J/TH | ~24W (5V DC) | ~$130 |
| Bitaxe GT 801 | 2.15 TH/s | 2x BM1370 | 18 J/TH | ~39W (12V DC) | ~$206 |
| NerdQaxe++ Rev 6.1 | 6+ TH/s | 4x BM1370 | 15.65 J/TH | ~100W (12V) | ~$382 |
| Canaan Avalon Nano 3S | 6+ TH/s | Canaan ASIC | — | ~140W | $299.99 |
| Canaan Avalon Mini 3 | 37.5 TH/s | Canaan ASIC | — | ~1,100W | $1,129 |
| Canaan Avalon Q | 90 TH/s | Canaan ASIC | — | ~1,680W | $2,999 |
All Bitaxe models run AxeOS firmware on an ESP32-S3 microcontroller, accessible through any web browser on your local network. Setup takes approximately five minutes. Learn more in our Bitaxe Setup Guide.
For Canaan Avalon setup and specifications, see our Canaan Avalon Home Series Complete Mining Guide.
Types of Bitcoin Mining
There are five distinct approaches to Bitcoin mining in 2026. Each carries different infrastructure requirements, reward structures, and levels of sovereignty over the mining process.
Pool Mining
Pool mining is the most common method. Miners contribute their hashrate to a mining pool operated by a third party. The pool combines hashrate from thousands of participants and mines as a single entity. When the pool finds a block, the 3.125 BTC reward (plus fees) is split among all contributors proportionally based on submitted shares.
Pool mining provides small, frequent payouts, making income more predictable. The tradeoff is that you never receive a full block reward and you rely on the pool operator to distribute payments honestly. Payout methods vary by pool. FPPS (Full Pay-Per-Share) pays a fixed rate per share regardless of whether the pool finds a block. PPLNS (Pay Per Last N Shares) rewards miners based on shares contributed before a block is found.

Major pools in 2026 include Foundry USA (~30% of global hashrate), AntPool, ViaBTC, F2Pool, and Braiins Pool. Read our detailed guide on Understanding Mining Pools.
Solo Mining
Solo mining is the most sovereign form of Bitcoin mining. You run your own full Bitcoin node, host your own instance of pool software (such as Public Pool on Umbrel), construct your own block templates, and submit blocks directly to the Bitcoin network. No third party is involved at any stage. You select which transactions go into your blocks, you validate everything yourself, and if you find a valid block, you keep the entire reward.
This is how Bitcoin mining was originally designed to work. The tradeoff is infrastructure: you must maintain a full node, self-host your pool software, and manage your own networking. The odds of finding a block with a single home miner are long, but someone wins every block. A Solo Satoshi customer running a self-hosted Public Pool instance on Umbrel mined block #920,440 with a NerdQaxe++ cluster, earning approximately 3.15 BTC (~$342,000). Learn how to set up your own solo mining infrastructure: Solo Mine Bitcoin with Bitaxe Using UmbrelOS.

Lottery Mining
Lottery mining is functionally similar to solo mining in that you keep the full block reward if you find a block. The key difference is that you do not run your own node or host your own pool software. Instead, you point your miner at a third-party service like CKPool or Public Pool’s public instance, which provides the node infrastructure, block templates, and block submission on your behalf. Public-Pool charges zero fees, while CKPool charges a 2% service fee if a block is found.
Lottery mining is the easiest way to attempt winning a full block reward. There is no node to maintain, no software to host, and setup takes minutes. You simply enter the pool’s Stratum URL and your wallet address into your miner. The tradeoff is that you trust the service provider’s node infrastructure and block template construction. Block #924,569 was found by six Bitaxe Gamma 602 units pointed at CKPool, earning 3.08349744 BTC. Learn more: What is Bitcoin Lottery Mining?

Cloud Mining
Cloud mining involves purchasing or renting hashrate from a remote provider without owning any physical hardware. The provider operates the miners, manages the infrastructure, and distributes a portion of the mining revenue to you. You never touch a miner, never configure software, and never control which pool or node your hashrate points to.
Cloud mining carries the highest counterparty risk of any mining method. The industry has a long history of scams, opaque operations, and providers that disappear with customer funds. Even legitimate cloud mining services typically reduce profitability through fees, maintenance charges, and unfavorable contract terms. Most experienced miners recommend owning your own hardware for transparency, control, and self-sovereignty.

Hosted Mining
Hosted mining means you purchase and own your mining hardware, but a third-party facility operates it on your behalf. The hosting provider supplies the physical space, power, cooling, networking, and maintenance. You retain ownership of the hardware and typically choose your own mining pool, but you pay hosting fees that consume 20-30% of mining revenue.
Hosted mining is common among operators running industrial-scale ASICs that require 240V power, dedicated cooling, and environments that residential settings cannot provide. You own the equipment and the mined Bitcoin, but operational control is shared with the hosting facility. Contracts, uptime guarantees, and insurance terms vary widely between providers.

Home Bitcoin Mining: Real People, Real Block Wins
Home mining with open-source hardware is not theoretical. Real people using compact, affordable miners have won full Bitcoin blocks worth hundreds of thousands of dollars. These documented block finds prove that home mining works and that the odds, while long, do pay off.
| Block Height | Date | Hardware | Hashrate | Pool | Reward |
|---|---|---|---|---|---|
| Block #853,742 | July 24, 2024 | Bitaxe Supra | ~500 GH/s | Solo CKPool | ~3.15 BTC (~$200,000) |
| Block #887,212 | March 10, 2025 | 6x Bitaxe Ultra | ~3.3 TH/s | Solo CKPool | ~3.15 BTC (~$250,000) |
| Block #913,272 | September 5, 2025 | NerdQaxe++ | ~4.8 TH/s | Ocean Mining (DATUM) | Proportional pool payout |
| Block #920,440 | October 27, 2025 | NerdQaxe++ Rev 6 cluster + 1 Avalon | ~130 TH/s | Self-hosted Public Pool (Umbrel) | ~3.15 BTC (~$342,000) |
| Block #924,569 | November 21, 2025 | 6x Bitaxe Gamma 602 | ~5.4 TH/s | Solo CKPool | ~3.08 BTC (~$266,000) |
The NerdQaxe++ cluster that mined block #920,440 was purchased from Solo Satoshi. The customer used his $342,000 reward to pay off his home. This is the largest confirmed payout to an open-source home miner. Block #924,569 was mined by six Bitaxe Gamma 602 units, achieving a best-ever difficulty of 221.39 T.
The interval between confirmed home miner block finds has been shrinking: 229 days, then 179 days, then 52 days, then just 25 days. This accelerating pace reflects the growing global installed base of open-source mining hardware. Read the full breakdown in our article: Has Bitaxe Found a Block? Next Block is Closer Than You Think.
Why is Bitcoin Mining Important?
Bitcoin mining is not just about earning rewards. It serves three critical functions that make the entire Bitcoin network possible.
Securing the Network
Mining makes the Bitcoin blockchain practically immutable. To alter a confirmed transaction, an attacker would need to redo all Proof of Work for that block and every subsequent block, outpacing the honest majority of miners. With the current network hashrate of approximately 1.15 ZH/s, such a 51% attack would require billions of dollars in hardware and electricity, making it economically irrational. This is why Bitcoin is considered the most secure decentralized network ever created.
Decentralization
Mining distributes the power to validate transactions across thousands of independent participants worldwide. No single government, corporation, or individual controls which transactions are confirmed. The recent rise of home mining hardware is improving decentralization further. Instead of hashrate concentrating in a few large mining farms, thousands of individuals in 70+ countries now contribute hashrate from their homes. Read more about why this matters in Bitcoin Mining Decentralization.
Controlled Supply Issuance
Mining is the only mechanism through which new Bitcoin enters circulation. Unlike fiat currencies, where central banks can print unlimited money and drive inflation, Bitcoin’s supply follows a fixed, transparent schedule enforced by code. Approximately 450 BTC are mined per day (3.125 BTC per block x 144 blocks per day). This rate will halve again in 2028 and continue halving until the last Bitcoin is mined around 2140. This predictable monetary policy is why Bitcoin is often compared to digital gold.
Bitcoin Mining Economics in 2026
Mining profitability depends on four variables you control (hardware efficiency, electricity cost, uptime, and pool fees) and two you do not (Bitcoin price and network difficulty).
Key Economic Metrics
| Metric | Value (February 2026) |
|---|---|
| Bitcoin Price | ~$70,300 |
| Block Reward | 3.125 BTC (~$219,750) |
| Network Hashrate | ~1.15 ZH/s |
| Mining Difficulty | 125.86 T |
| Hashprice | ~$35/PH/s per day |
| Next Difficulty Adjustment | ~February 20, 2026 (estimated +11.57%) |
Home Mining Economics
A Bitaxe Gamma 602 running 24/7 at 1.2 TH/s consumes approximately 18 watts. At the U.S. average electricity rate of $0.16/kWh, that costs roughly $2.10 per month. When pool mining, this hashrate earns small, steady satoshi rewards. When solo mining, you are playing a probability game for the full block reward. Either approach costs less than a cup of coffee per month to operate.
Use our Bitcoin Mining Profitability Calculator to estimate returns based on your specific hardware and electricity rate. For a broader profitability analysis, read Is Bitcoin Mining Still Profitable?
Bitcoin Mining and Energy
Bitcoin mining consumes significant energy, and this is by design. The energy expenditure is what makes the network secure. However, the energy narrative has evolved substantially.
According to the Cambridge Centre for Alternative Finance, approximately 54% of Bitcoin mining now uses renewable energy sources, primarily hydroelectric and wind power. Many mining operations are located at sites with stranded or excess energy, converting otherwise wasted power into economic value. In 2025, Bitcoin’s hashrate reached 1 ZH/s for the first time, with estimates suggesting Bitcoin consumes approximately 0.80% of the world’s electricity.
Home mining fundamentally changes the energy conversation. A Bitaxe Gamma uses less power than a standard LED light bulb. Hashrate heating takes this further by using mining waste heat to warm homes and water. At CES 2026, Superheat unveiled the H1, a Bitcoin mining water heater that replaces a traditional electric heating element with an ASIC miner. Products like the Canaan Avalon Mini 3 already function as space heaters that mine Bitcoin, effectively making the electricity cost “free” by replacing a heating expense you would pay anyway.
How to Start Mining Bitcoin in 2026
Getting started with Bitcoin mining at home requires minimal technical knowledge and as little as $80 in equipment. Here is a simplified overview of the steps involved.
1. Choose Your Hardware. For beginners, the Bitaxe Gamma 602 ($98 with included power supply) is the most popular starting point. It delivers 1.2 TH/s, runs silently, and sets up in 5 minutes. For more hashrate, the Bitaxe Duo 650 ($130) offers 1.63 TH/s, and the NerdQaxe++ Rev 6.1 ($382) delivers 6+ TH/s.
2. Choose Your Mining Approach. Decide between pool mining for frequent small payouts or solo mining for a chance at the full block reward. Solo mining pools like Public Pool charge zero fees.
3. Set Up a Bitcoin Wallet. You need a wallet address to receive mining rewards. A hardware wallet like the Blockstream Jade provides secure cold storage for your Bitcoin. Read our Bitcoin Wallets 101 guide for a complete breakdown.
4. Connect and Configure. Plug in your miner, connect to Wi-Fi, and enter your Stratum URL and wallet address through the AxeOS browser interface. The entire process takes under 5 minutes. Follow our step-by-step Bitaxe Setup Guide.
5. Optional: Run a Bitcoin Node. Running a full node lets you verify your own transactions and contribute to network decentralization. The Start9 Server One 2026 is a plug-and-play home server that runs a full Bitcoin node with a few clicks.
For a comprehensive walkthrough, read our full guide: How to Start Bitcoin Mining in 2026: The Ultimate Beginner’s Guide.
Bitcoin Mining Terminology
Understanding mining requires familiarity with these key terms. Each term links directly to its full definition in our Bitcoin Mining Terminology Glossary.
| Term | Definition |
|---|---|
| Hashrate | The number of hash calculations a miner performs per second. Measured in TH/s (terahashes), PH/s (petahashes), EH/s (exahashes), or ZH/s (zettahashes). |
| ASIC | Application-Specific Integrated Circuit. A chip custom-built for Bitcoin mining, offering unmatched efficiency compared to GPUs or CPUs. |
| Nonce | A 32-bit integer miners increment with each hash attempt. The primary variable changed to produce different hash outputs during mining. |
| SHA-256 | Secure Hash Algorithm 256-bit. The cryptographic hash function Bitcoin uses. It produces a fixed 256-bit output from any input. Bitcoin applies it twice (double-SHA-256). |
| Difficulty | A measure of how hard it is to mine a block. Adjusts every 2,016 blocks (~2 weeks) to maintain 10-minute average block times. |
| Block Reward | New Bitcoin awarded to a miner for successfully mining a block. Currently 3.125 BTC per block (since April 2024). |
| Halving | The event where the block reward is cut in half every 210,000 blocks (~4 years). The next halving is expected in April 2028. |
| Mempool | The temporary holding area where unconfirmed transactions wait until a miner includes them in a block. |
| J/TH | Joules per terahash. A measure of mining efficiency. Lower is better. The Bitaxe Gamma 602 achieves 15 J/TH. |
| Hashprice | The expected revenue per unit of hashrate per day, measured in $/PH/s/day. Approximately $35/PH/s in February 2026. |
For the complete glossary with 150+ terms, read our Bitcoin Mining Terminology Explained guide.
Who is Solo Satoshi?
Solo Satoshi is a family-owned Bitcoin mining hardware retailer based in Houston, Texas. We are an authorized distributor for Canaan and Start9 Labs, and a legit and trusted seller of Bitaxe and Nerdaxe products recognized by bitaxe.org. With over 40,000 devices shipped to 70+ countries, 400+ verified reviews, same-day shipping, a 90-day warranty on all open-source mining products, and documented customer block wins totaling over $342,000 in BTC, we are the most trusted source for Bitcoin home mining hardware. All open-source miners are assembled in the USA.