mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 03:35:51 +00:00
reserves - first draft
This commit is contained in:
@@ -58,6 +58,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -71,6 +72,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -159,6 +161,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
35
content/reserves.md
Normal file
35
content/reserves.md
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# Reserves #
|
||||||
|
|
||||||
|
The Ripple Consensus Ledger applies _reserve requirements_, in XRP, to protect the shared global ledger from growing too large to handle efficiently as the result of spam or malicious usage. The goal is to constrain the growth of the ledger to match [Moore's Law](https://en.wikipedia.org/wiki/Moore's_law) so that a current commodity-level machinec an always fit the current ledger in RAM and the full ledger history on disk.
|
||||||
|
|
||||||
|
Each account in the shared global ledger must hold a minimum of XRP in order to submit transactions, and it cannot send this XRP to other accounts. You cannot create a new account unless you send enough XRP to meet the minimum reserve requirement.
|
||||||
|
|
||||||
|
|
||||||
|
## Base Reserve and Owner Reserve ##
|
||||||
|
|
||||||
|
The reserve requirement is divided into two parts:
|
||||||
|
|
||||||
|
* The **Base Reserve** is a static minimum amount of XRP that is required for every account in the ledger. Currently, this is 20 XRP (`20000000` drops).
|
||||||
|
* The **Owner Reserve** is an additional requirement that scales with the number of objects that the account owns in the ledger. Currently, this is 5 XRP (`5000000` drops) per item.
|
||||||
|
|
||||||
|
|
||||||
|
### Owner Reserves ###
|
||||||
|
|
||||||
|
Many objects in the ledger are owned by a particular account, and therefore count toward the reserve requirement of that account. When objects are removed from the ledger, they no longer count against their owner's account reserve.
|
||||||
|
|
||||||
|
* [Offers](ripple-ledger.html#offer) are owned by the account that placed them. An Offer can be automatically removed from the ledger if it is fully consumed or if it is found unfunded during transaction processing. Alternatively, the owner can cancel an offer by sending an [OfferCancel transaction](transactions.html#offercancel), or by sending an [OfferCreate transaction](transactions.html#offercreate) that contains an `OfferSequence` parameter.
|
||||||
|
* [Trust lines](ripple-ledger.html#ripplestate) are shared between two accounts. The owner reserve can apply to one or both of the accounts, depending on whether the fields that account controls are in their default state. See [Contributing to the Owner Reserve](ripple-ledger.html#contributing-to-the-owner-reserve) for details.
|
||||||
|
* [Owner directories](ripple-ledger.html#directorynode) list all the ledger nodes that contribute to an account's owner reserve. However, the owner directory itself does not count towards the reserve.
|
||||||
|
|
||||||
|
#### Owner Reserve Edge Cases ####
|
||||||
|
|
||||||
|
The Ripple Consensus Ledger considers an [OfferCreate transaction](transactions.html#offercreate) to be an explicit statement of willingness to hold an asset. Consuming the offer automatically creates a trust line (with limit 0, and a balance above that limit) for the `taker_pays` currency if such a trust line does not exist. However, if the offer's owner does not possess enough XRP to meet the additional reserve requirement of the new trust line, the offer is considered unfunded. See also: [Lifecycle of an Offer](transactions.html#lifecycle-of-an-offer).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Going Below the Reserve Requirement ##
|
||||||
|
|
||||||
|
During transaction processing, a transaction can only be successful if the sending account possesses at least the reserve requirement in XRP. In the process, the [transaction cost](tx-cost.html) destroys some of the sending account's XRP balance. This can cause an account to go below the reserve requirement.
|
||||||
|
|
||||||
|
When an account has less XRP than its current reserve requirement, it continues to exist in the ledger, but it cannot send new transactions. Unless the reserve requirements decrease, the only way for the account to become able to send transactions again is for it to receive enough XRP that it meets the reserve requirement.
|
||||||
|
|
||||||
@@ -58,6 +58,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -71,6 +72,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -159,6 +161,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -58,6 +58,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -71,6 +72,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -159,6 +161,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -71,6 +71,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -84,6 +85,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -238,6 +240,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
197
reserves.html
Normal file
197
reserves.html
Normal file
@@ -0,0 +1,197 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width">
|
||||||
|
|
||||||
|
<title>Reserves - Ripple Developer Portal</title>
|
||||||
|
|
||||||
|
<!-- favicon -->
|
||||||
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||||
|
|
||||||
|
<!-- jQuery -->
|
||||||
|
<script src="vendor/jquery-1.11.1.min.js"></script>
|
||||||
|
|
||||||
|
<!-- Bootstrap -->
|
||||||
|
<link href="css/bootstrap.min.css" rel="stylesheet">
|
||||||
|
<script src="js/bootstrap.min.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Flatdoc theme -->
|
||||||
|
<link href='vendor/flatdoc/v/0.8.0/theme-white/style.css' rel='stylesheet'>
|
||||||
|
<script src="vendor/flatdoc/v/0.8.0/theme-white/script.js"></script>
|
||||||
|
|
||||||
|
<!-- syntax highlighting -->
|
||||||
|
<link rel="stylesheet" href="vendor/docco.min.css">
|
||||||
|
<script src="vendor/highlight.min.js"></script>
|
||||||
|
|
||||||
|
<!-- syntax selection js -->
|
||||||
|
<script src="js/multicodetab.js"></script>
|
||||||
|
<!-- Code to load contents via Flatdoc -->
|
||||||
|
<script src="vendor/flatdoc/v/0.8.0/legacy.js"></script>
|
||||||
|
<script src="vendor/flatdoc/v/0.8.0/flatdoc.js"></script>
|
||||||
|
<script>
|
||||||
|
$(".flatdoc-content").empty();
|
||||||
|
$(".content-root .menubar .menu").empty();
|
||||||
|
Flatdoc.run({
|
||||||
|
fetcher: Flatdoc.file('content/reserves.md')
|
||||||
|
});
|
||||||
|
$(document).on('flatdoc:ready', function() {
|
||||||
|
$().multicode_tabs();
|
||||||
|
hljs.initHighlighting();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script src="js/expandcode.js"></script>
|
||||||
|
<script src="js/fixsidebarscroll.js"></script>
|
||||||
|
|
||||||
|
<!-- Custom Stylesheets -->
|
||||||
|
<link href="font/fonts.css" rel="stylesheet" type="text/css" />
|
||||||
|
<link href="css/main.css" rel="stylesheet" />
|
||||||
|
<link href="css/custom.css" rel="stylesheet" />
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="favicon.ico?v=2" type="image/x-icon" />
|
||||||
|
<link rel="icon" href="favicon.ico?v=2" type="image/x-icon" />
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body role='flatdoc' class='no-literate'>
|
||||||
|
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
||||||
|
<div class="container">
|
||||||
|
<div class="navbar-header">
|
||||||
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||||
|
<span class="sr-only">Toggle navigation</span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
</button>
|
||||||
|
<a class="navbar-brand" href="./"><img class="small_logo" src="assets/img/ripple_logo_small.png"></a>
|
||||||
|
</div>
|
||||||
|
<div class="navbar-collapse collapse">
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li class="dropdown">
|
||||||
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">References <span class="caret"></span></a>
|
||||||
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rippled-apis.html">rippled</a></li>
|
||||||
|
<li><a href="ripple-rest.html">Ripple-REST</a></li>
|
||||||
|
<li><a href="transactions.html">Transactions</a></li>
|
||||||
|
<li><a href="ripple-ledger.html">Ripple Consensus Ledger</a></li>
|
||||||
|
<li><a href="historical_data.html">Historical Data API</a></li>
|
||||||
|
<li><a href="charts_api.html">Ripple Charts API</a></li>
|
||||||
|
<li><a href="data_api_v2.html">Ripple Data API v2</a></li>
|
||||||
|
<li><a href="paths.html">Paths</a></li>
|
||||||
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="dropdown">
|
||||||
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorials <span class="caret"></span></a>
|
||||||
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rippled-setup.html">rippled Setup</a></li>
|
||||||
|
<li><a href="reliable_tx.html">Reliable Transaction Submission</a></li>
|
||||||
|
<li><a href="gateway_guide.html">Gateway Guide</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="dropdown">
|
||||||
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
|
<li><a href="data-api-v2-tool.html">Data API v2 Tool</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="dropdown">
|
||||||
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <span class="caret"></span></a>
|
||||||
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="https://forum.ripple.com/viewforum.php?f=2">Forums</a></li>
|
||||||
|
<li><a href="https://www.bountysource.com/teams/ripple/bounties">Bounties</a></li>
|
||||||
|
<li><a href="https://ripplelabs.atlassian.net/">Bug Tracking</a></li>
|
||||||
|
<li><a href="https://ripple.com/category/dev-blog/">Dev Blog</a></li>
|
||||||
|
<li><a href="https://ripple.com/press-releases/">Press Center</a></li>
|
||||||
|
<li><a href="https://ripple.com/brand-guidelines/">Brand Guidelines</a></li>
|
||||||
|
</ul>
|
||||||
|
<li><a href="https://github.com/ripple/ripple-dev-portal" title="GitHub">Site Source</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!--/.nav-collapse -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
if (window.location.host.indexOf("github.io") > -1) {
|
||||||
|
document.write("<div style='background-color:red; color:white; position:fixed; top: 50px; right: 150px; padding: 10px 20px;'>DRAFT</div>");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<div class='wrapper'>
|
||||||
|
<div class='content-root'>
|
||||||
|
<div class='menubar'>
|
||||||
|
<div class='menu section' role='flatdoc-menu'>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div role='flatdoc-content' class='content'>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h4>Documentation</h4>
|
||||||
|
<ul class="footer_links">
|
||||||
|
<li><a href="rippled-apis.html">rippled</a></li>
|
||||||
|
<li><a href="rippled-setup.html">rippled Setup</a></li>
|
||||||
|
<li><a href="ripple-rest.html">Ripple-REST</a></li>
|
||||||
|
<li><a href="transactions.html">Transactions</a></li>
|
||||||
|
<li><a href="ripple-ledger.html">Ripple Consensus Ledger</a></li>
|
||||||
|
<li><a href="reliable_tx.html">Reliable Transaction Submission</a></li>
|
||||||
|
<li><a href="gateway_guide.html">Gateway Guide</a></li>
|
||||||
|
<li><a href="historical_data.html">Historical Data API</a></li>
|
||||||
|
<li><a href="charts_api.html">Ripple Charts API</a></li>
|
||||||
|
<li><a href="data_api_v2.html">Ripple Data API v2</a></li>
|
||||||
|
<li><a href="paths.html">Paths</a></li>
|
||||||
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h4>Resources</h4>
|
||||||
|
<ul class="footer_links">
|
||||||
|
<li><a href="https://ripple.com/press-releases/">Press Center</a></li>
|
||||||
|
<li><a href="https://ripple.com/brand-guidelines/">Brand Use and Guidelines</a></li>
|
||||||
|
<li><a href="https://forum.ripple.com/viewforum.php?f=2">Forums</a></li>
|
||||||
|
<li><a href="https://ripple.com/category/dev-blog/">Dev Blog</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h4>Ripple Projects</h4>
|
||||||
|
<ul class="footer_links">
|
||||||
|
<li><a href="https://www.rippletrade.com">Ripple Trade</a>
|
||||||
|
<li><a href="https://www.ripplecharts.com">Ripple Charts</a>
|
||||||
|
<li><a href="https://ripple.com/graph">Ripple Graph</a>
|
||||||
|
<li><a href="http://codius.org/">Codius</a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h4>Ripple Labs</h4>
|
||||||
|
<ul class="footer_links">
|
||||||
|
<li><a href="https://www.ripplelabs.com/wp-content/uploads/2014/10/ripple_labs_bylaws.pdf">Corporate Bylaws</a></li>
|
||||||
|
<li><a href="https://www.ripplelabs.com/wp-content/uploads/2014/09/ripple_labs_code_of_conduct1.pdf">Code of Conduct</a></li>
|
||||||
|
<li><a href="https://www.ripplelabs.com/team/">Team</a></li>
|
||||||
|
<li><a href="https://www.ripplelabs.com/careers/">Careers</a></li>
|
||||||
|
<li><a href="https://www.ripplelabs.com/investors/">Investors</a></li>
|
||||||
|
<li><a href="https://www.ripplelabs.com/advisors/">Advisors</a></li>
|
||||||
|
<li><a href="https://www.ripplelabs.com/xrp-distribution/">XRP Distribution</a></li>
|
||||||
|
<li><a href="https://www.ripplelabs.com/contact/">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -58,6 +58,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -71,6 +72,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -159,6 +161,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -58,6 +58,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -71,6 +72,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -192,6 +194,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -92,6 +92,7 @@
|
|||||||
"name": "Fees (Disambiguation)",
|
"name": "Fees (Disambiguation)",
|
||||||
"md": "fees.md",
|
"md": "fees.md",
|
||||||
"html": "fees.html",
|
"html": "fees.html",
|
||||||
|
"ripple.com": "https://ripple.com/knowledge_center/fees-disambiguation/",
|
||||||
"category": "References"
|
"category": "References"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -107,11 +108,17 @@
|
|||||||
"html": "tx-cost.html",
|
"html": "tx-cost.html",
|
||||||
"category": "References"
|
"category": "References"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Reserves",
|
||||||
|
"md": "reserves.md",
|
||||||
|
"html": "reserves.html",
|
||||||
|
"category": "References"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Ripple-REST API Tool",
|
"name": "Ripple-REST API Tool",
|
||||||
"template":"template-rest-api-tool.html",
|
"template":"template-rest-api-tool.html",
|
||||||
"methods_js": "js/apitool-methods-ripplerest.js",
|
"methods_js": "js/apitool-methods-ripplerest.js",
|
||||||
"is_apitool": true,
|
"category": "API Tools",
|
||||||
"rest_host": "https://api.ripple.com",
|
"rest_host": "https://api.ripple.com",
|
||||||
"ripple.com": "https://ripple.com/build/rest-tool/",
|
"ripple.com": "https://ripple.com/build/rest-tool/",
|
||||||
"html": "rest-api-tool.html",
|
"html": "rest-api-tool.html",
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
@@ -85,6 +85,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
@@ -98,6 +99,7 @@
|
|||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">API Tools <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
|
<li><a href="rest-api-tool.html">Ripple-REST API Tool</a></li>
|
||||||
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
<li><a href="historicaldb-api-tool.html">Historical Database API Tool</a></li>
|
||||||
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
<li><a href="ripple-api-tool.html">WebSocket API Tool</a></li>
|
||||||
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
<li><a href="charts-api-tool.html">Charts API Tool</a></li>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
<li><a href="fees.html">Fees (Disambiguation)</a></li>
|
||||||
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
<li><a href="transfer_fees.html">Transfer Fees</a></li>
|
||||||
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
<li><a href="tx-cost.html">Transaction Cost</a></li>
|
||||||
|
<li><a href="reserves.html">Reserves</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|||||||
Reference in New Issue
Block a user