mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-25 14:15:50 +00:00
Set up rippled api links include
This commit is contained in:
@@ -34,7 +34,7 @@ All objects in a ledger' state tree have a unique ID. This field is returned as
|
||||
## Header Format
|
||||
[[Source]<br>](https://github.com/ripple/rippled/blob/master/src/ripple/ledger/ReadView.h#L71 "Source")
|
||||
|
||||
Every ledger version has a unique header that describes the contents. You can look up a ledger's header information with the [`ledger` command](reference-rippled.html#ledger). The contents of the ledger header are as follows:
|
||||
Every ledger version has a unique header that describes the contents. You can look up a ledger's header information with the [ledger method][]. The contents of the ledger header are as follows:
|
||||
|
||||
| Field | JSON Type | [Internal Type][] | Description |
|
||||
|-----------------|-----------|-------------------|-------------|
|
||||
|
||||
@@ -188,7 +188,7 @@ To successfully submit a multi-signed transaction, you must do all of the follow
|
||||
* For the provided signatures, the total `weight` associated with those signers must be equal or greater than the `quorum` for the SignerList.
|
||||
* The [transaction cost](concept-transaction-cost.html) (specified in the `Fee` field) must be at least (N+1) times the normal transaction cost, where N is the number of signatures provided.
|
||||
* All fields of the transaction must be defined before collecting signatures. You cannot [auto-fill](#auto-fillable-fields) any fields.
|
||||
* If presented in binary form, the `Signers` array must be sorted based on the numeric value of the signer addresses, with the lowest value first. (If submitted as JSON, the [`submit_multisigned` command](reference-rippled.html#submit-multisigned) handles this automatically.)
|
||||
* If presented in binary form, the `Signers` array must be sorted based on the numeric value of the signer addresses, with the lowest value first. (If submitted as JSON, the [submit_multisigned method][] handles this automatically.)
|
||||
|
||||
For more information, see [How to Multi-Sign](tutorial-multisign.html).
|
||||
|
||||
@@ -447,7 +447,7 @@ Some of the fields that are mandatory for normal transactions do not make sense
|
||||
|
||||
## Immediate Response
|
||||
|
||||
The response from the [`submit` command](reference-rippled.html#submit) contains a provisional result from the `rippled` server indicating what happened during local processing of the transaction.
|
||||
The response from the [submit method][] contains a provisional result from the `rippled` server indicating what happened during local processing of the transaction.
|
||||
|
||||
The response from `submit` contains the following fields:
|
||||
|
||||
@@ -469,7 +469,7 @@ If nothing went wrong when submitting and applying the transaction locally, the
|
||||
|
||||
## Looking up Transaction Results
|
||||
|
||||
To see the final result of a transaction, use the [`tx` command](reference-rippled.html#tx), [`account_tx` command](reference-rippled.html#account-tx), or other response from `rippled`. Look for `"validated": true` to indicate that this response uses a ledger version that has been validated by consensus.
|
||||
To see the final result of a transaction, use the [tx method][], [account_tx method][], or other response from `rippled`. Look for `"validated": true` to indicate that this response uses a ledger version that has been validated by consensus.
|
||||
|
||||
| Field | Value | Description |
|
||||
|:-----------------------|:--------|:------------------------------------------|
|
||||
|
||||
@@ -58,7 +58,7 @@ An unfunded offer can stay on the ledger indefinitely, but it does not have any
|
||||
|
||||
Tracking the funding status of all offers can be computationally taxing. In particular, addresses that are actively trading may have a large number of offers open. A single balance can affect the funding status of many offers to buy different currencies. Because of this, `rippled` does not proactively find and remove offers.
|
||||
|
||||
A client application can locally track the funding status of offers. To do this, first retreive an order book using the [`book_offers` command](reference-rippled.html#book-offers) and check the `taker_gets_funded` field of offers. Then, [subscribe](reference-rippled.html#subscribe) to the `transactions` stream and watch the transaction metadata to see which offers are modified.
|
||||
A client application can locally track the funding status of offers. To do this, first retreive an order book using the [book_offers method][] and check the `taker_gets_funded` field of offers. Then, [subscribe](reference-rippled.html#subscribe) to the `transactions` stream and watch the transaction metadata to see which offers are modified.
|
||||
|
||||
|
||||
### Offers and Trust
|
||||
|
||||
Reference in New Issue
Block a user