mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +00:00
Fix currency formats filename, some links
This commit is contained in:
@@ -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)
|
* [**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)
|
* [**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.
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ Each member of the `queue_data` array represents one transaction in the queue. S
|
|||||||
| Field | Value | Description |
|
| Field | Value | Description |
|
||||||
|:--------------------|:-----------------|:------------------------------------|
|
|:--------------------|:-----------------|:------------------------------------|
|
||||||
| `account` | String | The [Address][] of the sender for this queued transaction. |
|
| `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. |
|
| `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`. |
|
| `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. |
|
| `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. |
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ An AccountSet transaction modifies the properties of an [account in the XRP Ledg
|
|||||||
| WalletLocator | String | Hash256 | _(Optional)_ Not used. |
|
| WalletLocator | String | Hash256 | _(Optional)_ Not used. |
|
||||||
| WalletSize | Unsigned Integer | UInt32 | _(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
|
## Domain
|
||||||
|
|
||||||
|
|||||||
@@ -25,14 +25,14 @@ Create or modify a trust line linking two accounts.
|
|||||||
{% include '_snippets/tx-fields-intro.md' %}
|
{% include '_snippets/tx-fields-intro.md' %}
|
||||||
<!--{# fix md highlighting_ #}-->
|
<!--{# fix md highlighting_ #}-->
|
||||||
|
|
||||||
| Field | JSON Type | [Internal Type][] | Description |
|
| 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` | 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`.`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`.`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. |
|
| `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. |
|
| `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. |
|
| `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
|
## TrustSet Flags
|
||||||
|
|||||||
@@ -909,8 +909,8 @@ pages:
|
|||||||
targets:
|
targets:
|
||||||
- local
|
- local
|
||||||
|
|
||||||
- md: references/rippled-api/api-conventions/currency-formatting.md
|
- md: references/rippled-api/api-conventions/currency-formats.md
|
||||||
html: currency-formatting.html
|
html: currency-formats.html
|
||||||
funnel: Docs
|
funnel: Docs
|
||||||
doc_type: References
|
doc_type: References
|
||||||
supercategory: rippled API
|
supercategory: rippled API
|
||||||
|
|||||||
Reference in New Issue
Block a user