mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
Internal page urls are now all declared once in _config.yml for each language Translators can translate file and anchor urls without needing to manually update all pages
28 lines
4.1 KiB
HTML
Executable file
28 lines
4.1 KiB
HTML
Executable file
---
|
|
lang: en
|
|
layout: base-en
|
|
id: how-it-works
|
|
title: How does Bitcoin work? - Bitcoin
|
|
---
|
|
<h1>How does Bitcoin work?</h1>
|
|
|
|
<p>OK, this is a question that often causes confusion. Here's a quick explanation!
|
|
|
|
<h2>The basics for a new user</h2>
|
|
<p>As a new user, you only need to <a href="/{{page.lang}}/{{site.section.choose-your-wallet[page.lang]}}">choose a wallet</a> that you will install on your computer or on your mobile phone. Once you have your wallet installed, it will generate your first Bitcoin address and you can create more whenever you need one. You can disclose one of your Bitcoin addresses to your friends so that they can pay you or vice versa, you can pay your friends if they give you their addresses. In fact, this is pretty similar to how email works. So all that is left to do at this point is to get some bitcoins and to <a href="/{{page.lang}}/{{site.section.secure-your-wallet[page.lang]}}">keep them safe</a>. In order to start using Bitcoin, you are not required to understand the technical details.</p>
|
|
|
|
<p>However, if you want to know more, keep reading!</p>
|
|
|
|
<p><br><img src="/{{page.lang}}/img/bitcoin_at_a_glance.svg" alt="Bitcoin overview" /></p>
|
|
|
|
<h2>Balances<a class="titlelight"> - block chain</a></h2>
|
|
<p>The block chain is a <b>shared public transaction log</b> on which the entire Bitcoin network relies. All confirmed transactions are included in the block chain with no exception. This way, new transactions can be verified to be spending bitcoins that are actually owned by the spender. The integrity and the chronological order of the block chain are enforced with <a href="/{{page.lang}}/{{site.section.vocabulary[page.lang]}}#{{site.vocabulary.cryptography[page.lang]}}">cryptography</a>.</p>
|
|
|
|
<h2>Transactions<a class="titlelight"> - private keys</a></h2>
|
|
<p>A transaction is <b>a transfer of value between Bitcoin addresses</b> that gets included in the block chain. Bitcoin wallets keep a secret piece of data called a <a href="/{{page.lang}}/{{site.section.vocabulary[page.lang]}}#{{site.vocabulary.private-key[page.lang]}}"><i>private key</i></a> for each Bitcoin address. Private keys are used to sign transactions, providing a mathematical proof that they have come from the owner of the addresses. The <a href="/{{page.lang}}/{{site.section.vocabulary[page.lang]}}#{{site.vocabulary.signature[page.lang]}}"><i>signature</i></a> also prevents the transaction from being altered by anybody once it has been issued. All transactions are broadcast between users and confirmed by the network in the following minutes, through a process called <a href="/{{page.lang}}/{{site.section.vocabulary[page.lang]}}#{{site.vocabulary.mining[page.lang]}}"><i>mining</i></a>.</p>
|
|
|
|
<h2>Processing<a class="titlelight"> - mining</a></h2>
|
|
<p>Mining is a <b>distributed consensus system</b> that is used to <a href="/{{page.lang}}/{{site.section.vocabulary[page.lang]}}#{{site.vocabulary.confirmation[page.lang]}}"><i>confirm</i></a> waiting transactions by including them in the block chain. It enforces a chronological order in the block chain, protects the neutrality of the network, and allows different computers to agree on the state of the system. To be confirmed, transactions must be packed in a <a href="/{{page.lang}}/{{site.section.vocabulary[page.lang]}}#{{site.vocabulary.block[page.lang]}}"><i>block</i></a> that fits very strict cryptographic rules that will be verified by the network. These rules prevent previous blocks from being modified because doing so would invalidate all following blocks. Mining also creates the equivalent of a competitive lottery that prevents any individual from easily adding new blocks consecutively in the block chain. This way, no individuals can control what is included in the block chain or replace parts of the block chain to roll back their own spends.</p>
|
|
|
|
<h2>Going down the rabbit hole</h2>
|
|
<p>This is only a very short and concise summary of the system. If you want to get into the details, you can <a href="/bitcoin.pdf">read the original paper</a> that describes the system's design, and explore the <a href="https://en.bitcoin.it/wiki/Main_Page">Bitcoin wiki</a>.</p>
|