<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.bitcoinsv.io/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AlexMackay</id>
	<title>Bitcoin Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.bitcoinsv.io/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AlexMackay"/>
	<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php/Special:Contributions/AlexMackay"/>
	<updated>2026-05-29T19:45:07Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Peer-to-Peer_Network_Architecture&amp;diff=2239</id>
		<title>Peer-to-Peer Network Architecture</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Peer-to-Peer_Network_Architecture&amp;diff=2239"/>
		<updated>2020-02-19T11:40:58Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Peer-to-Peer computing or networking is a distributed application network architecture that spreads workload between peers. Peers are equally privileged, participate equally  in the application and are said to form a peer-to-peer network of nodes [1]. &lt;br /&gt;
&lt;br /&gt;
==Bitcoin as a Peer-to-Peer Network==&lt;br /&gt;
&lt;br /&gt;
Formally, Bitcoin is a peer-to-peer network built on top of the internet. In the early days of Bitcoin the network had a flat topological structure, in which users were capable of running full nodes that could perform all of  Bitcoin's main functions: transaction creation, transaction validation and [[Mining |mining]] (see [https://www.metzdowd.com/pipermail/cryptography/2009-January/014994.html bitcoinv0.1]). However, as the network has grown, the requirements needed to perform each function on the network have evolved creating a necessity for nodes to specialize. Currently, the 3 main functions of the Bitcoin system are, in general, performed by separate actors within the ecosystem. Transaction creation is done by [[Simplified Payment Verification|SPV]] wallets. Transaction validation is done by the Bitcoin SV node client software and mining is a separate function performed using purpose built mining software.&lt;br /&gt;
&lt;br /&gt;
==Peer-to-Peer Architecture and the Bitcoin Scalability Dispute==&lt;br /&gt;
&lt;br /&gt;
Peer-to-peer is a term often misused and misunderstood, partly due the philosophical significance of ''decentralization'' which is seen as a key feature of blockchain technology. It has also been at the heart of disputes within the Bitcoin community that have lead to contentious forks that have split the Bitcoin blockchain on two occasions as well as a general slow-down in the development of the technology. &lt;br /&gt;
&lt;br /&gt;
On one hand the role of transaction validation and mining cannot be [[Attacks on Bitcoin|dominated by a single entity]] as the network would cease to provide any cryptographic or game theoretic advantages over existing centralized digital money systems. However, one of the main barriers to scaling is the extreme waste caused by forcing all users to perform all Bitcoin functions. Whilst it is true that engineering trade-offs between decentralization and scalability have to be made, it is the firm belief of the Bitcoin SV community that scalability can be achieved through specialization whilst maintaining strong security and moderate decentralization.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
1. Rüdiger Schollmeier, A Definition of Peer-to-Peer Networking for the Classification of Peer-to-Peer Architectures and Applications, Proceedings of the First International Conference on Peer-to-Peer Computing, IEEE (2002).&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Bitcoin_wallet_libraries&amp;diff=2238</id>
		<title>Bitcoin wallet libraries</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Bitcoin_wallet_libraries&amp;diff=2238"/>
		<updated>2020-02-19T11:35:56Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Introduction ===&lt;br /&gt;
