<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Alejandrobitcoin</id>
	<title>Bitcoin Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Alejandrobitcoin"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Alejandrobitcoin"/>
	<updated>2026-08-03T07:18:22Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.9</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Stratum_v2&amp;diff=71087</id>
		<title>Stratum v2</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Stratum_v2&amp;diff=71087"/>
		<updated>2026-07-11T10:50:52Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: Full rewrite: replaced outdated 2023 SRI setup tutorial with current encyclopedic overview (sub-protocols, roles, improvements over V1, updated SRI repo structure and JD terminology)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Stratum V2 =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Stratum V2&#039;&#039;&#039; (often abbreviated &#039;&#039;&#039;SV2&#039;&#039;&#039;) is an open mining protocol for Bitcoin. It is the successor to the original Stratum protocol (retroactively called Stratum V1), which was introduced in 2012 and became the de facto standard for communication between mining hardware and mining pools despite never being formally designed as one. Stratum V2 was designed by Jan Čapek and Pavel Moravec together with Matt Corallo, and is maintained by an independent open-source community. It aims to make mining more efficient, secure, and decentralized.&lt;br /&gt;
&lt;br /&gt;
The most significant change from V1 is that Stratum V2 lets individual miners choose the set of transactions they mine, rather than leaving that choice entirely to the pool operator. This is intended to improve the censorship resistance and decentralization of the network. The protocol also replaces V1&#039;s verbose JSON-RPC messaging with a compact binary format, adds an encrypted and authenticated transport, and natively supports features such as version rolling.&lt;br /&gt;
&lt;br /&gt;
== Improvements over Stratum V1 ==&lt;br /&gt;
&lt;br /&gt;
Stratum V2 was designed to address a number of long-standing issues with V1:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Binary protocol.&#039;&#039;&#039; V1 used human-readable JSON, which is bandwidth-heavy and imprecise. V2 uses a compact, precisely specified binary format, reportedly reducing bandwidth by roughly 60% for pools and 70% for miners while also lowering CPU load.&lt;br /&gt;
* &#039;&#039;&#039;Encryption and authentication.&#039;&#039;&#039; V2 connections use an authenticated encryption scheme based on the Noise Protocol Framework, protecting against eavesdropping and hashrate hijacking, which plaintext V1 connections were vulnerable to.&lt;br /&gt;
* &#039;&#039;&#039;Transaction selection by miners.&#039;&#039;&#039; Through a dedicated sub-protocol, miners can build and declare their own block templates instead of relying on the pool.&lt;br /&gt;
* &#039;&#039;&#039;Native version rolling.&#039;&#039;&#039; Support for rolling the block header version bits (as defined in BIP320, e.g. for version-rolling AsicBoost) is a first-class part of the protocol.&lt;br /&gt;
* &#039;&#039;&#039;Header-only mining.&#039;&#039;&#039; Where possible, mining devices can work without touching the coinbase transaction, reducing on-device complexity and network traffic.&lt;br /&gt;
* &#039;&#039;&#039;Reduced stale shares&#039;&#039;&#039; and more precise hashrate measurement through efficiency improvements.&lt;br /&gt;
* &#039;&#039;&#039;Optional telemetry&#039;&#039;&#039; for farm monitoring, without forcing miners to give up privacy.&lt;br /&gt;
* &#039;&#039;&#039;Connection aggregation and multiple jobs&#039;&#039;&#039; over a single connection, with a clean extension mechanism for vendor-specific features.&lt;br /&gt;
&lt;br /&gt;
== Sub-protocols ==&lt;br /&gt;
&lt;br /&gt;
Stratum V2 is composed of three distinct sub-protocols:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Mining Protocol&#039;&#039;&#039; — the main protocol and direct successor to V1. It carries mining jobs and share submissions between a mining device and its upstream node, pool, or proxy. It is required in all configurations; when transaction selection is not used, it is the only protocol needed.&lt;br /&gt;
* &#039;&#039;&#039;Job Declaration Protocol (JD)&#039;&#039;&#039; — lets a miner or mining farm declare a self-chosen block template to a pool. A single declaration can be reused across many mining connections, so it is kept separate from share submission and can run on separate infrastructure. (In earlier drafts this was called the Job Negotiation Protocol.)&lt;br /&gt;
* &#039;&#039;&#039;Template Distribution Protocol&#039;&#039;&#039; — an efficient replacement for Bitcoin Core&#039;s &amp;lt;code&amp;gt;getblocktemplate&amp;lt;/code&amp;gt; for obtaining information about the next block from a full node.&lt;br /&gt;
&lt;br /&gt;
== Roles ==&lt;br /&gt;
&lt;br /&gt;
The specification defines five roles that software or hardware can implement (a single piece of software may fill more than one):&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Mining Device&#039;&#039;&#039; — the hardware that actually computes hashes.&lt;br /&gt;
* &#039;&#039;&#039;Pool Service&#039;&#039;&#039; — produces jobs, validates shares, and propagates found blocks.&lt;br /&gt;
* &#039;&#039;&#039;Mining Proxy&#039;&#039;&#039; (optional) — sits between mining devices and a pool, aggregating connections for efficiency and optionally adding monitoring or custom work.&lt;br /&gt;
* &#039;&#039;&#039;Job Declarator&#039;&#039;&#039; (optional) — split into a Job Declarator Client (miner side) and Job Declarator Server (typically pool side), used to declare custom templates via the Job Declaration Protocol.&lt;br /&gt;
* &#039;&#039;&#039;Template Provider&#039;&#039;&#039; — generates custom block templates, usually a Bitcoin Core full node.&lt;br /&gt;
&lt;br /&gt;
== Message framing ==&lt;br /&gt;
&lt;br /&gt;
Stratum V2 uses fixed-length message framing. Every message begins with a six-byte header consisting of an &amp;lt;code&amp;gt;extension_type&amp;lt;/code&amp;gt; (U16), a &amp;lt;code&amp;gt;msg_type&amp;lt;/code&amp;gt; (U8), and a &amp;lt;code&amp;gt;msg_length&amp;lt;/code&amp;gt; (U24), followed by a variable-length payload. Multibyte integers are serialized little-endian. The framing and an extensible Type-Length-Value (TLV) model allow the protocol to be extended without breaking compatibility, with extension identifiers allocated through stratumprotocol.org.&lt;br /&gt;
&lt;br /&gt;
== Reference implementation (SRI) ==&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Stratum Reference Implementation (SRI)&#039;&#039;&#039; is a community-maintained, open-source implementation written in Rust. It is organized across multiple repositories:&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/stratum-mining/stratum stratum-mining/stratum] — the low-level protocol libraries (encoding/decoding, framing, Noise encryption, channels, and the sub-protocol definitions).&lt;br /&gt;
* [https://github.com/stratum-mining/sv2-apps sv2-apps] — the application-level roles, such as the pool, translation proxy, and job declarator (currently in alpha).&lt;br /&gt;
&lt;br /&gt;
Because mining hardware still overwhelmingly speaks V1, SRI also provides a &#039;&#039;&#039;Translation Proxy (tProxy)&#039;&#039;&#039; that translates between V1 mining devices and a V2 upstream, allowing existing hardware to connect to V2 pools without firmware changes. This can optionally be combined with a Job Declarator so that a farm running V1 firmware can still declare its own block templates to a V2 pool.&lt;br /&gt;
&lt;br /&gt;
For current build and configuration instructions, which change as the software evolves, see the official documentation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Stratum mining protocol]]&lt;br /&gt;
* [[Getblocktemplate]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://stratumprotocol.org/ Official Stratum V2 website]&lt;br /&gt;
* [https://stratumprotocol.org/specification/ Stratum V2 specification]&lt;br /&gt;
* [https://github.com/stratum-mining/sv2-spec Stratum V2 specification (GitHub)]&lt;br /&gt;
* [https://github.com/stratum-mining/stratum SRI protocol libraries (GitHub)]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=71086</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=71086"/>
		<updated>2026-07-11T10:41:30Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: updated&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 6.25 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (6.25 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
* &#039;&#039;&#039;TIDES&#039;&#039;&#039; - Transparent Index of Distinct Extended Shares. As blocks are being mined, they generate the reward by a weighted percentage of effort to the most recently found proofs. The proof period funds are distributed across has been chosen such that each proof should be paid on average 8 times. Instead of a set amount of bitcoins per proof, the block reward is divided by percent, so transaction fees are included.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
== Operational Pools ==&lt;br /&gt;
&lt;br /&gt;
The following mining pools are still running and paying out their users:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[DEMAND]]         || Global || Small || RSK || PPLNS                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2023-11-27 ||   || [https://bitcointalk.org/index.php?topic=5476679.0 link] || [http://DMND.WORK link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|us|}}{{flag|eu|}}{{flag|cn|}}                || Large || NMC, SYS, EMC || PPS+                     || {{SharedFees}}    || 2.5%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      | 0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Medium ||[[NMC]] VCASH || FPPS  || {{SharedFees}}   ||    2.5% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[SBICrypto Pool]]          || Global                ||   Medium || No       || FPPS  || {{SharedFees}}   ||    0% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2020-11-03 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic ||                                             ||  [https://sbicrypto.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Luxor]]       || {{flag|us|label=1}}||    Medium || No || FPPS &amp;amp; PPS                     || {{SharedFees}} || 2% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2018-01-01 || VarDiff                       ||                                             || [https://mining.luxor.tech// link]&lt;br /&gt;
|-&lt;br /&gt;
| [[OCEAN]]         || {{flag|us|label=1}}|| Small || No  || TIDES                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-04-27 || Dynamic  || || [http://ocean.xyz link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Defunct Pools ==&lt;br /&gt;
&lt;br /&gt;
The following pools were once operational but have since shut down. They are listed for historical purposes only.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[EMCD Pool]]          || CIS, EU, KZ, IR, China || Medium || - || FPPS+                     || {{SharedFees}}    || 1%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2018-01-26 || Dynamic               ||  || [https://pool.emcd.io link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=71085</id>
		<title>DEMAND</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=71085"/>
		<updated>2026-07-11T10:38:59Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: updated&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= Alejandro De La Torre, CEO Co-Founder&lt;br /&gt;
Filippo Merli, CTO, Co-Founder&lt;br /&gt;
|foundation= 2023&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.DMND.WORK}}&lt;br /&gt;
[https://WWW.DMND.WORK DMND] is a [[Stratum v2|Stratum V2]] Bitcoin [[Mining Pool|mining pool]]. Allowing miners to build their own block templates via job declaration. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.DMND.WORK/&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=70802</id>
		<title>DEMAND</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=70802"/>
		<updated>2025-07-29T09:40:57Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= Alejandro De La Torre, CEO Co-Founder&lt;br /&gt;
Filippo Merli, CTO, Co-Founder&lt;br /&gt;
|foundation= 2023&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.DMND.WORK}}&lt;br /&gt;
[https://WWW.DMND.WORK DMND] is the first [[Stratum v2|Stratum V2]], bitcoin [[Mining Pool|mining pool]]. Both Solo and Pooled mining available. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.DMND.WORK/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=70541</id>
		<title>DEMAND</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=70541"/>
		<updated>2025-02-06T10:51:38Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= Alejandro De La Torre, CEO Co-Founder&lt;br /&gt;
Filippo Merli, CTO, Co-Founder&lt;br /&gt;
|foundation= 2023&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.DMND.WORK}}&lt;br /&gt;
[https://WWW.DMND.WORK DEMAND] is the first Stratum V2, bitcoin [[Mining Pool|mining pool]]. Both Solo and Pooled mining available. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.DMND.WORK/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Covenants_support&amp;diff=70455</id>
		<title>Covenants support</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Covenants_support&amp;diff=70455"/>
		<updated>2024-12-11T10:43:26Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: /* Developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&amp;lt;big&amp;gt;This list is incomplete and under construction. Evaluation without a rationale will be ignored.&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| {{Evaluating}} || Not sure and still evaluating the idea&lt;br /&gt;
|-&lt;br /&gt;
| {{No}} || Doesn&#039;t support&lt;br /&gt;
|-&lt;br /&gt;
| {{Deficient}} || Okay with the idea, but considers it to have insufficient community support&lt;br /&gt;
|-&lt;br /&gt;
| {{Weak}} || Better than nothing at all&lt;br /&gt;
|-&lt;br /&gt;
| {{Wanting}} || Positively likes the idea, but considers it to have insufficient community support&lt;br /&gt;
|-&lt;br /&gt;
| {{Acceptable}} || It is a workable solution&lt;br /&gt;
|-&lt;br /&gt;
| {{Prefer}} || The best option all things considered&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Developers==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Developer&lt;br /&gt;
! Affiliation&lt;br /&gt;
! colspan=&amp;quot;4&amp;quot; | LNHANCE&lt;br /&gt;
! [https://github.com/bitcoin/bips/blob/master/bip-0347.mediawiki OP_CAT]&lt;br /&gt;
! [https://merkle.fun/ OP_CCV]&lt;br /&gt;
! [https://github.com/bitcoin/bips/blob/master/bip-0345.mediawiki OP_VAULT]&lt;br /&gt;
! [https://github.com/bitcoin/bips/blob/2258ebe48cd387ff2f05e1881f54640815b4ab07/bip-txhash.md OP_TXHASH]&lt;br /&gt;
! [https://github.com/bitcoin/bips/blob/master/bip-0118.mediawiki SIGHASH_APO]&lt;br /&gt;
! Rationale&lt;br /&gt;
|-&lt;br /&gt;
! &lt;br /&gt;
! &lt;br /&gt;
! [https://github.com/bitcoin/bips/blob/master/bip-0119.mediawiki OP_CTV]&lt;br /&gt;
! [https://github.com/bitcoin/bips/blob/master/bip-0348.md OP_CSFS]&lt;br /&gt;
! [https://github.com/bitcoin/bips/blob/018d28c967b3f2b747ecb4e5a85d0b5f9f4ec79a/bip-PC.md OP_PAIRCOMMIT]&lt;br /&gt;
! [https://github.com/bitcoin/bips/blob/master/bip-0349.md OP_INTERNALKEY]&lt;br /&gt;
!&lt;br /&gt;
! &lt;br /&gt;
! &lt;br /&gt;
! &lt;br /&gt;
! &lt;br /&gt;
! &lt;br /&gt;
|-&lt;br /&gt;
| 1440000bytes || joinstr || {{Prefer}} || {{Acceptable}} || {{No}} || {{Acceptable}} || {{Deficient}} || {{Evaluating}} || {{Acceptable}} || {{No}} || {{No}} || [https://gitlab.com/-/snippets/4777553 📌]&lt;br /&gt;
|-&lt;br /&gt;
| arbedout || Sigbash || {{Acceptable}} || {{Wanting}} || {{Evaluating}} || {{Wanting}} || {{Acceptable}} || {{Evaluating}} || {{Wanting}} || {{Wanting}} || {{Weak}} || [https://gist.github.com/arbedout/94a7350d2a521e42a70ddf9c3f2ce469 📌]&lt;br /&gt;
|-&lt;br /&gt;
| ArminSabouri || OP_CAT || {{Acceptable}} || {{Prefer}} || {{Evaluating}} || {{Prefer}} || {{Prefer}} || {{Evaluating}} || {{No}} || {{Prefer}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| benthecarman || Taproot Wizards || {{Prefer}} || {{Prefer}} || {{Acceptable}} || {{Prefer}} || {{Prefer}} || {{Wanting}} || {{Wanting}} || {{Wanting}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ben Zhu || Discoco Labs || {{Prefer}} || {{Acceptable}} || {{No}} || {{No}} || {{Prefer}} || {{Evaluating}} || {{Acceptable}} || {{Wanting}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| chrisguida || Lightning || {{Prefer}} || {{Evaluating}} || {{Evaluating}} || {{Acceptable}} || {{No}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Prefer}} ||&lt;br /&gt;
|-&lt;br /&gt;
| cryptoquick || Surmount Systems || {{Acceptable}} || {{Prefer}} || {{Evaluating}} || {{Prefer}} || {{Acceptable}} || {{Evaluating}} || {{Acceptable}} || {{Prefer}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Eli Ben-Sasson || StarkWare || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Prefer}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ethan Heilman || OP_CAT || {{Prefer}} || {{Prefer}} || {{Evaluating}} || {{Evaluating}} || {{Prefer}} || {{Evaluating}} || {{Prefer}} || {{Prefer}} || {{Evaluating}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Evan Kaloudis || ZEUS || {{Prefer}} || {{Wanting}} || {{Weak}} || {{Acceptable}} || {{No}} || {{Acceptable}} || {{Prefer}} || {{Deficient}} || {{Prefer}} ||&lt;br /&gt;
|-&lt;br /&gt;
| everythingsats || African Bitcoiners || {{Prefer}} || {{Prefer}} || {{Acceptable}} || {{Prefer}} || {{Acceptable}} || {{Wanting}} || {{Prefer}} || {{Acceptable}} || {{Acceptable}} ||&lt;br /&gt;
|-&lt;br /&gt;
| fi3 || DEMAND || {{Wanting}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Deficient}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Acceptable}} ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| instagibbs || Spiral || {{Weak}} || {{Wanting}} || {{No}} || {{Wanting}} || {{Wanting}} || {{Evaluating}} || {{Wanting}} || {{Wanting}} || {{Weak}} || [https://gist.github.com/instagibbs/eeb9d8013270387b4318b5585e858b9c 📌]&lt;br /&gt;
|-&lt;br /&gt;
| jamesob || ??? || {{Prefer}} || {{Prefer}} || {{Weak}} || {{Prefer}} || {{Acceptable}} || {{Wanting}} || {{Acceptable}} || {{Deficient}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| jaybny || Sidepit || {{Prefer}} || {{Prefer}} || {{Acceptable}} || {{Prefer}} || {{Deficient}} || {{Acceptable}} || {{Wanting}} || {{No}} || {{Acceptable}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Jon Atack || Bitcoin Core || {{Acceptable}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} ||&lt;br /&gt;
|-&lt;br /&gt;
| knocte || geewallet || {{No}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{No}} || {{Evaluating}} || {{No}} || {{Evaluating}} || {{Evaluating}} ||&lt;br /&gt;
|-&lt;br /&gt;
| LucidLuckylee || ZeroSync || {{No}} || {{Acceptable}} || {{No}} || {{No}} || {{Weak}} || {{Evaluating}} || {{Weak}} || {{Prefer}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Luke Dashjr || Bitcoin Knots || {{Acceptable}} || {{Wanting}} || {{Evaluating}} || {{No}} || {{Deficient}} || {{Evaluating}} || {{Evaluating}} || {{Evaluating}} || {{Acceptable}} ||&lt;br /&gt;
|-&lt;br /&gt;
| matthewjablack || Atomic Finance || {{Prefer}} || {{Acceptable}} || {{Weak}} || {{Acceptable}} || {{Wanting}} || {{Evaluating}} || {{Acceptable}} || {{Wanting}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| moonsettler || LNhance || {{Prefer}} || {{Prefer}} || {{Prefer}} || {{Prefer}} || {{Wanting}} || {{Wanting}}&amp;lt;ref name=&amp;quot;reardenvault&amp;quot;/&amp;gt; || {{Wanting}}&amp;lt;ref name=&amp;quot;reardenvault&amp;quot;/&amp;gt; || {{Wanting}} || {{Weak}} || [https://gist.github.com/moonsettler/76654ca714fac03d9e08da3e47e98b98 📌]&lt;br /&gt;
|-&lt;br /&gt;
| Nick Hansen || Luxor || {{Prefer}} || {{Prefer}} || {{Evaluating}} || {{Evaluating}} || {{Prefer}} || {{Evaluating}} || {{Acceptable}} || {{Wanting}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Orkun Kılıç || Citrea || {{Acceptable}} || {{Wanting}} || {{No}} || {{No}} || {{Prefer}} || {{Evaluating}} || {{Deficient}} || {{Prefer}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Psifour || Taproot Wizards || {{Prefer}} || {{Prefer}} || {{Weak}} || {{Acceptable}} || {{Prefer}} || {{Deficient}} || {{Deficient}} || {{Weak}} || {{Weak}} || [https://gist.github.com/Psifour/6cba4b6f0fe0ca6dd8d1aa84c878f9ff 📌]&lt;br /&gt;
|-&lt;br /&gt;
| Paul Sztorc || Drivechain || {{Acceptable}} || {{Wanting}} || {{Weak}} || {{Wanting}} || {{Acceptable}} || {{Evaluating}} || {{Prefer}} || {{Deficient}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| reardencode || LNHANCE || {{Prefer}} || {{Prefer}} || {{Acceptable}} || {{Prefer}} || {{Wanting}} || {{Wanting}}&amp;lt;ref name=&amp;quot;reardenvault&amp;quot;&amp;gt;Only one of CCV and VAULT should be implemented, as they enable nearly identical constructions&amp;lt;/ref&amp;gt; || {{Wanting}}&amp;lt;ref name=&amp;quot;reardenvault&amp;quot;/&amp;gt; || {{Deficient}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Rob Hamilton || AnchorWatch || {{Prefer}} || {{Prefer}} || {{Wanting}} || {{Prefer}} || {{Wanting}} || {{Evaluating}} || {{Acceptable}} || {{Wanting}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| RobinLinus || Stanford / BitVM || {{No}} || {{Acceptable}} || {{Evaluating}} || {{Evaluating}} || {{No}} || {{Evaluating}} || {{Evaluating}} || {{Prefer}} || {{Weak}} ||&lt;br /&gt;
|-&lt;br /&gt;
| roujiamo || bitdollar || {{Weak}} || {{Acceptable}} || {{Evaluating}} || {{Wanting}} || {{Prefer}} || {{Weak}} || {{Deficient}} || {{Acceptable}} || {{Deficient}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Steven Roose || Second (Ark) || {{Prefer}} || {{Prefer}} || {{Evaluating}} || {{Deficient}} || {{Prefer}} || {{Acceptable}} || {{No}} || {{Prefer}} || {{Acceptable}} ||&lt;br /&gt;
|-&lt;br /&gt;
| xhliu || sCrypt || {{Weak}} || {{Acceptable}} || {{Evaluating}} || {{Wanting}} || {{Prefer}} || {{Weak}} || {{Deficient}} || {{Acceptable}} || {{Deficient}} ||&lt;br /&gt;
|-&lt;br /&gt;
| ZmnSCPxj || C= || {{Wanting}} || {{Weak}} || {{Wanting}} || {{Wanting}} || {{Deficient}} || {{Evaluating}} || {{Deficient}} || {{Wanting}} || {{Wanting}} ||&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Stratum_v2&amp;diff=69970</id>
		<title>Stratum v2</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Stratum_v2&amp;diff=69970"/>
		<updated>2023-12-15T17:19:41Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: page about stratum v2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Stratum v2 =&lt;br /&gt;
&lt;br /&gt;
Before Stratum V2, transaction sets were selected by pools. With this SV2 configuration they’re selected by individual miners, making the network more censorship-resistant. Miners run SV2 firmware, connecting to the SV2 proxy server. Miners can pick their transactions locally and declare them to an SV2 pool.&lt;br /&gt;
The SRI stack is made by the open-source bitcoin community. It allows you to run a few different configurations. The easiest way to test these configurations is to use the SRI role [https://example.com SRI role implementations].&lt;br /&gt;
&lt;br /&gt;
== Most Commonly Used Configurations ==&lt;br /&gt;
&lt;br /&gt;
Below are the most commonly used configurations you can run to get started.&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
&lt;br /&gt;
* Rust installed on your machine. If it&#039;s not:&lt;br /&gt;
  &amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
  curl --proto &#039;=https&#039; --tlsv1.2 -sSf https://sh.rustup.rs | sh&lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Locally clone the Stratum repository:&lt;br /&gt;
  &amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
  git clone https://github.com/stratum-mining/stratum.git&lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Config C: SV1 Firmware &amp;gt; Translation Proxy &amp;gt; SV2 Pool ===&lt;br /&gt;
&lt;br /&gt;
This configuration allows mining devices running SV1 firmware to connect to an SV2 Pool through a Translation Proxy (tProxy). The proxy is designed to sit in between a SV1 downstream role (most typically Mining Device(s) running SV1 firmware) and a SV2 upstream role (most typically a SV2 Pool Server).&lt;br /&gt;
&lt;br /&gt;
1. &#039;&#039;&#039;Start SV2 Pool&#039;&#039;&#039;&lt;br /&gt;
   &amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
   cd stratum/roles/v2/pool/&lt;br /&gt;
   &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   The pool-config-example.toml is a configuration example which can be copy/paste into /conf directory by the party that is running the SV2 Pool (most typically the pool service provider) to address the most preferred customization. To better understand and learn about information present in the configuration file, check [https://github.com/stratum-mining/stratum/blob/main/roles/v2/pool/README.md this README].&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
   cp pool-config-example.toml ./conf/pool-config.toml&lt;br /&gt;
   cd conf/&lt;br /&gt;
   &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   To run this configuration, for simplicity, you can point the SV2 Pool to our hosted Template Provider (testnet or regtest), commenting/uncommenting the corresponding lines in your pool-config.toml. For example, if you want to use our hosted testnet TP, your config file should be like this:&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;source lang=&amp;quot;toml&amp;quot;&amp;gt;&lt;br /&gt;
   # SRI Pool config&lt;br /&gt;
authority_public_key = &amp;quot;2di19GHYQnAZJmEpoUeP7C3Eg9TCcksHr23rZCC83dvUiZgiDL&amp;quot;&lt;br /&gt;
authority_secret_key = &amp;quot;2Z1FZug7mZNyM63ggkm37r4oKQ29khLjAvEx43rGkFN47RcJ2t&amp;quot;&lt;br /&gt;
cert_validity_sec = 3600&lt;br /&gt;
test_only_listen_adress_plain =  &amp;quot;0.0.0.0:34250&amp;quot;&lt;br /&gt;
listen_address = &amp;quot;0.0.0.0:34254&amp;quot;&lt;br /&gt;
# list of compressed or uncompressed pubkeys for coinbase payout (only supports 1 item in the array at this point)&lt;br /&gt;
coinbase_outputs = [&lt;br /&gt;
    &amp;quot;04466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f276728176c3c6431f8eeda4538dc37c865e2784f3a9e77d044f33e407797e1278a&amp;quot;,&lt;br /&gt;
]&lt;br /&gt;
&lt;br /&gt;
# Template Provider config&lt;br /&gt;
# local TP (this is pointing to localhost so you must run a TP locally for this configuration to work)&lt;br /&gt;
# tp_address = &amp;quot;127.0.0.1:8442&amp;quot;&lt;br /&gt;
# hosted testnet TP &lt;br /&gt;
tp_address = &amp;quot;89.116.25.191:8442&amp;quot;&lt;br /&gt;
# hosted regnet TP &lt;br /&gt;
# tp_address = &amp;quot;75.119.150.111:8442&amp;quot;&lt;br /&gt;
# hosted testnet TP &lt;br /&gt;
# tp_address = &amp;quot;89.116.25.191:8442&amp;quot;&lt;br /&gt;
# hosted regnet TP &lt;br /&gt;
# tp_address = &amp;quot;75.119.150.111:8442&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# SRI Pool JN config&lt;br /&gt;
listen_jn_address = &amp;quot;127.0.0.1:34264&amp;quot;&lt;br /&gt;
   &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; If you want to mine spendable bitcoin on regtest, you can do it with bitcoin-cli:&lt;br /&gt;
&lt;br /&gt;
* Get a legacy Bitcoin address:&lt;br /&gt;
  &amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
  bitcoin-cli -regtest -rpcwallet=&amp;quot;&amp;lt;PUT YOUR WALLET NAME HERE&amp;gt;&amp;quot; getnewaddress &amp;quot;test&amp;quot; &amp;quot;legacy&amp;quot;&lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Retrieve its corresponding public key:&lt;br /&gt;
  &amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
  bitcoin-cli -regtest getaddressinfo &amp;lt;PUT THE ADDRESS GENERATED HERE&amp;gt;&lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Copy the pubkey showed in the output;&lt;br /&gt;
* Paste it in the coinbase_outputs of pool-config.toml, after deleting the one which is already present;&lt;br /&gt;
* Mine a block;&lt;br /&gt;
* Generate 100 blocks:&lt;br /&gt;
  &amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
  bitcoin-cli -regtest generatetoaddress 100 bcrt1qc5xss0cma0zldxfzzdpjxsayut7yy86e2lr6km&lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now the mined bitcoin are spendable!&lt;br /&gt;
&lt;br /&gt;
Once your preferred config is set, you can run the SV2 Pool:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cargo run -p pool_sv2&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the pool properly starts you should see the following log lines:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
2023-03-28T10:34:24.205288Z  INFO pool_sv2: Pool INITIALIZING with config: &amp;quot;pool-config.toml&amp;quot;&lt;br /&gt;
2023-03-28T10:34:24.279421Z  INFO pool_sv2::lib::template_receiver: Connected to template distribution server at 89.116.25.191:8442&lt;br /&gt;
2023-03-28T10:34:24.437363Z  INFO pool_sv2::lib::template_receiver::setup_connection: Setup template provider connection success!&lt;br /&gt;
2023-03-28T10:34:24.437865Z  INFO pool_sv2::lib::mining_pool: PUB KEY: [TxOut { value: 5000000000, script_pubkey: Script(OP_PUSHBYTES_65 04466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f276728176c3c6431f8eeda4538dc37c865e2784f3a9e77d044f33e407797e1278a OP_CHECKSIG) }]&lt;br /&gt;
2023-03-28T10:34:24.438053Z  INFO pool_sv2::lib::mining_pool: Starting up pool listener&lt;br /&gt;
2023-03-28T10:34:24.438115Z  INFO pool_sv2::lib::job_negotiator: JN INITIALIZED&lt;br /&gt;
2023-03-28T10:34:24.438623Z  INFO pool_sv2::lib::mining_pool: Listening for encrypted connection on: 0.0.0.0:34254&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; If you want to create more custom configs, you can save them in the same conf/ directory. To run the specific custom config, you can do it by running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cargo run -p pool_sv2 -- -c [your-custom-config.toml]&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 2. Start Translator (tProxy) ==&lt;br /&gt;
&lt;br /&gt;
Once the SV2 pool is running, let&#039;s run the tProxy that will facilitate communication between the pool and a SV1 miner.&lt;br /&gt;
&lt;br /&gt;
=== In a new terminal: ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd stratum/roles/translator/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The proxy-config-example.toml is a configuration example which can be copy/paste into /conf directory by the party that is running the Translator Proxy (most typically the mining farm/miner hobbyist) to address the most preferred customization. To better understand and learn about information present in the configuration file, check [https://example.com this README].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cp proxy-config-example.toml ./conf/proxy-config.toml&lt;br /&gt;
cd conf/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Within the proxy-config.toml you will be able to specify which pool should a translation proxy connect to. For this specific configuration, the tProxy will connect to a locally hosted pool (which you deployed in the first step). Feel free to switch the pools while testing things out.&lt;br /&gt;
&lt;br /&gt;
=== Configuration File Example ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;toml&amp;quot;&amp;gt;&lt;br /&gt;
# Braiins Pool Upstream Connection&lt;br /&gt;
# upstream_authority_pubkey = &amp;quot;u95GEReVMjK6k5YqiSFNqqTnKU4ypU2Wm8awa6tmbmDmk1bWt&amp;quot;&lt;br /&gt;
# upstream_address = &amp;quot;18.196.32.109&amp;quot;&lt;br /&gt;
# upstream_port = 3336&lt;br /&gt;
&lt;br /&gt;
# Local SRI Pool Upstream Connection&lt;br /&gt;
upstream_address = &amp;quot;127.0.0.1&amp;quot;&lt;br /&gt;
upstream_port = 34254&lt;br /&gt;
upstream_authority_pubkey = &amp;quot;2di19GHYQnAZJmEpoUeP7C3Eg9TCcksHr23rZCC83dvUiZgiDL&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Local Mining Device Downstream Connection&lt;br /&gt;
downstream_address = &amp;quot;0.0.0.0&amp;quot;&lt;br /&gt;
downstream_port = 34255&lt;br /&gt;
&lt;br /&gt;
# Version support&lt;br /&gt;
max_supported_version = 2&lt;br /&gt;
min_supported_version = 2&lt;br /&gt;
&lt;br /&gt;
# Minimum extranonce2 size for downstream&lt;br /&gt;
# Max value: 16 (leaves 0 bytes for search space splitting of downstreams)&lt;br /&gt;
# Max value for CGminer: 8&lt;br /&gt;
# Min value: 2&lt;br /&gt;
min_extranonce2_size = 8&lt;br /&gt;
coinbase_reward_sat = 5_000_000_000&lt;br /&gt;
&lt;br /&gt;
# JN config (optional), if set (uncommented) the tProxy starts on JN mode&lt;br /&gt;
# [jn_config]&lt;br /&gt;
# local pool JN (local pool must be run before tProxy to work)&lt;br /&gt;
jn_address = &amp;quot;127.0.0.1:34264&amp;quot;&lt;br /&gt;
# local TP (this is pointing to localhost so you must run a TP locally for this configuration to work)&lt;br /&gt;
tp_address = &amp;quot;127.0.0.1:8442&amp;quot;&lt;br /&gt;
# hosted testnet TP &lt;br /&gt;
# tp_address = &amp;quot;89.116.25.191:8442&amp;quot;&lt;br /&gt;
# hosted regnet TP &lt;br /&gt;
# tp_address = &amp;quot;75.119.150.111:8442&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Difficulty params&lt;br /&gt;
[downstream_difficulty_config]&lt;br /&gt;
# hashes/s of the weakest miner that will be connecting&lt;br /&gt;
min_individual_miner_hashrate=5_000_000.0&lt;br /&gt;
# minimum number of shares needed before a mining.set_difficulty is sent for updating targets&lt;br /&gt;
miner_num_submits_before_update=5&lt;br /&gt;
# target number of shares per minute the miner should be sending&lt;br /&gt;
shares_per_minute = 6.0&lt;br /&gt;
&lt;br /&gt;
[upstream_difficulty_config]&lt;br /&gt;
# interval in seconds to elapse before updating channel hashrate with the pool&lt;br /&gt;
channel_diff_update_interval = 60&lt;br /&gt;
# estimated accumulated hashrate of all downstream miners&lt;br /&gt;
channel_nominal_hashrate = 5_000_000.0&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once your preferred config is set, you can run the tProxy:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cargo run -p translator_sv2 &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the translator starts properly, you should see the following log lines:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
2023-03-28T10:57:06.624837Z  INFO translator_sv2::upstream_sv2::upstream: PROXY SERVER - ACCEPTING FROM UPSTREAM: 127.0.0.1:34254&lt;br /&gt;
2023-03-28T10:57:06.650990Z  INFO translator_sv2::upstream_sv2::upstream: Up: Sending: SetupConnection { protocol: MiningProtocol, min_version: 2, max_version: 2, flags: 4, endpoint_host: Owned([48, 46, 48, 46, 48, 46, 48]), endpoint_port: 50, vendor: Owned([]), hardware_version: Owned([]), firmware: Owned([]), device_id: Owned([]) }&lt;br /&gt;
2023-03-28T10:57:06.663001Z  INFO translator_sv2::upstream_sv2::upstream: Up: Receiving: Sv2Frame { header: Header { extension_type: 0, msg_type: 1, msg_length: U24(6) }, payload: None, serialized: Some(Slice { offset: 0x7f7b0c95b000, len: 12, index: 1, shared_state: SharedState(128), owned: None }) }&lt;br /&gt;
2023-03-28T10:57:06.663187Z  INFO translator_sv2::upstream_sv2::upstream: Up: Sending: OpenExtendedMiningChannel(OpenExtendedMiningChannel { request_id: 0, user_identity: Owned([65, 66, 67]), nominal_hash_rate: 5000000.0, max_target: Owned([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 255]), min_extranonce_size: 8 })&lt;br /&gt;
2023-03-28T10:57:06.663286Z  INFO translator_sv2: Connected to Upstream!&lt;br /&gt;
2023-03-28T10:57:06.665887Z  INFO translator_sv2::upstream_sv2::upstream: Up: Successfully Opened Extended Mining Channel&lt;br /&gt;
2023-03-28T10:57:06.666147Z  INFO translator_sv2::upstream_sv2::upstream: Is future job: true&lt;br /&gt;
&lt;br /&gt;
2023-03-28T10:57:06.666208Z  INFO translator_sv2::upstream_sv2::upstream: Up: New Extended Mining Job&lt;br /&gt;
2023-03-28T10:57:06.666353Z  INFO translator_sv2::upstream_sv2::upstream: Up: Set New Prev Hash&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; If you want to create more custom configs, you can save them in the same conf/ directory. To run the specific custom config, you can do it by running:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cargo run -p translator_sv2 -- -c [your-custom-config.toml]&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 3. Start SV1 Miner ==&lt;br /&gt;
&lt;br /&gt;
After starting a pool, and a translation proxy, let’s start a SV1 miner.&lt;br /&gt;
&lt;br /&gt;
=== Physical ASIC miner ===&lt;br /&gt;
If you have a physical miner, setup is very easy since you just have to point your ASIC miner to the local tProxy which you deployed in the last step of this guide.&lt;br /&gt;
&lt;br /&gt;
=== CPU Miner ===&lt;br /&gt;
If you don&#039;t have a physical miner, you can do tests with CPUMiner.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Setup the correct CPUMiner for your OS:&#039;&#039;&#039;&lt;br /&gt;
  * You can download the binary directly from [https://example.com here];&lt;br /&gt;
  * Or compile it from [https://github.com/pooler/cpuminer here].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd Downloads/&lt;br /&gt;
./minerd -a sha256d -o stratum+tcp://localhost:34255 -q -D -P&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will connect to the translator proxy and speak sv1. If this is successful you should see the following output:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Connected to localhost (127.0.0.1) port 34255 (#0)&lt;br /&gt;
* Connection #0 to host localhost left intact&lt;br /&gt;
[2023-03-28 13:08:51] &amp;gt; {&amp;quot;id&amp;quot;: 1, &amp;quot;method&amp;quot;: &amp;quot;mining.subscribe&amp;quot;, &amp;quot;params&amp;quot;: [&amp;quot;cpuminer/2.5.1&amp;quot;]}&lt;br /&gt;
[2023-03-28 13:08:51] &amp;lt; {&amp;quot;id&amp;quot;:1,&amp;quot;error&amp;quot;:null,&amp;quot;result&amp;quot;:[[[&amp;quot;mining.set_difficulty&amp;quot;,&amp;quot;ae6812eb4cd7735a302a8a9dd95cf71f&amp;quot;],[&amp;quot;mining.notify&amp;quot;,&amp;quot;ae6812eb4cd7735a302a8a9dd95cf71f&amp;quot;]],&amp;quot;000000000000000000000000000000010000000000000000000000000001&amp;quot;,2]}&lt;br /&gt;
[2023-03-28 13:08:51] Stratum session id: ae6812eb4cd7735a302a8a9dd95cf71f&lt;br /&gt;
[2023-03-28 13:08:51] &amp;gt; {&amp;quot;id&amp;quot;: 2, &amp;quot;method&amp;quot;: &amp;quot;mining.authorize&amp;quot;, &amp;quot;params&amp;quot;: [&amp;quot;&amp;quot;, &amp;quot;&amp;quot;]}&lt;br /&gt;
[2023-03-28 13:08:51] &amp;lt; {&amp;quot;id&amp;quot;:2,&amp;quot;error&amp;quot;:null,&amp;quot;result&amp;quot;:true}&lt;br /&gt;
[2023-03-28 13:08:52] &amp;lt; {&amp;quot;method&amp;quot;:&amp;quot;mining.set_difficulty&amp;quot;,&amp;quot;params&amp;quot;:[0.03571428571428571]}&lt;br /&gt;
[2023-03-28 13:08:52] Stratum difficulty set to 0.0357143&lt;br /&gt;
[2023-03-28 13:08:52] &amp;lt; {&amp;quot;method&amp;quot;:&amp;quot;mining.notify&amp;quot;,&amp;quot;params&amp;quot;:[&amp;quot;1&amp;quot;,&amp;quot;9973803c689d114202d8fa6e7a812464ec5968614898bef00000000800000000&amp;quot;,&amp;quot;02000000010000000000000000000000000000000000000000000000000000000000000000ffffffff25036e052500&amp;quot;,&amp;quot;ffffffff02dbd4250000000000434104466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f276728176c3c6431f8eeda4538dc37c865e2784f3a9e77d044f33e407797e1278aac0000000000000000266a24aa21a9edf91da350df08181fe10fa729adb64397b97fcf1680d030db9ef9ad124423caa800000000&amp;quot;,[&amp;quot;2bfe0456baee2eff5f1fdcbcab78aab12c7313b012ac27363aa9798c274bd593&amp;quot;,&amp;quot;2d82a85bd4f3a555db28b11cfae0665c2f0217601756ea8d35936679425ec02a&amp;quot;,&amp;quot;cae46b308f58e509a0e55d13f232b8077cf20561096d843be0ac2aaa56d3a3b3&amp;quot;,&amp;quot;c9260f546d915dba514bb933ab06bb1337c544835c61c117fb20c6abb9ef6e45&amp;quot;,&amp;quot;fbae0b78208cb543bf8f25a5f616271e1671e44c0191b2d8b3c3bc6313f78b6a&amp;quot;,&amp;quot;d30f4074e3588d2f07c0d1dedcee893954cbbc6b2a6714b0ce915a58ca88fc27&amp;quot;,&amp;quot;e72cac419d4edfcd794343ac08805bf49db6f26970e49aab7351c53b8ae51e24&amp;quot;,&amp;quot;3a888db192e72c75ba383b9b73fe85cb1f423f8d935289e769a5229d73d545c1&amp;quot;,&amp;quot;761b4af369aaadd5180df680632a535060c350900aa7fedb1b5d4eb65a5da929&amp;quot;,&amp;quot;ae190c0907f7638fcbb9e46e0d9c2a85b916b9712616ffdea7179704ccd682b2&amp;quot;,&amp;quot;b702b7b8c1956699fe58d9570bdb75d7c0c87d78889d92abd7089ec2c57384c9&amp;quot;,&amp;quot;d0a5fb4f50c214775d9970972164105c3acbbf08a22576e6e91ccf70196ec2c1&amp;quot;],&amp;quot;20000000&amp;quot;,&amp;quot;1929ee8d&amp;quot;,&amp;quot;6422ca0e&amp;quot;,true]}&lt;br /&gt;
[2023-03-28 13:08:52] DEBUG: job_id=&#039;1&#039; extranonce2=0000 ntime=6422ca0e&lt;br /&gt;
[2023-03-28 13:08:52] Stratum requested work restart&lt;br /&gt;
[2023-03-28 13:08:54] DEBUG: hash &amp;lt;= target&lt;br /&gt;
Hash:   000000136077f7444332e7885526a371afdc00f17a08c9aa077fb845d6074536&lt;br /&gt;
Target: 0000001bffe40000000000000000000000000000000000000000000000000000&lt;br /&gt;
[2023-03-28 13:08:54] &amp;gt; {&amp;quot;method&amp;quot;: &amp;quot;mining.submit&amp;quot;, &amp;quot;params&amp;quot;: [&amp;quot;&amp;quot;, &amp;quot;1&amp;quot;, &amp;quot;0000&amp;quot;, &amp;quot;6422ca0e&amp;quot;, &amp;quot;bd5c6540&amp;quot;], &amp;quot;id&amp;quot;:4}&lt;br /&gt;
[2023-03-28 13:08:54] &amp;lt; {&amp;quot;id&amp;quot;:4,&amp;quot;error&amp;quot;:null,&amp;quot;result&amp;quot;:true}&lt;br /&gt;
[2023-03-28 13:08:54] accepted: 1/1 (100.00%), 33963 khash/s (yay!!!)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Eventually, the Translation Proxy log output will show successful share, which means you&#039;ve run the configuration successfully!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
2023-03-28T11:08:51.052292Z  INFO translator_sv2::downstream_sv1::downstream: PROXY SERVER - ACCEPTING FROM DOWNSTREAM: 127.0.0.1:50225&lt;br /&gt;
2023-03-28T11:08:51.052704Z  INFO translator_sv2::downstream_sv1::downstream: Down: Subscribing&lt;br /&gt;
2023-03-28T11:08:51.054303Z  INFO translator_sv2::downstream_sv1::downstream: Down: Authorizing&lt;br /&gt;
2023-03-28T11:08:54.552777Z  INFO roles_logic_sv2::utils: reduce_path: coinbase_id: [55, 0, 43, 216, 197, 11, 114, 249, 81, 1, 236, 139, 193, 183, 192, 161, 226, 175, 179, 206, 208, 147, 206, 20, 71, 31, 50, 216, 79, 177, 68, 0]&lt;br /&gt;
2023-03-28T11:08:54.553161Z  INFO translator_sv2::proxy::bridge: SHARE MEETS DOWNSTREAM TARGET&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Config D: SV1 firmware &amp;gt; Translation Proxy JD (Job Declarator) &amp;gt; SV2 Pool ==&lt;br /&gt;
&lt;br /&gt;
This configuration allows mining devices running SV1 firmware to connect to an SV2 Pool through a Translation Proxy (tProxy). In this case, the tProxy is designed also to implement the Job Declarator (JD) sub-protocol.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;1. Install, setup and run local regtest Template Provider&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; To setup a local Template Provider you need to run it from a linux machine.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git clone https://github.com/stratum-mining/bitcoin.git&lt;br /&gt;
git checkout last-tested-tp&lt;br /&gt;
cd bitcoin/&lt;br /&gt;
./autogen.sh &amp;amp;&amp;amp; ./configure --enable-template-provider&lt;br /&gt;
make check&lt;br /&gt;
rm -r ~/.bitcoin/regtest&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once installed, in bitcoin/ directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
./src/bitcoind -regtest&lt;br /&gt;
cd bitcoin/&lt;br /&gt;
./src/bitcoin-cli -regtest generatetoaddress 16 bcrt1qttuwhmpa7a0ls5kr3ye6pjc24ng685jvdrksxx&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;2. Start SV2 Pool&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd stratum/roles/v2/pool/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The pool-config-example.toml is a configuration example which can be copy/paste into /conf directory by the party that is running the SV2 Pool (most typically the pool service provider) to address the most preferred customization. To better understand and learn about information present in the configuration file, check this [https://github.com/stratum-mining/stratum/blob/main/roles/v2/pool/README.md README].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cp pool-config-example.toml ./conf/pool-config.toml&lt;br /&gt;
cd conf/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Pool role in this configuration should be configured to point to the local Template Provider which you deployed in the first step of this guide. In the pool-config.toml file you should see the tp_address = &amp;quot;127.0.0.1:8442&amp;quot; line uncommented. The correct config file to exploit the local TP should be like this:&lt;br /&gt;
&lt;br /&gt;
=== Pool Configuration File Example ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;toml&amp;quot;&amp;gt;&lt;br /&gt;
# SRI Pool config&lt;br /&gt;
authority_public_key = &amp;quot;2di19GHYQnAZJmEpoUeP7C3Eg9TCcksHr23rZCC83dvUiZgiDL&amp;quot;&lt;br /&gt;
authority_secret_key = &amp;quot;2Z1FZug7mZNyM63ggkm37r4oKQ29khLjAvEx43rGkFN47RcJ2t&amp;quot;&lt;br /&gt;
cert_validity_sec = 3600&lt;br /&gt;
test_only_listen_adress_plain =  &amp;quot;0.0.0.0:34250&amp;quot;&lt;br /&gt;
listen_address = &amp;quot;0.0.0.0:34254&amp;quot;&lt;br /&gt;
# list of compressed or uncompressed pubkeys for coinbase payout (only supports 1 item in the array at this point)&lt;br /&gt;
coinbase_outputs = [&lt;br /&gt;
    &amp;quot;04466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f276728176c3c6431f8eeda4538dc37c865e2784f3a9e77d044f33e407797e1278a&amp;quot;,&lt;br /&gt;
]&lt;br /&gt;
&lt;br /&gt;
# Template Provider config&lt;br /&gt;
# local TP (this is pointing to localhost so you must run a TP locally for this configuration to work)&lt;br /&gt;
tp_address = &amp;quot;127.0.0.1:8442&amp;quot;&lt;br /&gt;
# hosted testnet TP &lt;br /&gt;
# tp_address = &amp;quot;89.116.25.191:8442&amp;quot;&lt;br /&gt;
# hosted regnet TP &lt;br /&gt;
# tp_address = &amp;quot;75.119.150.111:8442&amp;quot;&lt;br /&gt;
# hosted testnet TP &lt;br /&gt;
# tp_address = &amp;quot;89.116.25.191:8442&amp;quot;&lt;br /&gt;
# hosted regnet TP &lt;br /&gt;
# tp_address = &amp;quot;75.119.150.111:8442&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# SRI Pool JN config&lt;br /&gt;
listen_jn_address = &amp;quot;127.0.0.1:34264&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; If you want to mine spendable bitcoin on regtest, you can do it with bitcoin-cli:&lt;br /&gt;
&lt;br /&gt;
Get a legacy Bitcoin address:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
bitcoin-cli -regtest -rpcwallet=&amp;quot;&amp;lt;PUT YOUR WALLET NAME HERE&amp;gt;&amp;quot; getnewaddress &amp;quot;test&amp;quot; &amp;quot;legacy&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Retrieve its corresponding public key:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
bitcoin-cli -regtest getaddressinfo &amp;lt;PUT THE ADDRESS GENERATED HERE&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
Copy the pubkey showed in the output;&lt;br /&gt;
Paste it in the coinbase_outputs of pool-config.toml, after deleting the one which is already present;&lt;br /&gt;
Mine a block;&lt;br /&gt;
Generate 100 blocks:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
bitcoin-cli -regtest generatetoaddress 100 bcrt1qc5xss0cma0zldxfzzdpjxsayut7yy86e2lr6km&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now the mined bitcoin are spendable!&lt;br /&gt;
&lt;br /&gt;
Once your preferred config is set, you can run the SV2 Pool:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cargo run -p pool_sv2&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the pool properly starts you should see the following log lines:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
2023-03-28T11:59:40.951579Z  INFO pool_sv2: Pool INITIALIZING with config: &amp;quot;pool-config.toml&amp;quot;&lt;br /&gt;
2023-03-28T11:59:40.952304Z  INFO pool_sv2::lib::template_receiver: Connected to template distribution server at 127.0.0.1:8442&lt;br /&gt;
2023-03-28T11:59:41.024149Z  INFO pool_sv2::lib::template_receiver::setup_connection: Setup template provider connection success!&lt;br /&gt;
2023-03-28T11:59:41.024398Z  INFO pool_sv2::lib::mining_pool: PUB KEY: [TxOut { value: 5000000000, script_pubkey: Script(OP_PUSHBYTES_65 04466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f276728176c3c6431f8eeda4538dc37c865e2784f3a9e77d044f33e407797e1278a OP_CHECKSIG) }]&lt;br /&gt;
2023-03-28T11:59:41.025534Z  INFO pool_sv2::lib::mining_pool: Starting up pool listener&lt;br /&gt;
2023-03-28T11:59:41.026100Z  INFO pool_sv2::lib::job_negotiator: JN INITIALIZED&lt;br /&gt;
2023-03-28T11:59:41.026343Z  INFO pool_sv2::lib::mining_pool: Listening for encrypted connection on: 0.0.0.0:34254&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; If you want to create more custom configs, you can save them in the same conf/ directory.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cargo run -p pool_sv2 -- -c [your-custom-config.toml]&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
=== 3. Start Translator (tProxy) JD ===&lt;br /&gt;
&lt;br /&gt;
After the SV2 pool is running, the tProxy facilitates communication between the pool and an SV1 miner. This setup involves the tProxy acting as a Job Declarator (JD).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd stratum/roles/translator/&lt;br /&gt;
cp proxy-config-example.toml ./conf/proxy-config.toml&lt;br /&gt;
cd conf/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;proxy-config-example.toml&#039;&#039;&#039; serves as a configuration example. It can be copied and pasted into the /conf directory.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; Ensure the [jn_config] line in proxy-config.toml is uncommented to enable the JN sub-protocol.&lt;br /&gt;
&lt;br /&gt;
==== Proxy Configuration File Example ====&lt;br /&gt;
&amp;lt;source lang=&amp;quot;toml&amp;quot;&amp;gt;&lt;br /&gt;
# Braiins Pool Upstream Connection&lt;br /&gt;
# upstream_authority_pubkey = &amp;quot;u95GEReVMjK6k5YqiSFNqqTnKU4ypU2Wm8awa6tmbmDmk1bWt&amp;quot;&lt;br /&gt;
# upstream_address = &amp;quot;18.196.32.109&amp;quot;&lt;br /&gt;
# upstream_port = 3336&lt;br /&gt;
&lt;br /&gt;
# Local SRI Pool Upstream Connection&lt;br /&gt;
upstream_address = &amp;quot;127.0.0.1&amp;quot;&lt;br /&gt;
upstream_port = 34254&lt;br /&gt;
upstream_authority_pubkey = &amp;quot;2di19GHYQnAZJmEpoUeP7C3Eg9TCcksHr23rZCC83dvUiZgiDL&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Local Mining Device Downstream Connection&lt;br /&gt;
downstream_address = &amp;quot;0.0.0.0&amp;quot;&lt;br /&gt;
downstream_port = 34255&lt;br /&gt;
&lt;br /&gt;
# Version support&lt;br /&gt;
max_supported_version = 2&lt;br /&gt;
min_supported_version = 2&lt;br /&gt;
&lt;br /&gt;
# Minimum extranonce2 size for downstream&lt;br /&gt;
# Max value: 16 (leaves 0 bytes for search space splitting of downstreams)&lt;br /&gt;
# Max value for CGminer: 8&lt;br /&gt;
# Min value: 2&lt;br /&gt;
min_extranonce2_size = 8&lt;br /&gt;
coinbase_reward_sat = 5_000_000_000&lt;br /&gt;
&lt;br /&gt;
# JN config (optional), if set (uncommented) the tProxy starts on JN mode&lt;br /&gt;
[jn_config]&lt;br /&gt;
# local pool JN (local pool must be run before tProxy to work)&lt;br /&gt;
jn_address = &amp;quot;127.0.0.1:34264&amp;quot;&lt;br /&gt;
# local TP (this is pointing to localhost so you must run a TP locally for this configuration to work)&lt;br /&gt;
tp_address = &amp;quot;127.0.0.1:8442&amp;quot;&lt;br /&gt;
# hosted testnet TP &lt;br /&gt;
# tp_address = &amp;quot;89.116.25.191:8442&amp;quot;&lt;br /&gt;
# hosted regnet TP &lt;br /&gt;
# tp_address = &amp;quot;75.119.150.111:8442&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Difficulty params&lt;br /&gt;
[downstream_difficulty_config]&lt;br /&gt;
# hashes/s of the weakest miner that will be connecting&lt;br /&gt;
min_individual_miner_hashrate=5_000_000.0&lt;br /&gt;
# minimum number of shares needed before a mining.set_difficulty is sent for updating targets&lt;br /&gt;
miner_num_submits_before_update=5&lt;br /&gt;
# target number of shares per minute the miner should be sending&lt;br /&gt;
shares_per_minute = 6.0&lt;br /&gt;
&lt;br /&gt;
[upstream_difficulty_config]&lt;br /&gt;
# interval in seconds to elapse before updating channel hashrate with the pool&lt;br /&gt;
channel_diff_update_interval = 60&lt;br /&gt;
# estimated accumulated hashrate of all downstream miners&lt;br /&gt;
channel_nominal_hashrate = 5_000_000.0&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Running the tProxy ===&lt;br /&gt;
At this point, run the tProxy with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cargo run -p translator_sv2&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the translator starts properly, you should see log lines similar to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
2023-03-28T12:16:03.130356Z  INFO translator_sv2::upstream_sv2::upstream: PROXY SERVER - ACCEPTING FROM UPSTREAM: 127.0.0.1:34254&lt;br /&gt;
2023-03-28T12:16:03.175910Z  INFO translator_sv2::upstream_sv2::upstream: Up: Sending: SetupConnection { protocol: MiningProtocol, min_version: 2, max_version: 2, flags: 6, endpoint_host: Owned([48, 46, 48, 46, 48, 46, 48]), endpoint_port: 50, vendor: Owned([]), hardware_version: Owned([]), firmware: Owned([]), device_id: Owned([]) }&lt;br /&gt;
2023-03-28T12:16:03.177935Z  INFO translator_sv2::upstream_sv2::upstream: Up: Receiving: Sv2Frame { header: Header { extension_type: 0, msg_type: 1, msg_length: U24(6) }, payload: None, serialized: Some(Slice { offset: 0x7f50fe42a010, len: 12, index: 1, shared_state: SharedState(128), owned: None }) }&lt;br /&gt;
2023-03-28T12:16:03.178368Z  INFO translator_sv2::upstream_sv2::upstream: Up: Sending: OpenExtendedMiningChannel(OpenExtendedMiningChannel { request_id: 0, user_identity: Owned([65, 66, 67]), nominal_hash_rate: 5000000.0, max_target: Owned([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 255]), min_extranonce_size: 8 })&lt;br /&gt;
2023-03-28T12:16:03.179222Z  INFO translator_sv2: Connected to Upstream!&lt;br /&gt;
2023-03-28T12:16:03.182523Z  INFO translator_sv2::template_receiver: Template Receiver try to set up connection&lt;br /&gt;
2023-03-28T12:16:03.190738Z  INFO translator_sv2::job_negotiator: JN proxy: setupconnection Proxy address: 0.0.0.0:34255&lt;br /&gt;
2023-03-28T12:16:03.192886Z  INFO translator_sv2::job_negotiator: JN CONNECTED&lt;br /&gt;
2023-03-28T12:16:03.232878Z  INFO translator_sv2::template_receiver: Template Receiver connection set up&lt;br /&gt;
2023-03-28T12:16:03.233755Z  INFO translator_sv2::upstream_sv2::upstream: Up: Successfully Opened Extended Mining Channel&lt;br /&gt;
2023-03-28T12:16:03.234006Z  INFO translator_sv2::upstream_sv2::upstream: Is future job: true&lt;br /&gt;
&lt;br /&gt;
2023-03-28T12:16:03.234211Z  INFO translator_sv2::upstream_sv2::upstream: Up: Set New Prev Hash&lt;br /&gt;
2023-03-28T12:16:03.284539Z  INFO translator_sv2::template_receiver: Received SetNewPrevHash, waiting for IS_NEW_TEMPLATE_HANDLED&lt;br /&gt;
2023-03-28T12:16:03.285990Z  INFO translator_sv2::template_receiver: IS_NEW_TEMPLATE_HANDLED ok&lt;br /&gt;
2023-03-28T12:16:03.287963Z  INFO translator_sv2::upstream_sv2::upstream: Send custom job to upstream&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; To create more custom configs, save them in the same conf/ directory.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cargo run -p translator_sv2 -- -c [your-custom-config.toml]&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 4. Start SV1 Miner ===&lt;br /&gt;
&lt;br /&gt;
After initiating a pool and a translation proxy, the next step is to start an SV1 miner.&lt;br /&gt;
&lt;br /&gt;
==== Physical ASIC Miner ====&lt;br /&gt;
For those with a physical ASIC miner, setup is straightforward. Point your ASIC miner to the local tProxy:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
stratum+tcp://&amp;lt;tProxy ip&amp;gt;:34255&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here, &#039;&#039;&#039;tProxy ip&#039;&#039;&#039; refers to the IP address of the local machine running the tProxy.&lt;br /&gt;
&lt;br /&gt;
==== CPU Miner ====&lt;br /&gt;
If a physical miner is not available, testing can be done with CPUMiner.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Note:&#039;&#039;&#039;&#039;&#039; Download the binary directly or compile it from the provided URLs.&lt;br /&gt;
&lt;br /&gt;
You can download the binary directly from here (opens new window);&lt;br /&gt;
Or compile it from https://github.com/pooler/cpuminer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd Downloads/&lt;br /&gt;
./minerd -a sha256d -o stratum+tcp://localhost:34255 -q -D -P&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will establish a connection to the translator proxy using the sv1 protocol.&lt;br /&gt;
&lt;br /&gt;
==== Expected Output ====&lt;br /&gt;
Upon successful connection, the output should resemble:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Connected to localhost (127.0.0.1) port 34255 (#0)&lt;br /&gt;
* Connection #0 to host localhost left intact&lt;br /&gt;
[2023-03-28 14:18:11] &amp;gt; {&amp;quot;id&amp;quot;: 1, &amp;quot;method&amp;quot;: &amp;quot;mining.subscribe&amp;quot;, &amp;quot;params&amp;quot;: [&amp;quot;cpuminer/2.5.1&amp;quot;]}&lt;br /&gt;
[2023-03-28 14:18:11] 128 miner threads started, using &#039;sha256d&#039; algorithm.&lt;br /&gt;
[2023-03-28 14:18:11] &amp;lt; {&amp;quot;id&amp;quot;:1,&amp;quot;error&amp;quot;:null,&amp;quot;result&amp;quot;:[[[&amp;quot;mining.set_difficulty&amp;quot;,&amp;quot;ae6812eb4cd7735a302a8a9dd95cf71f&amp;quot;],[&amp;quot;mining.notify&amp;quot;,&amp;quot;ae6812eb4cd7735a302a8a9dd95cf71f&amp;quot;]],&amp;quot;000000000000000000000000000000010000000000000002&amp;quot;,8]}&lt;br /&gt;
[2023-03-28 14:18:11] Stratum session id: ae6812eb4cd7735a302a8a9dd95cf71f&lt;br /&gt;
[2023-03-28 14:18:11] &amp;gt; {&amp;quot;id&amp;quot;: 2, &amp;quot;method&amp;quot;: &amp;quot;mining.authorize&amp;quot;, &amp;quot;params&amp;quot;: [&amp;quot;&amp;quot;, &amp;quot;&amp;quot;]}&lt;br /&gt;
[2023-03-28 14:18:11] &amp;lt; {&amp;quot;id&amp;quot;:2,&amp;quot;error&amp;quot;:null,&amp;quot;result&amp;quot;:true}&lt;br /&gt;
[2023-03-28 14:18:12] &amp;lt; {&amp;quot;method&amp;quot;:&amp;quot;mining.set_difficulty&amp;quot;,&amp;quot;params&amp;quot;:[0.0011655011655011655]}&lt;br /&gt;
[2023-03-28 14:18:12] Stratum difficulty set to 0.0011655&lt;br /&gt;
[2023-03-28 14:18:12] &amp;lt; {&amp;quot;method&amp;quot;:&amp;quot;mining.notify&amp;quot;,&amp;quot;params&amp;quot;:[&amp;quot;1&amp;quot;,&amp;quot;ba521c4aba4886ca7319ba89333714504dbd4b2ea11a7b09295e6e046e1407e6&amp;quot;,&amp;quot;020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff2402f20000&amp;quot;,&amp;quot;ffffffff0200f2052a01000000434104466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f276728176c3c6431f8eeda4538dc37c865e2784f3a9e77d044f33e407797e1278aac0000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000&amp;quot;,[],&amp;quot;30000000&amp;quot;,&amp;quot;207fffff&amp;quot;,&amp;quot;6422d610&amp;quot;,true]}&lt;br /&gt;
[2023-03-28 14:18:12] DEBUG: job_id=&#039;1&#039; extranonce2=0000000000000000 ntime=6422d610&lt;br /&gt;
[2023-03-28 14:18:12] Stratum requested work restart&lt;br /&gt;
[2023-03-28 14:18:13] DEBUG: hash &amp;lt;= target&lt;br /&gt;
Hash:   000001b0a8b6be5c01c2e79656080eea652a30f49b5d04565ad923753dd9c811&lt;br /&gt;
Target: 00000359fca60000000000000000000000000000000000000000000000000000&lt;br /&gt;
[2023-03-28 14:18:13] &amp;gt; {&amp;quot;method&amp;quot;: &amp;quot;mining.submit&amp;quot;, &amp;quot;params&amp;quot;: [&amp;quot;&amp;quot;, &amp;quot;1&amp;quot;, &amp;quot;0000000000000000&amp;quot;, &amp;quot;6422d610&amp;quot;, &amp;quot;1b4f00da&amp;quot;], &amp;quot;id&amp;quot;:4}&lt;br /&gt;
[2023-03-28 14:18:13] &amp;lt; {&amp;quot;id&amp;quot;:4,&amp;quot;error&amp;quot;:null,&amp;quot;result&amp;quot;:true}&lt;br /&gt;
[2023-03-28 14:18:13] accepted: 1/1 (100.00%), 171.09 khash/s (yay!!!)&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Translation Proxy Log Output ====&lt;br /&gt;
A successful share will be indicated in the Translation Proxy log:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
2023-03-28T11:08:51.052292Z  INFO translator_sv2::downstream_sv1::downstream: PROXY SERVER - ACCEPTING FROM DOWNSTREAM: 127.0.0.1:50225&lt;br /&gt;
2023-03-28T11:08:51.052704Z  INFO translator_sv2::downstream_sv1::downstream: Down: Subscribing&lt;br /&gt;
2023-03-28T11:08:51.054303Z  INFO translator_sv2::downstream_sv1::downstream: Down: Authorizing&lt;br /&gt;
2023-03-28T11:08:54.552777Z  INFO roles_logic_sv2::utils: reduce_path: coinbase_id: [55, 0, 43, 216, 197, 11, 114, 249, 81, 1, 236, 139, 193, 183, 192, 161, 226, 175, 179, 206, 208, 147, 206, 20, 71, 31, 50, 216, 79, 177, 68, 0]&lt;br /&gt;
2023-03-28T11:08:54.553161Z  INFO translator_sv2::proxy::bridge: SHARE MEETS DOWNSTREAM TARGET&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning:&#039;&#039;&#039;&#039;&#039; If the Translation Proxy log indicates an error, such as &amp;quot;difficulty-too-low&amp;quot;, adjust the difficulty parameters in your proxy-config.toml and restart the tProxy.&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69940</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69940"/>
		<updated>2023-12-06T16:37:35Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: small error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 6.25 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (6.25 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
* &#039;&#039;&#039;TIDES&#039;&#039;&#039; - Transparent Index of Distinct Extended Shares. As blocks are being mined, they generate the reward by a weighted percentage of effort to the most recently found proofs. The proof period funds are distributed across has been chosen such that each proof should be paid on average 8 times. Instead of a set amount of bitcoins per proof, the block reward is divided by percent, so transaction fees are included.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
== Operational Pools ==&lt;br /&gt;
&lt;br /&gt;
The following mining pools are still running and paying out their users:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[DEMAND]]         || Global || Small || No  || SOLO                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2023-11-27 ||   || [https://bitcointalk.org/index.php?topic=5476679.0 link] || [http://DMND.WORK link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|us|}}{{flag|eu|}}{{flag|cn|}}                || Large || NMC, SYS, EMC || PPS+                     || {{SharedFees}}    || 2.5%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      | 0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Medium ||[[NMC]] VCASH || FPPS  || {{SharedFees}}   ||    2.5% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[SBICrypto Pool]]          || Global                ||   Medium || No       || FPPS  || {{SharedFees}}   ||    0% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2020-11-03 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic ||                                             ||  [https://sbicrypto.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Luxor]]       || {{flag|us|label=1}}||    Medium || No || FPPS &amp;amp; PPS                     || {{SharedFees}} || 2% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2018-01-01 || VarDiff                       ||                                             || [https://mining.luxor.tech// link]&lt;br /&gt;
|-&lt;br /&gt;
| [[OCEAN]]         || {{flag|us|label=1}}|| Small || No  || TIDES                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-04-27 || Dynamic  || || [http://ocean.xyz link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Defunct Pools ==&lt;br /&gt;
&lt;br /&gt;
The following pools were once operational but have since shut down. They are listed for historical purposes only.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[EMCD Pool]]          || CIS, EU, KZ, IR, China || Medium || - || FPPS+                     || {{SharedFees}}    || 1%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2018-01-26 || Dynamic               ||  || [https://pool.emcd.io link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69939</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69939"/>
		<updated>2023-12-05T21:31:23Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: updated btctalk&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 6.25 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (6.25 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
* &#039;&#039;&#039;TIDES&#039;&#039;&#039; - Transparent Index of Distinct Extended Shares. As blocks are being mined, they generate the reward by a weighted percentage of effort to the most recently found proofs. The proof period funds are distributed across has been chosen such that each proof should be paid on average 8 times. Instead of a set amount of bitcoins per proof, the block reward is divided by percent, so transaction fees are included.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
== Operational Pools ==&lt;br /&gt;
&lt;br /&gt;
The following mining pools are still running and paying out their users:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[DEMAND]]         || Global || Small || No  || SOLO                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2023-11-27 ||   || [https://bitcointalk.org/index.php?topic=5476679.0 link] || [http://DMND.WORK link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|us|}}{{flag|eu|}}{{flag|cn|}}                || Large || NMC, SYS, EMC || PPS+                     || {{SharedFees}}    || 2.5%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      | 0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Medium ||[[NMC]] VCASH || FPPS  || {{SharedFees}}   ||    2.5% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[SBICrypto Pool]]          || Global                ||   Medium || No       || FPPS  || {{SharedFees}}   ||    0% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2020-11-03 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic ||                                             ||  [https://sbicrypto.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Luxor]]       || {{flag|us|label=1}}||    Medium || No || FPPS &amp;amp; PPS                     || {{SharedFees}} || 2% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2018-01-01 || VarDiff                       ||                                             || [https://mining.luxor.tech// link]&lt;br /&gt;
|-&lt;br /&gt;
| [[OCEAN]]         || {{flag|us|label=1}}|| Small || No  || TIDES                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-04-27 || Dynamic  || || [http://ocean.xyz link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Defunct Pools ==&lt;br /&gt;
&lt;br /&gt;
The following pools were once operational but have since shut down. They are listed for historical purposes only.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[EMCD Pool]]          || CIS, EU, KZ, IR, China || Medium || - || FPPS+                     || {{SharedFees}}    || 1%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2018-01-26 || Dynamic               ||  || [https://pool.emcd.io link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69938</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69938"/>
		<updated>2023-12-05T18:06:56Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 6.25 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (6.25 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
* &#039;&#039;&#039;TIDES&#039;&#039;&#039; - Transparent Index of Distinct Extended Shares. As blocks are being mined, they generate the reward by a weighted percentage of effort to the most recently found proofs. The proof period funds are distributed across has been chosen such that each proof should be paid on average 8 times. Instead of a set amount of bitcoins per proof, the block reward is divided by percent, so transaction fees are included.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
== Operational Pools ==&lt;br /&gt;
&lt;br /&gt;
The following mining pools are still running and paying out their users:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[DEMAND]]         || Global || Small || No  || SOLO                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2023-11-27 ||   || [https://bitcointalk.org/index.php?topic=5476652.0 link] || [http://DMND.WORK link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|us|}}{{flag|eu|}}{{flag|cn|}}                || Large || NMC, SYS, EMC || PPS+                     || {{SharedFees}}    || 2.5%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      | 0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Medium ||[[NMC]] VCASH || FPPS  || {{SharedFees}}   ||    2.5% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[SBICrypto Pool]]          || Global                ||   Medium || No       || FPPS  || {{SharedFees}}   ||    0% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2020-11-03 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic ||                                             ||  [https://sbicrypto.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Luxor]]       || {{flag|us|label=1}}||    Medium || No || FPPS &amp;amp; PPS                     || {{SharedFees}} || 2% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2018-01-01 || VarDiff                       ||                                             || [https://mining.luxor.tech// link]&lt;br /&gt;
|-&lt;br /&gt;
| [[OCEAN]]         || {{flag|us|label=1}}|| Small || No  || TIDES                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-04-27 || Dynamic  || || [http://ocean.xyz link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Defunct Pools ==&lt;br /&gt;
&lt;br /&gt;
The following pools were once operational but have since shut down. They are listed for historical purposes only.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[EMCD Pool]]          || CIS, EU, KZ, IR, China || Medium || - || FPPS+                     || {{SharedFees}}    || 1%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2018-01-26 || Dynamic               ||  || [https://pool.emcd.io link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69937</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69937"/>
		<updated>2023-12-05T18:05:39Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 6.25 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (6.25 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
* &#039;&#039;&#039;TIDES&#039;&#039;&#039; - Transparent Index of Distinct Extended Shares. As blocks are being mined, they generate the reward by a weighted percentage of effort to the most recently found proofs. The proof period funds are distributed across has been chosen such that each proof should be paid on average 8 times. Instead of a set amount of bitcoins per proof, the block reward is divided by percent, so transaction fees are included.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
== Operational Pools ==&lt;br /&gt;
&lt;br /&gt;
The following mining pools are still running and paying out their users:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[DEMAND]]         || {{flag|us|label=1}}|| Small || No  || SOLO                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2023-11-27 ||   || [https://bitcointalk.org/index.php?topic=5476652.0 link] || [http://DMND.WORK link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|us|}}{{flag|eu|}}{{flag|cn|}}                || Large || NMC, SYS, EMC || PPS+                     || {{SharedFees}}    || 2.5%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      | 0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Medium ||[[NMC]] VCASH || FPPS  || {{SharedFees}}   ||    2.5% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[SBICrypto Pool]]          || Global                ||   Medium || No       || FPPS  || {{SharedFees}}   ||    0% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2020-11-03 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic ||                                             ||  [https://sbicrypto.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Luxor]]       || {{flag|us|label=1}}||    Medium || No || FPPS &amp;amp; PPS                     || {{SharedFees}} || 2% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2018-01-01 || VarDiff                       ||                                             || [https://mining.luxor.tech// link]&lt;br /&gt;
|-&lt;br /&gt;
| [[OCEAN]]         || {{flag|us|label=1}}|| Small || No  || TIDES                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-04-27 || Dynamic  || || [http://ocean.xyz link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Defunct Pools ==&lt;br /&gt;
&lt;br /&gt;
The following pools were once operational but have since shut down. They are listed for historical purposes only.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[EMCD Pool]]          || CIS, EU, KZ, IR, China || Medium || - || FPPS+                     || {{SharedFees}}    || 1%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2018-01-26 || Dynamic               ||  || [https://pool.emcd.io link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69936</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=69936"/>
		<updated>2023-12-05T18:04:32Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added defunct pools to the right list, added DEMAND mining pool&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 6.25 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (6.25 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
* &#039;&#039;&#039;TIDES&#039;&#039;&#039; - Transparent Index of Distinct Extended Shares. As blocks are being mined, they generate the reward by a weighted percentage of effort to the most recently found proofs. The proof period funds are distributed across has been chosen such that each proof should be paid on average 8 times. Instead of a set amount of bitcoins per proof, the block reward is divided by percent, so transaction fees are included.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
== Operational Pools ==&lt;br /&gt;
&lt;br /&gt;
The following mining pools are still running and paying out their users:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[DEMAND]]         || {{flag|us|label=1}}|| Small || No  || SOLO                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2023-11-27 ||   || || [http://DMND.WORK link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|us|}}{{flag|eu|}}{{flag|cn|}}                || Large || NMC, SYS, EMC || PPS+                     || {{SharedFees}}    || 2.5%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      | 0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Medium ||[[NMC]] VCASH || FPPS  || {{SharedFees}}   ||    2.5% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[SBICrypto Pool]]          || Global                ||   Medium || No       || FPPS  || {{SharedFees}}   ||    0% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2020-11-03 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic ||                                             ||  [https://sbicrypto.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Luxor]]       || {{flag|us|label=1}}||    Medium || No || FPPS &amp;amp; PPS                     || {{SharedFees}} || 2% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2018-01-01 || VarDiff                       ||                                             || [https://mining.luxor.tech// link]&lt;br /&gt;
|-&lt;br /&gt;
| [[OCEAN]]         || {{flag|us|label=1}}|| Small || No  || TIDES                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-04-27 || Dynamic  || || [http://ocean.xyz link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Defunct Pools ==&lt;br /&gt;
&lt;br /&gt;
The following pools were once operational but have since shut down. They are listed for historical purposes only.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[EMCD Pool]]          || CIS, EU, KZ, IR, China || Medium || - || FPPS+                     || {{SharedFees}}    || 1%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2018-01-26 || Dynamic               ||  || [https://pool.emcd.io link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=69935</id>
		<title>DEMAND</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=69935"/>
		<updated>2023-12-05T15:32:44Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: fixed site&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= Alejandro De La Torre, CEO Co-Founder&lt;br /&gt;
Filippo Merli, Technical Lead, Co-Founder&lt;br /&gt;
|foundation= 2023&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.DMND.WORK}}&lt;br /&gt;
[https://WWW.DMND.WORK DEMAND] is the first Stratum V2, bitcoin [[Mining Pool|mining pool]]. Both Solo and Pooled mining available. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.DMND.WORK/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=69934</id>
		<title>DEMAND</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=DEMAND&amp;diff=69934"/>
		<updated>2023-12-05T15:30:42Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: new mining pool&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= Alejandro De La Torre, CEO Co-Founder&lt;br /&gt;
Filippo Merli, Technical Lead, Co-Founder&lt;br /&gt;
|foundation= 2023&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.DMND.WORK}}&lt;br /&gt;
[https://WWW.DMND.WORK DEMAND] is the first Stratum V2, bitcoin [[Mining Pool|mining pool]]. Both Solo and Pooled mining available. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.riglDMND.WORK/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Rigly&amp;diff=69826</id>
		<title>Rigly</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Rigly&amp;diff=69826"/>
		<updated>2023-08-12T10:24:53Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: update extra co founder and date&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= Evan Baer, CEO Co-Founder&lt;br /&gt;
Nico Preti, CEO Co-Founder &lt;br /&gt;
Adam Jonas, Co-Founder&lt;br /&gt;
|foundation= 2022&lt;br /&gt;
|industry=[[Mining]]&lt;br /&gt;
|website=https://www.rigly.io}}&lt;br /&gt;
[https://www.poRigly.io Rigly] is a peer-to-peer, bitcoin [[Hashrate|hashrate]] marketplace. Hashrate is delivered over stratum and settled on-chain.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.rigly.io/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Rigly&amp;diff=69825</id>
		<title>Rigly</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Rigly&amp;diff=69825"/>
		<updated>2023-08-11T12:16:59Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: adding a new mining service&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= Evan Baer, CEO&lt;br /&gt;
Nico Preti, Co-Founder&lt;br /&gt;
|foundation= 2021&lt;br /&gt;
|industry=[[Mining]]&lt;br /&gt;
|website=https://www.rigly.io}}&lt;br /&gt;
[https://www.poRigly.io Rigly] is a peer-to-peer, bitcoin [[Hashrate|hashrate]] marketplace. Hashrate is delivered over stratum and settled on-chain.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.rigly.io/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69606</id>
		<title>Bech32 adoption</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69606"/>
		<updated>2023-01-06T00:17:09Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: /* Web Wallets / Wallet Service Providers */ error on my part&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Bech32]] is a bitcoin [[address]] format specified by [[BIP 0173]]. It is used for the native segwit version 0 output types, P2WPKH and P2WSH. The upcoming [[Taproot]] softfork will add another output type called Pay to Taproot (P2TR). P2TR outputs and future native segwit versions will be using an updated variant of [[Bech32]], called [[Bech32m]] (specified by [[BIP 0350]]). This page tracks the adoption of [[Bech32]] and [[Bech32m]].&lt;br /&gt;
&lt;br /&gt;
Ideally wallets and services would first support &#039;&#039;sending to&#039;&#039; new addresses. When most wallets and services support sending to the new address type, people are more likely to adopt it for receiving. &lt;br /&gt;
&lt;br /&gt;
The amount of bech32 addresses on the blockchain is tracked on this website: https://p2sh.info/dashboard/db/bech32-statistics?orgId=1&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| {{Evaluating|??}} || Maybe / Haven&#039;t checked / placeholder&lt;br /&gt;
|-&lt;br /&gt;
| {{Planned}} || The developers said they plan to&lt;br /&gt;
|-&lt;br /&gt;
| {{Acceptable|PR Merged}} || In the case of software, code has been written and merged, and it will be in next release.&lt;br /&gt;
|-&lt;br /&gt;
| {{Yes}} || Feature has been released&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Software Wallets ===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Armory || {{Yes}} || {{No}} || {{Planned|Planned around activation}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| AQUA || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| bcoin || {{Yes}} || {{Yes}} || {{Yes|Since 2.2.0}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bisq || {{Yes}} || {{Yes}} || {{Evaluating|Dependent on BitcoinJ}} || {{Evaluating|??}} || As of v1.5.0 https://bisq.network/blog/bisq-v1.5.0-highlights/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Core || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} || Uses P2WPKH as default address since version [https://bitcoin.org/en/release/v0.20.0 0.20.0]. Creating P2TR addresses requires manual import for now.&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Knots || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Green || {{Yes}} || {{Yes}} || {{Yes|Since Mobile 3.7.6+, Desktop 1.0.4+}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47]&lt;br /&gt;
|-&lt;br /&gt;
| Breadwallet || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/BRDapp/comments/9xx1hq/as_of_today_brd_fully_supports_native_segwit/&lt;br /&gt;
|-&lt;br /&gt;
| [https://play.google.com/store/apps/details?id=de.schildbach.wallet Bitcoin Wallet for Android] || {{Yes}} || {{Yes}} || {{Yes|Since 9.0}} || {{No}} || Tested as of v9.20 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BlueWallet || {{Yes}} || {{Yes}} || {{Yes|Since 6.2.14}} || {{No}} || Tested as of v6.3.1 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Breez || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v0.12.1-beta (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{No}} || {{No}} || {{No}} || {{No}} || wallet discontinued: https://wallet.btc.com/#/announcement&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/unchained-capital/caravan Caravan] || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Casa || {{Yes}} || {{No}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| C-Lightning || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinomi || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v1.26.0 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Electrum || {{Yes}} || {{Yes}} || {{Yes|Since 4.1.0}} || {{Planned|Planned: Descriptor-based keypath spends}} || https://github.com/spesmilo/electrum/issues/7544&lt;br /&gt;
|-&lt;br /&gt;
| Exodus || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not yet planned}} || https://support.exodus.com/article/1480-bitcoin-faqs-learn-more-about-btc#&lt;br /&gt;
|-&lt;br /&gt;
| Fully Noded || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Since v0.2.26}} || https://twitter.com/FullyNoded/status/1438652812410298370&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || [https://twitter.com/GuardaWallet/status/1194270398730448896 twitter announcement]&lt;br /&gt;
|-&lt;br /&gt;
| Iris Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/cryptoquick/status/1585187190627528710&lt;br /&gt;
|-&lt;br /&gt;
| JoinMarket || {{Yes}} || {{Yes}} || {{Yes|Since v0.9.5}} || {{Evaluating|??}} || &lt;br /&gt;
|-&lt;br /&gt;
| LND || {{Yes}} || {{Yes}} || {{Yes|Since v0.15}} || {{Yes|Since v0.15}} || The coming LND v0.15 release will introduce full P2TR support including scriptpath spends, PSBT signing, and a MuSig2 API.&lt;br /&gt;
|-&lt;br /&gt;
| Muun || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/MuunWallet/status/1459294066135474177&lt;br /&gt;
|-&lt;br /&gt;
| Mycelium || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Bech32m not supported as of version 3.16.0.13, tested on October 12th, 2022. https://github.com/mycelium-com/wallet-android/issues/645&lt;br /&gt;
|-&lt;br /&gt;
| Nunchuk || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/nunchuk_io/status/1511365917808103426&lt;br /&gt;
|-&lt;br /&gt;
| Phoenix || {{Yes}} || {{Yes}} || {{Evaluating|Support in iOS, but not Android}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Samourai Wallet || {{Yes}} || {{Yes}} || {{Yes|Since v0.99.98}}  || {{No|Currently not planned}} || https://twitter.com/SamouraiWallet/status/1415788631491497985?s=20&lt;br /&gt;
|-&lt;br /&gt;
| Sparrow Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/SparrowWallet/status/1415632270434705408&lt;br /&gt;
|-&lt;br /&gt;
| Specter Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benkaufman/status/1431293856675508228&lt;br /&gt;
|-&lt;br /&gt;
| Trust Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not planned}} || https://github.com/trustwallet/wallet-core/releases/tag/2.6.5, https://twitter.com/catenocrypt/status/1520152930065817601&lt;br /&gt;
|-&lt;br /&gt;
| Uniblow || {{Yes}} || {{Yes}} || {{Yes | Since v1.2.2}} || {{No|Not yet planned}} || [https://github.com/bitlogik/uniblow/releases/tag/v1.2.2 release1.2.2]&lt;br /&gt;
|-&lt;br /&gt;
| Wallet of Satoshi || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/walletofsatoshi/status/1459782761472872451 &lt;br /&gt;
|-&lt;br /&gt;
| Wasabi Wallet || {{Yes}} || {{Yes}} || {{Yes | Since Wasabi 2.0}} || {{Planned|Planned: via NBitcoin}} || https://twitter.com/NicolasDorier/status/1413693010236170241 &amp;lt;br&amp;gt; https://mempool.space/testnet/tx/05a23151b6ad114fb71e851147861d6c992a438ad4f62d6f0749bc9f200ef254&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Hardware Wallets ===&lt;br /&gt;
&lt;br /&gt;
Hardware wallet manufacturers typically publish a web wallet or browser add-on wallet for use with their hardware. Users can also sometimes connect their hardware wallet to a software wallet like [[Electrum]].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Trezor Suite || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || since [https://blog.trezor.io/trezor-suite-and-firmware-updates-december-2021-d1e74c3ea283 Trezor Suite 21.12.2] + Trezor Firmware 1.10.4 (Model One) / 2.4.3 (Model T)&lt;br /&gt;
|-&lt;br /&gt;
| Ledger Live (desktop app) || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Ledger Live Desktop 2.35 + Bitcoin App 2.0.0, Ledger Live Mobile support TBD. https://blockstream.info/tx/41d46e6f6e58a325eb6c913aa603f4db313f4a1db0649952f06fe2cd70546451&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey chrome app || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox Desktop app || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benma_/status/1504455969631350792&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ledger + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/_benma_/status/1504458280000761857&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Archos + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coldcard + Electrum || {{Yes}} || {{Yes}} || {{Yes}}  || {{Planned}} || Work already in progress&lt;br /&gt;
|-&lt;br /&gt;
| Ballet + app || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| SeedSigner || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Tangem + app|| {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Jade + Blockstream Green || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47] available via Blockstream Green mobile apps 3.7.6+ and desktop app 1.0.4+&lt;br /&gt;
|-&lt;br /&gt;
| Keystone || {{Yes}} || {{Acceptable|Yes, but only with BTC-only firmware}} || {{Planned|Planned for Q1 2022}} || {{Evaluating}} || https://twitter.com/KeystoneWallet/status/1460110906789031938&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Web Wallets / Wallet Service Providers ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Beach Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://twitter.com/nicolasburtey/status/1556659398365401088&lt;br /&gt;
|-&lt;br /&gt;
| Coin.Space || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitGo || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Full native segwit support on v2 platform, no plans to add native segwit support on v1 platform. Also see: https://blog.bitgo.com/native-segwit-addresses-via-bitgos-api-4946f2007be9, Taproot: https://blog.bitgo.com/taproot-support-for-bitgo-wallets-9ed97f412460&lt;br /&gt;
|-&lt;br /&gt;
| Bitnob || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/bernard_parah/status/1469962690483400706&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com web|| {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Pellicceama/status/1563171639063629828&lt;br /&gt;
|-&lt;br /&gt;
| Fireblocks || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2022}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HolyTransaction || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinb.in Coinb.in] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || open source JavaScript implementation&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/GuardaWallet/status/1194270398730448896&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Exchanges in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[AgoraDesk]] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| Anycoin Direct || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://anycoindirect.eu/en/news/details/segwit-activated&lt;br /&gt;
|-&lt;br /&gt;
| Binance || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/colemaktypo/status/1460337599499882502&lt;br /&gt;
|-&lt;br /&gt;
| Bitaroo || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBargain.co.uk || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin.de || {{Yes}} || {{No}} || {{No}} || {{No}} || https://twitter.com/Ben_deWaal/status/1460464528181936130&lt;br /&gt;
|-&lt;br /&gt;
| Bitfinex || {{Yes}} || {{No}} || {{Planned}} || {{No}} || https://twitter.com/paoloardoino/status/1460620727342796800&lt;br /&gt;
|-&lt;br /&gt;
| BitMEX || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/BitMEXResearch/status/1492152557044654082&lt;br /&gt;
|-&lt;br /&gt;
| Bitonic || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://twitter.com/BitcoinenNL/status/1460284373291384833&lt;br /&gt;
|-&lt;br /&gt;
| Bitpanda || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/christiant5r/status/1461369956252139520&lt;br /&gt;
|-&lt;br /&gt;
| Bittrex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/gqt1m6/bittrex_does_not_even_support_withdrawals_to/&lt;br /&gt;
|-&lt;br /&gt;
| Bittylicious || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bittylicious_/status/998881327347888128&lt;br /&gt;
|-&lt;br /&gt;
| Bitstamp || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} || https://www.bitstamp.net/article/weve-added-support-bech32-bitcoin-addresses-bitsta/&lt;br /&gt;
|-&lt;br /&gt;
| Bitso || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bitso/status/1203784055340314624&lt;br /&gt;
|-&lt;br /&gt;
| Bitwage || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitwala || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bottlepay || {{Yes}} || {{Yes}} || {{No}} || {{Evaluating|??}} || https://help.bottlepay.com/en/articles/4909780-what-bitcoin-addresses-do-you-support-for-on-chain-withdrawals, https://twitter.com/Stack_Russel_UK/status/1460330265751044097&lt;br /&gt;
|-&lt;br /&gt;
| BSDEX || {{Yes}} || {{No}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bull Bitcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/francispouliot_/status/1464264391155666950&lt;br /&gt;
|-&lt;br /&gt;
| CardCoins.co || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/CardCoinsCo/status/1452680654030872589&lt;br /&gt;
|-&lt;br /&gt;
| CEX.IO || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinbase.com || {{Yes}} || {{No}} || {{No|Not a priority currently}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| CoinCorner || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/CoinCorner/status/1461360995746545667&lt;br /&gt;
|-&lt;br /&gt;
| CoinFalcon || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinmate.io Coinmate.io] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://coinmate.io/blog/important-coinmate-update/&lt;br /&gt;
|-&lt;br /&gt;
| Coinsbank.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinygram || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Flyp.me || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| FTX US Derivatives || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || Formerly LedgerX&lt;br /&gt;
|-&lt;br /&gt;
| GDax || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/8c738k/coinbase_gdax_already_allows_sending_to_bc1/&lt;br /&gt;
|-&lt;br /&gt;
| Gemini || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://np.reddit.com/r/Bitcoin/comments/b66n0v/psa_gemini_is_full_on_with_native_segwit_and_uses/&lt;br /&gt;
|-&lt;br /&gt;
| Genesis || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Globitex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HitBTC || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Hodl Hodl || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://medium.com/@hodlhodl/hodl-hodl-segwit-compatible-exchange-a2231968ac56&lt;br /&gt;
|-&lt;br /&gt;
| Independent Reserve|| {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.independentreserve.com/bitcoin/investing&lt;br /&gt;
|-&lt;br /&gt;
| Itbit || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Kraken || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blog.kraken.com/post/16740/bitcoin-taproot-address-now-supported-on-kraken/&lt;br /&gt;
|-&lt;br /&gt;
| Liberalcoins || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://liberalcoins.com&lt;br /&gt;
|-&lt;br /&gt;
| [[LocalBitcoins]] || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/LocalBitcoins/status/1322194709159301120&lt;br /&gt;
|-&lt;br /&gt;
| Luno || {{Yes}} || {{No}} || {{Planned|Planned}} || {{Evaluating|??}} || https://www.luno.com/blog/en/post/luno-launches-support-for-bech32-addresses&lt;br /&gt;
|-&lt;br /&gt;
| Okcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Okcoin/status/1471563103049756672 &lt;br /&gt;
|-&lt;br /&gt;
| Paxful.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://paxful.com/support/en-us/articles/360011766520-Can-I-Withdraw-Bitcoin-from-Paxful-Wallet-to-My-External-Wallet-&lt;br /&gt;
|-&lt;br /&gt;
| Purse.io || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Poloniex.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/a3jhcf/you_can_now_withdraw_from_poloniex_to_bech32/&lt;br /&gt;
|-&lt;br /&gt;
| River.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Robinhood.com || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://robinhood.com/us/en/support/articles/cryptocurrency-wallets/#Supportedaddressformatsforcryptowithdrawals&lt;br /&gt;
|-&lt;br /&gt;
| Square CashApp || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} || https://cash.app/help/us/en-us/20211114-bitcoin-taproot-upgrade&lt;br /&gt;
|-&lt;br /&gt;
| StackinSat.com || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/StackinSat_FR/status/1500898826416230401&lt;br /&gt;
|-&lt;br /&gt;
| Strike || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/BTCBoromir/status/1460373287792521232&lt;br /&gt;
|-&lt;br /&gt;
| Swan || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/SwanBitcoin/status/1468318386916663298&lt;br /&gt;
|-&lt;br /&gt;
| TheRockTrading.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/TheRockTrading/status/976787499648512003&lt;br /&gt;
|-&lt;br /&gt;
| VBTC || {{Yes}} || {{Planned}} || {{Yes}} || {{Planned}} || https://twitter.com/VBTC_Vietnam/status/1460978196816416775&lt;br /&gt;
|-&lt;br /&gt;
| Walltime || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://walltime.info&lt;br /&gt;
|-&lt;br /&gt;
| Xapo || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitcoin ATM Models ===&lt;br /&gt;
&lt;br /&gt;
Hopefully when a model updates then all its ATMs everywhere will gain that feature. See https://coinatmradar.com/shop/buy-bitcoin-atm/&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitaccess BTM || {{Yes}} || {{Yes}} || {{Planned|Work in progress}} || {{Planned}} || https://twitter.com/DylanSeago/status/1520212294898274305&lt;br /&gt;
|-&lt;br /&gt;
| GenesisCoin || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| General Bytes || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Depending on configuration. Since version 20190613 https://www.generalbytes.com/en/support/changelog&lt;br /&gt;
|-&lt;br /&gt;
| Lamassu || {{Yes}} || {{Yes|Yes (optional)}} || {{Planned}} || {{Evaluating|??}} || https://twitter.com/LamassuBTC/status/1459918440303673349&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Blockchain Explorers ===&lt;br /&gt;
&lt;br /&gt;
To investigate bech32 capability, you can use mainnet TXIDs &amp;lt;code&amp;gt;4ef47f6eb681d5d9fa2f7e16336cd629303c635e8da51e425b76088be9c8744c&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;514a33f1d46179b89e1fea7bbb07b682ab14083a276979f91038369d1a8d689b&amp;lt;/code&amp;gt; or look up the addresses &amp;lt;code&amp;gt;bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;bc1qc7slrfxkknqcq2jevvvkdgvrt8080852dfjewde450xdlk4ugp7szw5tk9&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Some blockchain explorers can only parse the bech32 address and display it, they don&#039;t build an index so users cannot search for bech32 addresses.&lt;br /&gt;
&lt;br /&gt;
To verify bech32m readiness, you can look up the mainnet TXID &amp;lt;code&amp;gt;b10c007c60e14f9d087e0291d4d0c7869697c6681d979c6639dbd960792b4d41&amp;lt;/code&amp;gt; on which the first output should be addressed as &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqsyjer9e&amp;lt;/code&amp;gt;. Note that the superseded bech32 encoding only differs in the last six characters that encode the checksum: &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqs_3wf0qm_&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
See also: https://en.bitcoin.it/wiki/Category:Block_chain_browsers&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Display Bech32 !! Index Bech32 !! Display Bech32m !! Index Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| bitaps.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitaps.com&lt;br /&gt;
|-&lt;br /&gt;
| Bitflyer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://chainflyer.bitflyer.jp&lt;br /&gt;
|-&lt;br /&gt;
| Blockbook || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://btc1.trezor.io&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.blockchain.com/explorer&lt;br /&gt;
|-&lt;br /&gt;
| Blockchair || {{Yes}} || {{Yes}} || {{Yes|Ready, but old txns not reindexed yet}} || {{Yes|Ready, but old txns not reindexed yet}} || https://github.com/Blockchair/Blockchair.Support/issues/567#issuecomment-966393097, https://twitter.com/Blockchair/status/1458817396433731585&lt;br /&gt;
|-&lt;br /&gt;
| Blockcypher || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://live.blockcypher.com/btc&lt;br /&gt;
|-&lt;br /&gt;
| Blockonomics || {{Yes}} || {{Yes}} || {{Yes}} ||  {{Yes}} || https://www.blockonomics.co&lt;br /&gt;
|-&lt;br /&gt;
| Blockpath || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blockpath.com&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://BTC.com&lt;br /&gt;
|-&lt;br /&gt;
| Esplora || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances are https://blockstream.info/ and https://www.localbitcoinschain.com/. [https://github.com/Blockstream/esplora/issues/323 Issue] for BIP350 support.&lt;br /&gt;
|-&lt;br /&gt;
| Insight || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://insight.bitpay.com/&lt;br /&gt;
|-&lt;br /&gt;
| Mempool || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://mempool.space https://mempool.ninja https://mempool.emzy.de https://mempool.bisq.services https://mempool.bitcoin.ninja https://mempool.bitaroo.net/&lt;br /&gt;
|-&lt;br /&gt;
| OKLink || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.oklink.com&lt;br /&gt;
|-&lt;br /&gt;
| OXT || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://oxt.me/&lt;br /&gt;
|-&lt;br /&gt;
| Tradeblock || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Yes, but search field rejects bech32m addresses}} || https://tradeblock.com/bitcoin&lt;br /&gt;
|-&lt;br /&gt;
| WalletExplorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://walletexplorer.com/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Explorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitcoinexplorer.org, https://twitter.com/BitcoinExplorer/status/1425148093977309187&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Payment Processors ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Payment processors in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! P2WPKH/P2WSH Invoices !! Bech32 Withdrawal addresses !! P2TR Invoices !! Bech32m Withdrawal addresses !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://apirone.com Apirone] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment notifications, merchant dashboard, plugins for Magento, WooCommerce, OpenCart 2, Opencart 3.x, Virtuemart&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitaps.com Bitaps] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment forwarding API, Wallet API, fault tolerance callback.&lt;br /&gt;
|-&lt;br /&gt;
| [https://btcpayserver.org BTCPay Server] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Supported since 1.3.0}} || https://twitter.com/NicolasDorier/status/1432354289599451136, https://twitter.com/NicolasDorier/status/1457527754350415873&lt;br /&gt;
|-&lt;br /&gt;
| [https://coingate.com CoinGate] || {{No}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://confirmo.net CONFIRMO] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://cryptochill.com CryptoChill] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Planned}} || Highly customizable Bitcoin and Lightning Network payment gateway and custodial wallets provider. TSS/HD wallets, API, SDK.&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/nickfarrow/SatSale SatSale] || {{Yes}} || n/a || {{Yes}} || n/a || Supports any address format supported by backend Bitcoin Core. Invoices use address format configured as default there. Has no withdrawal functionality in itself, payments are received in Core wallet.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mining Pools ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Payout to Bech32 !! Payout to Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.btc.com/ BTC.com Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [http://ckpool.org/ Ckpool] || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://kano.is/ KanoPool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=789369.msg53374508#msg53374508 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [http://poolin.com/ Poolin] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5169994.msg52184844#msg52184844 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://sbicrypto.com SBICrypto Pool] || {{Yes}} || {{Acceptable|Ready to release at activation}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://slushpool.com/ Slush Pool] || {{Yes}} || {{Planned|At activation}} || [https://twitter.com/braiins_systems/status/1432376840484794375 Tweet]&lt;br /&gt;
|-&lt;br /&gt;
| [https://ukrpool.com/ Ukr Pool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5124825.msg51358033#msg51358033 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.viabtc.com/ ViaBTC Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Libraries ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Language !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin/libbase58 libbase58] || C || {{No}} || n/a || {{No}} || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/MetacoSA/NBitcoin NBitcoin] || .NET || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354289599451136&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bcoin-org/bcoin bcoin] || JS ||  {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bcoin-org/bcoin/pull/1038&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/btcsuite btcsuite/btcutil] || Go || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoinjs/bitcoinjs-lib bitcoinjs-lib] || JS || {{Yes}} || {{Yes}} || {{Yes|Yes, since v6.0.0}} || {{Acceptable|Supported but needs manual involvement}} || https://github.com/bitcoinjs/bitcoinjs-lib/issues/1522#issuecomment-887468902, https://twitter.com/junderwood4649/status/1459006392086372355&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoinj.github.io/ bitcoinj] || Java || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bitcoinj/bitcoinj/commit/183986c9801f10f1bf46bd46621e535973d39ef8&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin-s/bitcoin-s-core bitcoin-s] || Scala || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2021}} || https://twitter.com/Chris_Stewart_5/status/1459205497463136270&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/rust-bitcoin/rust-bitcoin rust-bitcoin] || Rust || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/RCasatta/status/1423695925252329476&lt;br /&gt;
|-&lt;br /&gt;
| [https://lightningdevkit.org Lightning Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|Pending BOLT update}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoindevkit.org Bitcoin Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.14.0 0.14.0]}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.19.0 0.19.0]}} || P2TR support is &amp;quot;experimental&amp;quot;, see [https://github.com/bitcoindevkit/bdk/pull/593 PR #593]&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/ElementsProject/libwally-core libwally-core] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Blockstream/gdk GDK] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 0.0.47]}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Simplexum/python-bitcointx python-bitcointx] || Python || {{Yes}} ||  {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/Simplexum/python-bitcointx/issues/57&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/dgarage/NBXplorer/ NBXPlorer] || C# || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354822888431619&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/acinq/bitcoin-kmp  Kotlin Multiplatform Bitcoin Library] || Kotlin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/realtbast/status/1458533450919649284&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/libbitcoin  Libbitcoin] || C++ || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://github.com/libbitcoin/libbitcoin-system/blob/master/include/bitcoin/system/wallet/addresses/witness_address.hpp#L41&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/chaintope/bitcoinrb Bitcoinrb] || Ruby || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/chaintope/bitcoinrb/wiki/Taproot&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
=== Other Services ===&lt;br /&gt;
&lt;br /&gt;
Casinos, marketplaces, etc that let users withdraw money&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Withdrawals !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1Broker || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://crypto.games Crypto.Games]|| {{Yes}} || [https://bitcointalk.org/index.php?topic=750760.msg31421151#msg31421151 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| YOLOdice || {{Yes}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69605</id>
		<title>Bech32 adoption</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69605"/>
		<updated>2023-01-06T00:16:49Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: error on my part&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Bech32]] is a bitcoin [[address]] format specified by [[BIP 0173]]. It is used for the native segwit version 0 output types, P2WPKH and P2WSH. The upcoming [[Taproot]] softfork will add another output type called Pay to Taproot (P2TR). P2TR outputs and future native segwit versions will be using an updated variant of [[Bech32]], called [[Bech32m]] (specified by [[BIP 0350]]). This page tracks the adoption of [[Bech32]] and [[Bech32m]].&lt;br /&gt;
&lt;br /&gt;
Ideally wallets and services would first support &#039;&#039;sending to&#039;&#039; new addresses. When most wallets and services support sending to the new address type, people are more likely to adopt it for receiving. &lt;br /&gt;
&lt;br /&gt;
The amount of bech32 addresses on the blockchain is tracked on this website: https://p2sh.info/dashboard/db/bech32-statistics?orgId=1&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| {{Evaluating|??}} || Maybe / Haven&#039;t checked / placeholder&lt;br /&gt;
|-&lt;br /&gt;
| {{Planned}} || The developers said they plan to&lt;br /&gt;
|-&lt;br /&gt;
| {{Acceptable|PR Merged}} || In the case of software, code has been written and merged, and it will be in next release.&lt;br /&gt;
|-&lt;br /&gt;
| {{Yes}} || Feature has been released&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Software Wallets ===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Armory || {{Yes}} || {{No}} || {{Planned|Planned around activation}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| AQUA || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| bcoin || {{Yes}} || {{Yes}} || {{Yes|Since 2.2.0}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bisq || {{Yes}} || {{Yes}} || {{Evaluating|Dependent on BitcoinJ}} || {{Evaluating|??}} || As of v1.5.0 https://bisq.network/blog/bisq-v1.5.0-highlights/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Core || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} || Uses P2WPKH as default address since version [https://bitcoin.org/en/release/v0.20.0 0.20.0]. Creating P2TR addresses requires manual import for now.&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Knots || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Green || {{Yes}} || {{Yes}} || {{Yes|Since Mobile 3.7.6+, Desktop 1.0.4+}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47]&lt;br /&gt;
|-&lt;br /&gt;
| Breadwallet || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/BRDapp/comments/9xx1hq/as_of_today_brd_fully_supports_native_segwit/&lt;br /&gt;
|-&lt;br /&gt;
| [https://play.google.com/store/apps/details?id=de.schildbach.wallet Bitcoin Wallet for Android] || {{Yes}} || {{Yes}} || {{Yes|Since 9.0}} || {{No}} || Tested as of v9.20 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BlueWallet || {{Yes}} || {{Yes}} || {{Yes|Since 6.2.14}} || {{No}} || Tested as of v6.3.1 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Breez || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v0.12.1-beta (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{No}} || {{No}} || {{No}} || {{No}} || wallet discontinued: https://wallet.btc.com/#/announcement&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/unchained-capital/caravan Caravan] || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Casa || {{Yes}} || {{No}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| C-Lightning || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinomi || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v1.26.0 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Electrum || {{Yes}} || {{Yes}} || {{Yes|Since 4.1.0}} || {{Planned|Planned: Descriptor-based keypath spends}} || https://github.com/spesmilo/electrum/issues/7544&lt;br /&gt;
|-&lt;br /&gt;
| Exodus || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not yet planned}} || https://support.exodus.com/article/1480-bitcoin-faqs-learn-more-about-btc#&lt;br /&gt;
|-&lt;br /&gt;
| Fully Noded || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Since v0.2.26}} || https://twitter.com/FullyNoded/status/1438652812410298370&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || [https://twitter.com/GuardaWallet/status/1194270398730448896 twitter announcement]&lt;br /&gt;
|-&lt;br /&gt;
| Iris Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/cryptoquick/status/1585187190627528710&lt;br /&gt;
|-&lt;br /&gt;
| JoinMarket || {{Yes}} || {{Yes}} || {{Yes|Since v0.9.5}} || {{Evaluating|??}} || &lt;br /&gt;
|-&lt;br /&gt;
| LND || {{Yes}} || {{Yes}} || {{Yes|Since v0.15}} || {{Yes|Since v0.15}} || The coming LND v0.15 release will introduce full P2TR support including scriptpath spends, PSBT signing, and a MuSig2 API.&lt;br /&gt;
|-&lt;br /&gt;
| Muun || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/MuunWallet/status/1459294066135474177&lt;br /&gt;
|-&lt;br /&gt;
| Mycelium || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Bech32m not supported as of version 3.16.0.13, tested on October 12th, 2022. https://github.com/mycelium-com/wallet-android/issues/645&lt;br /&gt;
|-&lt;br /&gt;
| Nunchuk || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/nunchuk_io/status/1511365917808103426&lt;br /&gt;
|-&lt;br /&gt;
| Phoenix || {{Yes}} || {{Yes}} || {{Evaluating|Support in iOS, but not Android}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Samourai Wallet || {{Yes}} || {{Yes}} || {{Yes|Since v0.99.98}}  || {{No|Currently not planned}} || https://twitter.com/SamouraiWallet/status/1415788631491497985?s=20&lt;br /&gt;
|-&lt;br /&gt;
| Sparrow Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/SparrowWallet/status/1415632270434705408&lt;br /&gt;
|-&lt;br /&gt;
| Specter Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benkaufman/status/1431293856675508228&lt;br /&gt;
|-&lt;br /&gt;
| Trust Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not planned}} || https://github.com/trustwallet/wallet-core/releases/tag/2.6.5, https://twitter.com/catenocrypt/status/1520152930065817601&lt;br /&gt;
|-&lt;br /&gt;
| Uniblow || {{Yes}} || {{Yes}} || {{Yes | Since v1.2.2}} || {{No|Not yet planned}} || [https://github.com/bitlogik/uniblow/releases/tag/v1.2.2 release1.2.2]&lt;br /&gt;
|-&lt;br /&gt;
| Wallet of Satoshi || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/walletofsatoshi/status/1459782761472872451 &lt;br /&gt;
|-&lt;br /&gt;
| Wasabi Wallet || {{Yes}} || {{Yes}} || {{Yes | Since Wasabi 2.0}} || {{Planned|Planned: via NBitcoin}} || https://twitter.com/NicolasDorier/status/1413693010236170241 &amp;lt;br&amp;gt; https://mempool.space/testnet/tx/05a23151b6ad114fb71e851147861d6c992a438ad4f62d6f0749bc9f200ef254&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Hardware Wallets ===&lt;br /&gt;
&lt;br /&gt;
Hardware wallet manufacturers typically publish a web wallet or browser add-on wallet for use with their hardware. Users can also sometimes connect their hardware wallet to a software wallet like [[Electrum]].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Trezor Suite || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || since [https://blog.trezor.io/trezor-suite-and-firmware-updates-december-2021-d1e74c3ea283 Trezor Suite 21.12.2] + Trezor Firmware 1.10.4 (Model One) / 2.4.3 (Model T)&lt;br /&gt;
|-&lt;br /&gt;
| Ledger Live (desktop app) || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Ledger Live Desktop 2.35 + Bitcoin App 2.0.0, Ledger Live Mobile support TBD. https://blockstream.info/tx/41d46e6f6e58a325eb6c913aa603f4db313f4a1db0649952f06fe2cd70546451&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey chrome app || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox Desktop app || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benma_/status/1504455969631350792&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ledger + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/_benma_/status/1504458280000761857&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Archos + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coldcard + Electrum || {{Yes}} || {{Yes}} || {{Yes}}  || {{Planned}} || Work already in progress&lt;br /&gt;
|-&lt;br /&gt;
| Ballet + app || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| SeedSigner || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Tangem + app|| {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Jade + Blockstream Green || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47] available via Blockstream Green mobile apps 3.7.6+ and desktop app 1.0.4+&lt;br /&gt;
|-&lt;br /&gt;
| Keystone || {{Yes}} || {{Acceptable|Yes, but only with BTC-only firmware}} || {{Planned|Planned for Q1 2022}} || {{Evaluating}} || https://twitter.com/KeystoneWallet/status/1460110906789031938&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Web Wallets / Wallet Service Providers ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Beach Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://twitter.com/nicolasburtey/status/1556659398365401088&lt;br /&gt;
|-&lt;br /&gt;
| Coin.Space || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitGo || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Full native segwit support on v2 platform, no plans to add native segwit support on v1 platform. Also see: https://blog.bitgo.com/native-segwit-addresses-via-bitgos-api-4946f2007be9, Taproot: https://blog.bitgo.com/taproot-support-for-bitgo-wallets-9ed97f412460&lt;br /&gt;
|-&lt;br /&gt;
| Bitnob || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/bernard_parah/status/1469962690483400706&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com web|| {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Pellicceama/status/1563171639063629828&lt;br /&gt;
|-&lt;br /&gt;
| Fireblocks || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2022}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HolyTransaction || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinb.in Coinb.in] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || open source JavaScript implementation&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/GuardaWallet/status/1194270398730448896&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Exchanges in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[AgoraDesk]] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| Anycoin Direct || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://anycoindirect.eu/en/news/details/segwit-activated&lt;br /&gt;
|-&lt;br /&gt;
| Binance || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/colemaktypo/status/1460337599499882502&lt;br /&gt;
|-&lt;br /&gt;
| Bitaroo || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBargain.co.uk || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin.de || {{Yes}} || {{No}} || {{No}} || {{No}} || https://twitter.com/Ben_deWaal/status/1460464528181936130&lt;br /&gt;
|-&lt;br /&gt;
| Bitfinex || {{Yes}} || {{No}} || {{Planned}} || {{No}} || https://twitter.com/paoloardoino/status/1460620727342796800&lt;br /&gt;
|-&lt;br /&gt;
| BitMEX || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/BitMEXResearch/status/1492152557044654082&lt;br /&gt;
|-&lt;br /&gt;
| Bitonic || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://twitter.com/BitcoinenNL/status/1460284373291384833&lt;br /&gt;
|-&lt;br /&gt;
| Bitpanda || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/christiant5r/status/1461369956252139520&lt;br /&gt;
|-&lt;br /&gt;
| Bittrex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/gqt1m6/bittrex_does_not_even_support_withdrawals_to/&lt;br /&gt;
|-&lt;br /&gt;
| Bittylicious || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bittylicious_/status/998881327347888128&lt;br /&gt;
|-&lt;br /&gt;
| Bitstamp || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} || https://www.bitstamp.net/article/weve-added-support-bech32-bitcoin-addresses-bitsta/&lt;br /&gt;
|-&lt;br /&gt;
| Bitso || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bitso/status/1203784055340314624&lt;br /&gt;
|-&lt;br /&gt;
| Bitwage || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitwala || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bottlepay || {{Yes}} || {{Yes}} || {{No}} || {{Evaluating|??}} || https://help.bottlepay.com/en/articles/4909780-what-bitcoin-addresses-do-you-support-for-on-chain-withdrawals, https://twitter.com/Stack_Russel_UK/status/1460330265751044097&lt;br /&gt;
|-&lt;br /&gt;
| BSDEX || {{Yes}} || {{No}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bull Bitcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/francispouliot_/status/1464264391155666950&lt;br /&gt;
|-&lt;br /&gt;
| CardCoins.co || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/CardCoinsCo/status/1452680654030872589&lt;br /&gt;
|-&lt;br /&gt;
| CEX.IO || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinbase.com || {{Yes}} || {{No}} || {{No|Not a priority currently}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| CoinCorner || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/CoinCorner/status/1461360995746545667&lt;br /&gt;
|-&lt;br /&gt;
| CoinFalcon || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinmate.io Coinmate.io] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://coinmate.io/blog/important-coinmate-update/&lt;br /&gt;
|-&lt;br /&gt;
| Coinsbank.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinygram || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Flyp.me || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| FTX US Derivatives || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || Formerly LedgerX&lt;br /&gt;
|-&lt;br /&gt;
| GDax || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/8c738k/coinbase_gdax_already_allows_sending_to_bc1/&lt;br /&gt;
|-&lt;br /&gt;
| Gemini || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://np.reddit.com/r/Bitcoin/comments/b66n0v/psa_gemini_is_full_on_with_native_segwit_and_uses/&lt;br /&gt;
|-&lt;br /&gt;
| Genesis || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Globitex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HitBTC || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Hodl Hodl || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://medium.com/@hodlhodl/hodl-hodl-segwit-compatible-exchange-a2231968ac56&lt;br /&gt;
|-&lt;br /&gt;
| Independent Reserve|| {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.independentreserve.com/bitcoin/investing&lt;br /&gt;
|-&lt;br /&gt;
| Itbit || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Kraken || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blog.kraken.com/post/16740/bitcoin-taproot-address-now-supported-on-kraken/&lt;br /&gt;
|-&lt;br /&gt;
| Liberalcoins || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://liberalcoins.com&lt;br /&gt;
|-&lt;br /&gt;
| [[LocalBitcoins]] || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/LocalBitcoins/status/1322194709159301120&lt;br /&gt;
|-&lt;br /&gt;
| Luno || {{Yes}} || {{No}} || {{Planned|Planned}} || {{Evaluating|??}} || https://www.luno.com/blog/en/post/luno-launches-support-for-bech32-addresses&lt;br /&gt;
|-&lt;br /&gt;
| Okcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Okcoin/status/1471563103049756672 &lt;br /&gt;
|-&lt;br /&gt;
| Paxful.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://paxful.com/support/en-us/articles/360011766520-Can-I-Withdraw-Bitcoin-from-Paxful-Wallet-to-My-External-Wallet-&lt;br /&gt;
|-&lt;br /&gt;
| Purse.io || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Poloniex.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/a3jhcf/you_can_now_withdraw_from_poloniex_to_bech32/&lt;br /&gt;
|-&lt;br /&gt;
| River.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Robinhood.com || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://robinhood.com/us/en/support/articles/cryptocurrency-wallets/#Supportedaddressformatsforcryptowithdrawals&lt;br /&gt;
|-&lt;br /&gt;
| Square CashApp || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} || https://cash.app/help/us/en-us/20211114-bitcoin-taproot-upgrade&lt;br /&gt;
|-&lt;br /&gt;
| StackinSat.com || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/StackinSat_FR/status/1500898826416230401&lt;br /&gt;
|-&lt;br /&gt;
| Strike || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/BTCBoromir/status/1460373287792521232&lt;br /&gt;
|-&lt;br /&gt;
| Swan || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/SwanBitcoin/status/1468318386916663298&lt;br /&gt;
|-&lt;br /&gt;
| TheRockTrading.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/TheRockTrading/status/976787499648512003&lt;br /&gt;
|-&lt;br /&gt;
| VBTC || {{Yes}} || {{Planned}} || {{Yes}} || {{Planned}} || https://twitter.com/VBTC_Vietnam/status/1460978196816416775&lt;br /&gt;
|-&lt;br /&gt;
| Walltime || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://walltime.info&lt;br /&gt;
|-&lt;br /&gt;
| Xapo || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitcoin ATM Models ===&lt;br /&gt;
&lt;br /&gt;
Hopefully when a model updates then all its ATMs everywhere will gain that feature. See https://coinatmradar.com/shop/buy-bitcoin-atm/&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitaccess BTM || {{Yes}} || {{Yes}} || {{Planned|Work in progress}} || {{Planned}} || https://twitter.com/DylanSeago/status/1520212294898274305&lt;br /&gt;
|-&lt;br /&gt;
| GenesisCoin || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| General Bytes || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Depending on configuration. Since version 20190613 https://www.generalbytes.com/en/support/changelog&lt;br /&gt;
|-&lt;br /&gt;
| Lamassu || {{Yes}} || {{Yes|Yes (optional)}} || {{Planned}} || {{Evaluating|??}} || https://twitter.com/LamassuBTC/status/1459918440303673349&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Blockchain Explorers ===&lt;br /&gt;
&lt;br /&gt;
To investigate bech32 capability, you can use mainnet TXIDs &amp;lt;code&amp;gt;4ef47f6eb681d5d9fa2f7e16336cd629303c635e8da51e425b76088be9c8744c&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;514a33f1d46179b89e1fea7bbb07b682ab14083a276979f91038369d1a8d689b&amp;lt;/code&amp;gt; or look up the addresses &amp;lt;code&amp;gt;bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;bc1qc7slrfxkknqcq2jevvvkdgvrt8080852dfjewde450xdlk4ugp7szw5tk9&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Some blockchain explorers can only parse the bech32 address and display it, they don&#039;t build an index so users cannot search for bech32 addresses.&lt;br /&gt;
&lt;br /&gt;
To verify bech32m readiness, you can look up the mainnet TXID &amp;lt;code&amp;gt;b10c007c60e14f9d087e0291d4d0c7869697c6681d979c6639dbd960792b4d41&amp;lt;/code&amp;gt; on which the first output should be addressed as &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqsyjer9e&amp;lt;/code&amp;gt;. Note that the superseded bech32 encoding only differs in the last six characters that encode the checksum: &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqs_3wf0qm_&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
See also: https://en.bitcoin.it/wiki/Category:Block_chain_browsers&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Display Bech32 !! Index Bech32 !! Display Bech32m !! Index Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| bitaps.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitaps.com&lt;br /&gt;
|-&lt;br /&gt;
| Bitflyer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://chainflyer.bitflyer.jp&lt;br /&gt;
|-&lt;br /&gt;
| Blockbook || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://btc1.trezor.io&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.blockchain.com/explorer&lt;br /&gt;
|-&lt;br /&gt;
| Blockchair || {{Yes}} || {{Yes}} || {{Yes|Ready, but old txns not reindexed yet}} || {{Yes|Ready, but old txns not reindexed yet}} || https://github.com/Blockchair/Blockchair.Support/issues/567#issuecomment-966393097, https://twitter.com/Blockchair/status/1458817396433731585&lt;br /&gt;
|-&lt;br /&gt;
| Blockcypher || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://live.blockcypher.com/btc&lt;br /&gt;
|-&lt;br /&gt;
| Blockonomics || {{Yes}} || {{Yes}} || {{Yes}} ||  {{Yes}} || https://www.blockonomics.co&lt;br /&gt;
|-&lt;br /&gt;
| Blockpath || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blockpath.com&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://BTC.com&lt;br /&gt;
|-&lt;br /&gt;
| Esplora || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances are https://blockstream.info/ and https://www.localbitcoinschain.com/. [https://github.com/Blockstream/esplora/issues/323 Issue] for BIP350 support.&lt;br /&gt;
|-&lt;br /&gt;
| Insight || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://insight.bitpay.com/&lt;br /&gt;
|-&lt;br /&gt;
| Mempool || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://mempool.space https://mempool.ninja https://mempool.emzy.de https://mempool.bisq.services https://mempool.bitcoin.ninja https://mempool.bitaroo.net/&lt;br /&gt;
|-&lt;br /&gt;
| OKLink || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.oklink.com&lt;br /&gt;
|-&lt;br /&gt;
| OXT || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://oxt.me/&lt;br /&gt;
|-&lt;br /&gt;
| Tradeblock || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Yes, but search field rejects bech32m addresses}} || https://tradeblock.com/bitcoin&lt;br /&gt;
|-&lt;br /&gt;
| WalletExplorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://walletexplorer.com/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Explorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitcoinexplorer.org, https://twitter.com/BitcoinExplorer/status/1425148093977309187&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Payment Processors ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Payment processors in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! P2WPKH/P2WSH Invoices !! Bech32 Withdrawal addresses !! P2TR Invoices !! Bech32m Withdrawal addresses !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://apirone.com Apirone] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment notifications, merchant dashboard, plugins for Magento, WooCommerce, OpenCart 2, Opencart 3.x, Virtuemart&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitaps.com Bitaps] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment forwarding API, Wallet API, fault tolerance callback.&lt;br /&gt;
|-&lt;br /&gt;
| [https://btcpayserver.org BTCPay Server] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Supported since 1.3.0}} || https://twitter.com/NicolasDorier/status/1432354289599451136, https://twitter.com/NicolasDorier/status/1457527754350415873&lt;br /&gt;
|-&lt;br /&gt;
| [https://coingate.com CoinGate] || {{No}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://confirmo.net CONFIRMO] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://cryptochill.com CryptoChill] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Planned}} || Highly customizable Bitcoin and Lightning Network payment gateway and custodial wallets provider. TSS/HD wallets, API, SDK.&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/nickfarrow/SatSale SatSale] || {{Yes}} || n/a || {{Yes}} || n/a || Supports any address format supported by backend Bitcoin Core. Invoices use address format configured as default there. Has no withdrawal functionality in itself, payments are received in Core wallet.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mining Pools ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Payout to Bech32 !! Payout to Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.btc.com/ BTC.com Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [http://ckpool.org/ Ckpool] || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://kano.is/ KanoPool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=789369.msg53374508#msg53374508 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [http://poolin.com/ Poolin] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5169994.msg52184844#msg52184844 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://sbicrypto.com SBICrypto Pool] || {{Yes}} || {{Acceptable|Ready to release at activation}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://slushpool.com/ Slush Pool] || {{Yes}} || {{Planned|At activation}} || [https://twitter.com/braiins_systems/status/1432376840484794375 Tweet]&lt;br /&gt;
|-&lt;br /&gt;
| [https://ukrpool.com/ Ukr Pool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5124825.msg51358033#msg51358033 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.viabtc.com/ ViaBTC Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Libraries ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Language !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin/libbase58 libbase58] || C || {{No}} || n/a || {{No}} || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/MetacoSA/NBitcoin NBitcoin] || .NET || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354289599451136&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bcoin-org/bcoin bcoin] || JS ||  {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bcoin-org/bcoin/pull/1038&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/btcsuite btcsuite/btcutil] || Go || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoinjs/bitcoinjs-lib bitcoinjs-lib] || JS || {{Yes}} || {{Yes}} || {{Yes|Yes, since v6.0.0}} || {{Acceptable|Supported but needs manual involvement}} || https://github.com/bitcoinjs/bitcoinjs-lib/issues/1522#issuecomment-887468902, https://twitter.com/junderwood4649/status/1459006392086372355&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoinj.github.io/ bitcoinj] || Java || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bitcoinj/bitcoinj/commit/183986c9801f10f1bf46bd46621e535973d39ef8&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin-s/bitcoin-s-core bitcoin-s] || Scala || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2021}} || https://twitter.com/Chris_Stewart_5/status/1459205497463136270&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/rust-bitcoin/rust-bitcoin rust-bitcoin] || Rust || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/RCasatta/status/1423695925252329476&lt;br /&gt;
|-&lt;br /&gt;
| [https://lightningdevkit.org Lightning Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|Pending BOLT update}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoindevkit.org Bitcoin Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.14.0 0.14.0]}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.19.0 0.19.0]}} || P2TR support is &amp;quot;experimental&amp;quot;, see [https://github.com/bitcoindevkit/bdk/pull/593 PR #593]&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/ElementsProject/libwally-core libwally-core] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Blockstream/gdk GDK] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 0.0.47]}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Simplexum/python-bitcointx python-bitcointx] || Python || {{Yes}} ||  {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/Simplexum/python-bitcointx/issues/57&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/dgarage/NBXplorer/ NBXPlorer] || C# || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354822888431619&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/acinq/bitcoin-kmp  Kotlin Multiplatform Bitcoin Library] || Kotlin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/realtbast/status/1458533450919649284&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/libbitcoin  Libbitcoin] || C++ || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://github.com/libbitcoin/libbitcoin-system/blob/master/include/bitcoin/system/wallet/addresses/witness_address.hpp#L41&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/chaintope/bitcoinrb Bitcoinrb] || Ruby || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/chaintope/bitcoinrb/wiki/Taproot&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
=== Other Services ===&lt;br /&gt;
&lt;br /&gt;
Casinos, marketplaces, etc that let users withdraw money&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Withdrawals !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1Broker || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://crypto.games Crypto.Games]|| {{Yes}} || [https://bitcointalk.org/index.php?topic=750760.msg31421151#msg31421151 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| YOLOdice || {{Yes}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69604</id>
		<title>Bech32 adoption</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69604"/>
		<updated>2023-01-05T23:47:13Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: /* Software Wallets */ added info on btc.com wallet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Bech32]] is a bitcoin [[address]] format specified by [[BIP 0173]]. It is used for the native segwit version 0 output types, P2WPKH and P2WSH. The upcoming [[Taproot]] softfork will add another output type called Pay to Taproot (P2TR). P2TR outputs and future native segwit versions will be using an updated variant of [[Bech32]], called [[Bech32m]] (specified by [[BIP 0350]]). This page tracks the adoption of [[Bech32]] and [[Bech32m]].&lt;br /&gt;
&lt;br /&gt;
Ideally wallets and services would first support &#039;&#039;sending to&#039;&#039; new addresses. When most wallets and services support sending to the new address type, people are more likely to adopt it for receiving. &lt;br /&gt;
&lt;br /&gt;
The amount of bech32 addresses on the blockchain is tracked on this website: https://p2sh.info/dashboard/db/bech32-statistics?orgId=1&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| {{Evaluating|??}} || Maybe / Haven&#039;t checked / placeholder&lt;br /&gt;
|-&lt;br /&gt;
| {{Planned}} || The developers said they plan to&lt;br /&gt;
|-&lt;br /&gt;
| {{Acceptable|PR Merged}} || In the case of software, code has been written and merged, and it will be in next release.&lt;br /&gt;
|-&lt;br /&gt;
| {{Yes}} || Feature has been released&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Software Wallets ===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Armory || {{Yes}} || {{No}} || {{Planned|Planned around activation}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| AQUA || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| bcoin || {{Yes}} || {{Yes}} || {{Yes|Since 2.2.0}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bisq || {{Yes}} || {{Yes}} || {{Evaluating|Dependent on BitcoinJ}} || {{Evaluating|??}} || As of v1.5.0 https://bisq.network/blog/bisq-v1.5.0-highlights/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Core || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} || Uses P2WPKH as default address since version [https://bitcoin.org/en/release/v0.20.0 0.20.0]. Creating P2TR addresses requires manual import for now.&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Knots || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Green || {{Yes}} || {{Yes}} || {{Yes|Since Mobile 3.7.6+, Desktop 1.0.4+}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47]&lt;br /&gt;
|-&lt;br /&gt;
| Breadwallet || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/BRDapp/comments/9xx1hq/as_of_today_brd_fully_supports_native_segwit/&lt;br /&gt;
|-&lt;br /&gt;
| [https://play.google.com/store/apps/details?id=de.schildbach.wallet Bitcoin Wallet for Android] || {{Yes}} || {{Yes}} || {{Yes|Since 9.0}} || {{No}} || Tested as of v9.20 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BlueWallet || {{Yes}} || {{Yes}} || {{Yes|Since 6.2.14}} || {{No}} || Tested as of v6.3.1 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Breez || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v0.12.1-beta (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{No}} || {{No}} || {{No}} || {{No}} || wallet discontinued: https://wallet.btc.com/#/announcement&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/unchained-capital/caravan Caravan] || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Casa || {{Yes}} || {{No}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| C-Lightning || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinomi || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v1.26.0 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Electrum || {{Yes}} || {{Yes}} || {{Yes|Since 4.1.0}} || {{Planned|Planned: Descriptor-based keypath spends}} || https://github.com/spesmilo/electrum/issues/7544&lt;br /&gt;
|-&lt;br /&gt;
| Exodus || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not yet planned}} || https://support.exodus.com/article/1480-bitcoin-faqs-learn-more-about-btc#&lt;br /&gt;
|-&lt;br /&gt;
| Fully Noded || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Since v0.2.26}} || https://twitter.com/FullyNoded/status/1438652812410298370&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || [https://twitter.com/GuardaWallet/status/1194270398730448896 twitter announcement]&lt;br /&gt;
|-&lt;br /&gt;
| Iris Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/cryptoquick/status/1585187190627528710&lt;br /&gt;
|-&lt;br /&gt;
| JoinMarket || {{Yes}} || {{Yes}} || {{Yes|Since v0.9.5}} || {{Evaluating|??}} || &lt;br /&gt;
|-&lt;br /&gt;
| LND || {{Yes}} || {{Yes}} || {{Yes|Since v0.15}} || {{Yes|Since v0.15}} || The coming LND v0.15 release will introduce full P2TR support including scriptpath spends, PSBT signing, and a MuSig2 API.&lt;br /&gt;
|-&lt;br /&gt;
| Muun || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/MuunWallet/status/1459294066135474177&lt;br /&gt;
|-&lt;br /&gt;
| Mycelium || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Bech32m not supported as of version 3.16.0.13, tested on October 12th, 2022. https://github.com/mycelium-com/wallet-android/issues/645&lt;br /&gt;
|-&lt;br /&gt;
| Nunchuk || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/nunchuk_io/status/1511365917808103426&lt;br /&gt;
|-&lt;br /&gt;
| Phoenix || {{Yes}} || {{Yes}} || {{Evaluating|Support in iOS, but not Android}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Samourai Wallet || {{Yes}} || {{Yes}} || {{Yes|Since v0.99.98}}  || {{No|Currently not planned}} || https://twitter.com/SamouraiWallet/status/1415788631491497985?s=20&lt;br /&gt;
|-&lt;br /&gt;
| Sparrow Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/SparrowWallet/status/1415632270434705408&lt;br /&gt;
|-&lt;br /&gt;
| Specter Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benkaufman/status/1431293856675508228&lt;br /&gt;
|-&lt;br /&gt;
| Trust Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not planned}} || https://github.com/trustwallet/wallet-core/releases/tag/2.6.5, https://twitter.com/catenocrypt/status/1520152930065817601&lt;br /&gt;
|-&lt;br /&gt;
| Uniblow || {{Yes}} || {{Yes}} || {{Yes | Since v1.2.2}} || {{No|Not yet planned}} || [https://github.com/bitlogik/uniblow/releases/tag/v1.2.2 release1.2.2]&lt;br /&gt;
|-&lt;br /&gt;
| Wallet of Satoshi || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/walletofsatoshi/status/1459782761472872451 &lt;br /&gt;
|-&lt;br /&gt;
| Wasabi Wallet || {{Yes}} || {{Yes}} || {{Yes | Since Wasabi 2.0}} || {{Planned|Planned: via NBitcoin}} || https://twitter.com/NicolasDorier/status/1413693010236170241 &amp;lt;br&amp;gt; https://mempool.space/testnet/tx/05a23151b6ad114fb71e851147861d6c992a438ad4f62d6f0749bc9f200ef254&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Hardware Wallets ===&lt;br /&gt;
&lt;br /&gt;
Hardware wallet manufacturers typically publish a web wallet or browser add-on wallet for use with their hardware. Users can also sometimes connect their hardware wallet to a software wallet like [[Electrum]].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Trezor Suite || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || since [https://blog.trezor.io/trezor-suite-and-firmware-updates-december-2021-d1e74c3ea283 Trezor Suite 21.12.2] + Trezor Firmware 1.10.4 (Model One) / 2.4.3 (Model T)&lt;br /&gt;
|-&lt;br /&gt;
| Ledger Live (desktop app) || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Ledger Live Desktop 2.35 + Bitcoin App 2.0.0, Ledger Live Mobile support TBD. https://blockstream.info/tx/41d46e6f6e58a325eb6c913aa603f4db313f4a1db0649952f06fe2cd70546451&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey chrome app || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox Desktop app || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benma_/status/1504455969631350792&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ledger + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/_benma_/status/1504458280000761857&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Archos + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coldcard + Electrum || {{Yes}} || {{Yes}} || {{Yes}}  || {{Planned}} || Work already in progress&lt;br /&gt;
|-&lt;br /&gt;
| Ballet + app || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| SeedSigner || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Tangem + app|| {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Jade + Blockstream Green || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47] available via Blockstream Green mobile apps 3.7.6+ and desktop app 1.0.4+&lt;br /&gt;
|-&lt;br /&gt;
| Keystone || {{Yes}} || {{Acceptable|Yes, but only with BTC-only firmware}} || {{Planned|Planned for Q1 2022}} || {{Evaluating}} || https://twitter.com/KeystoneWallet/status/1460110906789031938&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Web Wallets / Wallet Service Providers ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Beach Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://twitter.com/nicolasburtey/status/1556659398365401088&lt;br /&gt;
|-&lt;br /&gt;
| Coin.Space || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitGo || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Full native segwit support on v2 platform, no plans to add native segwit support on v1 platform. Also see: https://blog.bitgo.com/native-segwit-addresses-via-bitgos-api-4946f2007be9, Taproot: https://blog.bitgo.com/taproot-support-for-bitgo-wallets-9ed97f412460&lt;br /&gt;
|-&lt;br /&gt;
| Bitnob || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/bernard_parah/status/1469962690483400706&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com web|| {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Pellicceama/status/1563171639063629828&lt;br /&gt;
|-&lt;br /&gt;
| Fireblocks || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2022}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HolyTransaction || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinb.in Coinb.in] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || open source JavaScript implementation&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/GuardaWallet/status/1194270398730448896&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Exchanges in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[AgoraDesk]] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| Anycoin Direct || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://anycoindirect.eu/en/news/details/segwit-activated&lt;br /&gt;
|-&lt;br /&gt;
| Binance || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/colemaktypo/status/1460337599499882502&lt;br /&gt;
|-&lt;br /&gt;
| Bitaroo || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBargain.co.uk || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin.de || {{Yes}} || {{No}} || {{No}} || {{No}} || https://twitter.com/Ben_deWaal/status/1460464528181936130&lt;br /&gt;
|-&lt;br /&gt;
| Bitfinex || {{Yes}} || {{No}} || {{Planned}} || {{No}} || https://twitter.com/paoloardoino/status/1460620727342796800&lt;br /&gt;
|-&lt;br /&gt;
| BitMEX || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/BitMEXResearch/status/1492152557044654082&lt;br /&gt;
|-&lt;br /&gt;
| Bitonic || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://twitter.com/BitcoinenNL/status/1460284373291384833&lt;br /&gt;
|-&lt;br /&gt;
| Bitpanda || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/christiant5r/status/1461369956252139520&lt;br /&gt;
|-&lt;br /&gt;
| Bittrex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/gqt1m6/bittrex_does_not_even_support_withdrawals_to/&lt;br /&gt;
|-&lt;br /&gt;
| Bittylicious || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bittylicious_/status/998881327347888128&lt;br /&gt;
|-&lt;br /&gt;
| Bitstamp || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} || https://www.bitstamp.net/article/weve-added-support-bech32-bitcoin-addresses-bitsta/&lt;br /&gt;
|-&lt;br /&gt;
| Bitso || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bitso/status/1203784055340314624&lt;br /&gt;
|-&lt;br /&gt;
| Bitwage || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitwala || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bottlepay || {{Yes}} || {{Yes}} || {{No}} || {{Evaluating|??}} || https://help.bottlepay.com/en/articles/4909780-what-bitcoin-addresses-do-you-support-for-on-chain-withdrawals, https://twitter.com/Stack_Russel_UK/status/1460330265751044097&lt;br /&gt;
|-&lt;br /&gt;
| BSDEX || {{Yes}} || {{No}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bull Bitcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/francispouliot_/status/1464264391155666950&lt;br /&gt;
|-&lt;br /&gt;
| CardCoins.co || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/CardCoinsCo/status/1452680654030872589&lt;br /&gt;
|-&lt;br /&gt;
| CEX.IO || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinbase.com || {{Yes}} || {{No}} || {{No|Not a priority currently}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| CoinCorner || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/CoinCorner/status/1461360995746545667&lt;br /&gt;
|-&lt;br /&gt;
| CoinFalcon || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinmate.io Coinmate.io] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://coinmate.io/blog/important-coinmate-update/&lt;br /&gt;
|-&lt;br /&gt;
| Coinsbank.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinygram || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Flyp.me || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| FTX US Derivatives || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || Formerly LedgerX&lt;br /&gt;
|-&lt;br /&gt;
| GDax || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/8c738k/coinbase_gdax_already_allows_sending_to_bc1/&lt;br /&gt;
|-&lt;br /&gt;
| Gemini || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://np.reddit.com/r/Bitcoin/comments/b66n0v/psa_gemini_is_full_on_with_native_segwit_and_uses/&lt;br /&gt;
|-&lt;br /&gt;
| Genesis || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Globitex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HitBTC || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Hodl Hodl || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://medium.com/@hodlhodl/hodl-hodl-segwit-compatible-exchange-a2231968ac56&lt;br /&gt;
|-&lt;br /&gt;
| Independent Reserve|| {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.independentreserve.com/bitcoin/investing&lt;br /&gt;
|-&lt;br /&gt;
| Itbit || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Kraken || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blog.kraken.com/post/16740/bitcoin-taproot-address-now-supported-on-kraken/&lt;br /&gt;
|-&lt;br /&gt;
| Liberalcoins || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://liberalcoins.com&lt;br /&gt;
|-&lt;br /&gt;
| [[LocalBitcoins]] || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/LocalBitcoins/status/1322194709159301120&lt;br /&gt;
|-&lt;br /&gt;
| Luno || {{Yes}} || {{No}} || {{Planned|Planned}} || {{Evaluating|??}} || https://www.luno.com/blog/en/post/luno-launches-support-for-bech32-addresses&lt;br /&gt;
|-&lt;br /&gt;
| Okcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Okcoin/status/1471563103049756672 &lt;br /&gt;
|-&lt;br /&gt;
| Paxful.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://paxful.com/support/en-us/articles/360011766520-Can-I-Withdraw-Bitcoin-from-Paxful-Wallet-to-My-External-Wallet-&lt;br /&gt;
|-&lt;br /&gt;
| Purse.io || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Poloniex.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/a3jhcf/you_can_now_withdraw_from_poloniex_to_bech32/&lt;br /&gt;
|-&lt;br /&gt;
| River.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Robinhood.com || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://robinhood.com/us/en/support/articles/cryptocurrency-wallets/#Supportedaddressformatsforcryptowithdrawals&lt;br /&gt;
|-&lt;br /&gt;
| Square CashApp || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} || https://cash.app/help/us/en-us/20211114-bitcoin-taproot-upgrade&lt;br /&gt;
|-&lt;br /&gt;
| StackinSat.com || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/StackinSat_FR/status/1500898826416230401&lt;br /&gt;
|-&lt;br /&gt;
| Strike || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/BTCBoromir/status/1460373287792521232&lt;br /&gt;
|-&lt;br /&gt;
| Swan || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/SwanBitcoin/status/1468318386916663298&lt;br /&gt;
|-&lt;br /&gt;
| TheRockTrading.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/TheRockTrading/status/976787499648512003&lt;br /&gt;
|-&lt;br /&gt;
| VBTC || {{Yes}} || {{Planned}} || {{Yes}} || {{Planned}} || https://twitter.com/VBTC_Vietnam/status/1460978196816416775&lt;br /&gt;
|-&lt;br /&gt;
| Walltime || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://walltime.info&lt;br /&gt;
|-&lt;br /&gt;
| Xapo || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitcoin ATM Models ===&lt;br /&gt;
&lt;br /&gt;
Hopefully when a model updates then all its ATMs everywhere will gain that feature. See https://coinatmradar.com/shop/buy-bitcoin-atm/&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitaccess BTM || {{Yes}} || {{Yes}} || {{Planned|Work in progress}} || {{Planned}} || https://twitter.com/DylanSeago/status/1520212294898274305&lt;br /&gt;
|-&lt;br /&gt;
| GenesisCoin || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| General Bytes || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Depending on configuration. Since version 20190613 https://www.generalbytes.com/en/support/changelog&lt;br /&gt;
|-&lt;br /&gt;
| Lamassu || {{Yes}} || {{Yes|Yes (optional)}} || {{Planned}} || {{Evaluating|??}} || https://twitter.com/LamassuBTC/status/1459918440303673349&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Blockchain Explorers ===&lt;br /&gt;
&lt;br /&gt;
To investigate bech32 capability, you can use mainnet TXIDs &amp;lt;code&amp;gt;4ef47f6eb681d5d9fa2f7e16336cd629303c635e8da51e425b76088be9c8744c&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;514a33f1d46179b89e1fea7bbb07b682ab14083a276979f91038369d1a8d689b&amp;lt;/code&amp;gt; or look up the addresses &amp;lt;code&amp;gt;bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;bc1qc7slrfxkknqcq2jevvvkdgvrt8080852dfjewde450xdlk4ugp7szw5tk9&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Some blockchain explorers can only parse the bech32 address and display it, they don&#039;t build an index so users cannot search for bech32 addresses.&lt;br /&gt;
&lt;br /&gt;
To verify bech32m readiness, you can look up the mainnet TXID &amp;lt;code&amp;gt;b10c007c60e14f9d087e0291d4d0c7869697c6681d979c6639dbd960792b4d41&amp;lt;/code&amp;gt; on which the first output should be addressed as &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqsyjer9e&amp;lt;/code&amp;gt;. Note that the superseded bech32 encoding only differs in the last six characters that encode the checksum: &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqs_3wf0qm_&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
See also: https://en.bitcoin.it/wiki/Category:Block_chain_browsers&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Display Bech32 !! Index Bech32 !! Display Bech32m !! Index Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| bitaps.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitaps.com&lt;br /&gt;
|-&lt;br /&gt;
| Bitflyer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://chainflyer.bitflyer.jp&lt;br /&gt;
|-&lt;br /&gt;
| Blockbook || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://btc1.trezor.io&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.blockchain.com/explorer&lt;br /&gt;
|-&lt;br /&gt;
| Blockchair || {{Yes}} || {{Yes}} || {{Yes|Ready, but old txns not reindexed yet}} || {{Yes|Ready, but old txns not reindexed yet}} || https://github.com/Blockchair/Blockchair.Support/issues/567#issuecomment-966393097, https://twitter.com/Blockchair/status/1458817396433731585&lt;br /&gt;
|-&lt;br /&gt;
| Blockcypher || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://live.blockcypher.com/btc&lt;br /&gt;
|-&lt;br /&gt;
| Blockonomics || {{Yes}} || {{Yes}} || {{Yes}} ||  {{Yes}} || https://www.blockonomics.co&lt;br /&gt;
|-&lt;br /&gt;
| Blockpath || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blockpath.com&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://BTC.com&lt;br /&gt;
|-&lt;br /&gt;
| Esplora || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances are https://blockstream.info/ and https://www.localbitcoinschain.com/. [https://github.com/Blockstream/esplora/issues/323 Issue] for BIP350 support.&lt;br /&gt;
|-&lt;br /&gt;
| Insight || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://insight.bitpay.com/&lt;br /&gt;
|-&lt;br /&gt;
| Mempool || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://mempool.space https://mempool.ninja https://mempool.emzy.de https://mempool.bisq.services https://mempool.bitcoin.ninja https://mempool.bitaroo.net/&lt;br /&gt;
|-&lt;br /&gt;
| OKLink || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.oklink.com&lt;br /&gt;
|-&lt;br /&gt;
| OXT || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://oxt.me/&lt;br /&gt;
|-&lt;br /&gt;
| Tradeblock || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Yes, but search field rejects bech32m addresses}} || https://tradeblock.com/bitcoin&lt;br /&gt;
|-&lt;br /&gt;
| WalletExplorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://walletexplorer.com/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Explorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitcoinexplorer.org, https://twitter.com/BitcoinExplorer/status/1425148093977309187&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Payment Processors ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Payment processors in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! P2WPKH/P2WSH Invoices !! Bech32 Withdrawal addresses !! P2TR Invoices !! Bech32m Withdrawal addresses !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://apirone.com Apirone] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment notifications, merchant dashboard, plugins for Magento, WooCommerce, OpenCart 2, Opencart 3.x, Virtuemart&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitaps.com Bitaps] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment forwarding API, Wallet API, fault tolerance callback.&lt;br /&gt;
|-&lt;br /&gt;
| [https://btcpayserver.org BTCPay Server] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Supported since 1.3.0}} || https://twitter.com/NicolasDorier/status/1432354289599451136, https://twitter.com/NicolasDorier/status/1457527754350415873&lt;br /&gt;
|-&lt;br /&gt;
| [https://coingate.com CoinGate] || {{No}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://confirmo.net CONFIRMO] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://cryptochill.com CryptoChill] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Planned}} || Highly customizable Bitcoin and Lightning Network payment gateway and custodial wallets provider. TSS/HD wallets, API, SDK.&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/nickfarrow/SatSale SatSale] || {{Yes}} || n/a || {{Yes}} || n/a || Supports any address format supported by backend Bitcoin Core. Invoices use address format configured as default there. Has no withdrawal functionality in itself, payments are received in Core wallet.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mining Pools ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Payout to Bech32 !! Payout to Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.btc.com/ BTC.com Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [http://ckpool.org/ Ckpool] || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://kano.is/ KanoPool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=789369.msg53374508#msg53374508 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [http://poolin.com/ Poolin] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5169994.msg52184844#msg52184844 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://sbicrypto.com SBICrypto Pool] || {{Yes}} || {{Acceptable|Ready to release at activation}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://slushpool.com/ Slush Pool] || {{Yes}} || {{Planned|At activation}} || [https://twitter.com/braiins_systems/status/1432376840484794375 Tweet]&lt;br /&gt;
|-&lt;br /&gt;
| [https://ukrpool.com/ Ukr Pool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5124825.msg51358033#msg51358033 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.viabtc.com/ ViaBTC Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Libraries ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Language !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin/libbase58 libbase58] || C || {{No}} || n/a || {{No}} || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/MetacoSA/NBitcoin NBitcoin] || .NET || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354289599451136&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bcoin-org/bcoin bcoin] || JS ||  {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bcoin-org/bcoin/pull/1038&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/btcsuite btcsuite/btcutil] || Go || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoinjs/bitcoinjs-lib bitcoinjs-lib] || JS || {{Yes}} || {{Yes}} || {{Yes|Yes, since v6.0.0}} || {{Acceptable|Supported but needs manual involvement}} || https://github.com/bitcoinjs/bitcoinjs-lib/issues/1522#issuecomment-887468902, https://twitter.com/junderwood4649/status/1459006392086372355&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoinj.github.io/ bitcoinj] || Java || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bitcoinj/bitcoinj/commit/183986c9801f10f1bf46bd46621e535973d39ef8&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin-s/bitcoin-s-core bitcoin-s] || Scala || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2021}} || https://twitter.com/Chris_Stewart_5/status/1459205497463136270&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/rust-bitcoin/rust-bitcoin rust-bitcoin] || Rust || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/RCasatta/status/1423695925252329476&lt;br /&gt;
|-&lt;br /&gt;
| [https://lightningdevkit.org Lightning Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|Pending BOLT update}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoindevkit.org Bitcoin Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.14.0 0.14.0]}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.19.0 0.19.0]}} || P2TR support is &amp;quot;experimental&amp;quot;, see [https://github.com/bitcoindevkit/bdk/pull/593 PR #593]&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/ElementsProject/libwally-core libwally-core] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Blockstream/gdk GDK] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 0.0.47]}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Simplexum/python-bitcointx python-bitcointx] || Python || {{Yes}} ||  {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/Simplexum/python-bitcointx/issues/57&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/dgarage/NBXplorer/ NBXPlorer] || C# || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354822888431619&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/acinq/bitcoin-kmp  Kotlin Multiplatform Bitcoin Library] || Kotlin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/realtbast/status/1458533450919649284&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/libbitcoin  Libbitcoin] || C++ || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://github.com/libbitcoin/libbitcoin-system/blob/master/include/bitcoin/system/wallet/addresses/witness_address.hpp#L41&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/chaintope/bitcoinrb Bitcoinrb] || Ruby || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/chaintope/bitcoinrb/wiki/Taproot&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
=== Other Services ===&lt;br /&gt;
&lt;br /&gt;
Casinos, marketplaces, etc that let users withdraw money&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Withdrawals !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1Broker || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://crypto.games Crypto.Games]|| {{Yes}} || [https://bitcointalk.org/index.php?topic=750760.msg31421151#msg31421151 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| YOLOdice || {{Yes}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69603</id>
		<title>Bech32 adoption</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69603"/>
		<updated>2023-01-05T23:39:23Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: /* Web Wallets / Wallet Service Providers */ guarda does not support sending to bech32&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Bech32]] is a bitcoin [[address]] format specified by [[BIP 0173]]. It is used for the native segwit version 0 output types, P2WPKH and P2WSH. The upcoming [[Taproot]] softfork will add another output type called Pay to Taproot (P2TR). P2TR outputs and future native segwit versions will be using an updated variant of [[Bech32]], called [[Bech32m]] (specified by [[BIP 0350]]). This page tracks the adoption of [[Bech32]] and [[Bech32m]].&lt;br /&gt;
&lt;br /&gt;
Ideally wallets and services would first support &#039;&#039;sending to&#039;&#039; new addresses. When most wallets and services support sending to the new address type, people are more likely to adopt it for receiving. &lt;br /&gt;
&lt;br /&gt;
The amount of bech32 addresses on the blockchain is tracked on this website: https://p2sh.info/dashboard/db/bech32-statistics?orgId=1&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| {{Evaluating|??}} || Maybe / Haven&#039;t checked / placeholder&lt;br /&gt;
|-&lt;br /&gt;
| {{Planned}} || The developers said they plan to&lt;br /&gt;
|-&lt;br /&gt;
| {{Acceptable|PR Merged}} || In the case of software, code has been written and merged, and it will be in next release.&lt;br /&gt;
|-&lt;br /&gt;
| {{Yes}} || Feature has been released&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Software Wallets ===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Armory || {{Yes}} || {{No}} || {{Planned|Planned around activation}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| AQUA || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| bcoin || {{Yes}} || {{Yes}} || {{Yes|Since 2.2.0}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bisq || {{Yes}} || {{Yes}} || {{Evaluating|Dependent on BitcoinJ}} || {{Evaluating|??}} || As of v1.5.0 https://bisq.network/blog/bisq-v1.5.0-highlights/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Core || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} || Uses P2WPKH as default address since version [https://bitcoin.org/en/release/v0.20.0 0.20.0]. Creating P2TR addresses requires manual import for now.&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Knots || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Green || {{Yes}} || {{Yes}} || {{Yes|Since Mobile 3.7.6+, Desktop 1.0.4+}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47]&lt;br /&gt;
|-&lt;br /&gt;
| Breadwallet || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/BRDapp/comments/9xx1hq/as_of_today_brd_fully_supports_native_segwit/&lt;br /&gt;
|-&lt;br /&gt;
| [https://play.google.com/store/apps/details?id=de.schildbach.wallet Bitcoin Wallet for Android] || {{Yes}} || {{Yes}} || {{Yes|Since 9.0}} || {{No}} || Tested as of v9.20 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BlueWallet || {{Yes}} || {{Yes}} || {{Yes|Since 6.2.14}} || {{No}} || Tested as of v6.3.1 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Breez || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v0.12.1-beta (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/unchained-capital/caravan Caravan] || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Casa || {{Yes}} || {{No}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| C-Lightning || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinomi || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v1.26.0 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Electrum || {{Yes}} || {{Yes}} || {{Yes|Since 4.1.0}} || {{Planned|Planned: Descriptor-based keypath spends}} || https://github.com/spesmilo/electrum/issues/7544&lt;br /&gt;
|-&lt;br /&gt;
| Exodus || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not yet planned}} || https://support.exodus.com/article/1480-bitcoin-faqs-learn-more-about-btc#&lt;br /&gt;
|-&lt;br /&gt;
| Fully Noded || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Since v0.2.26}} || https://twitter.com/FullyNoded/status/1438652812410298370&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || [https://twitter.com/GuardaWallet/status/1194270398730448896 twitter announcement]&lt;br /&gt;
|-&lt;br /&gt;
| Iris Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/cryptoquick/status/1585187190627528710&lt;br /&gt;
|-&lt;br /&gt;
| JoinMarket || {{Yes}} || {{Yes}} || {{Yes|Since v0.9.5}} || {{Evaluating|??}} || &lt;br /&gt;
|-&lt;br /&gt;
| LND || {{Yes}} || {{Yes}} || {{Yes|Since v0.15}} || {{Yes|Since v0.15}} || The coming LND v0.15 release will introduce full P2TR support including scriptpath spends, PSBT signing, and a MuSig2 API.&lt;br /&gt;
|-&lt;br /&gt;
| Muun || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/MuunWallet/status/1459294066135474177&lt;br /&gt;
|-&lt;br /&gt;
| Mycelium || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Bech32m not supported as of version 3.16.0.13, tested on October 12th, 2022. https://github.com/mycelium-com/wallet-android/issues/645&lt;br /&gt;
|-&lt;br /&gt;
| Nunchuk || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/nunchuk_io/status/1511365917808103426&lt;br /&gt;
|-&lt;br /&gt;
| Phoenix || {{Yes}} || {{Yes}} || {{Evaluating|Support in iOS, but not Android}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Samourai Wallet || {{Yes}} || {{Yes}} || {{Yes|Since v0.99.98}}  || {{No|Currently not planned}} || https://twitter.com/SamouraiWallet/status/1415788631491497985?s=20&lt;br /&gt;
|-&lt;br /&gt;
| Sparrow Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/SparrowWallet/status/1415632270434705408&lt;br /&gt;
|-&lt;br /&gt;
| Specter Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benkaufman/status/1431293856675508228&lt;br /&gt;
|-&lt;br /&gt;
| Trust Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not planned}} || https://github.com/trustwallet/wallet-core/releases/tag/2.6.5, https://twitter.com/catenocrypt/status/1520152930065817601&lt;br /&gt;
|-&lt;br /&gt;
| Uniblow || {{Yes}} || {{Yes}} || {{Yes | Since v1.2.2}} || {{No|Not yet planned}} || [https://github.com/bitlogik/uniblow/releases/tag/v1.2.2 release1.2.2]&lt;br /&gt;
|-&lt;br /&gt;
| Wallet of Satoshi || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/walletofsatoshi/status/1459782761472872451 &lt;br /&gt;
|-&lt;br /&gt;
| Wasabi Wallet || {{Yes}} || {{Yes}} || {{Yes | Since Wasabi 2.0}} || {{Planned|Planned: via NBitcoin}} || https://twitter.com/NicolasDorier/status/1413693010236170241 &amp;lt;br&amp;gt; https://mempool.space/testnet/tx/05a23151b6ad114fb71e851147861d6c992a438ad4f62d6f0749bc9f200ef254&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Hardware Wallets ===&lt;br /&gt;
&lt;br /&gt;
Hardware wallet manufacturers typically publish a web wallet or browser add-on wallet for use with their hardware. Users can also sometimes connect their hardware wallet to a software wallet like [[Electrum]].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Trezor Suite || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || since [https://blog.trezor.io/trezor-suite-and-firmware-updates-december-2021-d1e74c3ea283 Trezor Suite 21.12.2] + Trezor Firmware 1.10.4 (Model One) / 2.4.3 (Model T)&lt;br /&gt;
|-&lt;br /&gt;
| Ledger Live (desktop app) || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Ledger Live Desktop 2.35 + Bitcoin App 2.0.0, Ledger Live Mobile support TBD. https://blockstream.info/tx/41d46e6f6e58a325eb6c913aa603f4db313f4a1db0649952f06fe2cd70546451&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey chrome app || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox Desktop app || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benma_/status/1504455969631350792&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ledger + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/_benma_/status/1504458280000761857&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Archos + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coldcard + Electrum || {{Yes}} || {{Yes}} || {{Yes}}  || {{Planned}} || Work already in progress&lt;br /&gt;
|-&lt;br /&gt;
| Ballet + app || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| SeedSigner || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Tangem + app|| {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Jade + Blockstream Green || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47] available via Blockstream Green mobile apps 3.7.6+ and desktop app 1.0.4+&lt;br /&gt;
|-&lt;br /&gt;
| Keystone || {{Yes}} || {{Acceptable|Yes, but only with BTC-only firmware}} || {{Planned|Planned for Q1 2022}} || {{Evaluating}} || https://twitter.com/KeystoneWallet/status/1460110906789031938&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Web Wallets / Wallet Service Providers ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Beach Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://twitter.com/nicolasburtey/status/1556659398365401088&lt;br /&gt;
|-&lt;br /&gt;
| Coin.Space || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitGo || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Full native segwit support on v2 platform, no plans to add native segwit support on v1 platform. Also see: https://blog.bitgo.com/native-segwit-addresses-via-bitgos-api-4946f2007be9, Taproot: https://blog.bitgo.com/taproot-support-for-bitgo-wallets-9ed97f412460&lt;br /&gt;
|-&lt;br /&gt;
| Bitnob || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/bernard_parah/status/1469962690483400706&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com web|| {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Pellicceama/status/1563171639063629828&lt;br /&gt;
|-&lt;br /&gt;
| Fireblocks || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2022}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HolyTransaction || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinb.in Coinb.in] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || open source JavaScript implementation&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/GuardaWallet/status/1194270398730448896&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Exchanges in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[AgoraDesk]] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| Anycoin Direct || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://anycoindirect.eu/en/news/details/segwit-activated&lt;br /&gt;
|-&lt;br /&gt;
| Binance || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/colemaktypo/status/1460337599499882502&lt;br /&gt;
|-&lt;br /&gt;
| Bitaroo || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBargain.co.uk || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin.de || {{Yes}} || {{No}} || {{No}} || {{No}} || https://twitter.com/Ben_deWaal/status/1460464528181936130&lt;br /&gt;
|-&lt;br /&gt;
| Bitfinex || {{Yes}} || {{No}} || {{Planned}} || {{No}} || https://twitter.com/paoloardoino/status/1460620727342796800&lt;br /&gt;
|-&lt;br /&gt;
| BitMEX || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/BitMEXResearch/status/1492152557044654082&lt;br /&gt;
|-&lt;br /&gt;
| Bitonic || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://twitter.com/BitcoinenNL/status/1460284373291384833&lt;br /&gt;
|-&lt;br /&gt;
| Bitpanda || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/christiant5r/status/1461369956252139520&lt;br /&gt;
|-&lt;br /&gt;
| Bittrex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/gqt1m6/bittrex_does_not_even_support_withdrawals_to/&lt;br /&gt;
|-&lt;br /&gt;
| Bittylicious || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bittylicious_/status/998881327347888128&lt;br /&gt;
|-&lt;br /&gt;
| Bitstamp || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} || https://www.bitstamp.net/article/weve-added-support-bech32-bitcoin-addresses-bitsta/&lt;br /&gt;
|-&lt;br /&gt;
| Bitso || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bitso/status/1203784055340314624&lt;br /&gt;
|-&lt;br /&gt;
| Bitwage || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitwala || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bottlepay || {{Yes}} || {{Yes}} || {{No}} || {{Evaluating|??}} || https://help.bottlepay.com/en/articles/4909780-what-bitcoin-addresses-do-you-support-for-on-chain-withdrawals, https://twitter.com/Stack_Russel_UK/status/1460330265751044097&lt;br /&gt;
|-&lt;br /&gt;
| BSDEX || {{Yes}} || {{No}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bull Bitcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/francispouliot_/status/1464264391155666950&lt;br /&gt;
|-&lt;br /&gt;
| CardCoins.co || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/CardCoinsCo/status/1452680654030872589&lt;br /&gt;
|-&lt;br /&gt;
| CEX.IO || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinbase.com || {{Yes}} || {{No}} || {{No|Not a priority currently}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| CoinCorner || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/CoinCorner/status/1461360995746545667&lt;br /&gt;
|-&lt;br /&gt;
| CoinFalcon || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinmate.io Coinmate.io] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://coinmate.io/blog/important-coinmate-update/&lt;br /&gt;
|-&lt;br /&gt;
| Coinsbank.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinygram || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Flyp.me || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| FTX US Derivatives || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || Formerly LedgerX&lt;br /&gt;
|-&lt;br /&gt;
| GDax || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/8c738k/coinbase_gdax_already_allows_sending_to_bc1/&lt;br /&gt;
|-&lt;br /&gt;
| Gemini || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://np.reddit.com/r/Bitcoin/comments/b66n0v/psa_gemini_is_full_on_with_native_segwit_and_uses/&lt;br /&gt;
|-&lt;br /&gt;
| Genesis || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Globitex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HitBTC || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Hodl Hodl || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://medium.com/@hodlhodl/hodl-hodl-segwit-compatible-exchange-a2231968ac56&lt;br /&gt;
|-&lt;br /&gt;
| Independent Reserve|| {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.independentreserve.com/bitcoin/investing&lt;br /&gt;
|-&lt;br /&gt;
| Itbit || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Kraken || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blog.kraken.com/post/16740/bitcoin-taproot-address-now-supported-on-kraken/&lt;br /&gt;
|-&lt;br /&gt;
| Liberalcoins || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://liberalcoins.com&lt;br /&gt;
|-&lt;br /&gt;
| [[LocalBitcoins]] || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/LocalBitcoins/status/1322194709159301120&lt;br /&gt;
|-&lt;br /&gt;
| Luno || {{Yes}} || {{No}} || {{Planned|Planned}} || {{Evaluating|??}} || https://www.luno.com/blog/en/post/luno-launches-support-for-bech32-addresses&lt;br /&gt;
|-&lt;br /&gt;
| Okcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Okcoin/status/1471563103049756672 &lt;br /&gt;
|-&lt;br /&gt;
| Paxful.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://paxful.com/support/en-us/articles/360011766520-Can-I-Withdraw-Bitcoin-from-Paxful-Wallet-to-My-External-Wallet-&lt;br /&gt;
|-&lt;br /&gt;
| Purse.io || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Poloniex.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/a3jhcf/you_can_now_withdraw_from_poloniex_to_bech32/&lt;br /&gt;
|-&lt;br /&gt;
| River.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Robinhood.com || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://robinhood.com/us/en/support/articles/cryptocurrency-wallets/#Supportedaddressformatsforcryptowithdrawals&lt;br /&gt;
|-&lt;br /&gt;
| Square CashApp || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} || https://cash.app/help/us/en-us/20211114-bitcoin-taproot-upgrade&lt;br /&gt;
|-&lt;br /&gt;
| StackinSat.com || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/StackinSat_FR/status/1500898826416230401&lt;br /&gt;
|-&lt;br /&gt;
| Strike || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/BTCBoromir/status/1460373287792521232&lt;br /&gt;
|-&lt;br /&gt;
| Swan || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/SwanBitcoin/status/1468318386916663298&lt;br /&gt;
|-&lt;br /&gt;
| TheRockTrading.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/TheRockTrading/status/976787499648512003&lt;br /&gt;
|-&lt;br /&gt;
| VBTC || {{Yes}} || {{Planned}} || {{Yes}} || {{Planned}} || https://twitter.com/VBTC_Vietnam/status/1460978196816416775&lt;br /&gt;
|-&lt;br /&gt;
| Walltime || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://walltime.info&lt;br /&gt;
|-&lt;br /&gt;
| Xapo || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitcoin ATM Models ===&lt;br /&gt;
&lt;br /&gt;
Hopefully when a model updates then all its ATMs everywhere will gain that feature. See https://coinatmradar.com/shop/buy-bitcoin-atm/&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitaccess BTM || {{Yes}} || {{Yes}} || {{Planned|Work in progress}} || {{Planned}} || https://twitter.com/DylanSeago/status/1520212294898274305&lt;br /&gt;
|-&lt;br /&gt;
| GenesisCoin || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| General Bytes || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Depending on configuration. Since version 20190613 https://www.generalbytes.com/en/support/changelog&lt;br /&gt;
|-&lt;br /&gt;
| Lamassu || {{Yes}} || {{Yes|Yes (optional)}} || {{Planned}} || {{Evaluating|??}} || https://twitter.com/LamassuBTC/status/1459918440303673349&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Blockchain Explorers ===&lt;br /&gt;
&lt;br /&gt;
To investigate bech32 capability, you can use mainnet TXIDs &amp;lt;code&amp;gt;4ef47f6eb681d5d9fa2f7e16336cd629303c635e8da51e425b76088be9c8744c&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;514a33f1d46179b89e1fea7bbb07b682ab14083a276979f91038369d1a8d689b&amp;lt;/code&amp;gt; or look up the addresses &amp;lt;code&amp;gt;bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;bc1qc7slrfxkknqcq2jevvvkdgvrt8080852dfjewde450xdlk4ugp7szw5tk9&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Some blockchain explorers can only parse the bech32 address and display it, they don&#039;t build an index so users cannot search for bech32 addresses.&lt;br /&gt;
&lt;br /&gt;
To verify bech32m readiness, you can look up the mainnet TXID &amp;lt;code&amp;gt;b10c007c60e14f9d087e0291d4d0c7869697c6681d979c6639dbd960792b4d41&amp;lt;/code&amp;gt; on which the first output should be addressed as &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqsyjer9e&amp;lt;/code&amp;gt;. Note that the superseded bech32 encoding only differs in the last six characters that encode the checksum: &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqs_3wf0qm_&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
See also: https://en.bitcoin.it/wiki/Category:Block_chain_browsers&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Display Bech32 !! Index Bech32 !! Display Bech32m !! Index Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| bitaps.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitaps.com&lt;br /&gt;
|-&lt;br /&gt;
| Bitflyer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://chainflyer.bitflyer.jp&lt;br /&gt;
|-&lt;br /&gt;
| Blockbook || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://btc1.trezor.io&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.blockchain.com/explorer&lt;br /&gt;
|-&lt;br /&gt;
| Blockchair || {{Yes}} || {{Yes}} || {{Yes|Ready, but old txns not reindexed yet}} || {{Yes|Ready, but old txns not reindexed yet}} || https://github.com/Blockchair/Blockchair.Support/issues/567#issuecomment-966393097, https://twitter.com/Blockchair/status/1458817396433731585&lt;br /&gt;
|-&lt;br /&gt;
| Blockcypher || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://live.blockcypher.com/btc&lt;br /&gt;
|-&lt;br /&gt;
| Blockonomics || {{Yes}} || {{Yes}} || {{Yes}} ||  {{Yes}} || https://www.blockonomics.co&lt;br /&gt;
|-&lt;br /&gt;
| Blockpath || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blockpath.com&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://BTC.com&lt;br /&gt;
|-&lt;br /&gt;
| Esplora || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances are https://blockstream.info/ and https://www.localbitcoinschain.com/. [https://github.com/Blockstream/esplora/issues/323 Issue] for BIP350 support.&lt;br /&gt;
|-&lt;br /&gt;
| Insight || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://insight.bitpay.com/&lt;br /&gt;
|-&lt;br /&gt;
| Mempool || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://mempool.space https://mempool.ninja https://mempool.emzy.de https://mempool.bisq.services https://mempool.bitcoin.ninja https://mempool.bitaroo.net/&lt;br /&gt;
|-&lt;br /&gt;
| OKLink || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.oklink.com&lt;br /&gt;
|-&lt;br /&gt;
| OXT || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://oxt.me/&lt;br /&gt;
|-&lt;br /&gt;
| Tradeblock || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Yes, but search field rejects bech32m addresses}} || https://tradeblock.com/bitcoin&lt;br /&gt;
|-&lt;br /&gt;
| WalletExplorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://walletexplorer.com/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Explorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitcoinexplorer.org, https://twitter.com/BitcoinExplorer/status/1425148093977309187&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Payment Processors ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Payment processors in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! P2WPKH/P2WSH Invoices !! Bech32 Withdrawal addresses !! P2TR Invoices !! Bech32m Withdrawal addresses !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://apirone.com Apirone] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment notifications, merchant dashboard, plugins for Magento, WooCommerce, OpenCart 2, Opencart 3.x, Virtuemart&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitaps.com Bitaps] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment forwarding API, Wallet API, fault tolerance callback.&lt;br /&gt;
|-&lt;br /&gt;
| [https://btcpayserver.org BTCPay Server] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Supported since 1.3.0}} || https://twitter.com/NicolasDorier/status/1432354289599451136, https://twitter.com/NicolasDorier/status/1457527754350415873&lt;br /&gt;
|-&lt;br /&gt;
| [https://coingate.com CoinGate] || {{No}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://confirmo.net CONFIRMO] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://cryptochill.com CryptoChill] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Planned}} || Highly customizable Bitcoin and Lightning Network payment gateway and custodial wallets provider. TSS/HD wallets, API, SDK.&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/nickfarrow/SatSale SatSale] || {{Yes}} || n/a || {{Yes}} || n/a || Supports any address format supported by backend Bitcoin Core. Invoices use address format configured as default there. Has no withdrawal functionality in itself, payments are received in Core wallet.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mining Pools ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Payout to Bech32 !! Payout to Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.btc.com/ BTC.com Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [http://ckpool.org/ Ckpool] || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://kano.is/ KanoPool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=789369.msg53374508#msg53374508 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [http://poolin.com/ Poolin] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5169994.msg52184844#msg52184844 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://sbicrypto.com SBICrypto Pool] || {{Yes}} || {{Acceptable|Ready to release at activation}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://slushpool.com/ Slush Pool] || {{Yes}} || {{Planned|At activation}} || [https://twitter.com/braiins_systems/status/1432376840484794375 Tweet]&lt;br /&gt;
|-&lt;br /&gt;
| [https://ukrpool.com/ Ukr Pool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5124825.msg51358033#msg51358033 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.viabtc.com/ ViaBTC Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Libraries ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Language !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin/libbase58 libbase58] || C || {{No}} || n/a || {{No}} || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/MetacoSA/NBitcoin NBitcoin] || .NET || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354289599451136&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bcoin-org/bcoin bcoin] || JS ||  {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bcoin-org/bcoin/pull/1038&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/btcsuite btcsuite/btcutil] || Go || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoinjs/bitcoinjs-lib bitcoinjs-lib] || JS || {{Yes}} || {{Yes}} || {{Yes|Yes, since v6.0.0}} || {{Acceptable|Supported but needs manual involvement}} || https://github.com/bitcoinjs/bitcoinjs-lib/issues/1522#issuecomment-887468902, https://twitter.com/junderwood4649/status/1459006392086372355&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoinj.github.io/ bitcoinj] || Java || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bitcoinj/bitcoinj/commit/183986c9801f10f1bf46bd46621e535973d39ef8&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin-s/bitcoin-s-core bitcoin-s] || Scala || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2021}} || https://twitter.com/Chris_Stewart_5/status/1459205497463136270&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/rust-bitcoin/rust-bitcoin rust-bitcoin] || Rust || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/RCasatta/status/1423695925252329476&lt;br /&gt;
|-&lt;br /&gt;
| [https://lightningdevkit.org Lightning Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|Pending BOLT update}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoindevkit.org Bitcoin Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.14.0 0.14.0]}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.19.0 0.19.0]}} || P2TR support is &amp;quot;experimental&amp;quot;, see [https://github.com/bitcoindevkit/bdk/pull/593 PR #593]&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/ElementsProject/libwally-core libwally-core] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Blockstream/gdk GDK] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 0.0.47]}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Simplexum/python-bitcointx python-bitcointx] || Python || {{Yes}} ||  {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/Simplexum/python-bitcointx/issues/57&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/dgarage/NBXplorer/ NBXPlorer] || C# || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354822888431619&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/acinq/bitcoin-kmp  Kotlin Multiplatform Bitcoin Library] || Kotlin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/realtbast/status/1458533450919649284&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/libbitcoin  Libbitcoin] || C++ || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://github.com/libbitcoin/libbitcoin-system/blob/master/include/bitcoin/system/wallet/addresses/witness_address.hpp#L41&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/chaintope/bitcoinrb Bitcoinrb] || Ruby || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/chaintope/bitcoinrb/wiki/Taproot&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
=== Other Services ===&lt;br /&gt;
&lt;br /&gt;
Casinos, marketplaces, etc that let users withdraw money&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Withdrawals !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1Broker || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://crypto.games Crypto.Games]|| {{Yes}} || [https://bitcointalk.org/index.php?topic=750760.msg31421151#msg31421151 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| YOLOdice || {{Yes}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69602</id>
		<title>Bech32 adoption</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=69602"/>
		<updated>2023-01-05T23:38:00Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: guarda does not support sending to bech32.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Bech32]] is a bitcoin [[address]] format specified by [[BIP 0173]]. It is used for the native segwit version 0 output types, P2WPKH and P2WSH. The upcoming [[Taproot]] softfork will add another output type called Pay to Taproot (P2TR). P2TR outputs and future native segwit versions will be using an updated variant of [[Bech32]], called [[Bech32m]] (specified by [[BIP 0350]]). This page tracks the adoption of [[Bech32]] and [[Bech32m]].&lt;br /&gt;
&lt;br /&gt;
Ideally wallets and services would first support &#039;&#039;sending to&#039;&#039; new addresses. When most wallets and services support sending to the new address type, people are more likely to adopt it for receiving. &lt;br /&gt;
&lt;br /&gt;
The amount of bech32 addresses on the blockchain is tracked on this website: https://p2sh.info/dashboard/db/bech32-statistics?orgId=1&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| {{Evaluating|??}} || Maybe / Haven&#039;t checked / placeholder&lt;br /&gt;
|-&lt;br /&gt;
| {{Planned}} || The developers said they plan to&lt;br /&gt;
|-&lt;br /&gt;
| {{Acceptable|PR Merged}} || In the case of software, code has been written and merged, and it will be in next release.&lt;br /&gt;
|-&lt;br /&gt;
| {{Yes}} || Feature has been released&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Software Wallets ===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Armory || {{Yes}} || {{No}} || {{Planned|Planned around activation}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| AQUA || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| bcoin || {{Yes}} || {{Yes}} || {{Yes|Since 2.2.0}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bisq || {{Yes}} || {{Yes}} || {{Evaluating|Dependent on BitcoinJ}} || {{Evaluating|??}} || As of v1.5.0 https://bisq.network/blog/bisq-v1.5.0-highlights/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Core || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} || Uses P2WPKH as default address since version [https://bitcoin.org/en/release/v0.20.0 0.20.0]. Creating P2TR addresses requires manual import for now.&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Knots || {{Yes|Since 0.16.0}} || {{Yes|Since 0.16.0}} || {{Yes|Since 0.21.1}} || {{Yes|Since 22.0}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Green || {{Yes}} || {{Yes}} || {{Yes|Since Mobile 3.7.6+, Desktop 1.0.4+}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47]&lt;br /&gt;
|-&lt;br /&gt;
| Breadwallet || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/BRDapp/comments/9xx1hq/as_of_today_brd_fully_supports_native_segwit/&lt;br /&gt;
|-&lt;br /&gt;
| [https://play.google.com/store/apps/details?id=de.schildbach.wallet Bitcoin Wallet for Android] || {{Yes}} || {{Yes}} || {{Yes|Since 9.0}} || {{No}} || Tested as of v9.20 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BlueWallet || {{Yes}} || {{Yes}} || {{Yes|Since 6.2.14}} || {{No}} || Tested as of v6.3.1 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Breez || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v0.12.1-beta (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/unchained-capital/caravan Caravan] || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Casa || {{Yes}} || {{No}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| C-Lightning || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinomi || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Tested as of v1.26.0 (October 2022)&lt;br /&gt;
|-&lt;br /&gt;
| Electrum || {{Yes}} || {{Yes}} || {{Yes|Since 4.1.0}} || {{Planned|Planned: Descriptor-based keypath spends}} || https://github.com/spesmilo/electrum/issues/7544&lt;br /&gt;
|-&lt;br /&gt;
| Exodus || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not yet planned}} || https://support.exodus.com/article/1480-bitcoin-faqs-learn-more-about-btc#&lt;br /&gt;
|-&lt;br /&gt;
| Fully Noded || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Since v0.2.26}} || https://twitter.com/FullyNoded/status/1438652812410298370&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || [https://twitter.com/GuardaWallet/status/1194270398730448896 twitter announcement]&lt;br /&gt;
|-&lt;br /&gt;
| Iris Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/cryptoquick/status/1585187190627528710&lt;br /&gt;
|-&lt;br /&gt;
| JoinMarket || {{Yes}} || {{Yes}} || {{Yes|Since v0.9.5}} || {{Evaluating|??}} || &lt;br /&gt;
|-&lt;br /&gt;
| LND || {{Yes}} || {{Yes}} || {{Yes|Since v0.15}} || {{Yes|Since v0.15}} || The coming LND v0.15 release will introduce full P2TR support including scriptpath spends, PSBT signing, and a MuSig2 API.&lt;br /&gt;
|-&lt;br /&gt;
| Muun || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/MuunWallet/status/1459294066135474177&lt;br /&gt;
|-&lt;br /&gt;
| Mycelium || {{Yes}} || {{Yes}} || {{No}} || {{No}} || Bech32m not supported as of version 3.16.0.13, tested on October 12th, 2022. https://github.com/mycelium-com/wallet-android/issues/645&lt;br /&gt;
|-&lt;br /&gt;
| Nunchuk || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/nunchuk_io/status/1511365917808103426&lt;br /&gt;
|-&lt;br /&gt;
| Phoenix || {{Yes}} || {{Yes}} || {{Evaluating|Support in iOS, but not Android}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Samourai Wallet || {{Yes}} || {{Yes}} || {{Yes|Since v0.99.98}}  || {{No|Currently not planned}} || https://twitter.com/SamouraiWallet/status/1415788631491497985?s=20&lt;br /&gt;
|-&lt;br /&gt;
| Sparrow Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/SparrowWallet/status/1415632270434705408&lt;br /&gt;
|-&lt;br /&gt;
| Specter Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benkaufman/status/1431293856675508228&lt;br /&gt;
|-&lt;br /&gt;
| Trust Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No|Not planned}} || https://github.com/trustwallet/wallet-core/releases/tag/2.6.5, https://twitter.com/catenocrypt/status/1520152930065817601&lt;br /&gt;
|-&lt;br /&gt;
| Uniblow || {{Yes}} || {{Yes}} || {{Yes | Since v1.2.2}} || {{No|Not yet planned}} || [https://github.com/bitlogik/uniblow/releases/tag/v1.2.2 release1.2.2]&lt;br /&gt;
|-&lt;br /&gt;
| Wallet of Satoshi || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/walletofsatoshi/status/1459782761472872451 &lt;br /&gt;
|-&lt;br /&gt;
| Wasabi Wallet || {{Yes}} || {{Yes}} || {{Yes | Since Wasabi 2.0}} || {{Planned|Planned: via NBitcoin}} || https://twitter.com/NicolasDorier/status/1413693010236170241 &amp;lt;br&amp;gt; https://mempool.space/testnet/tx/05a23151b6ad114fb71e851147861d6c992a438ad4f62d6f0749bc9f200ef254&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Hardware Wallets ===&lt;br /&gt;
&lt;br /&gt;
Hardware wallet manufacturers typically publish a web wallet or browser add-on wallet for use with their hardware. Users can also sometimes connect their hardware wallet to a software wallet like [[Electrum]].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Trezor Suite || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || since [https://blog.trezor.io/trezor-suite-and-firmware-updates-december-2021-d1e74c3ea283 Trezor Suite 21.12.2] + Trezor Firmware 1.10.4 (Model One) / 2.4.3 (Model T)&lt;br /&gt;
|-&lt;br /&gt;
| Ledger Live (desktop app) || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Ledger Live Desktop 2.35 + Bitcoin App 2.0.0, Ledger Live Mobile support TBD. https://blockstream.info/tx/41d46e6f6e58a325eb6c913aa603f4db313f4a1db0649952f06fe2cd70546451&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey chrome app || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox Desktop app || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/_benma_/status/1504455969631350792&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ledger + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBox + Electrum || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/_benma_/status/1504458280000761857&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Archos + Electrum || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coldcard + Electrum || {{Yes}} || {{Yes}} || {{Yes}}  || {{Planned}} || Work already in progress&lt;br /&gt;
|-&lt;br /&gt;
| Ballet + app || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| SeedSigner || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Tangem + app|| {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Blockstream Jade + Blockstream Green || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned}} || Bech32m sending support as of [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 GDK 0.0.47] available via Blockstream Green mobile apps 3.7.6+ and desktop app 1.0.4+&lt;br /&gt;
|-&lt;br /&gt;
| Keystone || {{Yes}} || {{Acceptable|Yes, but only with BTC-only firmware}} || {{Planned|Planned for Q1 2022}} || {{Evaluating}} || https://twitter.com/KeystoneWallet/status/1460110906789031938&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Web Wallets / Wallet Service Providers ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Beach Wallet || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://twitter.com/nicolasburtey/status/1556659398365401088&lt;br /&gt;
|-&lt;br /&gt;
| Coin.Space || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitGo || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Full native segwit support on v2 platform, no plans to add native segwit support on v1 platform. Also see: https://blog.bitgo.com/native-segwit-addresses-via-bitgos-api-4946f2007be9, Taproot: https://blog.bitgo.com/taproot-support-for-bitgo-wallets-9ed97f412460&lt;br /&gt;
|-&lt;br /&gt;
| Bitnob || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/bernard_parah/status/1469962690483400706&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com web|| {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Pellicceama/status/1563171639063629828&lt;br /&gt;
|-&lt;br /&gt;
| Fireblocks || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2022}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HolyTransaction || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinb.in Coinb.in] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || open source JavaScript implementation&lt;br /&gt;
|-&lt;br /&gt;
| Guarda Wallet || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/GuardaWallet/status/1194270398730448896&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Exchanges in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[AgoraDesk]] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| Anycoin Direct || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://anycoindirect.eu/en/news/details/segwit-activated&lt;br /&gt;
|-&lt;br /&gt;
| Binance || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/colemaktypo/status/1460337599499882502&lt;br /&gt;
|-&lt;br /&gt;
| Bitaroo || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitBargain.co.uk || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin.de || {{Yes}} || {{No}} || {{No}} || {{No}} || https://twitter.com/Ben_deWaal/status/1460464528181936130&lt;br /&gt;
|-&lt;br /&gt;
| Bitfinex || {{Yes}} || {{No}} || {{Planned}} || {{No}} || https://twitter.com/paoloardoino/status/1460620727342796800&lt;br /&gt;
|-&lt;br /&gt;
| BitMEX || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/BitMEXResearch/status/1492152557044654082&lt;br /&gt;
|-&lt;br /&gt;
| Bitonic || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://twitter.com/BitcoinenNL/status/1460284373291384833&lt;br /&gt;
|-&lt;br /&gt;
| Bitpanda || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/christiant5r/status/1461369956252139520&lt;br /&gt;
|-&lt;br /&gt;
| Bittrex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/gqt1m6/bittrex_does_not_even_support_withdrawals_to/&lt;br /&gt;
|-&lt;br /&gt;
| Bittylicious || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bittylicious_/status/998881327347888128&lt;br /&gt;
|-&lt;br /&gt;
| Bitstamp || {{Yes}} || {{Yes}} || {{Planned}} || {{Evaluating|??}} || https://www.bitstamp.net/article/weve-added-support-bech32-bitcoin-addresses-bitsta/&lt;br /&gt;
|-&lt;br /&gt;
| Bitso || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/Bitso/status/1203784055340314624&lt;br /&gt;
|-&lt;br /&gt;
| Bitwage || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitwala || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bottlepay || {{Yes}} || {{Yes}} || {{No}} || {{Evaluating|??}} || https://help.bottlepay.com/en/articles/4909780-what-bitcoin-addresses-do-you-support-for-on-chain-withdrawals, https://twitter.com/Stack_Russel_UK/status/1460330265751044097&lt;br /&gt;
|-&lt;br /&gt;
| BSDEX || {{Yes}} || {{No}} || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bull Bitcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/francispouliot_/status/1464264391155666950&lt;br /&gt;
|-&lt;br /&gt;
| CardCoins.co || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/CardCoinsCo/status/1452680654030872589&lt;br /&gt;
|-&lt;br /&gt;
| CEX.IO || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinbase.com || {{Yes}} || {{No}} || {{No|Not a priority currently}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| CoinCorner || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/CoinCorner/status/1461360995746545667&lt;br /&gt;
|-&lt;br /&gt;
| CoinFalcon || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinmate.io Coinmate.io] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://coinmate.io/blog/important-coinmate-update/&lt;br /&gt;
|-&lt;br /&gt;
| Coinsbank.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinygram || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Flyp.me || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| FTX US Derivatives || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || Formerly LedgerX&lt;br /&gt;
|-&lt;br /&gt;
| GDax || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/8c738k/coinbase_gdax_already_allows_sending_to_bc1/&lt;br /&gt;
|-&lt;br /&gt;
| Gemini || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://np.reddit.com/r/Bitcoin/comments/b66n0v/psa_gemini_is_full_on_with_native_segwit_and_uses/&lt;br /&gt;
|-&lt;br /&gt;
| Genesis || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Globitex || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HitBTC || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Hodl Hodl || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://medium.com/@hodlhodl/hodl-hodl-segwit-compatible-exchange-a2231968ac56&lt;br /&gt;
|-&lt;br /&gt;
| Independent Reserve|| {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.independentreserve.com/bitcoin/investing&lt;br /&gt;
|-&lt;br /&gt;
| Itbit || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Kraken || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blog.kraken.com/post/16740/bitcoin-taproot-address-now-supported-on-kraken/&lt;br /&gt;
|-&lt;br /&gt;
| Liberalcoins || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://liberalcoins.com&lt;br /&gt;
|-&lt;br /&gt;
| [[LocalBitcoins]] || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/LocalBitcoins/status/1322194709159301120&lt;br /&gt;
|-&lt;br /&gt;
| Luno || {{Yes}} || {{No}} || {{Planned|Planned}} || {{Evaluating|??}} || https://www.luno.com/blog/en/post/luno-launches-support-for-bech32-addresses&lt;br /&gt;
|-&lt;br /&gt;
| Okcoin || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/Okcoin/status/1471563103049756672 &lt;br /&gt;
|-&lt;br /&gt;
| Paxful.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://paxful.com/support/en-us/articles/360011766520-Can-I-Withdraw-Bitcoin-from-Paxful-Wallet-to-My-External-Wallet-&lt;br /&gt;
|-&lt;br /&gt;
| Purse.io || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Poloniex.com || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} || https://www.reddit.com/r/Bitcoin/comments/a3jhcf/you_can_now_withdraw_from_poloniex_to_bech32/&lt;br /&gt;
|-&lt;br /&gt;
| River.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Robinhood.com || {{Yes}} || {{Evaluating|??}} || {{No}} || {{Evaluating|??}} || https://robinhood.com/us/en/support/articles/cryptocurrency-wallets/#Supportedaddressformatsforcryptowithdrawals&lt;br /&gt;
|-&lt;br /&gt;
| Square CashApp || {{Yes}} || {{No}} || {{Yes}} || {{Evaluating|??}} || https://cash.app/help/us/en-us/20211114-bitcoin-taproot-upgrade&lt;br /&gt;
|-&lt;br /&gt;
| StackinSat.com || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/StackinSat_FR/status/1500898826416230401&lt;br /&gt;
|-&lt;br /&gt;
| Strike || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://twitter.com/BTCBoromir/status/1460373287792521232&lt;br /&gt;
|-&lt;br /&gt;
| Swan || {{Yes}} || No deposits || {{Yes}} || No deposits || https://twitter.com/SwanBitcoin/status/1468318386916663298&lt;br /&gt;
|-&lt;br /&gt;
| TheRockTrading.com || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://twitter.com/TheRockTrading/status/976787499648512003&lt;br /&gt;
|-&lt;br /&gt;
| VBTC || {{Yes}} || {{Planned}} || {{Yes}} || {{Planned}} || https://twitter.com/VBTC_Vietnam/status/1460978196816416775&lt;br /&gt;
|-&lt;br /&gt;
| Walltime || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || https://walltime.info&lt;br /&gt;
|-&lt;br /&gt;
| Xapo || {{Yes}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitcoin ATM Models ===&lt;br /&gt;
&lt;br /&gt;
Hopefully when a model updates then all its ATMs everywhere will gain that feature. See https://coinatmradar.com/shop/buy-bitcoin-atm/&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitaccess BTM || {{Yes}} || {{Yes}} || {{Planned|Work in progress}} || {{Planned}} || https://twitter.com/DylanSeago/status/1520212294898274305&lt;br /&gt;
|-&lt;br /&gt;
| GenesisCoin || {{No}} || {{No}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| General Bytes || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Depending on configuration. Since version 20190613 https://www.generalbytes.com/en/support/changelog&lt;br /&gt;
|-&lt;br /&gt;
| Lamassu || {{Yes}} || {{Yes|Yes (optional)}} || {{Planned}} || {{Evaluating|??}} || https://twitter.com/LamassuBTC/status/1459918440303673349&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Blockchain Explorers ===&lt;br /&gt;
&lt;br /&gt;
To investigate bech32 capability, you can use mainnet TXIDs &amp;lt;code&amp;gt;4ef47f6eb681d5d9fa2f7e16336cd629303c635e8da51e425b76088be9c8744c&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;514a33f1d46179b89e1fea7bbb07b682ab14083a276979f91038369d1a8d689b&amp;lt;/code&amp;gt; or look up the addresses &amp;lt;code&amp;gt;bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;bc1qc7slrfxkknqcq2jevvvkdgvrt8080852dfjewde450xdlk4ugp7szw5tk9&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Some blockchain explorers can only parse the bech32 address and display it, they don&#039;t build an index so users cannot search for bech32 addresses.&lt;br /&gt;
&lt;br /&gt;
To verify bech32m readiness, you can look up the mainnet TXID &amp;lt;code&amp;gt;b10c007c60e14f9d087e0291d4d0c7869697c6681d979c6639dbd960792b4d41&amp;lt;/code&amp;gt; on which the first output should be addressed as &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqsyjer9e&amp;lt;/code&amp;gt;. Note that the superseded bech32 encoding only differs in the last six characters that encode the checksum: &amp;lt;code&amp;gt;bc1pqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqs_3wf0qm_&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
See also: https://en.bitcoin.it/wiki/Category:Block_chain_browsers&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Display Bech32 !! Index Bech32 !! Display Bech32m !! Index Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| bitaps.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitaps.com&lt;br /&gt;
|-&lt;br /&gt;
| Bitflyer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://chainflyer.bitflyer.jp&lt;br /&gt;
|-&lt;br /&gt;
| Blockbook || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://btc1.trezor.io&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.blockchain.com/explorer&lt;br /&gt;
|-&lt;br /&gt;
| Blockchair || {{Yes}} || {{Yes}} || {{Yes|Ready, but old txns not reindexed yet}} || {{Yes|Ready, but old txns not reindexed yet}} || https://github.com/Blockchair/Blockchair.Support/issues/567#issuecomment-966393097, https://twitter.com/Blockchair/status/1458817396433731585&lt;br /&gt;
|-&lt;br /&gt;
| Blockcypher || {{Yes}} || {{Yes}} || {{Yes}} || {{No}} || https://live.blockcypher.com/btc&lt;br /&gt;
|-&lt;br /&gt;
| Blockonomics || {{Yes}} || {{Yes}} || {{Yes}} ||  {{Yes}} || https://www.blockonomics.co&lt;br /&gt;
|-&lt;br /&gt;
| Blockpath || {{Yes}} || {{Yes}} || {{No}} || {{No}} || https://blockpath.com&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://BTC.com&lt;br /&gt;
|-&lt;br /&gt;
| Esplora || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances are https://blockstream.info/ and https://www.localbitcoinschain.com/. [https://github.com/Blockstream/esplora/issues/323 Issue] for BIP350 support.&lt;br /&gt;
|-&lt;br /&gt;
| Insight || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://insight.bitpay.com/&lt;br /&gt;
|-&lt;br /&gt;
| Mempool || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || Open source explorer, instances include https://mempool.space https://mempool.ninja https://mempool.emzy.de https://mempool.bisq.services https://mempool.bitcoin.ninja https://mempool.bitaroo.net/&lt;br /&gt;
|-&lt;br /&gt;
| OKLink || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://www.oklink.com&lt;br /&gt;
|-&lt;br /&gt;
| OXT || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://oxt.me/&lt;br /&gt;
|-&lt;br /&gt;
| Tradeblock || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Yes, but search field rejects bech32m addresses}} || https://tradeblock.com/bitcoin&lt;br /&gt;
|-&lt;br /&gt;
| WalletExplorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://walletexplorer.com/&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Explorer || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://bitcoinexplorer.org, https://twitter.com/BitcoinExplorer/status/1425148093977309187&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Payment Processors ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Payment processors in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! P2WPKH/P2WSH Invoices !! Bech32 Withdrawal addresses !! P2TR Invoices !! Bech32m Withdrawal addresses !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://apirone.com Apirone] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment notifications, merchant dashboard, plugins for Magento, WooCommerce, OpenCart 2, Opencart 3.x, Virtuemart&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitaps.com Bitaps] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} || Payment forwarding API, Wallet API, fault tolerance callback.&lt;br /&gt;
|-&lt;br /&gt;
| [https://btcpayserver.org BTCPay Server] || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes|Supported since 1.3.0}} || https://twitter.com/NicolasDorier/status/1432354289599451136, https://twitter.com/NicolasDorier/status/1457527754350415873&lt;br /&gt;
|-&lt;br /&gt;
| [https://coingate.com CoinGate] || {{No}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://confirmo.net CONFIRMO] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://cryptochill.com CryptoChill] || {{Yes}} || {{Yes}} || {{Evaluating|??}} || {{Planned}} || Highly customizable Bitcoin and Lightning Network payment gateway and custodial wallets provider. TSS/HD wallets, API, SDK.&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/nickfarrow/SatSale SatSale] || {{Yes}} || n/a || {{Yes}} || n/a || Supports any address format supported by backend Bitcoin Core. Invoices use address format configured as default there. Has no withdrawal functionality in itself, payments are received in Core wallet.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mining Pools ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Payout to Bech32 !! Payout to Bech32m !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.btc.com/ BTC.com Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [http://ckpool.org/ Ckpool] || {{Yes}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://kano.is/ KanoPool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=789369.msg53374508#msg53374508 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [http://poolin.com/ Poolin] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5169994.msg52184844#msg52184844 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://sbicrypto.com SBICrypto Pool] || {{Yes}} || {{Acceptable|Ready to release at activation}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://slushpool.com/ Slush Pool] || {{Yes}} || {{Planned|At activation}} || [https://twitter.com/braiins_systems/status/1432376840484794375 Tweet]&lt;br /&gt;
|-&lt;br /&gt;
| [https://ukrpool.com/ Ukr Pool] || {{Yes}} || {{Evaluating|??}} || [https://bitcointalk.org/index.php?topic=5124825.msg51358033#msg51358033 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| [https://pool.viabtc.com/ ViaBTC Pool] || {{No}} || {{Evaluating|??}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Libraries ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Language !! Send to Bech32 !! Receive to P2WPKH/P2WSH !! Send to Bech32m !! Receive to P2TR !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin/libbase58 libbase58] || C || {{No}} || n/a || {{No}} || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/MetacoSA/NBitcoin NBitcoin] || .NET || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354289599451136&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bcoin-org/bcoin bcoin] || JS ||  {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bcoin-org/bcoin/pull/1038&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/btcsuite btcsuite/btcutil] || Go || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoinjs/bitcoinjs-lib bitcoinjs-lib] || JS || {{Yes}} || {{Yes}} || {{Yes|Yes, since v6.0.0}} || {{Acceptable|Supported but needs manual involvement}} || https://github.com/bitcoinjs/bitcoinjs-lib/issues/1522#issuecomment-887468902, https://twitter.com/junderwood4649/status/1459006392086372355&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoinj.github.io/ bitcoinj] || Java || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|??}} || https://github.com/bitcoinj/bitcoinj/commit/183986c9801f10f1bf46bd46621e535973d39ef8&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/bitcoin-s/bitcoin-s-core bitcoin-s] || Scala || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned|Planned for 2021}} || https://twitter.com/Chris_Stewart_5/status/1459205497463136270&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/rust-bitcoin/rust-bitcoin rust-bitcoin] || Rust || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://twitter.com/RCasatta/status/1423695925252329476&lt;br /&gt;
|-&lt;br /&gt;
| [https://lightningdevkit.org Lightning Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes}} || {{Evaluating|Pending BOLT update}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcoindevkit.org Bitcoin Dev Kit] || Rust || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.14.0 0.14.0]}} || {{Yes|Yes, since [https://github.com/bitcoindevkit/bdk/releases/tag/v0.19.0 0.19.0]}} || P2TR support is &amp;quot;experimental&amp;quot;, see [https://github.com/bitcoindevkit/bdk/pull/593 PR #593]&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/ElementsProject/libwally-core libwally-core] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} || {{Yes|Yes, since [https://github.com/ElementsProject/libwally-core/releases/tag/release_0.8.4 0.8.4]}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Blockstream/gdk GDK] || C || {{Yes}} || {{Yes}} || {{Yes|Yes, since [https://github.com/Blockstream/gdk/releases/tag/release_0.0.47 0.0.47]}} || {{Evaluating|??}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/Simplexum/python-bitcointx python-bitcointx] || Python || {{Yes}} ||  {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/Simplexum/python-bitcointx/issues/57&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/dgarage/NBXplorer/ NBXPlorer] || C# || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://twitter.com/NicolasDorier/status/1432354822888431619&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/acinq/bitcoin-kmp  Kotlin Multiplatform Bitcoin Library] || Kotlin || {{Yes}} || {{Yes}} || {{Yes}} || {{Planned}} || https://twitter.com/realtbast/status/1458533450919649284&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/libbitcoin  Libbitcoin] || C++ || {{Yes}} || {{Evaluating|??}} || {{Yes}} || {{Evaluating|??}} || https://github.com/libbitcoin/libbitcoin-system/blob/master/include/bitcoin/system/wallet/addresses/witness_address.hpp#L41&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/chaintope/bitcoinrb Bitcoinrb] || Ruby || {{Yes}} || {{Yes}} || {{Yes}} || {{Yes}} || https://github.com/chaintope/bitcoinrb/wiki/Taproot&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
=== Other Services ===&lt;br /&gt;
&lt;br /&gt;
Casinos, marketplaces, etc that let users withdraw money&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Withdrawals !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1Broker || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| [https://crypto.games Crypto.Games]|| {{Yes}} || [https://bitcointalk.org/index.php?topic=750760.msg31421151#msg31421151 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| YOLOdice || {{Yes}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=68878</id>
		<title>Poolin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=68878"/>
		<updated>2021-08-17T14:37:30Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= KEVIN PAN, CEO&lt;br /&gt;
TIANZHAO LI, CTO&lt;br /&gt;
CHRISTOPHER ZHU, COO&lt;br /&gt;
|foundation= 2018&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.poolin.com}}&lt;br /&gt;
[https://www.poolin.com Poolin.com] is a Bitcoin &amp;amp; multi-cryptocurrency [[mining pool]]. Started by the founders of BTC.com.&amp;lt;br /&amp;gt; They also provide a custodial [[wallet]] https://poolinwallet.com/ and a [[block explorer]] https://explorer.poolin.com. (discountinued)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.poolin.com/&lt;br /&gt;
* Official English thread: https://bitcointalk.org/index.php?topic=700411.0&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Wallet&amp;diff=68144</id>
		<title>Wallet</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Wallet&amp;diff=68144"/>
		<updated>2020-08-19T12:34:59Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added poolin wallet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A Bitcoin &#039;&#039;&#039;wallet&#039;&#039;&#039; is a collection of private keys but may also refer to [[Clients|client software]] used to manage those keys and to make transactions on the Bitcoin network.&lt;br /&gt;
&lt;br /&gt;
This page covers various wallet formats in use.&lt;br /&gt;
&lt;br /&gt;
=== [[Bitcoin Core]] ===&lt;br /&gt;
&lt;br /&gt;
The original Bitcoin client stores private key information in a file named &#039;&#039;&#039;wallet.dat&#039;&#039;&#039; following the so called [https://bitcointalk.org/index.php?topic=4448.0 &amp;quot;bitkeys&amp;quot;] format.&lt;br /&gt;
&lt;br /&gt;
The wallet.dat file contains your private keys, public keys, scripts (which correspond to addresses), key metadata (e.g. labels), and the transactions related to your wallet. If you have an HD wallet, it also includes the HD seed and the derivation paths for each private key.&lt;br /&gt;
&lt;br /&gt;
It contains:&lt;br /&gt;
&lt;br /&gt;
* keypairs for each of your [[address|addresses]]&lt;br /&gt;
* transactions done from/to your addresses&lt;br /&gt;
* user preferences &lt;br /&gt;
* default key&lt;br /&gt;
* reserve keys&lt;br /&gt;
* [[Accounts_explained|accounts]]&lt;br /&gt;
* a version number&lt;br /&gt;
* [[Key pool]]&lt;br /&gt;
* Since 0.3.21: information about the current best chain, to be able to rescan automatically when restoring from a backup.&lt;br /&gt;
&lt;br /&gt;
The wallet.dat file is located in the [[data directory|Bitcoin data directory]] and may be [[Wallet_encryption|encrypted with a password]].&lt;br /&gt;
&lt;br /&gt;
It is intended that a wallet file be used on only one installation of Bitcoin at a time.  Attempting to clone a wallet file for use on multiple computers will result in &amp;quot;weird behavior&amp;quot;&amp;lt;ref&amp;gt;[http://bitcointalk.org/index.php?topic=5324.msg77896#msg77896 Multiple instance of bitcoin with the same wallet]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The format of this file is Berkeley DB.  Tools that can manipulate wallet files include [[pywallet]].&lt;br /&gt;
&lt;br /&gt;
=== [[Armory]] ===&lt;br /&gt;
&lt;br /&gt;
The Armory client uses a custom [[Deterministic wallet]] format [https://www.bitcoinarmory.com/wallet-format/ described here] and runs on top of [[Bitcoin Core]].&lt;br /&gt;
&lt;br /&gt;
=== [[Bitcoin Wallet]] ===&lt;br /&gt;
	 &lt;br /&gt;
[[File:bitcoin_wallet.png|192px]] Bitcoin Wallet uses the bitcoinj [http://code.google.com/p/protobuf/ protobuf] format for its wallet file. However, due to Android isolation of applications, it is impossible to access the wallet file as a non-root user.&lt;br /&gt;
&lt;br /&gt;
=== [[Blockchain.info#Wallet|Blockchain.info]] ===&lt;br /&gt;
&lt;br /&gt;
Blockchain.info offers a [[Browser-based_wallet#Hybrid_e-wallets|hybrid eWallet]] called &amp;quot;My Wallet&amp;quot;.  It use a plain text [https://blockchain.info/wallet/wallet-format JSON wallet format]. Private keys Keys are stored in base58.&lt;br /&gt;
&lt;br /&gt;
=== [[Denarium.com]] ===&lt;br /&gt;
&lt;br /&gt;
Denarium is Physical Bitcoin coin manufacturer. Denarium produces easy, handy and secure wallets in a coin form. The private key is stored under a security seal without password protection. Denarium also offers a trustless multisignature coins, which eliminates the need to trust the manufacturer.&lt;br /&gt;
&lt;br /&gt;
=== [[Ledger Wallet]] ===&lt;br /&gt;
&lt;br /&gt;
Ledger Wallet manufactures various hardware wallets.&lt;br /&gt;
=== [[Blockchain_App_Factory|Blockchain App Factory]] ===&lt;br /&gt;
&lt;br /&gt;
Blockchain App Factory offers Whitelabel cryptocurrency wallet with the latest features, unrivaled security, and user-friendly design to safeguard your cryptocurrencies and monitor them 24/7.&lt;br /&gt;
&lt;br /&gt;
=== [[Multibit]] ===&lt;br /&gt;
&lt;br /&gt;
Multibit HD (the current version) uses a [[BIP 0032]] (type 2) [[Deterministic wallet]] with the [https://www.multibit.org/en/help/hd0.1/files.html format described here].  The &amp;quot;Classic&amp;quot; version used the bitcoinj [https://github.com/google/protobuf protobuf] wallet file.&lt;br /&gt;
&lt;br /&gt;
=== [[Blocktrail]] ===&lt;br /&gt;
&lt;br /&gt;
Blocktrail offers a [[BIP 0032]] (type 2) [[Deterministic wallet]] and for added security also implements [[Multisignature]] wallet technology. &lt;br /&gt;
&lt;br /&gt;
=== [[TREZOR]] ===&lt;br /&gt;
&lt;br /&gt;
TREZOR is an isolated hardware environment for offline transaction signing and using a small display you can visually verify the transaction contents.&lt;br /&gt;
&lt;br /&gt;
=== [https://opendime.com Opendime] ===&lt;br /&gt;
&lt;br /&gt;
Opendime is a small USB stick that allows you to spend Bitcoin like a dollar bill. Pass it along multiple times. Connect to any USB to check balance. Unseal anytime to spend online. Trust no one.&lt;br /&gt;
&lt;br /&gt;
=== [[Poolin]] Wallet [https://poolinwallet.com/] ===&lt;br /&gt;
&lt;br /&gt;
Poolin Wallet is a multi-cryptocurrency wallet with support for bitcoin, ethereum, tether, USDC, Bitcoin Cash, Litecoin, BitcoinSV, Dash, Zcash, Doge, Decred, Ravencoin and more. Financial products exist within the app, such as lending, borrowing and interest earning.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Transaction fees]]&lt;br /&gt;
* [[Securing your wallet]]&lt;br /&gt;
* [[EWallet]]&lt;br /&gt;
* [[Deterministic Wallet]]&lt;br /&gt;
* [https://bitcoin.org/en/choose-your-wallet Choose your wallet]&lt;br /&gt;
* [https://allprivatekeys.com/wallet.dat wallet.dat files with balance and lost password]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
[[Category:Wallets| ]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Block_chain_browser&amp;diff=68143</id>
		<title>Block chain browser</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Block_chain_browser&amp;diff=68143"/>
		<updated>2020-08-19T12:15:59Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: /* List of blockchain explorers */ added new poolin block explorer.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Block Explorer==&lt;br /&gt;
&lt;br /&gt;
A Blockchain Explorer is a web application to view and query [https://en.bitcoin.it/wiki/Block blocks] &amp;lt;ref&amp;gt;Blockchain for dummies p 99 -  Tiana Laurence - ISBN 978-1119365594&amp;lt;/ref&amp;gt; working as a  [https://en.bitcoin.it/wiki/Web_browser web browser] that is not connected to the internet, like Google Chrome, but to the [https://en.bitcoin.it/wiki/Blockchain Blockchain]. Their primary function is to allow everyone with an internet connection to track in real-time all the [https://en.bitcoin.it/wiki/Transaction_confirmation transactions] or interactions made by each [https://en.bitcoin.it/wiki/Cryptocurrency cryptocurrencies] holders, regardless of his or her level of knowledge and expertise. &amp;lt;ref&amp;gt;Blockchain Enabled Application p.21 - David Metcalf -  ISBN 978-1484230800&amp;lt;/ref&amp;gt;. However, although there are plenty of Explorer available, only a tiny minority are able to show the transaction using [https://en.bitcoin.it/wiki/Segregated_Witness SegWit] (Bitcoin bech32 addresses start with “bc1”) &amp;lt;ref&amp;gt;Blockchain: A Practical Guide to Developing Business, Law, and Technology Solutions 1st Edition p.19- Joseph J. Bambara - ISBN 978-1260115871&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==The default view==&lt;br /&gt;
&lt;br /&gt;
The default view in the main page generally provides in real time information about of all the last blocks that are being added to the blockchain, most often separated into six columns with this following informations:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Block height:&#039;&#039;&#039; &amp;lt;ref&amp;gt;Mastering Bitcoin p.28 - Andreas M. Antonopoulos - ISBN 978-1491954386&amp;lt;/ref&amp;gt;  block number since the Bitcoin [https://en.bitcoin.it/wiki/Genesis_block genesis block] was [https://en.bitcoin.it/wiki/Mining mined]. Each new mined block assumes an increase of one at the height of the block. Thus, the number 492800 in this column means this is the 492800th block mined in the whole history.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Age:&#039;&#039;&#039; the moment when the block was accepted by a miner and not when the user initiated a payment or transfer to another wallet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[https://en.bitcoin.it/wiki/Transaction_confirmation Confirmation]:&#039;&#039;&#039; The most relevant information visible at a glance, the transaction status. If a transaction is «unconfirmed» or «pending», that means the transaction is in the Blockchain, but has not included in a block yet. In average, it takes typically 10 minutes for a bitcoin transaction to be confirmed. It will take about one hour to get «confirmed» by six confirmations.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Transaction list (TX):&#039;&#039;&#039; number of transactions included in the block. &amp;lt;ref&amp;gt;Blockchain: A Practical Guide to Developing Business, Law, and Technology Solutions 1st Edition p.18- Joseph J. Bambara - ISBN 978-1260115871&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reward:&#039;&#039;&#039; the reward for those (miners) who mined the block.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mined by:&#039;&#039;&#039; name of the miner who mined this block. Usually a pool of miners who had been involved in.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Size:&#039;&#039;&#039; size of the transaction obtained by adding the sizes of each transactions included in the block. This data is always provided in bytes.&lt;br /&gt;
&lt;br /&gt;
==The browser==&lt;br /&gt;
&lt;br /&gt;
In the same way as with an Internet browser, the user needs to enter a request to begin his search. It can be a transaction hash or TXID &amp;lt;ref&amp;gt;beginning-blockchain-guide-building-solutions p.278 - Bikramaditya Singhal - ISBN 978-1484234433&amp;lt;/ref&amp;gt;(sequence of 64 characters hexadecimal (0 to 9 and a to f) numbers used to uniquely identify a particular transaction) or a block height for example. Automatically, a page containing all the details about the transaction is loaded according to the request. Advanced information contains all the movements in this transaction and is only available at the user&#039;s request. Most of the time, a bitcoin transaction has several input and output [https://en.bitcoin.it/wiki/Bitcoin_address addresses] insofar as it allows a sender to save time and money by sending to several addresses at once. All the following data will be displayed:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;TXID:&#039;&#039;&#039; as mentioned above&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Input:&#039;&#039;&#039;  transaction inputs are pointers to UTXO &amp;lt;ref&amp;gt;Blockchain Enabled Application p.18 - David Metcalf -  ISBN 978-1484230800&amp;lt;/ref&amp;gt;. They point to a specific UTXO by reference to the transaction hash and sequence number where the UTXO is recorded in the blockchain. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Output:&#039;&#039;&#039; contains instructions for sending bitcoins &amp;lt;ref&amp;gt;Blockchain Enabled Application p.18 - David Metcalf -  ISBN 978-1484230800&amp;lt;/ref&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Value:&#039;&#039;&#039; the number of Satoshi (1 BTC = 100,000,000 Satoshi) that this output will be worth when claimed. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ScriptPubKey:&#039;&#039;&#039; the second half of a script. There can be more than one output. Because each output from one transaction can only ever be referenced once by an input of a subsequent transaction, the entire combined input value needs to be sent in an output if the user doesn&#039;t want to lose it. &amp;lt;ref&amp;gt;beginning-blockchain-guide-building-solutions p.201-202 - Bikramaditya Singhal - ISBN 978-1484234433&amp;lt;/ref&amp;gt; If the input is worth 50 BTC but a consumer only want to send 25 BTC, Bitcoin will create two outputs worth 25 BTC. This section is divided into two parts. The first, the top line, showing the total amount that the recipient has to receive in BTC, known as the destination. And the other part, below, showing the amount of bitcoins back to the user that remains in the wallet and which can be used as a new input in a subsequent transaction. Any input bitcoins not redeemed in an output is considered a transaction fee.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Transaction Fees:&#039;&#039;&#039; most transactions include transaction fees, which compensate the bitcoin miners for securing the network. Transaction fees serve as an incentive to include (mine) a transaction into the next block and also as a disincentive against “spam” transactions or any kind of abuse of the system, by imposing a small cost on every transaction. Transaction fees are collected by the miner who mines the block that records the transaction on the blockchain. &amp;lt;ref&amp;gt;Mastering Bitcoin p.127 - Andreas M. Antonopoulos - ISBN 978-1491954386&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coinbase Data:&#039;&#039;&#039; This field must be between 2 and 100 bytes. Except for the first few bytes the rest of the coinbase data can be used by miners in any way they want; it is arbitrary data. In the genesis block, for example, Satoshi Nakamoto added the text “The Times 03/Jan/ 2009 Chancellor on brink of second bailout for banks” in the coinbase data, using it as a proof of the date and to convey a message. Currently, miners use the coinbase data to include extra nonce values and strings identifying the mining pool. &amp;lt;ref&amp;gt;Mastering Bitcoin p.225 - Andreas M. Antonopoulos - ISBN 978-1491954386&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==List of blockchain explorers==&lt;br /&gt;
* https://bitaps.com	Explorer that supports Segwit&lt;br /&gt;
* https://apirone.com/btc/	Explorer that supports Segwit&lt;br /&gt;
* https://blockstream.info/	&lt;br /&gt;
* https://bitupper.com/en/explorer/bitcoin	Explorer that supports Segwit&lt;br /&gt;
* http://btcblockexplorer.financialplugins.com	&lt;br /&gt;
* https://bitcoinchain.com	&lt;br /&gt;
* https://bitinfocharts.com/bitcoin&lt;br /&gt;
* https://blockchain.info	&lt;br /&gt;
* https://blockchair.com/	Explorer that supports Segwit, privacy centric&lt;br /&gt;
* https://blockexplorer.com/	&lt;br /&gt;
* https://btc.com/	Explorer that supports Segwit	&lt;br /&gt;
* https://chain.so/BTC	&lt;br /&gt;
* https://chainz.cryptoid.info/btc	Explorer that supports Segwit&lt;br /&gt;
* https://explorer.bitcoin.com/btc	&lt;br /&gt;
* https://insight.bitpay.com&lt;br /&gt;
* https://live.blockcypher.com/btc	&lt;br /&gt;
* https://multihash.net	&lt;br /&gt;
* https://btc.blockdozer.com	&lt;br /&gt;
* https://www.blockonomics.co	Explorer that supports Segwit&lt;br /&gt;
* https://www.blocktrail.com/BTC	&lt;br /&gt;
* https://www.smartbit.com.au&lt;br /&gt;
* https://explorer.poolin.com/ Explorer that supports Segwit&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
	&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=68142</id>
		<title>Poolin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=68142"/>
		<updated>2020-08-19T10:55:45Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added two new products.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= KEVIN PAN, CEO&lt;br /&gt;
TIANZHAO LI, CTO&lt;br /&gt;
CHRISTOPHER ZHU, COO&lt;br /&gt;
|foundation= 2018&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.poolin.com}}&lt;br /&gt;
[https://www.poolin.com Poolin.com] is a Bitcoin &amp;amp; multi-cryptocurrency [[mining pool]]. Started by the founders of BTC.com.&amp;lt;br /&amp;gt; They also provide a custodial [[wallet]] https://poolinwallet.com/ and a [[block explorer]] https://explorer.poolin.com.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.poolin.com/&lt;br /&gt;
* Official English thread: https://bitcointalk.org/index.php?topic=700411.0&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=67982</id>
		<title>Poolin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=67982"/>
		<updated>2020-06-18T12:11:28Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= KEVIN PAN, CEO&lt;br /&gt;
TIANZHAO LI, CTO&lt;br /&gt;
CHRISTOPHER ZHU, COO&lt;br /&gt;
|foundation= 2017&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.poolin.com}}&lt;br /&gt;
[https://www.poolin.com Poolin.com] is a Bitcoin &amp;amp; multi-cryptocurrency [[mining pool]]. Started by the founders of BTC.com&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Mining Pool]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.poolin.com/&lt;br /&gt;
* Official English thread: https://bitcointalk.org/index.php?topic=700411.0&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=67981</id>
		<title>Poolin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=67981"/>
		<updated>2020-06-18T12:10:53Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= KEVIN PAN, CEO&lt;br /&gt;
TIANZHAO LI, CTO&lt;br /&gt;
CHRISTOPHER ZHU, COO&lt;br /&gt;
ALEJANDRO DE LA TORRE, VP&lt;br /&gt;
|foundation= 2017&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.poolin.com}}&lt;br /&gt;
[https://www.poolin.com Poolin.com] is a Bitcoin &amp;amp; multi-cryptocurrency [[mining pool]]. Started by the founders of BTC.com&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Mining Pool]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.poolin.com/&lt;br /&gt;
* Official English thread: https://bitcointalk.org/index.php?topic=700411.0&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=67980</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=67980"/>
		<updated>2020-06-18T12:01:13Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 12.5 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (12.5 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]], [[DOGE]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|us|}}{{flag|eu|}}{{flag|cn|}}                || Large || LTC, NMC, SYS, EMC || PPS+                     || {{SharedFees}}    || 2.5%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Merge Mining Pool]]      || {{flag|us|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]&lt;br /&gt;
|                                                                    DGM                     || {{SharedFees}}     ||      || 1.5%    || {{Yes}}    || {{No}}&lt;br /&gt;
| 2012-01-08 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=57148  link] || [http://mmpool.org link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Large ||[[NMC]] [[DOGE]] VCASH || FPPS  || {{SharedFees}}   ||    2.5% ||      0% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Luxor]]       || {{flag|us|label=1}}||    Medium || BTC, DASH, ZEC, ZEN, DCR, SC, XMR, LBC, ARRR &amp;amp; KMD      || FPPS &amp;amp; PPS                     || {{SharedFees}} || 2% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2018-01-01 || VarDiff                       ||                                             || [https://mining.luxor.tech// link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=67979</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=67979"/>
		<updated>2020-06-18T12:00:12Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added new fee rate, and poolin is quite large nowadays.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 12.5 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (12.5 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]], [[DOGE]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|us|}}{{flag|eu|}}{{flag|cn|}}                || Large || LTC, NMC, SYS, EMC || PPS+                     || {{SharedFees}}    || 2.5%    ||    0%     || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Merge Mining Pool]]      || {{flag|us|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]&lt;br /&gt;
|                                                                    DGM                     || {{SharedFees}}     ||      || 1.5%    || {{Yes}}    || {{No}}&lt;br /&gt;
| 2012-01-08 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=57148  link] || [http://mmpool.org link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Large ||[[NMC]] [[DOGE]] VCASH || FPPS  || {{SharedFees}}   ||      ||      2.5% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Luxor]]       || {{flag|us|label=1}}||    Medium || BTC, DASH, ZEC, ZEN, DCR, SC, XMR, LBC, ARRR &amp;amp; KMD      || FPPS &amp;amp; PPS                     || {{SharedFees}} || 2% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2018-01-01 || VarDiff                       ||                                             || [https://mining.luxor.tech// link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=67978</id>
		<title>Poolin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=67978"/>
		<updated>2020-06-18T11:42:59Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= KEVIN PAN, CEO&lt;br /&gt;
CHRISTOPHER ZHU, COO&lt;br /&gt;
ALEJANDRO DE LA TORRE, VP&lt;br /&gt;
|foundation= 2017&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.poolin.com}}&lt;br /&gt;
[https://www.poolin.com Poolin.com] is a Bitcoin &amp;amp; multi-cryptocurrency [[mining pool]]. Started by the founders of BTC.com&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Mining Pool]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.poolin.com/&lt;br /&gt;
* Official English thread: https://bitcointalk.org/index.php?topic=700411.0&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=File:Logopoolin.jpg&amp;diff=66710</id>
		<title>File:Logopoolin.jpg</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=File:Logopoolin.jpg&amp;diff=66710"/>
		<updated>2019-09-04T19:55:13Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;logo poolin&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Template:Pools&amp;diff=66709</id>
		<title>Template:Pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Template:Pools&amp;diff=66709"/>
		<updated>2019-09-04T19:52:01Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added poolin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox_default&lt;br /&gt;
|title=[[Mining pool|Mining pools]]&lt;br /&gt;
|image=[[File:Bitcoin-proof-of-work.png|180px]]&lt;br /&gt;
|header=[[Pooled mining|Background]] • [[Comparison of mining pools|Comparison]]&lt;br /&gt;
|group1=Major&lt;br /&gt;
|group2=Active&lt;br /&gt;
|group3=Fledgling&lt;br /&gt;
|group4=Solo&lt;br /&gt;
|group5=Defunct&lt;br /&gt;
|list1=[[Bitfury]] • [[BTC Guild]] • [[BW]] • [[Eligius]] • [[F2Pool]] • [[KanoPool]] • [[P2Pool]] • [[PolMine]] • [[Bitcoin Pooled Mining|Slush&#039;s pool]] • [[Tangpool]] • [[Poolin]]&lt;br /&gt;
|list2=[[50BTC]] • [[AntPool]] • [[Bitalo]] • [[Bitcoin Affiliate Network]] • [[Bitfinex]] • [[BitMinter]] • [[BTCDig]] • [[btcmp]] • [[CloudHashing]] • [[Eclipse Mining Consortium|EclipseMC]] • [[Give Me COINS]] • [[Golden Nonce Pool]] • [[Merge Mining Pool|mmpool]] • [[MinerGate]] • [[Multipool]] • [[Halleychina.com]] • [[Ozco.in]] • [[Triplemining]]&lt;br /&gt;
|list3=[[Cucumber Pool]]&lt;br /&gt;
|list4=[[BitSolo]] • [[solo.ckpool]]&lt;br /&gt;
|list5=[[21bitcoin]] • [[ABCPool.co]] • [[ArsBitcoin]] • [[Betcoin.co Pool]] • [[Bitalo]] • [[BitClockers]] • [[Bitcoin-Station]] • [[BitcoinMining.Co]] • [[BitcoinPool.com]] • [[Bitcoins.lc]] • [[Bitp.it]] • [[BitPenny]] •  [[BTC Canada]] • [[BTCMine]] • [[BtcPool.ru]] • [[BTCPoolman]] • [[Coinium]] • [[Coinotron]] • [[Compute 4 Cash]] • [[Continuum]] • [[DeepBit]] • [[Galaxy Mining Pool|Galaxy]] • [[GHash.IO]] • [[Horrible Horrendous Terrible Tremendous|HHTT]] • [[KnCMiner]] • [[MegaBigPower]] • [[MineCo.in]] • [[Mining Team Reddit]] • [[Nexious]] • [[NoFeeMining]] • [[PolishPool]] • [[pool.itzod.ru]] • [[rfcpool]] • [[Simplecoin.us]] • [[Swepool]] • [[UnitedMiners]] • [[x8s]] • [[XKCD Pool]]&lt;br /&gt;
|footer=&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Transaction_accelerator&amp;diff=66708</id>
		<title>Transaction accelerator</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Transaction_accelerator&amp;diff=66708"/>
		<updated>2019-09-03T13:43:31Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added backlink&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=What to Do if Your Bitcoin Transaction Gets &amp;quot;Stuck&amp;quot;=&lt;br /&gt;
&lt;br /&gt;
The number of transactions on the Bitcoin network has steadily increased over the years. This means more blocks are filling up. And as not all transactions can be included in the blockchain straight away, backlogs form in miners’ “mempools” (a sort of “transaction queue.”)&lt;br /&gt;
&lt;br /&gt;
Miners typically pick the transactions that pay the most fees and include these in their blocks first. Transactions that include lower fees are “outbid” on the so called “fee market,” and remain in miners’ mempools until a new block is found. If the transaction is outbid again, it has to wait until the next block.&lt;br /&gt;
&lt;br /&gt;
This can lead to a suboptimal user experience. Transactions with too low a fee can take hours or even days to confirm, and sometimes never confirm at all.&lt;br /&gt;
&lt;br /&gt;
==Fee Bumping==&lt;br /&gt;
&lt;br /&gt;
The recommended approach to &amp;quot;accelerating&amp;quot; a transaction is to perform a [[fee bumping]] methods, either [[replace by fee|replace-by-fee]] (RBF), or [[Transaction fees#Feerates_for_dependent_transactions_.28child-pays-for-parent.29|child-pays-for-parent]] (CPFP), which are available to:&lt;br /&gt;
&lt;br /&gt;
* Sender of the Bitcoin transaction: Replace-by-fee (RBF), and Child-pays-for-parent (CPFP) &lt;br /&gt;
* Recipient of the Bitcoin transaction: Child-pays-for-parent (CPFP)&lt;br /&gt;
&lt;br /&gt;
==Bitcoin transaction accelerators==&lt;br /&gt;
&lt;br /&gt;
===Mining Pool Accelerators===&lt;br /&gt;
&lt;br /&gt;
A mining pool may offer a premium service in which they will prioritize a transaction, usually for a fee.  The ability for that pool to get a transaction confirmed is limited to their ability to get a block confirmed -- and most pools have a tiny [https://www.blockchain.com/pools fraction of the hashrate].  For example, if a pool has 10% of the hashrate, they mine about a block every 100 minutes (1 hour and 40 minutes), on average.  If a pool has 5% of the hashrate, then they mine one block about every 200 minutes (3 hours and 20 minutes), on average.        &lt;br /&gt;
&lt;br /&gt;
* https://pushtx.btc.com: This service is provided by BTC.com in cooperation with several main mining pools. The fee was around 70 USD on December 20, 2017 and the transaction was confirmed within 3 hours. You can pay by BCH or country-specific methods and they estimate the fee based on the transaction size. They promise a chance of 75% for including transactions in the next block within one hour. Within 4 hours the chance is claimed to be at 98%. They guarantee that if the transaction isn’t confirmed in 12 hours, the fees will be fully refunded to your card within 10 ~ 15 days. This policy is not applicable to the transactions which are removed or double-spent during the acceleration process.&lt;br /&gt;
&lt;br /&gt;
* [https://pool.viabtc.com/tools/txaccelerator/ ViaBTC] - overloaded as of December 20, 2017. ViaBTC implemented this service to protest against the prior 1MB limitation of the Bitcoin network. ViaBTC gives priority to user-submitted transactions for the next mined blocks by the ViaBTC pool. The only requirement is the transaction must include a minimum fee of 0.0001BTC/KB.The free-to-use nature of the service may have made it widely popular as every hour, the number of transaction requested reaches its limit and it is common to be presented with the message “Submissions are beyond limit. Please try later.” on the top middle of the page. This means one must wait for the next block to try a new submission. After submitting a transaction, there is a wait for the next block to be mined by ViaBTC Pool.&lt;br /&gt;
&lt;br /&gt;
* [https://pushtx.com PushTX] - [[Poolin]] provides a transaction accelerator service in cooperation with several leading mining pools. PushTX is a bitcoin transaction accelerator that allows you to get faster confirmations on your unconfirmed transaction.&lt;br /&gt;
&lt;br /&gt;
===Third Party Accelerators===&lt;br /&gt;
There are additional services claiming to be able to &amp;quot;accelerate&amp;quot; a transaction.  Their ability to get a transaction confirmed faster is limited to re-broadcasting your transaction, to help in the situation where that mining pool has dropped your transaction already.  The Bitcoin Core client already does re-broadcast a &amp;quot;stuck&amp;quot; transaction periodically to peer nodes, though these services possibly may broadcast a transaction directly to known mining pool nodes.  These services could also pay a mining pool to include your transaction, just as you could do that yourself.&lt;br /&gt;
&lt;br /&gt;
It is likely these &amp;quot;transaction accelerators&amp;quot; that are not the mining pools themselves &#039;&#039;&#039;are not actually helping to get a transaction confirmed faster&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* http://www.hooli1.net/: The service offer free and paid service. relatively new site. you can read more about it here before make a deceision: https://bitcointalk.org/index.php?topic=2717898.0 .&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* https://Confirmtx.com: The service asks for payment but there&#039;s no button to pay. Old note: &amp;quot;Warning This website turned into a big scam.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* https://bitaccelerate.com/ Free Bitcoin transaction accelerator. The service actually rebroadcasts your transaction via different nodes.&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Transaction_accelerator&amp;diff=66707</id>
		<title>Transaction accelerator</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Transaction_accelerator&amp;diff=66707"/>
		<updated>2019-09-03T13:42:10Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: /* Mining Pool Accelerators */  added pushtx, form poolin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=What to Do if Your Bitcoin Transaction Gets &amp;quot;Stuck&amp;quot;=&lt;br /&gt;
&lt;br /&gt;
The number of transactions on the Bitcoin network has steadily increased over the years. This means more blocks are filling up. And as not all transactions can be included in the blockchain straight away, backlogs form in miners’ “mempools” (a sort of “transaction queue.”)&lt;br /&gt;
&lt;br /&gt;
Miners typically pick the transactions that pay the most fees and include these in their blocks first. Transactions that include lower fees are “outbid” on the so called “fee market,” and remain in miners’ mempools until a new block is found. If the transaction is outbid again, it has to wait until the next block.&lt;br /&gt;
&lt;br /&gt;
This can lead to a suboptimal user experience. Transactions with too low a fee can take hours or even days to confirm, and sometimes never confirm at all.&lt;br /&gt;
&lt;br /&gt;
==Fee Bumping==&lt;br /&gt;
&lt;br /&gt;
The recommended approach to &amp;quot;accelerating&amp;quot; a transaction is to perform a [[fee bumping]] methods, either [[replace by fee|replace-by-fee]] (RBF), or [[Transaction fees#Feerates_for_dependent_transactions_.28child-pays-for-parent.29|child-pays-for-parent]] (CPFP), which are available to:&lt;br /&gt;
&lt;br /&gt;
* Sender of the Bitcoin transaction: Replace-by-fee (RBF), and Child-pays-for-parent (CPFP) &lt;br /&gt;
* Recipient of the Bitcoin transaction: Child-pays-for-parent (CPFP)&lt;br /&gt;
&lt;br /&gt;
==Bitcoin transaction accelerators==&lt;br /&gt;
&lt;br /&gt;
===Mining Pool Accelerators===&lt;br /&gt;
&lt;br /&gt;
A mining pool may offer a premium service in which they will prioritize a transaction, usually for a fee.  The ability for that pool to get a transaction confirmed is limited to their ability to get a block confirmed -- and most pools have a tiny [https://www.blockchain.com/pools fraction of the hashrate].  For example, if a pool has 10% of the hashrate, they mine about a block every 100 minutes (1 hour and 40 minutes), on average.  If a pool has 5% of the hashrate, then they mine one block about every 200 minutes (3 hours and 20 minutes), on average.        &lt;br /&gt;
&lt;br /&gt;
* https://pushtx.btc.com: This service is provided by BTC.com in cooperation with several main mining pools. The fee was around 70 USD on December 20, 2017 and the transaction was confirmed within 3 hours. You can pay by BCH or country-specific methods and they estimate the fee based on the transaction size. They promise a chance of 75% for including transactions in the next block within one hour. Within 4 hours the chance is claimed to be at 98%. They guarantee that if the transaction isn’t confirmed in 12 hours, the fees will be fully refunded to your card within 10 ~ 15 days. This policy is not applicable to the transactions which are removed or double-spent during the acceleration process.&lt;br /&gt;
&lt;br /&gt;
* [https://pool.viabtc.com/tools/txaccelerator/ ViaBTC] - overloaded as of December 20, 2017. ViaBTC implemented this service to protest against the prior 1MB limitation of the Bitcoin network. ViaBTC gives priority to user-submitted transactions for the next mined blocks by the ViaBTC pool. The only requirement is the transaction must include a minimum fee of 0.0001BTC/KB.The free-to-use nature of the service may have made it widely popular as every hour, the number of transaction requested reaches its limit and it is common to be presented with the message “Submissions are beyond limit. Please try later.” on the top middle of the page. This means one must wait for the next block to try a new submission. After submitting a transaction, there is a wait for the next block to be mined by ViaBTC Pool.&lt;br /&gt;
&lt;br /&gt;
* [https://pushtx.com PushTX] - Poolin provides a transaction accelerator service in cooperation with several leading mining pools. PushTX is a bitcoin transaction accelerator that allows you to get faster confirmations on your unconfirmed transaction.&lt;br /&gt;
&lt;br /&gt;
===Third Party Accelerators===&lt;br /&gt;
There are additional services claiming to be able to &amp;quot;accelerate&amp;quot; a transaction.  Their ability to get a transaction confirmed faster is limited to re-broadcasting your transaction, to help in the situation where that mining pool has dropped your transaction already.  The Bitcoin Core client already does re-broadcast a &amp;quot;stuck&amp;quot; transaction periodically to peer nodes, though these services possibly may broadcast a transaction directly to known mining pool nodes.  These services could also pay a mining pool to include your transaction, just as you could do that yourself.&lt;br /&gt;
&lt;br /&gt;
It is likely these &amp;quot;transaction accelerators&amp;quot; that are not the mining pools themselves &#039;&#039;&#039;are not actually helping to get a transaction confirmed faster&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
* http://www.hooli1.net/: The service offer free and paid service. relatively new site. you can read more about it here before make a deceision: https://bitcointalk.org/index.php?topic=2717898.0 .&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* https://Confirmtx.com: The service asks for payment but there&#039;s no button to pay. Old note: &amp;quot;Warning This website turned into a big scam.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* https://bitaccelerate.com/ Free Bitcoin transaction accelerator. The service actually rebroadcasts your transaction via different nodes.&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=66706</id>
		<title>Poolin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=66706"/>
		<updated>2019-09-03T13:34:26Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added external links to site and btctalk&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= KEVIN PAN, CEO&lt;br /&gt;
CHRISTOPHER ZHU, COO&lt;br /&gt;
TIANZHAO LI, CTO&lt;br /&gt;
|foundation= 2017&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.poolin.com}}&lt;br /&gt;
[https://www.poolin.com Poolin.com] is a multi-currency [[mining pool]]. Started by the founders of BTC.com&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Mining Pool]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* Website: https://www.poolin.com/&lt;br /&gt;
* Official English thread: https://bitcointalk.org/index.php?topic=700411.0&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=66650</id>
		<title>Poolin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Poolin&amp;diff=66650"/>
		<updated>2019-07-30T10:29:38Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: created page for poolin.com a bitcoin mining pool.,&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|&lt;br /&gt;
|founder= KEVIN PAN, CEO&lt;br /&gt;
CHRISTOPHER ZHU, COO&lt;br /&gt;
TIANZHAO LI, CTO&lt;br /&gt;
|foundation= 2017&lt;br /&gt;
|industry=[[Mining Pool]]&lt;br /&gt;
|website=https://www.poolin.com}}&lt;br /&gt;
[https://www.poolin.com Poolin.com] is a multi-currency [[mining pool]]. Started by the founders of BTC.com&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Mining Pool]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=66649</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=66649"/>
		<updated>2019-07-30T05:49:25Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added date&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 12.5 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (12.5 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]], [[DOGE]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|cn|}}{{flag|us|}}                || Large || LTC, [[NMC]], SYS, EMC || PPS                     || {{PoolFees}}    || 3%    ||         || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Merge Mining Pool]]      || {{flag|us|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]&lt;br /&gt;
|                                                                    DGM                     || {{SharedFees}}     ||      || 1.5%    || {{Yes}}    || {{No}}&lt;br /&gt;
| 2012-01-08 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=57148  link] || [http://mmpool.org link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Medium ||[[NMC]] [[DOGE]] VCASH || FPPS  || {{SharedFees}}   ||      ||      4% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017-10-01 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=66648</id>
		<title>Comparison of mining pools</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Comparison_of_mining_pools&amp;diff=66648"/>
		<updated>2019-07-30T04:25:22Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added poolin pool&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reward types &amp;amp; explanation:&lt;br /&gt;
* &#039;&#039;&#039;CPPSRB&#039;&#039;&#039; - Capped Pay Per Share with Recent Backpay. [http://eligius.st/wiki/index.php/Capped_PPS_with_Recent_Backpay]&lt;br /&gt;
* &#039;&#039;&#039;DGM&#039;&#039;&#039; - Double Geometric Method.  A hybrid between PPLNS and Geometric reward types that enables to operator to absorb some of the variance risk.  Operator receives portion of payout on short rounds and returns it on longer rounds to normalize payments. [https://bitcointalk.org/index.php?topic=39497.0]&lt;br /&gt;
* &#039;&#039;&#039;ESMPPS&#039;&#039;&#039; - Equalized Shared Maximum Pay Per Share. Like SMPPS, but equalizes payments fairly among all those who are owed. [http://bitcointalk.org/index.php?topic=12181.msg378851#msg378851]&lt;br /&gt;
* &#039;&#039;&#039;POT&#039;&#039;&#039; - Pay On Target. A high variance PPS variant that pays on the difficulty of work returned to pool rather than the difficulty of work served by pool [https://bitcointalk.org/index.php?topic=131376.0]&lt;br /&gt;
* &#039;&#039;&#039;PPLNS&#039;&#039;&#039; - Pay Per Last N Shares. Similar to proportional, but instead of looking at the number of shares in the round, instead looks at the last N shares, regardless of round boundaries.&lt;br /&gt;
* &#039;&#039;&#039;PPLNSG&#039;&#039;&#039; - Pay Per Last N Groups (or shifts). Similar to PPLNS, but shares are grouped into &amp;quot;shifts&amp;quot; which are paid as a whole.&lt;br /&gt;
* &#039;&#039;&#039;PPS&#039;&#039;&#039; - Pay Per Share. Each submitted share is worth certain amount of BTC. Since finding a block requires &amp;lt;current difficulty&amp;gt; shares &#039;&#039;on average&#039;&#039;, a PPS method with 0% fee would be 12.5 BTC divided by &amp;lt;current difficulty&amp;gt;. It is risky for pool operators, hence the fee is highest.&lt;br /&gt;
* &#039;&#039;&#039;Prop.&#039;&#039;&#039; - Proportional. When block is found, the reward is distributed among all workers proportionally to how much shares each of them has found.&lt;br /&gt;
* &#039;&#039;&#039;RSMPPS&#039;&#039;&#039; - Recent Shared Maximum Pay Per Share. Like SMPPS, but system aims to prioritize the most recent miners first. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;Score&#039;&#039;&#039; - Score based system: a proportional reward, but weighed by time submitted. Each submitted share is worth more in the function of time &#039;&#039;t&#039;&#039; since start of current round. For each share score is updated by: score += exp(t/C). This makes later shares worth much more than earlier shares, thus the miner&#039;s score quickly diminishes when they stop mining on the pool. Rewards are calculated proportionally to scores (and not to shares). (at slush&#039;s pool C=300 seconds, and every hour scores are normalized)&lt;br /&gt;
* &#039;&#039;&#039;SMPPS&#039;&#039;&#039; - Shared Maximum Pay Per Share. Like Pay Per Share, but never pays more than the pool earns. [http://eligius.st/wiki/index.php/Shared_Maximum_PPS]&lt;br /&gt;
* &#039;&#039;&#039;FPPS&#039;&#039;&#039; - Full Pay Per Share. Similar to PPS，but not only divide regular block reward (12.5 BTC for now) but also some of the transaction fees.  Calculate a standard transaction fee within a certain period and distribute it to miners according to their hash power contributions in the pool. It will increase the miners&#039; earnings by sharing some of the transaction fees.&lt;br /&gt;
&lt;br /&gt;
A statistically valid analysis of some pools and their payout methods: [http://organofcorti.blogspot.com/ Bitcoin network and pool analysis]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name                !! Location             !! Size&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                         Merged Mining&amp;lt;ref name=&amp;quot;merged&amp;quot;/&amp;gt;&lt;br /&gt;
!                                                                    Reward Type             !! Transaction fees!!PPS Fee!!Other Fee!! [[File:Stm.png|link=Stratum_mining_protocol]] !! [[getblocktemplate|GBT]]&lt;br /&gt;
! Launched   !! Variance                     !! Forum                                       !! Website&lt;br /&gt;
|-&lt;br /&gt;
| [[AntPool]]         || China                || Large || No       || PPLNS &amp;amp; PPS             || {{PoolFees}}    || 2.5%  || 0%      || {{Yes}} || {{No}}&lt;br /&gt;
| ?          || ?                            || [https://bitcointalk.org/index.php?topic=855548 link]  || [https://www.antpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BCMonster.com]]        ||{{flag|us|}}{{flag|eu}}{{flag|cn|}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-01-13 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1327077.0  link]                                || [http://www.bcmonster.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitcoinAffiliateNetwork]]     || {{flag|us|}}{{flag|eu}}{{flag|cn|}}{{flag|nl|}}{{flag|au|}}      ||   ?   || [[NMC]], [[DOGE]] || ?         || {{PoolFees}}     ||   ? ||    ?    ||    {{Yes}}     ||&lt;br /&gt;
| 2014-07-15 || User/Dynamic           || [https://bitcointalk.org/index.php?topic=722202.0  link] || [http://mining.bitcoinaffiliatenetwork.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BitMinter]]       || {{flag|us}}{{flag|ca|label=1}}{{flag|eu}}          || Small || [[NMC]] || PPLNSG                  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-26 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic || [https://bitcointalk.org/?topic=788753  link] || [https://bitminter.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTC.com]]         || {{flag|cn}}{{flag|us|}}{{flag|eu}}               || Medium || [[NMC]]      || FPPS           || {{SharedFees}}    || 0%  || 4%      || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-09-13          ||      User                     || [https://bitcointalk.org/index.php?topic=1827718.0 link]  || [https://pool.btc.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCC Pool]]            || China, Japan       || Large     || [[NMC]]       || PPS                       || {{PoolFees}}    || 2.0%     || 0%       || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2014-10-21           ||  Dynamic                            || ?                                      || [https://pool.btcc.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BTCDig]]         || {{flag|us|label=1}}||    Small || No      || DGM                   || {{PoolFees}}     ||      ||      0% ||  {{Yes}}     ||&lt;br /&gt;
| 2013-07-04 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 20SPM                      || [https://bitcointalk.org/index.php?topic=249627   link] || [http://btcdig.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcmp.com]]       || {{flag|de|label=1}}||    Small || No      || PPS                     || {{PoolFees}}     ||   4% ||  || {{Yes}} ||&lt;br /&gt;
| 2011-06-28 || Diff 1                       ||                                             || [http://www.btcmp.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[btcZPool.com]]       || {{flag|us|label=1}}||    Large || BitCoinZ      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-06-25 || VarDiff                       ||                                             || [http://www.btcZPool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[BW Mining]]      || China                || Medium || ?       || PPLNS &amp;amp; PPS             || ?               || ?     || ?       || {{Yes}} ||&lt;br /&gt;
| ?          || ?                            || ?                                           || [https://www.bw.com/pool link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eligius]]         || {{flag|us|label=1}}|| Small || [[NMC]]  || CPPSRB                  || {{SharedFees}}   ||    ||     0%    || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2011-04-27 || Dynamic: 32 shares/m         || [https://bitcointalk.org/?topic=441465  link] || [http://eligius.st link]&lt;br /&gt;
|-&lt;br /&gt;
| [[F2Pool]]          || {{flag|cn|}}{{flag|us|}}                || Large || LTC, [[NMC]], SYS, EMC || PPS                     || {{PoolFees}}    || 3%    ||         || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-05-05 || Dynamic               || [https://bitcointalk.org/index.php?topic=700411.0 link] || [https://www.f2pool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[GHash.IO]]        || {{flag|nl|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]      || PPLNS                  || {{SharedFees}}   ||       ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2013-07-01 ||           User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||   [https://support.cex.io  link]                                || [https://ghash.io/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Give Me COINS]]   || {{flag|us}}{{flag|eu}}          || Small || [[NMC]]   || PPLNS                  || {{SharedFees}}     ||    ||  0%|| {{Yes}} || {{Yes}}&lt;br /&gt;
| 2013-08-12 || Dynamic         || [https://bitcointalk.org/index.php?topic=272017.0  link] || [http://give-me-coins.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Golden Nonce Pool]]         || {{flag|us}}{{flag|eu}}|| Small || No      || DGM                || {{PoolFees}}     ||      ||      0% || {{Yes}} || &lt;br /&gt;
| 2018-03-27 || Dynamic || [https://bitcointalk.org/index.php?topic=3208073;all  link]   || [https://goldennoncepool.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonny Bravo&#039;s Mining Emporium]]        ||{{flag|us|}}{{flag|eu}} || Small || No      || PPLNS                  || {{SharedFees}}   ||       ||      0.5% || {{Yes}} || {{No}}&lt;br /&gt;
| 2015-11-19 ||   Dynamic ||   [https://bitcointalk.org/index.php?topic=1330452.0  link]                                || [http://www.bravo-mining.com  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[KanoPool]]         || {{flag|us}}{{flag|sg}}{{flag|de}}{{flag|jp}}{{flag|nl}} || Medium || No      || PPLNSG                || {{SharedFees}}     ||      ||      0.9% || {{Yes}} || {{No}}&lt;br /&gt;
| 2014-09-20 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt;/Dynamic 18SPM || [https://bitcointalk.org/index.php?topic=789369.0 link]   || [http://www.kano.is link]&lt;br /&gt;
|-&lt;br /&gt;
| [[kmdPool.org]]       || {{flag|us|label=1}}||    Large || Komodo      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-11-25 || VarDiff                       ||                                             || [http://www.kmdPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Merge Mining Pool]]      || {{flag|us|label=1}}|| Small || [[NMC]], IXC, [[Devcoin]]&lt;br /&gt;
|                                                                    DGM                     || {{SharedFees}}     ||      || 1.5%    || {{Yes}}    || {{No}}&lt;br /&gt;
| 2012-01-08 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=57148  link] || [http://mmpool.org link]&lt;br /&gt;
|-&lt;br /&gt;
| [[MergeMining]]          || Global          ||   Small || CRW, DVC, HUC, I0C, IXC, XMY/MYR, NMC, SYS, UNO, TRC, ARG, EMC || PPLNS  || {{SharedFees}}   ||      ||      1% || {{Yes}} || {{No}}&lt;br /&gt;
| 2016-12-01|| User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; ||  || [https://mergemining.com link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multipool]]          || {{flag|us}}{{flag|eu}}      ||   Small || [[NMC]] || Score                     || {{SharedFees}}     ||      ||      1.5% ||     {{Yes}}     || {{No}}&lt;br /&gt;
| 2012-03-15 || User                       || [https://bitcointalk.org/index.php?topic=311067.0  link] || [https://www.multipool.us/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[P2Pool]]          || Global (p2p)          ||   Small || Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis &amp;lt;ref name=&amp;quot;solomm&amp;quot;/&amp;gt; || PPLNS  || {{SharedFees}}   ||      ||      0% || {{Yes}} || {{No}}&lt;br /&gt;
| 2011-06-17 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=18313  link] ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [[Poolin]]          || Global                ||   Medium ||[[NMC]] [[DOGE]] VCASH || FPPS  || {{SharedFees}}   ||      ||      4% || {{Yes}} || {{Yes}}&lt;br /&gt;
| 2017 || Dynamic || [https://bitcointalk.org/index.php?topic=5169994.0  link] ||  [https://poolin.com/  link]&lt;br /&gt;
|-&lt;br /&gt;
| [[Slush Pool]]&lt;br /&gt;
|                        Global               || Medium || [[NMC]] || Score                   || {{SharedFees}}   ||      ||      2% || {{Yes}} || {{No}}&lt;br /&gt;
| 2010-11-27 || User&amp;lt;ref name=&amp;quot;changeable&amp;quot;/&amp;gt; || [http://bitcointalk.org/?topic=1976   link] || [https://slushpool.com/ link]&lt;br /&gt;
|-&lt;br /&gt;
| [[ZenPool.org]]       || {{flag|us|label=1}}||    Large || ZenCash      || PPLNS                     || {{SharedFees}} || 1% ||      0% ||  {{Yes}} ||&lt;br /&gt;
| 2017-10-25 || VarDiff                       ||                                             || [http://www.ZenPool.org/ link]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== SPV Mining / Old Bitcoin Core ==&lt;br /&gt;
&lt;br /&gt;
The following pools are known or strongly suspected to be mining on top of blocks before fully validating them with Bitcoin Core 0.9.5 or later.  Miners doing this have already lost over $50,000 USD during the 4 July 2015 fork and have created a situation where small numbers of confirmations are much less useful than they normally are.&lt;br /&gt;
&lt;br /&gt;
* BTC Nuggets&lt;br /&gt;
* [https://www.f2pool.com/ F2Pool]&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot;&amp;gt;[https://bitcointalk.org/index.php?topic=700411.msg11790734#msg11790734 Intention to continue SPV mining], Wang Chun, 4 July 2015&amp;lt;/ref&amp;gt;&lt;br /&gt;
* AntPool&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following pools are believed to be currently fully validating blocks with Bitcoin Core 0.9.5 or later (0.10.2 or later recommended due to DoS vulnerabilities):&lt;br /&gt;
&lt;br /&gt;
* [[BitMinter]]&lt;br /&gt;
* BTC China (described as SPV mining&amp;lt;ref name=&amp;quot;spv_despite_incident&amp;quot; /&amp;gt;, but they&#039;re performing effective valiation)&lt;br /&gt;
* [[BTC Public Mining Pool]]&lt;br /&gt;
* [[CKPool]]&lt;br /&gt;
* [[Eligius]]&lt;br /&gt;
* [[Golden Nonce Pool]]&lt;br /&gt;
* [[P2Pool]]&lt;br /&gt;
* [[Bitcoin Pooled Mining|Slush Pool]]&lt;br /&gt;
* [[BCMonster.com]]&lt;br /&gt;
* [[Jonny Bravo&#039;s Mining Emporium]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;hashrate2&amp;quot;&amp;gt;Note that pool hashrate is largely irrelevant but can be seen as a popularity measurement. It is a theoretical security issue if one pool gains above 50% of the total computational power of the network, thus consider joining a pool based on other metrics. The pool&#039;s total hash rate is very dynamic on most pools. Over time, as the network grows, so does most pool&#039;s hash rates. The displayed values are the pool&#039;s relative sizes based on the network: Small: less than 2%, Medium: 2%-10% Large: greater than 10% of the network.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;merged&amp;quot;&amp;gt;Merged mining allows miners to mine on multiple [[block chains]] at the same time with the same hashing.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;changeable&amp;quot;&amp;gt;The difficulty of the shares can be changed by the user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;solomm&amp;quot;&amp;gt;Merged mining can be done on a &amp;quot;solo mining&amp;quot; basis (payouts in the merged chain are not pooled).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Pooled mining]]&lt;br /&gt;
* [https://www.blocktrail.com/BTC/pools Pool Distribution Summary]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
* [https://www.bitcoinmining.com/bitcoin-mining-pools/ Bitcoin Mining Pools]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
[[Category:Mining]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mastering_Bitcoin&amp;diff=66222</id>
		<title>Mastering Bitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mastering_Bitcoin&amp;diff=66222"/>
		<updated>2019-02-25T19:51:22Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: after some consideration i decided to just remove this part - the book cites many sites etc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&#039;&#039;Mastering Bitcoin&#039;&#039;&#039;&#039;&#039; by [[Wikipedia:Andreas Antonopoulos|Andreas M. Antonopoulos]] is [http://chimera.labs.oreilly.com/books/1234000001802/index.html a freely-available book] on Bitcoin by O&#039;Reilly publishers, published in 2015.&lt;br /&gt;
&lt;br /&gt;
Mastering Bitcoin is a digital currency best seller&amp;lt;ref&amp;gt;https://www.amazon.com/Best-Sellers-Books-Digital-Currencies/zgbs/books/10806607011&amp;lt;/ref&amp;gt; and has been translated into different languages[https://bitcoinbook.info/translations-of-mastering-bitcoin/].&lt;br /&gt;
&lt;br /&gt;
[[Category:Educational]]&lt;br /&gt;
{{italic}}&lt;br /&gt;
==See Also==&lt;br /&gt;
[https://bitcoin.org/en/developer-documentation Bitcoin.org Developer Documentation]&lt;br /&gt;
*&#039;&#039;Mastering Bitcoin&#039;&#039; from O&#039;Reilly (DRM-free book; May 2015 edition):&lt;br /&gt;
**[https://isidore.co/calibre/get/epub/5328 EPUB format]&lt;br /&gt;
**[https://isidore.co/calibre/get/pdf/5328 PDF format]&lt;br /&gt;
*[https://isidore.co/calibre#panel=book_details&amp;amp;book_id=6316 &#039;&#039;Mastering Bitcoin: Programming the Open Blockchain&#039;&#039; from O&#039;Reilly] ([https://isidore.co/calibre/get/epub/6316 DRM-free EPUB]; June 2017, 2&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; edition)&lt;br /&gt;
*[https://github.com/aantonop/bitcoinbook GitHub page]&lt;br /&gt;
*[https://www.bitcoinbook.info/ Author&#039;s book page]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mastering_Bitcoin&amp;diff=66221</id>
		<title>Mastering Bitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mastering_Bitcoin&amp;diff=66221"/>
		<updated>2019-02-25T19:39:47Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&#039;&#039;Mastering Bitcoin&#039;&#039;&#039;&#039;&#039; by [[Wikipedia:Andreas Antonopoulos|Andreas M. Antonopoulos]] is [http://chimera.labs.oreilly.com/books/1234000001802/index.html a freely-available book] on Bitcoin by O&#039;Reilly publishers, published in 2015.&lt;br /&gt;
&lt;br /&gt;
Mastering Bitcoin is a digital currency best seller&amp;lt;ref&amp;gt;https://www.amazon.com/Best-Sellers-Books-Digital-Currencies/zgbs/books/10806607011&amp;lt;/ref&amp;gt; and has been translated into different languages[https://bitcoinbook.info/translations-of-mastering-bitcoin/].&lt;br /&gt;
Mastering Bitcoin copies a small portion of this wiki&amp;lt;ref&amp;gt;https://github.com/aantonop/bitcoinbook/blob/develop/appdx-scriptops.asciidoc&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://en.bitcoin.it/wiki/Script&amp;lt;/ref&amp;gt; giving proper attribution as specified by the Creative Commons Attribution license&amp;lt;ref&amp;gt;https://creativecommons.org/licenses/by/3.0/&amp;lt;/ref&amp;gt; used by this wiki. &lt;br /&gt;
[[Category:Educational]]&lt;br /&gt;
{{italic}}&lt;br /&gt;
==See Also==&lt;br /&gt;
[https://bitcoin.org/en/developer-documentation Bitcoin.org Developer Documentation]&lt;br /&gt;
*&#039;&#039;Mastering Bitcoin&#039;&#039; from O&#039;Reilly (DRM-free book; May 2015 edition):&lt;br /&gt;
**[https://isidore.co/calibre/get/epub/5328 EPUB format]&lt;br /&gt;
**[https://isidore.co/calibre/get/pdf/5328 PDF format]&lt;br /&gt;
*[https://isidore.co/calibre#panel=book_details&amp;amp;book_id=6316 &#039;&#039;Mastering Bitcoin: Programming the Open Blockchain&#039;&#039; from O&#039;Reilly] ([https://isidore.co/calibre/get/epub/6316 DRM-free EPUB]; June 2017, 2&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; edition)&lt;br /&gt;
*[https://github.com/aantonop/bitcoinbook GitHub page]&lt;br /&gt;
*[https://www.bitcoinbook.info/ Author&#039;s book page]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mastering_Bitcoin&amp;diff=66220</id>
		<title>Mastering Bitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mastering_Bitcoin&amp;diff=66220"/>
		<updated>2019-02-25T19:39:30Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: added small snippet about translations as they may be useful for non English speaking natives&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&#039;&#039;Mastering Bitcoin&#039;&#039;&#039;&#039;&#039; by [[Wikipedia:Andreas Antonopoulos|Andreas M. Antonopoulos]] is [http://chimera.labs.oreilly.com/books/1234000001802/index.html a freely-available book] on Bitcoin by O&#039;Reilly publishers, published in 2015.&lt;br /&gt;
&lt;br /&gt;
Mastering Bitcoin is a digital currency best seller&amp;lt;ref&amp;gt;https://www.amazon.com/Best-Sellers-Books-Digital-Currencies/zgbs/books/10806607011&amp;lt;/ref&amp;gt;. and has been translated into different languages[https://bitcoinbook.info/translations-of-mastering-bitcoin/].&lt;br /&gt;
Mastering Bitcoin copies a small portion of this wiki&amp;lt;ref&amp;gt;https://github.com/aantonop/bitcoinbook/blob/develop/appdx-scriptops.asciidoc&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://en.bitcoin.it/wiki/Script&amp;lt;/ref&amp;gt; giving proper attribution as specified by the Creative Commons Attribution license&amp;lt;ref&amp;gt;https://creativecommons.org/licenses/by/3.0/&amp;lt;/ref&amp;gt; used by this wiki. &lt;br /&gt;
[[Category:Educational]]&lt;br /&gt;
{{italic}}&lt;br /&gt;
==See Also==&lt;br /&gt;
[https://bitcoin.org/en/developer-documentation Bitcoin.org Developer Documentation]&lt;br /&gt;
*&#039;&#039;Mastering Bitcoin&#039;&#039; from O&#039;Reilly (DRM-free book; May 2015 edition):&lt;br /&gt;
**[https://isidore.co/calibre/get/epub/5328 EPUB format]&lt;br /&gt;
**[https://isidore.co/calibre/get/pdf/5328 PDF format]&lt;br /&gt;
*[https://isidore.co/calibre#panel=book_details&amp;amp;book_id=6316 &#039;&#039;Mastering Bitcoin: Programming the Open Blockchain&#039;&#039; from O&#039;Reilly] ([https://isidore.co/calibre/get/epub/6316 DRM-free EPUB]; June 2017, 2&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; edition)&lt;br /&gt;
*[https://github.com/aantonop/bitcoinbook GitHub page]&lt;br /&gt;
*[https://www.bitcoinbook.info/ Author&#039;s book page]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mastering_Bitcoin&amp;diff=66218</id>
		<title>Mastering Bitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mastering_Bitcoin&amp;diff=66218"/>
		<updated>2019-02-25T19:04:55Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: about the wiki section: 2-3 page appendix out of 420 pages is 0.8%, which is not a &amp;quot;significant portion&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&#039;&#039;Mastering Bitcoin&#039;&#039;&#039;&#039;&#039; by [[Wikipedia:Andreas Antonopoulos|Andreas M. Antonopoulos]] is [http://chimera.labs.oreilly.com/books/1234000001802/index.html a freely-available book] on Bitcoin by O&#039;Reilly publishers, published in 2015.&lt;br /&gt;
&lt;br /&gt;
Mastering Bitcoin is a digital currency best seller&amp;lt;ref&amp;gt;https://www.amazon.com/Best-Sellers-Books-Digital-Currencies/zgbs/books/10806607011&amp;lt;/ref&amp;gt;.&lt;br /&gt;
Mastering Bitcoin copies a small portion of this wiki&amp;lt;ref&amp;gt;https://github.com/aantonop/bitcoinbook/blob/develop/appdx-scriptops.asciidoc&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://en.bitcoin.it/wiki/Script&amp;lt;/ref&amp;gt; giving proper attribution as specified by the Creative Commons Attribution license&amp;lt;ref&amp;gt;https://creativecommons.org/licenses/by/3.0/&amp;lt;/ref&amp;gt; used by this wiki. &lt;br /&gt;
[[Category:Educational]]&lt;br /&gt;
{{italic}}&lt;br /&gt;
==See Also==&lt;br /&gt;
[https://bitcoin.org/en/developer-documentation Bitcoin.org Developer Documentation]&lt;br /&gt;
*&#039;&#039;Mastering Bitcoin&#039;&#039; from O&#039;Reilly (DRM-free book; May 2015 edition):&lt;br /&gt;
**[https://isidore.co/calibre/get/epub/5328 EPUB format]&lt;br /&gt;
**[https://isidore.co/calibre/get/pdf/5328 PDF format]&lt;br /&gt;
*[https://isidore.co/calibre#panel=book_details&amp;amp;book_id=6316 &#039;&#039;Mastering Bitcoin: Programming the Open Blockchain&#039;&#039; from O&#039;Reilly] ([https://isidore.co/calibre/get/epub/6316 DRM-free EPUB]; June 2017, 2&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; edition)&lt;br /&gt;
*[https://github.com/aantonop/bitcoinbook GitHub page]&lt;br /&gt;
*[https://www.bitcoinbook.info/ author&#039;s book page]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BTC.com&amp;diff=65625</id>
		<title>BTC.com</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BTC.com&amp;diff=65625"/>
		<updated>2018-08-13T09:30:11Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: Adding pool section.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|image=[[File:Logo-white-sq.png|250px|thumb|left]]|name=BTC.com&lt;br /&gt;
|founder= [[Bitmain]]&lt;br /&gt;
|foundation= 2015&lt;br /&gt;
|industry=[[Wallet]] [[Api]] [[Block Explorer]]&lt;br /&gt;
|website=https://www.btc.com&lt;br /&gt;
}}[https://www.btc.com BTC.com] is a [https://wallet.btc.com web wallet] originally created by Blocktrail and now owned by Bitmain Technologies. It also publishes an [https://play.google.com/store/apps/details?id=com.blocktrail.mywallet&amp;amp;hl=en Android wallet], an [https://itunes.apple.com/us/app/blocktrail-bitcoin-wallet/id1019614423/ iOS Wallet], a Bitcoin API, a [http://www.btc.com block explorer], and a [[mining pool]].&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
On July 19, 2016 [[Blocktrail]] was acquired by [[Bitmain]] and subsequently re-branded to BTC.com.&amp;lt;ref&amp;gt;http://www.coindesk.com/bitcoin-miner-bitmain-acquires-blockchain-data-startup/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Wallet==&lt;br /&gt;
&lt;br /&gt;
The wallets they offer allow you to buy bitcoin and bitcoin cash alongside basic wallet features and features like 2-factor-auth.&lt;br /&gt;
&lt;br /&gt;
The wallets are open source software hosted at http://github.com/blocktrail/blocktrail-wallet.&lt;br /&gt;
&lt;br /&gt;
== Mining Pool ==&lt;br /&gt;
On September 13, 2016, BTC.com launched a mining pool&amp;lt;ref&amp;gt;http://www.coindesk.com/bitmain-bitcoin-mining-launch-second-mining-pool/&amp;lt;/ref&amp;gt; using a settlement mode called PPS (pay-per-share).&amp;lt;ref&amp;gt;https://blog.btc.com/btc-com-launches-new-open-source-mining-pool-with-zero-mining-fee-2f6e0a53ce2c#.33zivpv2w&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Block chain browser]]&lt;br /&gt;
* [[Api]]&lt;br /&gt;
* [[Wallet]]&lt;br /&gt;
* [[Mining Pool]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Wallets]]&lt;br /&gt;
[[Category:Mobile]]&lt;br /&gt;
[[Category:Block chain browsers]]&lt;br /&gt;
[[Category:Frontends]]&lt;br /&gt;
[[Category:Bitcoin]]&lt;br /&gt;
[[Category:Clients]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;br /&gt;
{{Pools}}&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User:Alejandrobitcoin&amp;diff=65577</id>
		<title>User:Alejandrobitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User:Alejandrobitcoin&amp;diff=65577"/>
		<updated>2018-07-16T14:33:27Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Twitter&#039;&#039;&#039;: [https://twitter.com/bitentrepreneur @bitentrepreneur]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bitcointalk&#039;&#039;&#039;: Neutraltc&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Category:Block_chain_browsers&amp;diff=65576</id>
		<title>Category:Block chain browsers</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Category:Block_chain_browsers&amp;diff=65576"/>
		<updated>2018-07-16T14:13:25Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: /* List of online block chain browsers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A [[block chain browser]] is an application, typically web-based, that allow users to search and navigate a [[block chain]].&lt;br /&gt;
&lt;br /&gt;
== List of online block chain browsers ==&lt;br /&gt;
* [https://bitaps.com Bitaps.com]&lt;br /&gt;
* [https://bitinfocharts.com/bitcoin/explorer/ BitInfoCharts]&lt;br /&gt;
* [https://blockexplorer.com/ Bitcoin Block Explorer]&lt;br /&gt;
* [https://bitcoinchain.com/block_explorer/ BitcoinChain]&lt;br /&gt;
* [https://btc.blockchainhub.co.jp BlockhainHub]&lt;br /&gt;
* [https://www.biteasy.com/blockchain/blocks bitEasy]&lt;br /&gt;
* [https://blockchain.info/ Blockchain.info]&lt;br /&gt;
* [https://live.blockcypher.com/ BlockCypher]&lt;br /&gt;
* [https://www.blockonomics.co/ Blockonomics]&lt;br /&gt;
* [https://btc.blockr.io/ blockr]&lt;br /&gt;
* [https://www.blocktrail.com/BTC BlockTrail]&lt;br /&gt;
* [https://chain.btc.com/ BTC Chain]&lt;br /&gt;
* [http://chainflyer.bitflyer.jp/ chainFlyer]&lt;br /&gt;
* [http://coinbelly.io/ Coinbelly]&lt;br /&gt;
* [https://explorer.coinpayments.net/ CoinPayments]&lt;br /&gt;
* [https://www.coinprism.info/ Coinprism]&lt;br /&gt;
* [http://learnmeabitcoin.com/explorer/ learnmeabitcoin]&lt;br /&gt;
* [https://chain.localbitcoins.com/ LocalBitcoins]&lt;br /&gt;
* [https://smartbit.com.au Smartbit]&lt;br /&gt;
* [https://chain.so/btc SoChain]&lt;br /&gt;
* [https://tradeblock.com/blockchain/ TradeBlock]&lt;br /&gt;
* [https://www.walletexplorer.com/ WalletExplorer]&lt;br /&gt;
* [http://webbtc.com/ webBTC]&lt;br /&gt;
* [https://chaindex.com/blockchain/ chaindex]&lt;br /&gt;
* [https://BTC.com  BTC.com]&lt;br /&gt;
&lt;br /&gt;
== List of online block chain browsers (testnet3) ==&lt;br /&gt;
* [https://tbtc.blockr.io/ blockr]&lt;br /&gt;
* [https://tchain.btc.com/ BTC Chain]&lt;br /&gt;
* [https://sandbox.smartbit.com.au/ Smartbit]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Category:Block_chain_browsers&amp;diff=65575</id>
		<title>Category:Block chain browsers</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Category:Block_chain_browsers&amp;diff=65575"/>
		<updated>2018-07-16T14:13:00Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: /* List of online block chain browsers */  adding btc.com&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A [[block chain browser]] is an application, typically web-based, that allow users to search and navigate a [[block chain]].&lt;br /&gt;
&lt;br /&gt;
== List of online block chain browsers ==&lt;br /&gt;
* [https://bitaps.com Bitaps.com]&lt;br /&gt;
* [https://bitinfocharts.com/bitcoin/explorer/ BitInfoCharts]&lt;br /&gt;
* [https://blockexplorer.com/ Bitcoin Block Explorer]&lt;br /&gt;
* [https://bitcoinchain.com/block_explorer/ BitcoinChain]&lt;br /&gt;
* [https://btc.blockchainhub.co.jp BlockhainHub]&lt;br /&gt;
* [https://www.biteasy.com/blockchain/blocks bitEasy]&lt;br /&gt;
* [https://blockchain.info/ Blockchain.info]&lt;br /&gt;
* [https://live.blockcypher.com/ BlockCypher]&lt;br /&gt;
* [https://www.blockonomics.co/ Blockonomics]&lt;br /&gt;
* [https://btc.blockr.io/ blockr]&lt;br /&gt;
* [https://www.blocktrail.com/BTC BlockTrail]&lt;br /&gt;
* [https://chain.btc.com/ BTC Chain]&lt;br /&gt;
* [http://chainflyer.bitflyer.jp/ chainFlyer]&lt;br /&gt;
* [http://coinbelly.io/ Coinbelly]&lt;br /&gt;
* [https://explorer.coinpayments.net/ CoinPayments]&lt;br /&gt;
* [https://www.coinprism.info/ Coinprism]&lt;br /&gt;
* [http://learnmeabitcoin.com/explorer/ learnmeabitcoin]&lt;br /&gt;
* [https://chain.localbitcoins.com/ LocalBitcoins]&lt;br /&gt;
* [https://smartbit.com.au Smartbit]&lt;br /&gt;
* [https://chain.so/btc SoChain]&lt;br /&gt;
* [https://tradeblock.com/blockchain/ TradeBlock]&lt;br /&gt;
* [https://www.walletexplorer.com/ WalletExplorer]&lt;br /&gt;
* [http://webbtc.com/ webBTC]&lt;br /&gt;
* [https://chaindex.com/blockchain/ chaindex]&lt;br /&gt;
* [https://BTC.com]&lt;br /&gt;
&lt;br /&gt;
== List of online block chain browsers (testnet3) ==&lt;br /&gt;
* [https://tbtc.blockr.io/ blockr]&lt;br /&gt;
* [https://tchain.btc.com/ BTC Chain]&lt;br /&gt;
* [https://sandbox.smartbit.com.au/ Smartbit]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=65574</id>
		<title>Bech32 adoption</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bech32_adoption&amp;diff=65574"/>
		<updated>2018-07-16T14:11:38Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: adding btc.com&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Bech32]] is a new bitcoin [[address]] format specified by [[BIP 0173]]. This page tracks the adoption of [[Bech32]].&lt;br /&gt;
&lt;br /&gt;
Ideally wallets would first support &#039;&#039;sending to&#039;&#039; bech32 addresses. After almost every wallet can send then people may be willing to adopt bech32 widely for receiving.&lt;br /&gt;
&lt;br /&gt;
The amount of bech32 addresses is tracked on this website: https://p2sh.info/dashboard/db/bech32-statistics?orgId=1&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| {{Evaluating|??}} || Maybe / Haven&#039;t checked / placeholder&lt;br /&gt;
|-&lt;br /&gt;
| {{Planned}} || The developers said they plan to&lt;br /&gt;
|-&lt;br /&gt;
| {{Acceptable|PR Merged}} || In the case of software, code has been written and merged, and it will be in next release.&lt;br /&gt;
|-&lt;br /&gt;
| {{Yes}} || Feature has been released&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Software Wallets ===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to !! Create/receive !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Core || {{Yes}} || {{Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Knots || {{Yes}} || {{Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Electrum || {{Yes}} || {{Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Armory || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| JoinMarket || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| GreenAddress || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Breadwallet || {{Yes}} || {{No}} || https://twitter.com/udiWertheimer/status/975810157941796864&lt;br /&gt;
|-&lt;br /&gt;
| Samourai Wallet || {{Yes}} || {{Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinomi || {{Yes}} || {{Yes}} || [https://www.reddit.com/r/Bitcoin/comments/865qn1/coinomi_wallet_beta_has_segwit_support/ reddit source]&lt;br /&gt;
|-&lt;br /&gt;
| BTC.com || {{Yes}} || {{No}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Hardware Wallets ===&lt;br /&gt;
&lt;br /&gt;
Hardware wallet manufacturers typically publish a web wallet or browser add-on wallet for use with their hardware. Users can also sometimes connect their hardware wallet to a software wallet like [[Electrum]].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to !! Create/receive !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Trezor web wallet || {{Acceptable|PR Merged}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ledger chrome app || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey chrome app || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Digital Bitbox Qt app || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Trezor + Electrum || {{Yes}} || {{Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Ledger + Electrum || {{Yes}} || {{Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Digital Bitbox + Electrum || {{Yes}} || {{Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
| KeepKey + Electrum || {{No}} || {{No}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Web Wallets ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to !! Create/receive !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Coinapult  || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coin.Space || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitGo || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.info web wallet || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| HolyTransaction || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| [https://coinb.in Coinb.in] || {{Yes}} || {{Yes}} || open source JavaScript implementation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Exchanges in alphabetical order please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to !! Create/receive !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1Fox || {{Yes}} || {{No}} || https://1fox.com/?c=en/content/blog&amp;amp;id=12&lt;br /&gt;
|-&lt;br /&gt;
| Anycoin Direct || {{Yes}} || {{No}} || https://anycoindirect.eu/en/news/details/segwit-activated&lt;br /&gt;
|-&lt;br /&gt;
| BitBargain.co.uk || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin.de || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitfinex || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| BitMEX || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bittylicious || {{Yes}} || {{No}} || https://twitter.com/Bittylicious_/status/998881327347888128&lt;br /&gt;
|-&lt;br /&gt;
| Bitstamp || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bitwage || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Bisq || {{Evaluating|??}} || {{No}} || https://github.com/bisq-network/bisq-desktop/issues/1139&lt;br /&gt;
|-&lt;br /&gt;
| Coinbase.com || {{Yes}} || {{No}} || https://twitter.com/diogorsergio/status/983052769262292992&lt;br /&gt;
|-&lt;br /&gt;
| CoinFalcon || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Coinfloor || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Flyp.me || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| GDax || {{Yes}} || {{No}} || https://www.reddit.com/r/Bitcoin/comments/8c738k/coinbase_gdax_already_allows_sending_to_bc1/&lt;br /&gt;
|-&lt;br /&gt;
| Gemini || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Genesis || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Hodl Hodl || {{Yes}} || {{No}} || https://medium.com/@hodlhodl/hodl-hodl-segwit-compatible-exchange-a2231968ac56&lt;br /&gt;
|-&lt;br /&gt;
| Itbit || {{Evaluating|??}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Kraken || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Liberalcoins || {{Yes}} || {{Yes}} || https://liberalcoins.com&lt;br /&gt;
|-&lt;br /&gt;
| Localbitcoins.com || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Walltime || {{Yes}} || {{Yes}} || https://walltime.info&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Bitcoin ATM Models ====&lt;br /&gt;
&lt;br /&gt;
Hopefully when a model updates then all its ATMs everywhere will gain that feature. See https://coinatmradar.com/shop/buy-bitcoin-atm/&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Send to !! Create/receive !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| GenesisCoin || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| General Bytes || {{No}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Lamassu Douro || {{No}} || {{No}} ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Blockchain Explorers ===&lt;br /&gt;
&lt;br /&gt;
For trying these out you can use mainnet TXIDs &amp;lt;code&amp;gt;4ef47f6eb681d5d9fa2f7e16336cd629303c635e8da51e425b76088be9c8744c&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;514a33f1d46179b89e1fea7bbb07b682ab14083a276979f91038369d1a8d689b&amp;lt;/code&amp;gt;. And addresses &amp;lt;code&amp;gt;bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;bc1qc7slrfxkknqcq2jevvvkdgvrt8080852dfjewde450xdlk4ugp7szw5tk9&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Some blockchain explorers can only parse the bech32 address and display it, they don&#039;t build an index so users cannot search for bech32 addresses.&lt;br /&gt;
&lt;br /&gt;
See also: https://en.bitcoin.it/wiki/Category:Block_chain_browsers&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Display !! Index !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Blockchair || {{Yes}} || {{Yes}} || https://blockchair.com/&lt;br /&gt;
|-&lt;br /&gt;
| Blockonomics || {{Yes}} || {{Yes}} || https://www.blockonomics.co&lt;br /&gt;
|-&lt;br /&gt;
| Bitflyer || {{Yes}} || {{Yes}} || https://chainflyer.bitflyer.jp/&lt;br /&gt;
|-&lt;br /&gt;
| OXT || {{Yes}} || {{Yes}} || https://oxt.me/&lt;br /&gt;
|-&lt;br /&gt;
| chaindex || {{Yes}} || {{Yes}} || https://chaindex.com/blockchain/&lt;br /&gt;
|-&lt;br /&gt;
| blockchain.info || {{Yes}} || {{No}} ||&lt;br /&gt;
|-&lt;br /&gt;
| Insight || {{No}} || {{No}} || Open source explorer, instances are https://insight.bitpay.com/ and https://chain.localbitcoins.com/&lt;br /&gt;
|-&lt;br /&gt;
| Blockcypher || {{No}} || {{No}} || https://live.blockcypher.com/btc&lt;br /&gt;
|-&lt;br /&gt;
| Tradeblock || {{No}} || {{No}} || https://tradeblock.com/bitcoin&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Other Services ===&lt;br /&gt;
&lt;br /&gt;
Casinos, marketplaces, etc that let users withdraw money&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Withdrawals !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1Broker || {{Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
| Crypto-Games.net || {{Yes}} || [https://bitcointalk.org/index.php?topic=750760.msg31421151#msg31421151 bitcointalk source]&lt;br /&gt;
|-&lt;br /&gt;
| YOLOdice || {{Yes}} || A popular dice site https://yolodice.com&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User:Alejandrobitcoin&amp;diff=65489</id>
		<title>User:Alejandrobitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User:Alejandrobitcoin&amp;diff=65489"/>
		<updated>2018-06-21T09:41:50Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Twitter&#039;&#039;&#039;: [https://twitter.com/bitentrepreneur @bitentrepreneur]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bitcointalk&#039;&#039;&#039;: Neutraltc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
vp business operations @ [http://www.btc.om BTC.com]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BTC.com&amp;diff=65371</id>
		<title>BTC.com</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BTC.com&amp;diff=65371"/>
		<updated>2018-05-17T13:25:46Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: BITMAIN IS THE FOUNDER. Undo revision 65004 by Fresheneesz (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|image=[[File:Logo-white-sq.png|250px|thumb|left]]|name=BTC.com&lt;br /&gt;
|founder= [[Bitmain]]&lt;br /&gt;
|foundation= 2015&lt;br /&gt;
|industry=[[Wallet]] [[Api]] [[Block Explorer]]&lt;br /&gt;
|website=https://www.btc.com&lt;br /&gt;
}}[https://www.btc.com BTC.com] is a [https://wallet.btc.com web wallet] originally created by Blocktrail and now owned by Bitmain Technologies. It also publishes an [https://play.google.com/store/apps/details?id=com.blocktrail.mywallet&amp;amp;hl=en Android wallet], an [https://itunes.apple.com/us/app/blocktrail-bitcoin-wallet/id1019614423/ iOS Wallet], a Bitcoin API, a [http://www.btc.com block explorer], and a [[mining pool]].&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
On July 19, 2016 [[Blocktrail]] was acquired by [[Bitmain]] and subsequently re-branded to BTC.com.&amp;lt;ref&amp;gt;http://www.coindesk.com/bitcoin-miner-bitmain-acquires-blockchain-data-startup/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Wallet==&lt;br /&gt;
&lt;br /&gt;
The wallets they offer allow you to buy bitcoin and bitcoin cash alongside basic wallet features and features like 2-factor-auth.&lt;br /&gt;
&lt;br /&gt;
The wallets are open source software hosted at http://github.com/blocktrail/blocktrail-wallet.&lt;br /&gt;
&lt;br /&gt;
== Mining Pool ==&lt;br /&gt;
On September 13, 2016, BTC.com launched a mining pool&amp;lt;ref&amp;gt;http://www.coindesk.com/bitmain-bitcoin-mining-launch-second-mining-pool/&amp;lt;/ref&amp;gt; using a settlement mode called PPS (pay-per-share).&amp;lt;ref&amp;gt;https://blog.btc.com/btc-com-launches-new-open-source-mining-pool-with-zero-mining-fee-2f6e0a53ce2c#.33zivpv2w&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Block chain browser]]&lt;br /&gt;
* [[Api]]&lt;br /&gt;
* [[Wallet]]&lt;br /&gt;
* [[Mining Pool]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Wallets]]&lt;br /&gt;
[[Category:Mobile]]&lt;br /&gt;
[[Category:Block chain browsers]]&lt;br /&gt;
[[Category:Frontends]]&lt;br /&gt;
[[Category:Bitcoin]]&lt;br /&gt;
[[Category:Clients]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BTC.com&amp;diff=63982</id>
		<title>BTC.com</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BTC.com&amp;diff=63982"/>
		<updated>2017-09-28T15:25:42Z</updated>

		<summary type="html">&lt;p&gt;Alejandrobitcoin: update listing about wallet with new info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox company|image=[[File:Logo-white-sq.png|250px|thumb|left]]|name=BTC.com&lt;br /&gt;
|founder= [[Bitmain]]&lt;br /&gt;
|foundation= 2015&lt;br /&gt;
|industry=[[Wallet]] [[Api]] [[Block Explorer]]&lt;br /&gt;
|website=https://www.btc.com&lt;br /&gt;
}}[https://www.btc.com BTC.com] provides an easy to use and highly secure mobile and [https://wallet.btc.com web wallet] [https://play.google.com/store/apps/details?id=com.blocktrail.mywallet&amp;amp;hl=en &#039;&#039;&#039;Android Wallet&#039;&#039;&#039;] [https://itunes.apple.com/us/app/blocktrail-bitcoin-wallet/id1019614423/ &#039;&#039;&#039;iOS Wallet&#039;&#039;&#039;], Bitcoin API, an industry popular [http://www.btc.com block explorer], and [[mining pool]].&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
On July 19, 2016 [[Blocktrail]] was acquired by [[Bitmain]] and subsequently re-branded to BTC.com.&amp;lt;ref&amp;gt;http://www.coindesk.com/bitcoin-miner-bitmain-acquires-blockchain-data-startup/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The BTC.com wallet now supports [[Bitcoin Cash]].&lt;br /&gt;
&lt;br /&gt;
==Wallet==&lt;br /&gt;
&lt;br /&gt;
BTC.com is the leading multi-platform Bitcoin &amp;amp; Bitcoin Cash wallet&lt;br /&gt;
&lt;br /&gt;
We make it easy to buy, store and use bitcoin securely. The BTC.com wallet is secure-by design, with users in full control of their bitcoin. BTC.com is never exposed to, or in control of user funds. The wallet syncs across devices, making it simple for you to access your bitcoin anywhere, anytime. The BTC.com wallet supports over 13 languages and over 25 currency denominations. The BTC.com team is committed in providing the safest wallet in the bitcoin industry with the most powerful features.&lt;br /&gt;
&lt;br /&gt;
We’ve built more exciting features without compromising on security or accessibility:&lt;br /&gt;
&lt;br /&gt;
Master seed backup - one backup keeps your bitcoin safe forever.&lt;br /&gt;
100% control of your private keys&lt;br /&gt;
Buy bitcoin easily&lt;br /&gt;
Secure 2-factor-authentication&lt;br /&gt;
Create unlimited bitcoin addresses&lt;br /&gt;
Enhanced on-chain privacy &lt;br /&gt;
Send or receive using QR codes&lt;br /&gt;
Dynamic transaction fee - makes sure you are paying the optimal transaction fee to the bitcoin network with the fastest transaction confirmation times  &lt;br /&gt;
Accelerated transactions - push your priority transactions directly to the BTC.com mining pool for super fast confirmation times&lt;br /&gt;
Label and manage all your wallet’s addresses easily&lt;br /&gt;
Easily send to your friends without having to ask them for their bitcoin address &lt;br /&gt;
Transaction history with full transaction details&lt;br /&gt;
Customize your wallet with your own profile picture&lt;br /&gt;
Supported languages: Spanish (Español), Dutch (Nederlands), Russian (русский), Japanese(日本語), Chinese(中文), Portuguese (Português), French (Français), Hindi (हिंदी), Swahili, Korean(한국어) , German (Deutsche) and Arabic (عربى).&lt;br /&gt;
Supported currency denominations: USD EUR GBP CNY PAG ARS BoB CLP PEN PYG UYU VEF CRC MXN NGN INR&lt;br /&gt;
BTC.com mining pool is one of the largest in the world&lt;br /&gt;
BTC.com is part of Bitmain Technologies, the leading and biggest bitcoin mining manufacturer in the world&lt;br /&gt;
&lt;br /&gt;
This app is free and open source software. You can view the code on GitHub at http://github.com/blocktrail/blocktrail-wallet.&lt;br /&gt;
&lt;br /&gt;
Permission Requests: &lt;br /&gt;
Contacts - One-click feature (OPTIONAL)&lt;br /&gt;
Camera - QR Code scanning (OPTIONAL)&lt;br /&gt;
Photos/Media/Files - Upload a picture to your wallet feature (OPTIONAL)&lt;br /&gt;
&lt;br /&gt;
We’re here for you, for support email: support@btc.com&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://play.google.com/store/apps/details?id=com.blocktrail.mywallet/ &#039;&#039;&#039;Android Wallet&#039;&#039;&#039;]&lt;br /&gt;
[https://itunes.apple.com/us/app/blocktrail-bitcoin-wallet/id1019614423/ &#039;&#039;&#039;iOS Wallet&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
== Block Explorer ==&lt;br /&gt;
View realtime &amp;amp; historical data on bitcoin addresses, transactions and economy.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Mentions&#039;&#039;&#039; - See all the mentions of particular bitcoin addresses.&lt;br /&gt;
* &#039;&#039;&#039;Stats&#039;&#039;&#039; -  See all stats for particular addresses.&lt;br /&gt;
* &#039;&#039;&#039;Search via QR&#039;&#039;&#039; - Search any QR code in one click, directly from our homepage&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.btc.com &#039;&#039;&#039;BTC.com Block Explorer&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
== Bitcoin API ==&lt;br /&gt;
Your applications can access the data of the Bitcoin network via the API provided by BTC.COM.&lt;br /&gt;
&lt;br /&gt;
[https://www.BTC.com/api-doc &#039;&#039;&#039;BTC.com Bitcoin API&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Mining Pool ==&lt;br /&gt;
BTC.com has launched a mining pool on September 13, 2016.&amp;lt;ref&amp;gt;http://www.coindesk.com/bitmain-bitcoin-mining-launch-second-mining-pool/&amp;lt;/ref&amp;gt; The mining pool provides FPPS mining approach.&amp;lt;ref&amp;gt;https://blog.btc.com/btc-com-launches-new-open-source-mining-pool-with-zero-mining-fee-2f6e0a53ce2c#.33zivpv2w&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The BTC.com team has created a new settlement mode called FPPS (full pay-per-share), which aims to benefit miners via high transaction fees. FPPS calculates a standard transaction fee within a certain period, adds it into regular block rewards (12.5 BTC for each block), then distributes the whole to miners according to standard PPS (pay-per-share) mode. This method retains advantages of PPS while paying more to miners by sharing transaction fees, increasing miners’ earnings by 10-20%.&lt;br /&gt;
&lt;br /&gt;
[https://pool.btc.com/ &#039;&#039;&#039;BTC.com Mining Pool&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
View statistics for pool distribution, difficulty, block size, transaction fee&#039;s, block version, address rich list &amp;amp; more.&lt;br /&gt;
&lt;br /&gt;
[https://btc.com/stats &#039;&#039;&#039;BTC.com Statistics&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Block chain browser]]&lt;br /&gt;
* [[Api]]&lt;br /&gt;
* [[Wallet]]&lt;br /&gt;
* [[Mining Pool]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [https://www.btc.com Home page]&lt;br /&gt;
* [https://blog.btc.com The BTC Blog]&lt;br /&gt;
* [https://www.twitter.com/btccom_official Follow BTC.com on Twitter] &lt;br /&gt;
* [https://www.facebook.com/btccom/ Follow us on Facebook]&lt;br /&gt;
* [https://bitcointalk.org/index.php?topic=1572823.0 Bitcointalk thread]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Wallets]]&lt;br /&gt;
[[Category:Mobile]]&lt;br /&gt;
[[Category:Block chain browsers]]&lt;br /&gt;
[[Category:Frontends]]&lt;br /&gt;
[[Category:Bitcoin]]&lt;br /&gt;
[[Category:Clients]]&lt;br /&gt;
[[Category:Pool Operators]]&lt;/div&gt;</summary>
		<author><name>Alejandrobitcoin</name></author>
	</entry>
</feed>