mirror of
https://github.com/seigler/dash-docs
synced 2025-07-28 10:16:15 +00:00
Merge remote-tracking branch 'harding/generatingtxes'
This commit is contained in:
commit
b428cbde26
18 changed files with 2135 additions and 755 deletions
|
@ -10,8 +10,9 @@ title: "Developer Documentation - Bitcoin"
|
|||
<p class="summary">Find useful resources, guides and reference material for developers.</p>
|
||||
|
||||
<div class="docreference">
|
||||
<a href="/en/developer-guide"><img src="/img/main_ico_guide.svg" alt="icon"><span>Developer Guide</span><span>(How Bitcoin works)</span></a>
|
||||
<a href="/en/developer-guide"><img src="/img/main_ico_compass.svg" alt="icon"><span>Developer Guide</span><span>(How Bitcoin works)</span></a>
|
||||
<a href="/en/developer-reference"><img src="/img/main_ico_guide.svg" alt="icon"><span>Developer Reference</span><span>(Specifications and APIs)</span></a>
|
||||
<a href="/en/developer-examples"><img src="/img/main_ico_hash.svg" alt="icon"><span>Developer Examples</span><span>(Examples you can use)</span></a>
|
||||
</div>
|
||||
|
||||
<div class="resources">
|
||||
|
@ -23,6 +24,7 @@ title: "Developer Documentation - Bitcoin"
|
|||
<h2><img src="/img/ico_micro.svg" class="titleicon" alt="Icon">Transactions</h2>
|
||||
<p><a href="/en/developer-guide#transactions">Transactions Guide</a></p>
|
||||
<p><a href="/en/developer-reference#transactions">Transactions Reference</a></p>
|
||||
<p><a href="/en/developer-examples#transactions">Transaction Examples</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
|
@ -47,6 +49,7 @@ title: "Developer Documentation - Bitcoin"
|
|||
<div>
|
||||
<h2><img src="/img/ico_bill.svg" class="titleicon" alt="Icon">Payment Processing</h2>
|
||||
<p><a href="/en/developer-guide#payment-processing">Payment Processing Guide</a></p>
|
||||
<p><a href="/en/developer-examples#payment-processing">Payment Processing Examples</a></p>
|
||||
<div class="resourcesext">
|
||||
<p><a href="https://github.com/bitcoin/bips/blob/master/bip-0070.mediawiki">Payment Protocol</a> - BIP70</p>
|
||||
</div>
|
||||
|
|
34
en/developer-examples.md
Normal file
34
en/developer-examples.md
Normal file
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
layout: base
|
||||
lang: en
|
||||
id: developer-examples
|
||||
title: "Developer Examples - Bitcoin"
|
||||
---
|
||||
|
||||
# Bitcoin Developer Examples
|
||||
|
||||
<p class="summary">Find examples of how to build programs using Bitcoin.</p>
|
||||
|
||||
<div markdown="1" id="toc" class="toc"><div markdown="1">
|
||||
|
||||
* Table of contents
|
||||
{:toc}
|
||||
|
||||
<ul class="goback"><li><a href="/en/developer-documentation">Return To Overview</a></li></ul>
|
||||
<ul class="reportissue"><li><a href="https://github.com/bitcoin/bitcoin.org/issues/new" onmouseover="updateIssue(event);">Report An Issue</a></li></ul>
|
||||
|
||||
</div></div>
|
||||
<div markdown="1" class="toccontent">
|
||||
|
||||
{% include fragment_reviews_needed.md %}
|
||||
|
||||
{% include example_transactions.md %}
|
||||
|
||||
{% include example_payment_processing.md %}
|
||||
|
||||
{% include references.md %}
|
||||
|
||||
</div>
|
||||
|
||||
<script>updateToc();</script>
|
||||
<script>addAnchorLinks();</script>
|
|
@ -21,18 +21,12 @@ title: "Developer Guide - Bitcoin"
|
|||
|
||||
<div markdown="1" class="toccontent">
|
||||
|
||||
<!--Temporary disclaimer BEGIN-->
|
||||
<div id="develdocdisclaimer" class="develdocdisclaimer"><div>
|
||||
<b>BETA</b>: This documentation has been written recently and still needs more reviews to ensure all content is covered correctly and accurately; if you find a mistake, please <a href="https://github.com/bitcoin/bitcoin.org/issues/new" onmouseover="updateIssue(event);">report an issue</a> on GitHub. <a href="#" onclick="disclaimerClose(event);">Click here</a> to close this disclaimer.
|
||||
<a class="develdocdisclaimerclose" href="#" onclick="disclaimerClose(event);">X</a>
|
||||
</div></div>
|
||||
<script>disclaimerAutoClose();</script>
|
||||
<!--Temporary disclaimer END-->
|
||||
|
||||
<!-- includes should be separated by an empty line to prevent a
|
||||
paragraph at the end of one file from breaking the heading at the start
|
||||
of the following file. -->
|
||||
|
||||
{% include fragment_reviews_needed.md %}
|
||||
|
||||
{% include guide_intro.md %}
|
||||
|
||||
{% include guide_block_chain.md %}
|
||||
|
|
|
@ -20,16 +20,12 @@ title: "Developer Reference - Bitcoin"
|
|||
</div></div>
|
||||
<div markdown="1" class="toccontent">
|
||||
|
||||
<!--Temporary disclaimer BEGIN-->
|
||||
<div id="develdocdisclaimer" class="develdocdisclaimer"><div>
|
||||
<b>BETA</b>: This documentation has been written recently and still needs more reviews to ensure all content is covered correctly and accurately; if you find a mistake, please <a href="https://github.com/bitcoin/bitcoin.org/issues/new" onmouseover="updateIssue(event);">report an issue</a> on GitHub. <a href="#" onclick="disclaimerClose(event);">Click here</a> to close this disclaimer.
|
||||
<a class="develdocdisclaimerclose" href="#" onclick="disclaimerClose(event);">X</a>
|
||||
</div></div>
|
||||
<script>disclaimerAutoClose();</script>
|
||||
<!--Temporary disclaimer END-->
|
||||
{% include fragment_reviews_needed.md %}
|
||||
|
||||
{% include ref_block_chain.md %}
|
||||
|
||||
{% include ref_transactions.md %}
|
||||
|
||||
{% include ref_wallets.md %}
|
||||
|
||||
## Bitcoin Core APIs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue