mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Merge remote-tracking branch 'bitcoin.org/master' into generatingtxes
Conflicts: _includes/guide_payment_processing.md _less/screen.less
This commit is contained in:
commit
78b4c5452e
99 changed files with 5216 additions and 917 deletions
|
@ -75,3 +75,12 @@ title: "Developer Documentation - Bitcoin"
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="resourcesmore"><div>
|
||||
<h2><img src="/img/ico_wiki.svg" class="titleicon" alt="Icon">Additional resources</h2>
|
||||
<p><a href="/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a> - Satoshi Nakamoto</p>
|
||||
<p><a href="https://github.com/bitcoin/bips#readme">Bitcoin Improvement Proposals</a> - GitHub</p>
|
||||
<p><a href="http://enetium.com/resources/Bitcoin.pdf">Bitcoin Protocol Specification (working paper)</a> - Krzysztof Okupski</p>
|
||||
<p><a href="https://bitcoinj.github.io/#documentation">Bitcoinj Developer Documentation</a> - bitcoinj.org</p>
|
||||
<p><a href="https://en.bitcoin.it/wiki/Category:Technical">Technical Pages</a> - Wiki</p>
|
||||
</div></div>
|
||||
|
|
|
@ -14,12 +14,21 @@ title: "Developer Guide - Bitcoin"
|
|||
* Table of contents
|
||||
{:toc}
|
||||
|
||||
<ul><li><a href="/en/developer-documentation">Return To Overview</a></li></ul>
|
||||
<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">
|
||||
|
||||
<!--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. -->
|
||||
|
@ -47,3 +56,4 @@ of the following file. -->
|
|||
</div>
|
||||
|
||||
<script>updateToc();</script>
|
||||
<script>addAnchorLinks();</script>
|
||||
|
|
|
@ -14,11 +14,20 @@ title: "Developer Reference - Bitcoin"
|
|||
* Table of contents
|
||||
{:toc}
|
||||
|
||||
<ul><li><a href="/en/developer-documentation">Return To Overview</a></li></ul>
|
||||
<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">
|
||||
|
||||
<!--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 ref_block_chain.md %}
|
||||
{% include ref_transactions.md %}
|
||||
{% include ref_wallets.md %}
|
||||
|
@ -32,6 +41,15 @@ title: "Developer Reference - Bitcoin"
|
|||
|
||||
### Remote Procedure Calls (RPCs)
|
||||
|
||||
**Warning:** the block chain and memory pool can include arbitrary data
|
||||
which several of the commands below will return in hex format. If you
|
||||
convert this data to another format in an executable context, it could
|
||||
be used in an exploit. For example, displaying an output script as
|
||||
ASCII text in a webpage could add arbitrary Javascript to that page and
|
||||
create a cross-site scripting (XSS) exploit. To avoid problems, please
|
||||
treat block chain and memory pool data as an arbitrary input from an
|
||||
untrusted source.
|
||||
|
||||
{% include ref_core_rpcs-abcdefg.md %}
|
||||
{% include ref_core_rpcs-hijklmn.md %}
|
||||
{% include ref_core_rpcs-opqrst.md %}
|
||||
|
@ -41,3 +59,4 @@ title: "Developer Reference - Bitcoin"
|
|||
</div>
|
||||
|
||||
<script>updateToc();</script>
|
||||
<script>addAnchorLinks();</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue