mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-21 04:05:49 +00:00
Deletable accounts info / style updates
This commit is contained in:
@@ -7,7 +7,7 @@ An "Account" in the XRP Ledger represents a holder of XRP and a sender of [trans
|
||||
**Note:** The XRP community has [proposed](https://github.com/xrp-community/standards-drafts/issues/6) (and developed a [codec](https://github.com/xrp-community/xrpl-tagged-address-codec) to support) a new **X**-address format that exchanges and wallets could use instead of [destination tags](https://xrpl.org/source-and-destination-tags.html). These "packed" addresses start with an `X` instead of an `r`. For more information, see the [XRPL 𝗫-address format](https://xrpaddress.info/) site.
|
||||
|
||||
- An **XRP balance**. Some of this XRP is set aside for the [Reserve](reserves.html).
|
||||
- A **sequence number**, starting at 1 and increasing with each transaction sent from this account. No transaction can be included in a ledger unless the transaction's sequence number matches its sender's next sequence number.
|
||||
- A **sequence number**, which increases by 1 with each transaction sent from this account. No transaction can be included in a ledger unless the transaction's sequence number matches its sender's next sequence number. (See also: [Basic Data Types: Account Sequence](basic-data-types.html#account-sequence).)
|
||||
- A **history of transactions** that affected this account and its balances.
|
||||
- One or more ways to [authorize transactions](transaction-basics.html#authorizing-transactions), possibly including:
|
||||
- A master key pair intrinsic to the account. (This can be [disabled](accountset.html) but not changed.)
|
||||
|
||||
@@ -12,7 +12,7 @@ For any other result code, it can be difficult to determine if the result is fin
|
||||
| Any `tec` code | Final when included in a validated ledger |
|
||||
| Any `tem` code | Final unless the protocol changes to make the transaction valid |
|
||||
| `tefPAST_SEQ` | Final when another transaction with the same sequence number is included in a validated ledger |
|
||||
| `tefMAX_LEDGER` | Final when a validated ledger has a sequence number higher than the transaction's `LastLedgerSequence` field, and no validated ledger includes the transaction |
|
||||
| `tefMAX_LEDGER` | Final when a validated ledger has a [ledger index][Ledger Index] higher than the transaction's `LastLedgerSequence` field, and no validated ledger includes the transaction |
|
||||
|
||||
Any other transaction result is potentially not final. In that case, the transaction could still succeed or fail later, especially if conditions change such that the transaction is no longer prevented from applying. For example, trying to send a non-XRP currency to an account that does not exist yet would fail, but it could succeed if another transaction sends enough XRP to create the destination account. A server might even store a temporarily-failed, signed transaction and then successfully apply it later without asking first.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user