Add md files for new RPCs

This commit is contained in:
thephez 2017-11-30 14:16:20 -05:00
parent fd75e603f0
commit b953919a36
6 changed files with 214 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% assign filename="_includes/devdoc/dash-core/rpcs/rpcs/dumphdinfo.md" %}
##### DumpHDInfo
{% include helpers/subhead-links.md %}
{% assign summary_dumpHDInfo="" %}
{% autocrossref %}
The `dumphdinfo` RPC {{summary_dumpHDInfo}}
*Parameter #1---PARAMETER DESCRIPTION*
*Result---RESULT DESCRIPTION*
*Example from Dash Core 0.12.2*
{% highlight bash %}
dash-cli -testnet dumphdinfo
{% endhighlight %}
Result:
{% highlight json %}
*INSERT RESULTS HERE*
{% endhighlight %}
*See also:*
{% endautocrossref %}

View file

@ -0,0 +1,33 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% assign filename="_includes/devdoc/dash-core/rpcs/rpcs/importelectrumwallet.md" %}
##### ImportElectrumWallet
{% include helpers/subhead-links.md %}
{% assign summary_importElectrumWallet="" %}
{% autocrossref %}
The `importelectrumwallet` RPC {{summary_importElectrumWallet}}
*Parameter #1---PARAMETER DESCRIPTION*
*Result---RESULT DESCRIPTION*
*Example from Dash Core 0.12.2*
{% highlight bash %}
dash-cli -testnet importelectrumwallet
{% endhighlight %}
Result:
{% highlight json %}
*INSERT RESULTS HERE*
{% endhighlight %}
*See also:*
{% endautocrossref %}

View file

@ -0,0 +1,33 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% assign filename="_includes/devdoc/dash-core/rpcs/rpcs/importpubkey.md" %}
##### ImportPubKey
{% include helpers/subhead-links.md %}
{% assign summary_importPubKey="" %}
{% autocrossref %}
The `importpubkey` RPC {{summary_importPubKey}}
*Parameter #1---PARAMETER DESCRIPTION*
*Result---RESULT DESCRIPTION*
*Example from Dash Core 0.12.2*
{% highlight bash %}
dash-cli -testnet importpubkey
{% endhighlight %}
Result:
{% highlight json %}
*INSERT RESULTS HERE*
{% endhighlight %}
*See also:*
{% endautocrossref %}

View file

@ -0,0 +1,33 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% assign filename="_includes/devdoc/dash-core/rpcs/rpcs/instantsendtoaddress.md" %}
##### InstantSendToAddress
{% include helpers/subhead-links.md %}
{% assign summary_instantSendToAddress="" %}
{% autocrossref %}
The `instantsendtoaddress` RPC {{summary_instantSendToAddress}}
*Parameter #1---PARAMETER DESCRIPTION*
*Result---RESULT DESCRIPTION*
*Example from Dash Core 0.12.2*
{% highlight bash %}
dash-cli -testnet instantsendtoaddress
{% endhighlight %}
Result:
{% highlight json %}
*INSERT RESULTS HERE*
{% endhighlight %}
*See also:*
{% endautocrossref %}

View file

@ -0,0 +1,33 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% assign filename="_includes/devdoc/dash-core/rpcs/rpcs/keepass.md" %}
##### Keepass
{% include helpers/subhead-links.md %}
{% assign summary_keepass="" %}
{% autocrossref %}
The `keepass` RPC {{summary_keepass}}
*Parameter #1---PARAMETER DESCRIPTION*
*Result---RESULT DESCRIPTION*
*Example from Dash Core 0.12.2*
{% highlight bash %}
dash-cli -testnet keepass
{% endhighlight %}
Result:
{% highlight json %}
*INSERT RESULTS HERE*
{% endhighlight %}
*See also:*
{% endautocrossref %}

View file

@ -0,0 +1,49 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% assign filename="_includes/devdoc/dash-core/rpcs/rpcs/sentinelping.md" %}
##### SentinelPing
{% include helpers/subhead-links.md %}
<!-- __ -->
{% assign summary_sentinelPing="sends a Sentinel Ping to the network." %}
{% autocrossref %}
The `sentinelping` RPC {{summary_sentinelPing}}
*Parameter #1---sentinel version*
{% itemplate ntpd1 %}
- n: "Version"
t: "string"
p: "Required<br>(exactly 1)"
d: "Sentinel version in the form 'x.x.x'"
{% enditemplate %}
*Result---the message signature*
{% itemplate ntpd1 %}
- n: "Result"
t: "bool"
p: "Required<br>(exactly 1)"
d: "Ping result"
{% enditemplate %}
*Example from Dash Core 0.12.2*
{% highlight bash %}
dash-cli -testnet sentinelping
{% endhighlight %}
Result:
{% highlight json %}
true
{% endhighlight %}
*See also: none*
{% endautocrossref %}