mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +00:00
Deletable accounts tx ref: link fixes
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
{% set txtypes = [
|
||||
"AccountDelete",
|
||||
"AccountSet",
|
||||
"CheckCancel",
|
||||
"CheckCash",
|
||||
|
||||
@@ -143,7 +143,7 @@ Examples of invariant checks:
|
||||
|
||||
- The total amount of XRP destroyed by a transaction must match the [transaction cost](transaction-cost.html) exactly.
|
||||
- XRP cannot be created.
|
||||
- [`AccountRoot` objects in the ledger](accountroot.html) cannot be deleted. (See also: [Permanence of Accounts](accounts.html#permanence-of-accounts).)
|
||||
- [`AccountRoot` objects in the ledger](accountroot.html) cannot be deleted unless [DeletableAccounts](#deletableaccounts) is enabled. (See also: [Deletion of Accounts](accounts.html#deletion-of-accounts).)
|
||||
- [An object in the ledger](ledger-object-types.html) cannot change its type. (The `LedgerEntryType` field is immutable.)
|
||||
- There cannot be a trust line for XRP.
|
||||
|
||||
|
||||
@@ -57,6 +57,8 @@ XRP Ledgerでは、過去の使用という点で、一部のアドレスに特
|
||||
|
||||
## アカウントの永続性
|
||||
|
||||
**注意:** この部分は古くなっています。[英語版](/{{currentpage.html}})をご覧下さい。
|
||||
|
||||
一度作成されたアカウントはXRP Ledgerのデータツリーに永続的に存在します。これは、古いトランザクションを2回処理できないように、トランザクションの現在のシーケンス番号を永続的に追跡する必要があるためです。
|
||||
|
||||
Bitcoinや他の多くの暗号資産とは異なり、XRP Ledgerの公開レジャーチェーンの新しい各バージョンにはレジャーの詳細なステータスが含まれており、このサイズは、新規アカウントが増えるごとに大きくなります。そのため、Rippleでは、本当に必要でない限り、新しいアカウントを作成することは推奨していません。多くのユーザーに代わって価値を送受信する金融機関などは、XRP Ledgerでは1つ(または少数)のアカウントのみを使用し、顧客との間の個別の決済を区別するために[**ソースタグ**と**宛先タグ**](become-an-xrp-ledger-gateway.html#source-and-destination-tags)を使用できます。
|
||||
|
||||
@@ -54,7 +54,7 @@ When the [tfPartialPayment flag](payment.html#payment-flags) is enabled, the `Am
|
||||
|
||||
### Accounts
|
||||
|
||||
XRP is held in _accounts_ (also referred to as _wallets_ or _addresses_ ) on the XRP Ledger. Accounts on the XRP Ledger are different than accounts on other blockchain ledgers, such as Bitcoin, where accounts incur little to no overhead. In the XRP Ledger, accounts can [never be deleted](accounts.html#permanence-of-accounts), and each account must hold a separate [reserve of XRP](reserves.html) that cannot be sent to others. For these reasons, Ripple recommends that institutions not create excessive or needless accounts.
|
||||
XRP is held in _accounts_ (also referred to as _wallets_ or _addresses_ ) on the XRP Ledger. Accounts on the XRP Ledger are different than accounts on other blockchain ledgers, such as Bitcoin, where accounts incur little to no overhead. In the XRP Ledger, account state is stored per ledger and accounts are [not easy to delete](accounts.html#deletion-of-accounts). To offset the costs associated with storing accounts, each account must hold a separate [reserve of XRP](reserves.html) that cannot be sent to others. For these reasons, Ripple recommends that institutions not create excessive or needless accounts.
|
||||
|
||||
<!-- STYLE_OVERRIDE: hot wallet, warm wallet, cold wallet, wallet -->
|
||||
|
||||
|
||||
@@ -236,7 +236,7 @@ targets:
|
||||
"error-formatting.html#universal-errors": "error-formatting.html#汎用エラー"
|
||||
# Fix 2 links from untranslated demurrage.html:
|
||||
"currency-formats.html#issued-currency-precision": "currency-formats.html#発行済み通貨の計算"
|
||||
# Fix 9 links from untranslated known-amendments.html:
|
||||
# Fix 10 links from untranslated known-amendments.html:
|
||||
"accounts.html#permanence-of-accounts": "accounts.html#アカウントの永続性"
|
||||
"paths.html#path-specifications": "paths.html#パスの仕様"
|
||||
"rippling.html#the-noripple-flag": "rippling.html#norippleフラグ"
|
||||
@@ -246,6 +246,7 @@ targets:
|
||||
"ripplestate.html#ripplestate-flags": "ripplestate.html#ripplestateのフラグ"
|
||||
"accountroot.html#accountroot-flags": "accountroot.html#accountrootのフラグ" # also used in untranslated require-destination-tags.html, become-an-xrp-ledger-gateway.html
|
||||
"accountset.html#accountset-flags": "accountset.html#accountsetのフラグ"
|
||||
"basic-data-types.html#ledger-index": "basic-data-types.html#レジャーインデックス"
|
||||
# Fix 2 links from untranslated data type snippets
|
||||
"basic-data-types.html#hashes": "basic-data-types.html#ハッシュ"
|
||||
"basic-data-types.html#addresses": "basic-data-types.html#アドレス"
|
||||
@@ -268,6 +269,8 @@ targets:
|
||||
"use-payment-channels.html#7-repeat-steps-3-6-as-desired": "use-payment-channels.html#7-必要に応じてステップ36を繰り返します"
|
||||
"use-payment-channels.html#8-when-ready-the-payee-redeems-a-claim-for-the-authorized-amount": "use-payment-channels.html#8-準備が完了すれば受取人は承認された額のクレームを清算します"
|
||||
"use-payment-channels.html#9-when-the-payer-and-payee-are-done-doing-business-the-payer-requests-for-the-channel-to-be-closed": "use-payment-channels.html#9-支払人と受取人の取引完了後支払人はchannelの閉鎖を要求します"
|
||||
# Fix 1 link from untranslated accountdelete.html. REMOVE when accounts.html is updated w/ deletable accounts info.
|
||||
"accounts.html#deletion-of-accounts": "accounts.html#アカウントの永続性"
|
||||
|
||||
|
||||
- name: xrp-api-only
|
||||
|
||||
Reference in New Issue
Block a user