diff --git a/content/references/rippled-api/api-conventions/currency-formatting.md b/content/references/rippled-api/api-conventions/currency-formats.md similarity index 100% rename from content/references/rippled-api/api-conventions/currency-formatting.md rename to content/references/rippled-api/api-conventions/currency-formats.md diff --git a/content/references/rippled-api/ledger-data-formats/ledger-object-types/ledger-object-types.md b/content/references/rippled-api/ledger-data-formats/ledger-object-types/ledger-object-types.md index c10d8af6dd..950e6117ac 100644 --- a/content/references/rippled-api/ledger-data-formats/ledger-object-types/ledger-object-types.md +++ b/content/references/rippled-api/ledger-data-formats/ledger-object-types/ledger-object-types.md @@ -14,4 +14,4 @@ There are several different kinds of objects that can appear in the ledger's sta * [**RippleState** - Links two accounts, tracking the balance of one currency between them. The concept of a _trust line_ is really an abstraction of this object type.](ripplestate.html) * [**SignerList** - A list of addresses for multi-signing transactions.](signerlist.html) -Each ledger object consists of several fields. In the peer protocol that `rippled` servers use to communicate with each other, ledger objects are represented in their raw binary format. In [`rippled` APIs](rippled-apis.html), ledger objects are represented as JSON objects. +Each ledger object consists of several fields. In the peer protocol that `rippled` servers use to communicate with each other, ledger objects are represented in their raw binary format. In the [`rippled` API](rippled-api.html), ledger objects are represented as JSON objects. diff --git a/content/references/rippled-api/public-rippled-methods/ledger-methods/ledger.md b/content/references/rippled-api/public-rippled-methods/ledger-methods/ledger.md index 38fe2f23bf..b57cba5a8e 100644 --- a/content/references/rippled-api/public-rippled-methods/ledger-methods/ledger.md +++ b/content/references/rippled-api/public-rippled-methods/ledger-methods/ledger.md @@ -173,7 +173,7 @@ Each member of the `queue_data` array represents one transaction in the queue. S | Field | Value | Description | |:--------------------|:-----------------|:------------------------------------| | `account` | String | The [Address][] of the sender for this queued transaction. | -| `tx` | String or Object | By default, this is a String containing the [identifying hash](#hashes) of the transaction. If transactions are expanded in binary format, this is an object whose only field is `tx_blob`, containing the binary form of the transaction as a decimal string. If transactions are expanded in JSON format, this is an object containing the [transaction object](transaction-formats.html) including the transaction's identifying hash in the `hash` field. | +| `tx` | String or Object | By default, this is a String containing the [identifying hash](basic-data-types.html#hashes) of the transaction. If transactions are expanded in binary format, this is an object whose only field is `tx_blob`, containing the binary form of the transaction as a decimal string. If transactions are expanded in JSON format, this is an object containing the [transaction object](transaction-formats.html) including the transaction's identifying hash in the `hash` field. | | `retries_remaining` | Number | How many times this transaction can be retried before being dropped. | | `preflight_result` | String | The tentative result from preliminary transaction checking. This is always `tesSUCCESS`. | | `last_result` | String | _(May be omitted)_ If this transaction was left in the queue after getting a [retriable (`ter`) result](reference-transaction-format.html#result-categories), this is the exact `ter` result code it got. | diff --git a/content/references/rippled-api/transaction-formats/transaction-types/accountset.md b/content/references/rippled-api/transaction-formats/transaction-types/accountset.md index 685d744ad7..7a7b0bb8d6 100644 --- a/content/references/rippled-api/transaction-formats/transaction-types/accountset.md +++ b/content/references/rippled-api/transaction-formats/transaction-types/accountset.md @@ -34,7 +34,7 @@ An AccountSet transaction modifies the properties of an [account in the XRP Ledg | WalletLocator | String | Hash256 | _(Optional)_ Not used. | | WalletSize | Unsigned Integer | UInt32 | _(Optional)_ Not used. | -If none of these options are provided, then the AccountSet transaction has no effect (beyond destroying the transaction cost). See [Canceling or Skipping a Transaction](#cancel-or-skip-a-transaction) for more details. +If none of these options are provided, then the AccountSet transaction has no effect (beyond destroying the transaction cost). See [Cancel or Skip a Transaction](cancel-or-skip-a-transaction.html) for more details. ## Domain diff --git a/content/references/rippled-api/transaction-formats/transaction-types/trustset.md b/content/references/rippled-api/transaction-formats/transaction-types/trustset.md index a18ac57d9b..658e5a31a9 100644 --- a/content/references/rippled-api/transaction-formats/transaction-types/trustset.md +++ b/content/references/rippled-api/transaction-formats/transaction-types/trustset.md @@ -25,14 +25,14 @@ Create or modify a trust line linking two accounts. {% include '_snippets/tx-fields-intro.md' %} -| Field | JSON Type | [Internal Type][] | Description | -|:-----------------------------|:-----------------|:------------------|:-------| -| [LimitAmount](#trust-limits) | Object | Amount | Object defining the trust line to create or modify, in the format of a [Currency Amount][]. | -| LimitAmount.currency | String | (Amount.currency) | The currency to this trust line applies to, as a three-letter [ISO 4217 Currency Code](http://www.xe.com/iso4217.php) or a 160-bit hex value according to [currency format](reference-currency.html). "XRP" is invalid. | -| LimitAmount.value | String | (Amount.value) | Quoted decimal representation of the limit to set on this trust line. | -| LimitAmount.issuer | String | (Amount.issuer) | The address of the account to extend trust to. | -| QualityIn | Unsigned Integer | UInt32 | _(Optional)_ Value incoming balances on this trust line at the ratio of this number per 1,000,000,000 units. A value of `0` is shorthand for treating balances at face value. | -| QualityOut | Unsigned Integer | UInt32 | _(Optional)_ Value outgoing balances on this trust line at the ratio of this number per 1,000,000,000 units. A value of `0` is shorthand for treating balances at face value. | +| Field | JSON Type | [Internal Type][] | Description | +|:-------------------------|:-----------------|:------------------|:-----------| +| `LimitAmount` | Object | Amount | Object defining the trust line to create or modify, in the format of a [Currency Amount][]. | +| `LimitAmount`.`currency` | String | (Amount.currency) | The currency to this trust line applies to, as a three-letter [ISO 4217 Currency Code](http://www.xe.com/iso4217.php) or a 160-bit hex value according to [currency format](currency-formats.html). "XRP" is invalid. | +| `LimitAmount`.`value` | String | (Amount.value) | Quoted decimal representation of the limit to set on this trust line. | +| `LimitAmount`.`issuer` | String | (Amount.issuer) | The address of the account to extend trust to. | +| `QualityIn` | Unsigned Integer | UInt32 | _(Optional)_ Value incoming balances on this trust line at the ratio of this number per 1,000,000,000 units. A value of `0` is shorthand for treating balances at face value. | +| `QualityOut` | Unsigned Integer | UInt32 | _(Optional)_ Value outgoing balances on this trust line at the ratio of this number per 1,000,000,000 units. A value of `0` is shorthand for treating balances at face value. | ## TrustSet Flags diff --git a/dactyl-config.yml b/dactyl-config.yml index eda938407d..df8ac69bb2 100644 --- a/dactyl-config.yml +++ b/dactyl-config.yml @@ -909,8 +909,8 @@ pages: targets: - local - - md: references/rippled-api/api-conventions/currency-formatting.md - html: currency-formatting.html + - md: references/rippled-api/api-conventions/currency-formats.md + html: currency-formats.html funnel: Docs doc_type: References supercategory: rippled API