Many node software libraries have been created enabling developers experienced with any programming language to start interacting with the Bitcoin [[block chain|blockchain]].&lt;br /&gt;
&lt;br /&gt;
Bitcoin SV's locked down consensus protocol enables fast-paced development of blockchain infrastructure, including base wallet libraries. Wallet applications  can therefore be built without fear of future dependency risk and developers can be assured that changes that result their software becoming incompatible with Bitcoin SV will not be made.&lt;br /&gt;
&lt;br /&gt;
=== Node software libraries ===&lt;br /&gt;
* [https://nakasendoproject.org/ The Nakasendo SDK] serves to abstract not only lower level Bitcoin protocol functions but advanced cryptographic techniques such as encryption and threshold signatures so that developers can implement this functionality more easily. The SDK will be available in C++, JavaScript, and python.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/moneybutton/bsv bsv] is a JavaScript library is a comprehensive toolset for managing, building, signing and broadcasting Bitcoin SV transactions.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/AustEcon/bitsv Bitsv] is a library for similar functionality as the BSV library, implemented in python.&lt;br /&gt;
&lt;br /&gt;
* [https://gitlab.com/bitcoinj-sv/bitcoinj-sv/ bitcoinj-sv] is a Java implementation of the Bitcoin SV protocol.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/brentongunning/rust-sv Rust-SV] is a Rust implementation of the Bitcoin SV protocol.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/bitcoinsv/bsvd bsvd] is a Golang implementation of the Bitcoin SV protocol.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/ordishs/go-bitcoin go-bitcoin] is a wrapper library to the Bitcoin SV RPC implemented in Golang.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/kzbsv/KzBsv KzBsv] is a work in progress C# library for Bitcoin SV.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/nextcashtech/bitcoin Nextcash] is a C++ BSV implementation.&lt;br /&gt;
&lt;br /&gt;
* [https://hexdocs.pm/bsv/BSV.html BSV-ex] is a Bitcoin SV library implemented in Elixir.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/kevinejohn/bsv-minimal bsv-minimal] is a lean re-implementation of the BSV library in Javascript, optimized to process big blocks efficiently.&lt;br /&gt;
&lt;br /&gt;
* Contact the Bitcoin Association to have your Bitcoin node or wallet code library added.&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Peer-to-Peer_Network_Architecture&amp;diff=2235</id>
		<title>Peer-to-Peer Network Architecture</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Peer-to-Peer_Network_Architecture&amp;diff=2235"/>
		<updated>2020-02-19T11:17:56Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Peer-to-Peer computing or networking is a distributed application network architecture that spreads workload between peers. Peers are equally privileged, participate equally  in the application and are said to form a peer-to-peer network of nodes [1]. &lt;br /&gt;
&lt;br /&gt;
==Bitcoin as a Peer-to-Peer Network==&lt;br /&gt;
&lt;br /&gt;
Formally, Bitcoin is a peer-to-peer network built on top of the internet. In the early days of Bitcoin the network had a flat topological structure, in which users were capable of running full nodes that could perform all of  Bitcoin's main functions: transaction creation, transaction validation and [[Mining |mining]] (see [https://www.metzdowd.com/pipermail/cryptography/2009-January/014994.html bitcoinv0.1]). However, as the network has grown, the requirements needed to perform each function on the network has evolved creating a necessity for nodes to specialize. Currently, the 3 main functions of the Bitcoin system are, in general, performed by separate actors within the ecosystem. Transaction creation is done by [[Simplified Payment Verification|SPV]] wallets. Transaction validation is done by the Bitcoin SV node client software and mining is a separate function performed using purpose built mining software.&lt;br /&gt;
&lt;br /&gt;
==Peer-to-Peer Architecture and the Bitcoin Scalability Dispute==&lt;br /&gt;
&lt;br /&gt;
Peer-to-peer is a term often misused and misunderstood, partly due the philosophical significance of ''decentralization'' which is seen as a key feature of blockchain technology. It has also been at the heart of disputes within the Bitcoin community that have lead to contentious forks that have split the Bitcoin blockchain on two occasions as well as a general slow-down in the development of the technology. &lt;br /&gt;
&lt;br /&gt;
On one hand the role of transaction validation and mining cannot be [[Attacks on Bitcoin|dominated by a single entity]] as the network would cease to provide any cryptographic or game theoretic advantages over existing centralized digital money systems. However, one of the main barriers to scaling is the extreme waste caused by forcing all users to perform all Bitcoin functions. Whilst it is true that engineering trade-offs between decentralization and scalability have to be made, it is the firm belief of the Bitcoin SV community that scalability can be achieved through specialization whilst maintaining strong security and moderate decentralization.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
1. Rüdiger Schollmeier, A Definition of Peer-to-Peer Networking for the Classification of Peer-to-Peer Architectures and Applications, Proceedings of the First International Conference on Peer-to-Peer Computing, IEEE (2002).&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Peer-to-Peer_Network_Architecture&amp;diff=2234</id>
		<title>Peer-to-Peer Network Architecture</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Peer-to-Peer_Network_Architecture&amp;diff=2234"/>
		<updated>2020-02-19T11:17:34Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Peer-to-Peer computing or networking is a distributed application network architecture that spreads workload between peers. Peers are equally privileged, participate equally  in the application and are said to form a peer-to-peer network of nodes [1]. &lt;br /&gt;
&lt;br /&gt;
==Bitcoin as a Peer-to-Peer Network==&lt;br /&gt;
&lt;br /&gt;
Formally, Bitcoin is a peer-to-peer network built on top of the internet. In the early days of Bitcoin the network had a flat topological structure, in which users were capable of running full nodes that could perform all of  Bitcoin's main functions: transaction creation, transaction validation and [[Mining |mining]] (see [https://www.metzdowd.com/pipermail/cryptography/2009-January/014994.html bitcoinv0.1]). However, as the network has grown, the requirements needed to perform each function on the network has evolved creating a necessity for nodes to specialize. Currently, the 3 main functions of the Bitcoin system are, in general, performed by separate actors within the ecosystem. Transaction creation is done by [[Simplified Payment Verification|SPV]] wallets. Transaction validation is done by the Bitcoin SV node client software and mining is a separate function performed using purpose built mining software.&lt;br /&gt;
&lt;br /&gt;
==Peer-to-Peer Architecture and the Bitcoin Scalability Dispute==&lt;br /&gt;
&lt;br /&gt;
Peer-to-peer is a term often misused and misunderstood, partly due the philosophical significance of ''decentralization'' which is seen as a key feature of blockchain technology. It has also been at the heart of disputes within the Bitcoin community that have lead to contentious forks that have split the Bitcoin blockchain on two occasions as well as a general slow-down in the development of the technology. &lt;br /&gt;
&lt;br /&gt;
On one hand the role of transaction validation and mining cannot be [[Attacks on Bitcoin|dominated by a single entity]] as the network would cease to provide any cryptographic or game theoretic advantages to existing centralized digital money systems. However, one of the main barriers to scaling is the extreme waste caused by forcing all users to perform all Bitcoin functions. Whilst it is true that engineering trade-offs between decentralization and scalability have to be made, it is the firm belief of the Bitcoin SV community that scalability can be achieved through specialization whilst maintaining strong security and moderate decentralization.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
1. Rüdiger Schollmeier, A Definition of Peer-to-Peer Networking for the Classification of Peer-to-Peer Architectures and Applications, Proceedings of the First International Conference on Peer-to-Peer Computing, IEEE (2002).&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Secp256k1&amp;diff=2175</id>
		<title>Secp256k1</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Secp256k1&amp;diff=2175"/>
		<updated>2020-02-18T10:42:50Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Elliptic-Curve-E-0-7-Real-Number.png|thumb |This is a graph of secp256k1's elliptic curve ''y&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; = x&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; + 7'' over the real numbers. Note that because secp256k1 is actually defined over the field Z&amp;lt;sub&amp;gt;p&amp;lt;/sub&amp;gt;, its graph will in reality look like random scattered points, not anything like this.]]&lt;br /&gt;
&lt;br /&gt;
'''secp256k1''' refers to the parameters of the elliptic curve used in Bitcoin's public-key cryptography, and is defined in ''Standards for Efficient Cryptography (SEC)'' (Certicom Research, http://www.secg.org/sec2-v2.pdf). Currently Bitcoin uses secp256k1 with the [[Elliptic Curve Digital Signature Algorithm|ECDSA]] algorithm.&lt;br /&gt;
&lt;br /&gt;
secp256k1 was almost never used before Bitcoin became popular, but it is now gaining in popularity due to its several nice properties. Most commonly-used curves have a random structure, but secp256k1 was constructed in a special non-random way which allows for especially efficient computation. As a result, it is often more than 30% faster than other curves if the implementation is sufficiently optimized. Also, unlike the popular NIST curves, secp256k1's constants were selected in a predictable way, which significantly reduces the possibility that the curve's creator inserted any sort of backdoor into the curve.&lt;br /&gt;
&lt;br /&gt;
=== Technical details ===&lt;br /&gt;
&lt;br /&gt;
As excerpted from ''Standards'': &lt;br /&gt;
&lt;br /&gt;
The elliptic curve domain parameters over F''&amp;lt;sub&amp;gt;p&amp;lt;/sub&amp;gt;'' associated with a Koblitz curve secp256k1 are specified&lt;br /&gt;
by the sextuple T = (''p,a,b,G,n,h'') where the finite field F''&amp;lt;sub&amp;gt;p&amp;lt;/sub&amp;gt;'' is defined by:&lt;br /&gt;
* ''p'' = FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE FFFFFC2F&lt;br /&gt;
* = 2&amp;lt;sup&amp;gt;256&amp;lt;/sup&amp;gt; - 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; - 2&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt; - 2&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; - 2&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; - 2&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; - 2&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; - 1&lt;br /&gt;
&lt;br /&gt;
The curve ''E'': ''y&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; = x&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;+ax+b'' over F''&amp;lt;sub&amp;gt;p&amp;lt;/sub&amp;gt;'' is defined by:&lt;br /&gt;
* ''a'' = 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000&lt;br /&gt;
* ''b'' = 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000007&lt;br /&gt;
&lt;br /&gt;
The base point G in compressed form is:&lt;br /&gt;
* ''G'' = 02 79BE667E F9DCBBAC 55A06295 CE870B07 029BFCDB 2DCE28D9 59F2815B 16F81798&lt;br /&gt;
and in uncompressed form is:&lt;br /&gt;
* ''G'' = 04 79BE667E F9DCBBAC 55A06295 CE870B07 029BFCDB 2DCE28D9 59F2815B 16F81798 483ADA77 26A3C465 5DA4FBFC 0E1108A8 FD17B448 A6855419 9C47D08F FB10D4B8&lt;br /&gt;
Finally the order ''n'' of ''G'' and the cofactor are:&lt;br /&gt;
* ''n'' = FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE BAAEDCE6 AF48A03B BFD25E8C D0364141&lt;br /&gt;
* ''h'' = 01&lt;br /&gt;
&lt;br /&gt;
=== Properties ===&lt;br /&gt;
&lt;br /&gt;
* secp256k1 has characteristic ''p'', it is defined over the prime field ℤ&amp;lt;sub&amp;gt;''p''&amp;lt;/sub&amp;gt;. Some other curves in common use have characteristic ''2'', and are defined over a binary Galois field ''GF(2&amp;lt;sup&amp;gt;n&amp;lt;/sup&amp;gt;)'', but secp256k1 is not one of them.&lt;br /&gt;
* As the ''a'' constant is zero, the ''ax'' term  in the curve equation is always zero, hence the curve equation becomes ''y&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; = x&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; + 7''.&lt;br /&gt;
&lt;br /&gt;
==Attribution==&lt;br /&gt;
This content is based on content sourced from https://en.bitcoin.it/wiki/Secp256k1 under [https://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0]. Although it may have been extensively revised and updated we acknowledge the original authors.&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=File:Secp256k1.png&amp;diff=2168</id>
		<title>File:Secp256k1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=File:Secp256k1.png&amp;diff=2168"/>
		<updated>2020-02-18T10:06:18Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2156</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2156"/>
		<updated>2020-02-17T14:30:05Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a [[Bitcoin Transactions|transaction]] output. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of the (previous) transaction output being spent. As the index is a 4-byte integer, this gives users the ability to include up to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a single Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the keyword identifying the list of all outputs of a transaction [1], where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2155</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2155"/>
		<updated>2020-02-17T14:29:21Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a [[Bitcoin Transactions|transaction]] output. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of the (previous) transaction output being spent. As the index is a 4-byte integer, this gives users the ability to include up to 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a single Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the keyword identifying the list of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2154</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2154"/>
		<updated>2020-02-17T14:20:01Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a [[Bitcoin Transactions|transaction]] output. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of the (previous) transaction output being spent. As the index is a 4-byte integer, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the keyword identifying the list of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2153</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2153"/>
		<updated>2020-02-17T14:19:46Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a [[Bitcoin Transaction|transaction]] output. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of the (previous) transaction output being spent. As the index is a 4-byte integer, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the keyword identifying the list of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2152</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2152"/>
		<updated>2020-02-17T14:19:21Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a [[Bitcoin transaction|transaction]] output. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of the (previous) transaction output being spent. As the index is a 4-byte integer, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the keyword identifying the list of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2151</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2151"/>
		<updated>2020-02-17T14:18:05Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a transaction output. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of the (previous) transaction output being spent. As the index is a 4-byte integer, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the keyword identifying the list of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2150</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2150"/>
		<updated>2020-02-17T14:10:34Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a particular transaction output within a transaction. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of the (previous) transaction output being spent. As the index is a 4-byte integer, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the keyword identifying the list of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2149</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2149"/>
		<updated>2020-02-17T14:07:40Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a particular transaction output within a transaction. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of the (previous) transaction output being spent. As the index is a 4-byte integer, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the JSON keyword identifying the set of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2148</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2148"/>
		<updated>2020-02-17T14:06:27Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a particular transaction output within a transaction. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
In the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index value. This index is concatenated with a [[TXID|transaction ID]] (TxID || vout) to form an outpoint, uniquely identifying an output of a previous transaction output being spent. As the index is a 4-byte integer, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the JSON keyword identifying the set of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2140</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2140"/>
		<updated>2020-02-17T13:52:25Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is (most often used to refer to) a 4-bye index indicating the position of a particular transaction output within a transaction. &lt;br /&gt;
&lt;br /&gt;
==Technical Details==&lt;br /&gt;
However, in the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is a 4 byte index. It is concatenated with a transaction ID (TxID || vout) to form an outpoint that is used to uniquely identify a particular output of a transaction being spent. As the index is a 4 byte number, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the JSON keyword identifying the set of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2100</id>
		<title>VOUT</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=VOUT&amp;diff=2100"/>
		<updated>2020-02-17T12:20:23Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''transaction outpoint''' or '''transaction output number''' is a 4-bye index indicating the position of a particular transaction output within a transaction. &lt;br /&gt;
&lt;br /&gt;
However, in the technical specification of Bitcoin SV &amp;quot;vout&amp;quot; has two interpretations. When it appears in an input of a transaction, it is an index of 4 bytes. It is concatenated with a transaction ID (TxID || vout) to form an outpoint that is used to uniquely identify a particular output of a transaction being spent. As the index is a 4 byte number, this gives users the effective ability to include a maximum of 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt; outputs in a Bitcoin transaction. &lt;br /&gt;
&lt;br /&gt;
When it is not part of the input, it refers to a vector of outputs in a transaction. That is, &amp;quot;vout&amp;quot; is the JSON keyword identifying the set of all outputs of a transaction, where each output contains output value (the amount of BSV) and scriptPubKey (a script that locks the output value). Note that the order within the set matters. &lt;br /&gt;
&lt;br /&gt;
==Unspent Transaction Outputs==&lt;br /&gt;
If an outpoint has not been spent, it is referred to as an Unspent Transaction Output or [[UTXO]] and can be used in the creation of a new transaction by a user that is able to satisfy the spending conditions defined by the output script. Once an outpoint has been used as an input to a [[Bitcoin Transactions|transaction]] that has been validated by the mining network it is considered spent and can no longer be used in a new transaction (see [[Double-spending]]). &lt;br /&gt;
&lt;br /&gt;
==Zero value outputs==&lt;br /&gt;
Outputs that do not contain a value in [[Satoshis]] are often used to hold scripts that carry large data items or tokens. Provably unspendable zero-value [[False Return]] outputs have been predominantly used as a means to attach data to bitcoin transactions. False return transaction outputs are not stored in the UTXO set derived by miners. It should be noted that this is not the only mechanism for data storage, it is just the one that was easiest to use prior to the Genesis protocol restoration.&lt;br /&gt;
&lt;br /&gt;
Non-[[False Return|false return]] zero value outputs are still valid UTXOs and can be used as inputs in a transaction, with locking conditions being applied as normal.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* - [[TXID]]&lt;br /&gt;
* - [[Bitcoin Transactions]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[1] - https://github.com/bitcoin-sv/bitcoin-sv/blob/7fd177c7c443ff7723d88c5465fbf39285388e30/src/primitives/transaction.h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2091</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2091"/>
		<updated>2020-02-17T12:08:54Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to 2.15 x 10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;  (21 million BSV) and are issued at a mathematically predictable rate using a [[Miner subsidy|miner subsidy]] formula. The miner subsidy, which [[Genesis block|began]] at 50 newly minted bitcoins per block, is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish, meaning that mining will be sustained through [[Transaction fees|transaction fees]] alone.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2089</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2089"/>
		<updated>2020-02-17T12:08:01Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to 2.15 x 10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;  (21 million BSV) and are issued at a mathematically predictable rate using a [[Miner subsidy|miner subsidy]] formula. The miner subsidy, which began at 50 newly minted bitcoins per block, is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish, meaning that mining will be sustained through [[Transaction fees|transaction fees]] alone.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2088</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2088"/>
		<updated>2020-02-17T12:06:28Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to 2.15 x 10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;  (21 million BSV) and are issued at a mathematically predictable rate using a [[Miner subsidy|miner subsidy]] formula. The miner subsidy is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish, meaning that mining will be sustained through [[Transaction fees|transaction fees]] alone.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2083</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2083"/>
		<updated>2020-02-17T12:02:48Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to 2.15 x 10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;  (21 million BSV) and issued at a mathematically defined rate though a [[Miner subsidy|miner subsidy]]. The miner subsidy is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish, meaning that mining will be sustained through [[Transaction fees|transaction fees]] alone.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2080</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2080"/>
		<updated>2020-02-17T12:01:10Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to 2.15 x 10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;  (21 million BSV) and issued at a mathematically defined rate though a [[Miner subsidy|miner subsidy]]. The miner subsidy is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2078</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2078"/>
		<updated>2020-02-17T11:59:32Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to 2.15 x 10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt; and issued at a mathematically defined rate written into the Bitcoin source code. The [[Miner subsidy|miner subsidy]] is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2077</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2077"/>
		<updated>2020-02-17T11:59:14Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to 2.15 x {10}&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt; and issued at a mathematically defined rate written into the Bitcoin source code. The [[Miner subsidy|miner subsidy]] is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2075</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2075"/>
		<updated>2020-02-17T11:57:45Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to \$2.15\times{10}^15\$ and issued at a mathematically defined rate written into the Bitcoin source code. The [[Miner subsidy|miner subsidy]] is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2074</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2074"/>
		<updated>2020-02-17T11:57:29Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The total number of satoshis in existence is limited to $2.15\times{10}^15$ and issued at a mathematically defined rate written into the Bitcoin source code. The [[Miner subsidy|miner subsidy]] is scheduled to divide in 2 every 210,000 blocks, approximately every 4 years. At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2073</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2073"/>
		<updated>2020-02-17T11:51:49Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The [[Miner subsidy|miner subsidy]] is scheduled to divide in 2 every 210,000 blocks (approx. every 4 years). At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately the year 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2072</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2072"/>
		<updated>2020-02-17T11:51:14Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==Satoshis and the Miner Subsidy Schedule==&lt;br /&gt;
&lt;br /&gt;
The [[Miner subsidy|miner subsidy]] is scheduled to divide in 2 every 210,000 blocks (approx. every 4 years). At the time of the 6th halvening (approximately 2032) the miner subsidy will fall below 1 BSV to 78125000 Satoshis (0.78125 BSV).&lt;br /&gt;
&lt;br /&gt;
By the time of the 31st halvening (approximately 2136) the miner subsidy will be reduced to 1 Satoshi and in the year 2140 (block no. 6,720,000) the subsidy will vanish.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2064</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2064"/>
		<updated>2020-02-17T11:40:58Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2063</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2063"/>
		<updated>2020-02-17T11:39:38Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Satoshi (unit).png|right|thumb| What is Satoshi? How many Satoshi in a Bitcoin?]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, the analogue of Satoshi cryptocurrency is a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the digital currency issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
* [[Miner subsidy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [1] https://www.bestchange.ru stock calculator&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2062</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2062"/>
		<updated>2020-02-17T11:36:44Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Satoshi (unit).png|right|thumb| What is Satoshi? How many Satoshi in a Bitcoin?]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
{{#ev:youtube|U5M9_vM_MsU|500|right|What is a Satoshi}}&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, in the world of Satoshi cryptocurrency is the same as in the real world a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BSV). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BSV&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BSV.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the [[digital currency]] issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or fiat money - [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a faucet, the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Coinbase]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2061</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2061"/>
		<updated>2020-02-17T11:35:04Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Satoshi (unit).png|right|thumb| What is Satoshi? How many Satoshi in a Bitcoin?]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;br /&gt;
&lt;br /&gt;
==How many Satoshis in a Bitcoin==&lt;br /&gt;
{{#ev:youtube|U5M9_vM_MsU|500|right|What is a Satoshi}}&lt;br /&gt;
What is a Satoshi? '''Satoshi''' meaning the smallest indivisible unit of the Bitcoin cryptocurrency. In fact, in the world of Satoshi cryptocurrency is the same as in the real world a penny or a cent. It is a one hundred millionth of a single bitcoin (0.00000001 BTC). The unit has been named in collective homage to the original creator of Bitcoin, [[Satoshi Nakamoto]]. &lt;br /&gt;
&lt;br /&gt;
The table below provides information on how many Satoshis in a Bitcoins, depending on their quantity:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Satoshi !! BTC&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 0.00000001&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 0.0000001&lt;br /&gt;
|-&lt;br /&gt;
| 100 || 0.000001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 || 0.00001&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 || 0.0001&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 || 0.001&lt;br /&gt;
|-&lt;br /&gt;
| 1 000 000 || 0.01&lt;br /&gt;
|-&lt;br /&gt;
| 10 000 000 || 0.1&lt;br /&gt;
|-&lt;br /&gt;
| 100 000 000 || 1&lt;br /&gt;
|}&lt;br /&gt;
Thus, '''1 Satoshi = 0.00000001 BTC.'''&lt;br /&gt;
&lt;br /&gt;
When considering the decision on the limit of the [[digital currency]] issue (now it is 21 million), the question of its popularity was raised. After all, with such a small volume to gain popularity, at that time, it seemed quite problematic. As a result, it was decided to introduce a change coin, thereby crushing one bitcoin into a huge number of parts.&lt;br /&gt;
&lt;br /&gt;
In the end, this coin was called &amp;quot;Satoshi&amp;quot;. There are many calculators for converting various currencies into other cryptocurrencies or [[fiat money]] - [https://www.bestchange.ru stock calculator]&lt;br /&gt;
&lt;br /&gt;
All amounts in the blockchain are denominated in satoshi before being converted for display. The source code also uses satoshi when specifying an amount of bitcoin. When displaying an extremely small fraction of a bitcoin, as in a [[faucet]], the amount is displayed in satoshi for readability.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2060</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2060"/>
		<updated>2020-02-17T11:34:04Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Satoshi (unit).png|right|thumb| What is Satoshi? How many Satoshi in a Bitcoin?]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=File:Satoshi_(unit).png&amp;diff=2059</id>
		<title>File:Satoshi (unit).png</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=File:Satoshi_(unit).png&amp;diff=2059"/>
		<updated>2020-02-17T11:32:43Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2058</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2058"/>
		<updated>2020-02-17T11:32:26Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Satoshi (unit).png|right|450px|What is Satoshi? How many Satoshi in a Bitcoin?]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A '''Satoshi''' is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2057</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2057"/>
		<updated>2020-02-17T11:31:15Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Satoshi (unit).png|right|450px|What is Satoshi? How many Satoshi in a Bitcoin?]]&lt;br /&gt;
&lt;br /&gt;
'''Satoshi''' is a structural part of the [[Bitcoin Satoshi Vision| Bitcoin]] cryptocurrency, which is one hundred millionth of bitcoin. Such small units facilitate transactions with BTC. The total structural component of 1 bitcoin (BTC) is equivalent to 1000 millibits (mBTC), 1,000,000 microbe (mkBTC) or 100,000,000 Satoshi. The exact data is unknown, but it is assumed that Nakamoto can have 1 million BTC, and it is equivalent to 100 000 000 000 Satoshis.&lt;br /&gt;
&lt;br /&gt;
A Satoshi is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2056</id>
		<title>Satoshis</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Satoshis&amp;diff=2056"/>
		<updated>2020-02-17T11:30:02Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title=Satoshi (unit) - BitcoinWiki&lt;br /&gt;
|description=What is a Satoshi? 1 satoshi is a one hundred millionth of a single bitcoin (0.00000001 BTC). The unit has been named in collective homage to the original creator of Bitcoin, Satoshi Nakamoto&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;amp/&amp;gt;&lt;br /&gt;
[[File:Satoshi (unit).png|right|450px|What is Satoshi? How many Satoshi in a Bitcoin?]]&lt;br /&gt;
'''Satoshi''' is a structural part of the [[Bitcoin]] [[cryptocurrency]], which is one hundred millionth of bitcoin. Such small units facilitate transactions with BTC. The total structural component of 1 bitcoin (BTC) is equivalent to 1000 millibits (mBTC), 1,000,000 microbe (mkBTC) or 100,000,000 Satoshi. The exact data is unknown, but it is assumed that Nakamoto can have 1 million BTC, and it is equivalent to 100 000 000 000 Satoshis.&lt;br /&gt;
&lt;br /&gt;
A Satoshi is the smallest division of a bitcoin and the base unit of exchange on the Bitcoin SV network. There are 100,000,000 satoshis in 1 bitcoin. The unit is named after [[Satoshi Nakamoto]], the pseudonymous author of the 2008 Bitcoin whitepaper.&lt;br /&gt;
&lt;br /&gt;
Satoshis are represented as integers where 1 satoshi is the smallest unit of the Bitcoin cryptocurrency. &lt;br /&gt;
&lt;br /&gt;
A single Bitcoin is a human construct, as any value of Bitcoin less than 100,000,000 satoshis are actually treated integers in the code, not decimals.&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2055</id>
		<title>Transaction Pools</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2055"/>
		<updated>2020-02-17T11:26:51Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A ''transaction pool'' or ''mempool'' is a data structure containing the set of transactions that are unconfirmed but have been validated by a miner. Transactions are stored in a node's mempool prior to inclusion in a block.&lt;br /&gt;
&lt;br /&gt;
==Transaction Pools in Bitcoin SV==&lt;br /&gt;
&lt;br /&gt;
A bitcoin [[Mining| node]] stores bitcoin transactions that have been validated but not mined. It can be thought of as a staging area for transactions prior to their inclusion in a [[block chain|block]]. When creating a new block to mine, miners will gather transactions from their transaction pool using the rpc command ''getminingcandidate'' or the older ''getblocktemplate'' to construct a candidate block. Similarly, when receiving a block, a validator can speed-up the validation process if the [[TXID|transactions IDs]] match the transaction IDs in the validator's transaction pool. The transaction pool data is used extensively by block explorers, wallet servers and other Bitcoin SV related web services [https://jochen-hoenicke.de/queue/#3,24h].&lt;br /&gt;
&lt;br /&gt;
==Secondary Transaction Pools and Genesis==&lt;br /&gt;
&lt;br /&gt;
The [[Genesis upgrade| Genesis]] upgrade to Bitcoin SV introduced a taxonomy within the transaction pool aimed at improving efficiency for transaction validators and miners.&lt;br /&gt;
&lt;br /&gt;
*  '''Primary Transaction Pool''' - transaction pool containing transactions that pay above the miner configured ''minimum tx fee''&lt;br /&gt;
&lt;br /&gt;
*  '''Secondary Transaction Pool''' - transaction pool for transactions that are below the miner configured ''minimum tx fee'' limit but above the network-wide ''minimum relay fee'' limit. These transactions are likely to eventually be included in another miner's block and therefore should be stored to ensure fast [[Mining| block validation]] and optimize network performance.&lt;br /&gt;
&lt;br /&gt;
A further discussion of configurable minimum fee policy can be found here [https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/].&lt;br /&gt;
 &lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Confirmation]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [1]   https://jochen-hoenicke.de/queue/#3,24h&lt;br /&gt;
* [2]   https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2054</id>
		<title>Transaction Pools</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2054"/>
		<updated>2020-02-17T11:25:02Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A ''transaction pool'' or ''mempool'' is a set of transactions that are unconfirmed but validated prior to inclusion in a block.&lt;br /&gt;
&lt;br /&gt;
==Transaction Pools in Bitcoin SV==&lt;br /&gt;
&lt;br /&gt;
A bitcoin [[Mining| node]] stores bitcoin transactions that have been validated but not mined. It can be thought of as a staging area for transactions prior to their inclusion in a [[block chain|block]]. When creating a new block to mine, miners will gather transactions from their transaction pool using the rpc command ''getminingcandidate'' or the older ''getblocktemplate'' to construct a candidate block. Similarly, when receiving a block, a validator can speed-up the validation process if the [[TXID|transactions IDs]] match the transaction IDs in the validator's transaction pool. The transaction pool data is used extensively by block explorers, wallet servers and other Bitcoin SV related web services [https://jochen-hoenicke.de/queue/#3,24h].&lt;br /&gt;
&lt;br /&gt;
==Secondary Transaction Pools and Genesis==&lt;br /&gt;
&lt;br /&gt;
The [[Genesis upgrade| Genesis]] upgrade to Bitcoin SV introduced a taxonomy within the transaction pool aimed at improving efficiency for transaction validators and miners.&lt;br /&gt;
&lt;br /&gt;
*  '''Primary Transaction Pool''' - transaction pool containing transactions that pay above the miner configured ''minimum tx fee''&lt;br /&gt;
&lt;br /&gt;
*  '''Secondary Transaction Pool''' - transaction pool for transactions that are below the miner configured ''minimum tx fee'' limit but above the network-wide ''minimum relay fee'' limit. These transactions are likely to eventually be included in another miner's block and therefore should be stored to ensure fast [[Mining| block validation]] and optimize network performance.&lt;br /&gt;
&lt;br /&gt;
A further discussion of configurable minimum fee policy can be found here [https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/].&lt;br /&gt;
 &lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Confirmation]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [1]   https://jochen-hoenicke.de/queue/#3,24h&lt;br /&gt;
* [2]   https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2053</id>
		<title>Transaction Pools</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2053"/>
		<updated>2020-02-17T11:24:51Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A ''transaction pool'' or ''mempool'' is a set of transactions that are unconfirmed but validated prior to inclusion in a block.&lt;br /&gt;
&lt;br /&gt;
==Transaction Pools in Bitcoin SV==&lt;br /&gt;
&lt;br /&gt;
A bitcoin [[Mining| node]] stores bitcoin transactions that have been validated but not mined. It can be thought of as a staging area for transactions prior to their inclusion in a [[block chain|block]]. When creating a new block to mine, miners will gather transactions from their transaction pool using the rpc command ''getminingcandidate'' or the older ''getblocktemplate'' to construct a candidate block. Similarly, when receiving a block, a validator can speed-up the validation process if the [[TXID|transactions IDs]] match the transaction IDs in the validator's transaction pool. The transaction pool data is used extensively by block explorers, wallet servers and other Bitcoin SV related web services [https://jochen-hoenicke.de/queue/#3,24h].&lt;br /&gt;
&lt;br /&gt;
==Secondary Transaction Pools and Genesis==&lt;br /&gt;
&lt;br /&gt;
The [[Genesis upgrade| Genesis]] upgrade to Bitcoin SV introduced a taxonomy within the transaction pool aimed at improving efficiency for transaction validators and miners.&lt;br /&gt;
&lt;br /&gt;
* - '''Primary Transaction Pool''' - transaction pool containing transactions that pay above the miner configured ''minimum tx fee''&lt;br /&gt;
&lt;br /&gt;
* - '''Secondary Transaction Pool''' - transaction pool for transactions that are below the miner configured ''minimum tx fee'' limit but above the network-wide ''minimum relay fee'' limit. These transactions are likely to eventually be included in another miner's block and therefore should be stored to ensure fast [[Mining| block validation]] and optimize network performance.&lt;br /&gt;
&lt;br /&gt;
A further discussion of configurable minimum fee policy can be found here [https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/].&lt;br /&gt;
 &lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Confirmation]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [1]   https://jochen-hoenicke.de/queue/#3,24h&lt;br /&gt;
* [2]   https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2052</id>
		<title>Transaction Pools</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2052"/>
		<updated>2020-02-17T11:19:54Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A ''transaction pool'' or ''mempool'' is a set of transactions that are unconfirmed but validated prior to inclusion in a block.&lt;br /&gt;
&lt;br /&gt;
==Transaction Pools in Bitcoin SV==&lt;br /&gt;
&lt;br /&gt;
A bitcoin [[Mining| node]] stores bitcoin transactions that have been validated but not mined. It can be thought of as a staging area for transactions prior to their inclusion in a [[block chain|block]]. When creating a new block to mine, miners will gather transactions from their transaction pool using the rpc command ''getminingcandidate'' or the older ''getblocktemplate'' to construct a candidate block. Similarly, when receiving a block, a validator can speed-up the validation process if the [[TXID|transactions IDs]] match the transaction IDs in the validator's transaction pool. The transaction pool data is used extensively by block explorers, wallet servers and other Bitcoin SV related web services [https://jochen-hoenicke.de/queue/#3,24h].&lt;br /&gt;
&lt;br /&gt;
==Secondary Transaction Pools and Genesis==&lt;br /&gt;
&lt;br /&gt;
The [[Genesis upgrade| Genesis]] upgrade to Bitcoin SV will introduce taxonomy within the transaction pool aimed at improving efficiency for transaction validators and miners.&lt;br /&gt;
&lt;br /&gt;
* - '''Primary Transaction Pool''' - transaction pool containing transactions that pay above the miner configured ''minimum tx fee''&lt;br /&gt;
&lt;br /&gt;
* - '''Secondary Transaction Pool''' - transaction pool for transactions that are below the miner configured ''minimum tx fee'' limit but above the network-wide ''minimum relay fee'' limit. These transactions are likely to eventually be included in another miner's block and therefore should be stored to ensure fast [[Mining| block validation]] and optimize network performance.&lt;br /&gt;
&lt;br /&gt;
A further discussion of configurable minimum fee policy can be found here [https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/].&lt;br /&gt;
 &lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Confirmation]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [1]   https://jochen-hoenicke.de/queue/#3,24h&lt;br /&gt;
* [2]   https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2051</id>
		<title>Transaction Pools</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2051"/>
		<updated>2020-02-17T11:19:35Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A ''transaction pool'' or ''mempool'' is a set of transactions that are unconfirmed but validated prior to inclusion in a block.&lt;br /&gt;
&lt;br /&gt;
==Transaction Pools in Bitcoin SV==&lt;br /&gt;
&lt;br /&gt;
A bitcoin [[Mining| node]] stores bitcoin transactions that have been validated but not mined. It can be thought of as a staging area for transactions prior to their inclusion in a [[block chain|block]]. When creating a new block to mine, miners will gather transactions from their transaction pool using the rpc command ''getminingcandidate'' or the older ''getblocktemplate'' to construct a candidate block. Similarly, when receiving a block, a validator can speed-up the validation process if the [[TXID|transactions IDs]] match the transaction IDs in the validator's transaction pool. The transaction pool data is used extensively by block explorers, wallet servers and other Bitcoin SV related web services [https://jochen-hoenicke.de/queue/#3,24h].&lt;br /&gt;
&lt;br /&gt;
==Secondary Transaction Pools and Genesis==&lt;br /&gt;
&lt;br /&gt;
The [[Genesis upgrade| Genesis]] upgrade to Bitcoin SV will introduce taxonomy within the transaction pool aimed at improving efficiency for transaction validators and miners.&lt;br /&gt;
&lt;br /&gt;
* - '''Primary Transaction Pool''' - transaction pool containing transactions that pay above the miner configured ''minimum tx fee''&lt;br /&gt;
&lt;br /&gt;
* - '''Secondary Transaction Pool''' - transaction pool for transactions that are below the miner configured ''minimum tx fee'' limit but above the network-wide ''minimum relay fee'' limit. These transactions are likely to eventually be included in another miner's block and therefore should be stored to ensure fast [[Mining| block validation]] and optimize network performance.&lt;br /&gt;
&lt;br /&gt;
A further discussion of configurable minimum fee policy can be found here [https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/].&lt;br /&gt;
 &lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Confirmation]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [1] https://jochen-hoenicke.de/queue/#3,24h&lt;br /&gt;
* [2] https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2050</id>
		<title>Transaction Pools</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2050"/>
		<updated>2020-02-17T11:18:57Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A ''transaction pool'' or ''mempool'' is a set of transactions that are unconfirmed but validated prior to inclusion in a block.&lt;br /&gt;
&lt;br /&gt;
==Transaction Pools in Bitcoin SV==&lt;br /&gt;
&lt;br /&gt;
A bitcoin [[Mining| node]] stores bitcoin transactions that have been validated but not mined. It can be thought of as a staging area for transactions prior to their inclusion in a [[block chain|block]]. When creating a new block to mine, miners will gather transactions from their transaction pool using the rpc command ''getminingcandidate'' or the older ''getblocktemplate'' to construct a candidate block. Similarly, when receiving a block, a validator can speed-up the validation process if the [[TXID|transactions IDs]] match the transaction IDs in the validator's transaction pool. The transaction pool data is used extensively by block explorers, wallet servers and other Bitcoin SV related web services [https://jochen-hoenicke.de/queue/#3,24h].&lt;br /&gt;
&lt;br /&gt;
==Secondary Transaction Pools and Genesis==&lt;br /&gt;
&lt;br /&gt;
The [[Genesis upgrade| Genesis]] upgrade to Bitcoin SV will introduce taxonomy within the transaction pool aimed at improving efficiency for transaction validators and miners.&lt;br /&gt;
&lt;br /&gt;
* - '''Primary Transaction Pool''' - transaction pool containing transactions that pay above the miner configured ''minimum tx fee''&lt;br /&gt;
&lt;br /&gt;
* - '''Secondary Transaction Pool''' - transaction pool for transactions that are below the miner configured ''minimum tx fee'' limit but above the network-wide ''minimum relay fee'' limit. These transactions are likely to eventually be included in another miner's block and therefore should be stored to ensure fast [[Mining| block validation]] and optimize network performance.&lt;br /&gt;
&lt;br /&gt;
A further discussion of configurable minimum fee policy can be found here [https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/].&lt;br /&gt;
 &lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Confirmation]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [1] https://jochen-hoenicke.de/queue/#3,24h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2049</id>
		<title>Transaction Pools</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Transaction_Pools&amp;diff=2049"/>
		<updated>2020-02-17T11:18:33Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A ''transaction pool'' or ''mempool'' is a set of transactions that are unconfirmed but validated prior to inclusion in a block.&lt;br /&gt;
&lt;br /&gt;
==Transaction Pools in Bitcoin SV==&lt;br /&gt;
&lt;br /&gt;
A bitcoin [[Mining| node]] stores bitcoin transactions that have been validated but not mined. It can be thought of as a staging area for transactions prior to their inclusion in a [[block chain|block]]. When creating a new block to mine, miners will gather transactions from their transaction pool using the rpc command ''getminingcandidate'' or the older ''getblocktemplate'' to construct a candidate block. Similarly, when receiving a block, a validator can speed-up the validation process if the [[TXID|transactions IDs]] match the transaction IDs in the validator's transaction pool. The transaction pool data is used extensively by block explorers, wallet servers and other Bitcoin SV related web services [https://jochen-hoenicke.de/queue/#3,24h].&lt;br /&gt;
&lt;br /&gt;
==Secondary Transaction Pools and Genesis==&lt;br /&gt;
&lt;br /&gt;
The [[Genesis upgrade| Genesis]] upgrade to Bitcoin SV will introduce taxonomy within the transaction pool aimed at improving efficiency for transaction validators and miners.&lt;br /&gt;
&lt;br /&gt;
    '''Primary Transaction Pool''' - transaction pool containing transactions that pay above the miner configured ''minimum tx fee''&lt;br /&gt;
&lt;br /&gt;
    '''Secondary Transaction Pool''' - transaction pool for transactions that are below the miner configured ''minimum tx fee'' limit but above the network-wide ''minimum relay fee'' limit. These transactions are likely to eventually be included in another miner's block and therefore should be stored to ensure fast [[Mining| block validation]] and optimize network performance.&lt;br /&gt;
&lt;br /&gt;
A further discussion of configurable minimum fee policy can be found here [https://bitcoinsv.io/2019/11/24/on-the-future-of-bitcoin-transaction-fees/].&lt;br /&gt;
 &lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Confirmation]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [1] https://jochen-hoenicke.de/queue/#3,24h&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1983</id>
		<title>Private Keys</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1983"/>
		<updated>2020-02-16T19:49:13Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''private key''' is a secret number that can used to transfer of bitcoins, encrypt data and more. Each private key corresponds to a public key which is a coordinate on the [[Secp256k1|Bitcoin Elliptic Curve]].&lt;br /&gt;
&lt;br /&gt;
Every Bitcoin wallet contains one or more private keys, which are typically  generated from a root key, and which are saved in the wallet file. Having knowledge of a private key allows any coins that can be unlocked with that key to be spent, so it is important that these are kept secret and safe.&lt;br /&gt;
&lt;br /&gt;
Private keys themselves are almost never handled by the user, instead the user will typically be given a [[seed phrase]] from which their wallet's root key can be derived.&lt;br /&gt;
&lt;br /&gt;
==Range of valid ECDSA private keys==&lt;br /&gt;
Nearly every 256-bit integer is a valid [[Elliptic Curve Digital Signature Algorithm|ECDSA]] private key.  Specifically, any 256-bit number from 0x1 to 0xFFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFE BAAE DCE6 AF48 A03B BFD2 5E8C D036 4140 is a valid private key.&lt;br /&gt;
&lt;br /&gt;
The range of valid private keys is governed by the [[Secp256k1|secp256k1]] ECDSA standard used by Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Hierarchical Deterministic (HD) Wallet Keys==&lt;br /&gt;
&lt;br /&gt;
Wallet software may use a [https://github.com/bitcoin/bips/tree/master/bip-0032 mnemonic seed] to generate many private keys and corresponding public keys from a single secret value.  This is called a ''hierarchical deterministic wallet'', or ''HD wallet'' for short. The seed value, or ''master extended key'', consists of a 256-bit private key and a 256-bit ''chain code'', for 512 bits in total.  The seed value should not be confused with the private keys used directly to sign Bitcoin transactions.&lt;br /&gt;
&lt;br /&gt;
Users are strongly advised to use HD wallets, for safety reasons:  An HD wallet only needs to be backed up once typically using a [[Seed phrase|seed phrase]]; thereafter in the future, that single backup can always deterministically regenerate the same private keys.  Therefore, it can safely recover all addresses, and all funds sent to those addresses.  Non-HD wallets generate a new randomly-selected private key for each new address; therefore, if the wallet file is lost or damaged, the user will irretrievably lose all funds received to addresses generated after the most recent backup.&lt;br /&gt;
&lt;br /&gt;
==Base58 Wallet Import format==&lt;br /&gt;
When importing or sweeping ECDSA private keys, a shorter format known as [[Wallet import format]] is often used, which offers a few advantages.&lt;br /&gt;
The wallet import format is shorter, and includes built-in error checking codes so that typos can be automatically detected and/or corrected (which is impossible in hex format) and type bits indicating how it is intended to be used. Wallet import format is the most common way to represent private keys in Bitcoin.&lt;br /&gt;
&lt;br /&gt;
For private keys associated with uncompressed public keys, they are 51 characters and always start with the number 5 on mainnet (9 on testnet). Private keys associated with compressed public keys are 52 characters and start with a capital L or K on mainnet (c on testnet). This is the same private key in (mainnet) wallet import format:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When a WIF private key is imported, it always corresponds to exactly one Bitcoin address.&lt;br /&gt;
Any utility which performs the conversion can display the matching Bitcoin address.&lt;br /&gt;
The mathematical conversion is somewhat complex and best left to a computer, but it's notable that the WIF guarantees it will always correspond to the same address no matter which program is used to convert it.&lt;br /&gt;
&lt;br /&gt;
The Bitcoin address implemented using the sample above is: 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
Any Bitcoins sent to the address 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj can be spent by anybody who knows the private key implementing it in ''any'' of the three formats, regardless of when the bitcoins were sent, unless the wallet receiving them has since made use of the coins generated.&lt;br /&gt;
The private key is only needed to spend the bitcoins, not necessarily to see the value of them.&lt;br /&gt;
&lt;br /&gt;
If a private key controlling unspent bitcoins is compromised or stolen, the value can be protected if it is immediately spent to a different output which is secure.&lt;br /&gt;
Because bitcoins in an unspent transaction output can only be spent once, when they are spent using a private key, the private key becomes worthless.&lt;br /&gt;
It is often possible, but inadvisable and insecure, to use the address implemented by the private key more than once, in which case the same private key would be [[Address reuse|reused]].&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Paper wallet]]&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1982</id>
		<title>Private Keys</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1982"/>
		<updated>2020-02-16T19:47:42Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''private key''' is a secret number that can used to transfer of bitcoins, encrypt data and more. In Bitcoin each private key corresponds to a public key which is a coordinate on the [[Secp256k1|Bitcoin Elliptic Curve]].&lt;br /&gt;
&lt;br /&gt;
Every Bitcoin wallet contains one or more private keys, which are typically  generated from a root key, and which are saved in the wallet file. Having knowledge of a private key allows any coins that can be unlocked with that key to be spent, so it is important that these are kept secret and safe.&lt;br /&gt;
&lt;br /&gt;
Private keys themselves are almost never handled by the user, instead the user will typically be given a [[seed phrase]] from which their wallet's root key can be derived.&lt;br /&gt;
&lt;br /&gt;
==Range of valid ECDSA private keys==&lt;br /&gt;
Nearly every 256-bit integer is a valid [[Elliptic Curve Digital Signature Algorithm|ECDSA]] private key.  Specifically, any 256-bit number from 0x1 to 0xFFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFE BAAE DCE6 AF48 A03B BFD2 5E8C D036 4140 is a valid private key.&lt;br /&gt;
&lt;br /&gt;
The range of valid private keys is governed by the [[Secp256k1|secp256k1]] ECDSA standard used by Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Hierarchical Deterministic (HD) Wallet Keys==&lt;br /&gt;
&lt;br /&gt;
Wallet software may use a [https://github.com/bitcoin/bips/tree/master/bip-0032 mnemonic seed] to generate many private keys and corresponding public keys from a single secret value.  This is called a ''hierarchical deterministic wallet'', or ''HD wallet'' for short. The seed value, or ''master extended key'', consists of a 256-bit private key and a 256-bit ''chain code'', for 512 bits in total.  The seed value should not be confused with the private keys used directly to sign Bitcoin transactions.&lt;br /&gt;
&lt;br /&gt;
Users are strongly advised to use HD wallets, for safety reasons:  An HD wallet only needs to be backed up once typically using a [[Seed phrase|seed phrase]]; thereafter in the future, that single backup can always deterministically regenerate the same private keys.  Therefore, it can safely recover all addresses, and all funds sent to those addresses.  Non-HD wallets generate a new randomly-selected private key for each new address; therefore, if the wallet file is lost or damaged, the user will irretrievably lose all funds received to addresses generated after the most recent backup.&lt;br /&gt;
&lt;br /&gt;
==Base58 Wallet Import format==&lt;br /&gt;
When importing or sweeping ECDSA private keys, a shorter format known as [[Wallet import format]] is often used, which offers a few advantages.&lt;br /&gt;
The wallet import format is shorter, and includes built-in error checking codes so that typos can be automatically detected and/or corrected (which is impossible in hex format) and type bits indicating how it is intended to be used. Wallet import format is the most common way to represent private keys in Bitcoin.&lt;br /&gt;
&lt;br /&gt;
For private keys associated with uncompressed public keys, they are 51 characters and always start with the number 5 on mainnet (9 on testnet). Private keys associated with compressed public keys are 52 characters and start with a capital L or K on mainnet (c on testnet). This is the same private key in (mainnet) wallet import format:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When a WIF private key is imported, it always corresponds to exactly one Bitcoin address.&lt;br /&gt;
Any utility which performs the conversion can display the matching Bitcoin address.&lt;br /&gt;
The mathematical conversion is somewhat complex and best left to a computer, but it's notable that the WIF guarantees it will always correspond to the same address no matter which program is used to convert it.&lt;br /&gt;
&lt;br /&gt;
The Bitcoin address implemented using the sample above is: 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
Any Bitcoins sent to the address 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj can be spent by anybody who knows the private key implementing it in ''any'' of the three formats, regardless of when the bitcoins were sent, unless the wallet receiving them has since made use of the coins generated.&lt;br /&gt;
The private key is only needed to spend the bitcoins, not necessarily to see the value of them.&lt;br /&gt;
&lt;br /&gt;
If a private key controlling unspent bitcoins is compromised or stolen, the value can be protected if it is immediately spent to a different output which is secure.&lt;br /&gt;
Because bitcoins in an unspent transaction output can only be spent once, when they are spent using a private key, the private key becomes worthless.&lt;br /&gt;
It is often possible, but inadvisable and insecure, to use the address implemented by the private key more than once, in which case the same private key would be [[Address reuse|reused]].&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Paper wallet]]&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1979</id>
		<title>Private Keys</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1979"/>
		<updated>2020-02-16T19:39:46Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''private key''' is a secret number that can used to transfer of Bitcoins, encrypt data and more. Each private key corresponds to a public key which is coordinate on the [[Secp256k1|Bitcoin Elliptic Curve]].&lt;br /&gt;
&lt;br /&gt;
Every Bitcoin wallet contains one or more private keys, which are typically deterministically generated from a root key, and which are saved in the wallet file. Having knowledge of a private key allows any coins that can be unlocked with that key to be spent, so it is important that these are kept secret and safe.&lt;br /&gt;
&lt;br /&gt;
Private keys themselves are almost never handled by the user, instead the user will typically be given a [[seed phrase]] from which their wallet's root key can be derived.&lt;br /&gt;
&lt;br /&gt;
==Range of valid ECDSA private keys==&lt;br /&gt;
Nearly every 256-bit number is a valid [[Elliptic Curve Digital Signature Algorithm|ECDSA]] private key.  Specifically, any 256-bit number from 0x1 to 0xFFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFE BAAE DCE6 AF48 A03B BFD2 5E8C D036 4140 is a valid private key.&lt;br /&gt;
&lt;br /&gt;
The range of valid private keys is governed by the [[Secp256k1|secp256k1]] ECDSA standard used by Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Hierarchical Deterministic (HD) Wallet Keys==&lt;br /&gt;
&lt;br /&gt;
Wallet software may use a [https://github.com/bitcoin/bips/tree/master/bip-0032 mnemonic seed] to generate many private keys and corresponding public keys from a single secret value.  This is called a ''hierarchical deterministic wallet'', or ''HD wallet'' for short. The seed value, or ''master extended key'', consists of a 256-bit private key and a 256-bit ''chain code'', for 512 bits in total.  The seed value should not be confused with the private keys used directly to sign Bitcoin transactions.&lt;br /&gt;
&lt;br /&gt;
Users are strongly advised to use HD wallets, for safety reasons:  An HD wallet only needs to be backed up once typically using a [[Seed phrase|seed phrase]]; thereafter in the future, that single backup can always deterministically regenerate the same private keys.  Therefore, it can safely recover all addresses, and all funds sent to those addresses.  Non-HD wallets generate a new randomly-selected private key for each new address; therefore, if the wallet file is lost or damaged, the user will irretrievably lose all funds received to addresses generated after the most recent backup.&lt;br /&gt;
&lt;br /&gt;
==Base58 Wallet Import format==&lt;br /&gt;
When importing or sweeping ECDSA private keys, a shorter format known as [[Wallet import format]] is often used, which offers a few advantages.&lt;br /&gt;
The wallet import format is shorter, and includes built-in error checking codes so that typos can be automatically detected and/or corrected (which is impossible in hex format) and type bits indicating how it is intended to be used. Wallet import format is the most common way to represent private keys in Bitcoin.&lt;br /&gt;
&lt;br /&gt;
For private keys associated with uncompressed public keys, they are 51 characters and always start with the number 5 on mainnet (9 on testnet). Private keys associated with compressed public keys are 52 characters and start with a capital L or K on mainnet (c on testnet). This is the same private key in (mainnet) wallet import format:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When a WIF private key is imported, it always corresponds to exactly one Bitcoin address.&lt;br /&gt;
Any utility which performs the conversion can display the matching Bitcoin address.&lt;br /&gt;
The mathematical conversion is somewhat complex and best left to a computer, but it's notable that the WIF guarantees it will always correspond to the same address no matter which program is used to convert it.&lt;br /&gt;
&lt;br /&gt;
The Bitcoin address implemented using the sample above is: 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
Any Bitcoins sent to the address 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj can be spent by anybody who knows the private key implementing it in ''any'' of the three formats, regardless of when the bitcoins were sent, unless the wallet receiving them has since made use of the coins generated.&lt;br /&gt;
The private key is only needed to spend the bitcoins, not necessarily to see the value of them.&lt;br /&gt;
&lt;br /&gt;
If a private key controlling unspent bitcoins is compromised or stolen, the value can be protected if it is immediately spent to a different output which is secure.&lt;br /&gt;
Because bitcoins in an unspent transaction output can only be spent once, when they are spent using a private key, the private key becomes worthless.&lt;br /&gt;
It is often possible, but inadvisable and insecure, to use the address implemented by the private key more than once, in which case the same private key would be [[Address reuse|reused]].&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Paper wallet]]&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1978</id>
		<title>Private Keys</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1978"/>
		<updated>2020-02-16T19:39:29Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''private key''' is a secret number that can used to transfer of Bitcoins, encrypt data and more. Each private key corresponds to a public key which is coordinate on the [[Secp256k1|Bitcoin Elliptic Curve]].&lt;br /&gt;
&lt;br /&gt;
Every Bitcoin wallet contains one or more private keys, which are typically deterministically generated from a root key, and which are saved in the wallet file. Having knowledge of a private key allows any coins that can be unlocked with that key to be spent, so it is important that these are kept secret and safe.&lt;br /&gt;
&lt;br /&gt;
Private keys themselves are almost never handled by the user, instead the user will typically be given a [[seed phrase]] from which their wallet's root key can be derived.&lt;br /&gt;
&lt;br /&gt;
==Range of valid ECDSA private keys==&lt;br /&gt;
Nearly every 256-bit number is a valid [[Elliptic Curve Digital Signature Algorithm|ECDSA]] private key.  Specifically, any 256-bit number from 0x1 to 0xFFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFE BAAE DCE6 AF48 A03B BFD2 5E8C D036 4140 is a valid private key.&lt;br /&gt;
&lt;br /&gt;
The range of valid private keys is governed by the [[Secp256k1|secp256k1]] ECDSA standard used by Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Hierarchical Deterministic (HD) Wallet Keys==&lt;br /&gt;
&lt;br /&gt;
Wallet software may use a [https://github.com/bitcoin/bips/tree/master/bip-0032 mnemonic seed] to generate many private keys and corresponding public keys from a single secret value.  This is called a ''hierarchical deterministic wallet'', or ''HD wallet'' for short. The seed value, or ''master extended key'', consists of a 256-bit private key and a 256-bit ''chain code'', for 512 bits in total.  The seed value should not be confused with the private keys used directly to sign Bitcoin transactions.&lt;br /&gt;
&lt;br /&gt;
Users are strongly advised to use HD wallets, for safety reasons:  An HD wallet only needs to be backed up once typically using a [[Seed phrase|seed phrase]]; thereafter in the future, that single backup can always deterministically regenerate the same private keys.  Therefore, it can safely recover all addresses, and all funds sent to those addresses.  Non-HD wallets generate a new randomly-selected private key for each new address; therefore, if the wallet file is lost or damaged, the user will irretrievably lose all funds received to addresses generated after the most recent backup.&lt;br /&gt;
&lt;br /&gt;
==Base58 Wallet Import format==&lt;br /&gt;
When importing or sweeping ECDSA private keys, a shorter format known as [[Wallet import format]] is often used, which offers a few advantages.&lt;br /&gt;
The wallet import format is shorter, and includes built-in error checking codes so that typos can be automatically detected and/or corrected (which is impossible in hex format) and type bits indicating how it is intended to be used. Wallet import format is the most common way to represent private keys in Bitcoin.&lt;br /&gt;
&lt;br /&gt;
For private keys associated with uncompressed public keys, they are 51 characters and always start with the number 5 on mainnet (9 on testnet). Private keys associated with compressed public keys are 52 characters and start with a capital L or K on mainnet (c on testnet). This is the same private key in (mainnet) wallet import format:&lt;br /&gt;
&lt;br /&gt;
5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When a WIF private key is imported, it always corresponds to exactly one Bitcoin address.&lt;br /&gt;
Any utility which performs the conversion can display the matching Bitcoin address.&lt;br /&gt;
The mathematical conversion is somewhat complex and best left to a computer, but it's notable that the WIF guarantees it will always correspond to the same address no matter which program is used to convert it.&lt;br /&gt;
&lt;br /&gt;
The Bitcoin address implemented using the sample above is: 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
Any Bitcoins sent to the address 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj can be spent by anybody who knows the private key implementing it in ''any'' of the three formats, regardless of when the bitcoins were sent, unless the wallet receiving them has since made use of the coins generated.&lt;br /&gt;
The private key is only needed to spend the bitcoins, not necessarily to see the value of them.&lt;br /&gt;
&lt;br /&gt;
If a private key controlling unspent bitcoins is compromised or stolen, the value can be protected if it is immediately spent to a different output which is secure.&lt;br /&gt;
Because bitcoins in an unspent transaction output can only be spent once, when they are spent using a private key, the private key becomes worthless.&lt;br /&gt;
It is often possible, but inadvisable and insecure, to use the address implemented by the private key more than once, in which case the same private key would be [[Address reuse|reused]].&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Paper wallet]]&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1977</id>
		<title>Private Keys</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1977"/>
		<updated>2020-02-16T19:37:59Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''private key''' is a secret number that can used to transfer of Bitcoins, encrypt data and more. Each private key corresponds to a public key which is coordinate on the [[Secp256k1|Bitcoin Elliptic Curve]].&lt;br /&gt;
&lt;br /&gt;
Every Bitcoin wallet contains one or more private keys, which are typically deterministically generated from a root key, and which are saved in the wallet file. Having knowledge of a private key allows any coins that can be unlocked with that key to be spent, so it is important that these are kept secret and safe.&lt;br /&gt;
&lt;br /&gt;
Private keys themselves are almost never handled by the user, instead the user will typically be given a [[seed phrase]] from which their wallet's root key can be derived.&lt;br /&gt;
&lt;br /&gt;
==Range of valid ECDSA private keys==&lt;br /&gt;
Nearly every 256-bit number is a valid [[Elliptic Curve Digital Signature Algorithm|ECDSA]] private key.  Specifically, any 256-bit number from 0x1 to 0xFFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFE BAAE DCE6 AF48 A03B BFD2 5E8C D036 4140 is a valid private key.&lt;br /&gt;
&lt;br /&gt;
The range of valid private keys is governed by the [[Secp256k1|secp256k1]] ECDSA standard used by Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Hierarchical Deterministic (HD) Wallet Keys==&lt;br /&gt;
&lt;br /&gt;
Wallet software may use a [https://github.com/bitcoin/bips/tree/master/bip-0032 mnemonic seed] to generate many private keys and corresponding public keys from a single secret value.  This is called a ''hierarchical deterministic wallet'', or ''HD wallet'' for short. The seed value, or ''master extended key'', consists of a 256-bit private key and a 256-bit ''chain code'', for 512 bits in total.  The seed value should not be confused with the private keys used directly to sign Bitcoin transactions.&lt;br /&gt;
&lt;br /&gt;
Users are strongly advised to use HD wallets, for safety reasons:  An HD wallet only needs to be backed up once typically using a [[Seed phrase|seed phrase]]; thereafter in the future, that single backup can always deterministically regenerate the same private keys.  Therefore, it can safely recover all addresses, and all funds sent to those addresses.  Non-HD wallets generate a new randomly-selected private key for each new address; therefore, if the wallet file is lost or damaged, the user will irretrievably lose all funds received to addresses generated after the most recent backup.&lt;br /&gt;
&lt;br /&gt;
==Base58 Wallet Import format==&lt;br /&gt;
When importing or sweeping ECDSA private keys, a shorter format known as [[Wallet import format]] is often used, which offers a few advantages.&lt;br /&gt;
The wallet import format is shorter, and includes built-in error checking codes so that typos can be automatically detected and/or corrected (which is impossible in hex format) and type bits indicating how it is intended to be used.&lt;br /&gt;
Wallet import format is the most common way to represent private keys in Bitcoin.&lt;br /&gt;
For private keys associated with uncompressed public keys, they are 51 characters and always start with the number 5 on mainnet (9 on testnet). Private keys associated with compressed public keys are 52 characters and start with a capital L or K on mainnet (c on testnet). This is the same private key in (mainnet) wallet import format:&lt;br /&gt;
&lt;br /&gt;
5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF&lt;br /&gt;
&lt;br /&gt;
When a WIF private key is imported, it always corresponds to exactly one [[Address|Bitcoin address]].&lt;br /&gt;
Any utility which performs the conversion can display the matching Bitcoin address.&lt;br /&gt;
The mathematical conversion is somewhat complex and best left to a computer, but it's notable that the WIF guarantees it will always correspond to the same address no matter which program is used to convert it.&lt;br /&gt;
&lt;br /&gt;
The Bitcoin address implemented using the sample above is: 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
Any Bitcoins sent to the address 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj can be spent by anybody who knows the private key implementing it in ''any'' of the three formats, regardless of when the bitcoins were sent, unless the wallet receiving them has since made use of the coins generated.&lt;br /&gt;
The private key is only needed to spend the bitcoins, not necessarily to see the value of them.&lt;br /&gt;
&lt;br /&gt;
If a private key controlling unspent bitcoins is compromised or stolen, the value can be protected if it is immediately spent to a different output which is secure.&lt;br /&gt;
Because bitcoins in an unspent transaction output can only be spent once, when they are spent using a private key, the private key becomes worthless.&lt;br /&gt;
It is often possible, but inadvisable and insecure, to use the address implemented by the private key more than once, in which case the same private key would be [[Address reuse|reused]].&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Paper wallet]]&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1975</id>
		<title>Private Keys</title>
		<link rel="alternate" type="text/html" href="https://wiki.bitcoinsv.io/index.php?title=Private_Keys&amp;diff=1975"/>
		<updated>2020-02-16T19:35:14Z</updated>

		<summary type="html">&lt;p&gt;AlexMackay: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''private key''' is a secret number that can used to transfer of Bitcoins, encrypt data and more. Each private key corresponds to a public key which is coordinate on the [[Secp256k1|Bitcoin Elliptic Curve]].&lt;br /&gt;
&lt;br /&gt;
Every Bitcoin wallet contains one or more private keys, which are typically deterministically generated from a root key, and which are saved in the wallet file. Having knowledge of a private key allows any coins that can be unlocked with that key to be spent, so it is important that these are kept secret and safe.&lt;br /&gt;
Private keys themselves are almost never handled by the user, instead the user will typically be given a [[seed phrase]] from which their wallet's root key can be derived.&lt;br /&gt;
&lt;br /&gt;
==Range of valid ECDSA private keys==&lt;br /&gt;
Nearly every 256-bit number is a valid [[Elliptic Curve Digital Signature Algorithm|ECDSA]] private key.  Specifically, any 256-bit number from 0x1 to 0xFFFF FFFF FFFF FFFF FFFF FFFF FFFF FFFE BAAE DCE6 AF48 A03B BFD2 5E8C D036 4140 is a valid private key.&lt;br /&gt;
&lt;br /&gt;
The range of valid private keys is governed by the [[secp256k1]] ECDSA standard used by Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Hierarchical Deterministic (HD) Wallet Keys==&lt;br /&gt;
&lt;br /&gt;
Wallet software may use a [https://github.com/bitcoin/bips/tree/master/bip-0032 mnemonic seed] to generate many private keys and corresponding public keys from a single secret value.  This is called a ''hierarchical deterministic wallet'', or ''HD wallet'' for short. The seed value, or ''master extended key'', consists of a 256-bit private key and a 256-bit ''chain code'', for 512 bits in total.  The seed value should not be confused with the private keys used directly to sign Bitcoin transactions.&lt;br /&gt;
&lt;br /&gt;
Users are strongly advised to use HD wallets, for safety reasons:  An HD wallet only needs to be backed up once typically using a [[seed phrase]]; thereafter in the future, that single backup can always deterministically regenerate the same private keys.  Therefore, it can safely recover all addresses, and all funds sent to those addresses.  Non-HD wallets generate a new randomly-selected private key for each new address; therefore, if the wallet file is lost or damaged, the user will irretrievably lose all funds received to addresses generated after the most recent backup.&lt;br /&gt;
&lt;br /&gt;
==Base58 Wallet Import format==&lt;br /&gt;
When importing or sweeping ECDSA private keys, a shorter format known as [[Wallet import format]] is often used, which offers a few advantages.&lt;br /&gt;
The wallet import format is shorter, and includes built-in error checking codes so that typos can be automatically detected and/or corrected (which is impossible in hex format) and type bits indicating how it is intended to be used.&lt;br /&gt;
Wallet import format is the most common way to represent private keys in Bitcoin.&lt;br /&gt;
For private keys associated with uncompressed public keys, they are 51 characters and always start with the number 5 on mainnet (9 on testnet). Private keys associated with compressed public keys are 52 characters and start with a capital L or K on mainnet (c on testnet). This is the same private key in (mainnet) wallet import format:&lt;br /&gt;
&lt;br /&gt;
5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF&lt;br /&gt;
&lt;br /&gt;
When a WIF private key is imported, it always corresponds to exactly one [[Address|Bitcoin address]].&lt;br /&gt;
Any utility which performs the conversion can display the matching Bitcoin address.&lt;br /&gt;
The mathematical conversion is somewhat complex and best left to a computer, but it's notable that the WIF guarantees it will always correspond to the same address no matter which program is used to convert it.&lt;br /&gt;
&lt;br /&gt;
The Bitcoin address implemented using the sample above is: 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
Any Bitcoins sent to the address 1CC3X2gu58d6wXUWMffpuzN9JAfTUWu4Kj can be spent by anybody who knows the private key implementing it in ''any'' of the three formats, regardless of when the bitcoins were sent, unless the wallet receiving them has since made use of the coins generated.&lt;br /&gt;
The private key is only needed to spend the bitcoins, not necessarily to see the value of them.&lt;br /&gt;
&lt;br /&gt;
If a private key controlling unspent bitcoins is compromised or stolen, the value can be protected if it is immediately spent to a different output which is secure.&lt;br /&gt;
Because bitcoins in an unspent transaction output can only be spent once, when they are spent using a private key, the private key becomes worthless.&lt;br /&gt;
It is often possible, but inadvisable and insecure, to use the address implemented by the private key more than once, in which case the same private key would be [[Address reuse|reused]].&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Paper wallet]]&lt;/div&gt;</summary>
		<author><name>AlexMackay</name></author>
		
	</entry>
</feed>