Skip to content

Commit d903bf9

Browse files
Merge pull request #3235 from XRPLF/related-topics-batch-1
Add related transactions and ledger entries (batch 1)
2 parents 0eadc32 + 8617ed2 commit d903bf9

23 files changed

+105
-0
lines changed

docs/_snippets/common-links.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
[Batch]: /docs/references/protocol/transactions/types/batch.md
3939
[Batch transaction]: /docs/references/protocol/transactions/types/batch.md
4040
[Batch transactions]: /docs/references/protocol/transactions/types/batch.md
41+
[Bridge entry]: /docs/references/protocol/ledger-data/ledger-entry-types/bridge.md
4142
[Check entry]: /docs/references/protocol/ledger-data/ledger-entry-types/check.md
4243
[Check object]: /docs/references/protocol/ledger-data/ledger-entry-types/check.md
4344
[CheckCancel transaction]: /docs/references/protocol/transactions/types/checkcancel.md
@@ -257,6 +258,8 @@
257258
[XChainCreateBridge transaction]: /docs/references/protocol/transactions/types/xchaincreatebridge.md
258259
[XChainCreateBridge transactions]: /docs/references/protocol/transactions/types/xchaincreatebridge.md
259260
[XChainCreateBridge]: /docs/references/protocol/transactions/types/xchaincreatebridge.md
261+
[XChainModifyBridge transaction]: /docs/references/protocol/transactions/types/xchainmodifybridge.md
262+
[XChainModifyBridge transactions]: /docs/references/protocol/transactions/types/xchainmodifybridge.md
260263
[XChainCreateClaimID transaction]: /docs/references/protocol/transactions/types/xchaincreateclaimid.md
261264
[XChainCreateClaimID transactions]: /docs/references/protocol/transactions/types/xchaincreateclaimid.md
262265
[XChainCreateClaimID]: /docs/references/protocol/transactions/types/xchaincreateclaimid.md

docs/references/protocol/ledger-data/ledger-entry-types/accountroot.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,10 @@ The ID of an AccountRoot entry is the [SHA-512Half][] of the following values, c
115115
* The Account space key (`0x0061`)
116116
* The AccountID of the account
117117

118+
## See Also
119+
120+
- **Transactions:**
121+
- [AccountSet transaction][]
122+
- [AccountDelete transaction][]
123+
118124
{% raw-partial file="/docs/_snippets/common-links.md" /%}

docs/references/protocol/ledger-data/ledger-entry-types/amm.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,15 @@ The ID of an `AMM` entry is the [SHA-512Half][] of the following values, concate
119119

120120
For XRP, use all 0's for both the token and the issuer.
121121

122+
## See Also
123+
124+
- **Transactions:**
125+
- [AMMBid transaction][]
126+
- [AMMClawback transaction][]
127+
- [AMMCreate transaction][]
128+
- [AMMDelete transaction][]
129+
- [AMMDeposit transaction][]
130+
- [AMMVote transaction][]
131+
- [AMMWithdraw transaction][]
132+
122133
{% raw-partial file="/docs/_snippets/common-links.md" /%}

docs/references/protocol/ledger-data/ledger-entry-types/bridge.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,10 @@ In addition to the [common fields](../common-fields.md), {% code-page-name /%} e
6666
| `LockingChainDoor` | String | Account | Yes | The door account on the locking chain. |
6767
| `LockingChainIssue` | Issue | Issue | Yes | The asset that is locked and unlocked on the locking chain. |
6868

69+
## See Also
70+
71+
- **Transactions:**
72+
- [XChainCreateBridge transaction][]
73+
- [XChainModifyBridge transaction][]
74+
6975
{% raw-partial file="/docs/_snippets/common-links.md" /%}

docs/references/protocol/ledger-data/ledger-entry-types/check.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,11 @@ The ID of a `Check` entry is the [SHA-512Half][] of the following values, concat
7575

7676
See the tutorial showing how to [Send a Check](../../../../tutorials/how-tos/use-specialized-payment-types/use-checks/send-a-check.md).
7777

78+
## See Also
79+
80+
- **Transactions:**
81+
- [CheckCancel transaction][]
82+
- [CheckCash transaction][]
83+
- [CheckCreate transaction][]
84+
7885
{% raw-partial file="/docs/_snippets/common-links.md" /%}

docs/references/protocol/ledger-data/ledger-entry-types/credential.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,11 @@ The unique ID of a Credential entry is the SHA-512Half hash of the following val
6565
* The `Issuer` field's value; and
6666
* The `CredentialType` field's value.
6767

68+
## See Also
69+
70+
- **Transactions:**
71+
- [CredentialAccept transaction][]
72+
- [CredentialCreate transaction][]
73+
- [CredentialDelete transaction][]
74+
6875
{% raw-partial file="/docs/_snippets/common-links.md" /%}

docs/references/protocol/transactions/types/accountdelete.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,8 @@ Besides errors that can occur for all transactions, {% $frontmatter.seo.title %}
6060
| `tecHAS_OBLIGATIONS` | Occurs if the account to be deleted is connected to objects that cannot be deleted in the ledger. (This includes objects created by other accounts, such as [escrows](../../../../concepts/payment-types/escrow.md) and for example [NFT's minted](nftokenmint.md), [even if owned by another account](https://github.com/XRPLF/rippled/blob/master/src/xrpld/app/tx/detail/DeleteAccount.cpp#L197).) |
6161
| `tefTOO_BIG` | Occurs if the sending account is linked to more than 1000 objects in the ledger. The transaction could succeed on retry if some of those objects were deleted separately first. |
6262

63+
## See Also
64+
65+
- [AccountRoot entry][]
66+
6367
{% raw-partial file="/docs/_snippets/common-links.md" /%}

docs/references/protocol/transactions/types/accountset.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,10 @@ See [Transfer Fees](../../../../concepts/tokens/transfer-fees.md) for more infor
158158

159159
To remove an authorized minter, set `ClearFlag` to 10 (`asfAuthorizedNFTokenMinter`) and omit the `NFTokenMinter` field.
160160

161+
## See Also
162+
163+
- [AccountRoot entry][]
164+
161165
<!-- SPELLING_IGNORE: TransferRate -->
162166

163167
{% raw-partial file="/docs/_snippets/common-links.md" /%}

docs/references/protocol/transactions/types/ammbid.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,8 @@ Besides errors that can occur for all transactions, {% $frontmatter.seo.title %}
142142
| `terNO_ACCOUNT` | One of the accounts specified in this request do not exist. |
143143
| `terNO_AMM` | The Automated Market Maker instance for the asset pair in this transaction does not exist. |
144144

145+
## See Also
146+
147+
- [AMM entry][]
148+
145149
{% raw-partial file="/docs/_snippets/common-links.md" /%}

docs/references/protocol/transactions/types/ammclawback.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,8 @@ Besides errors that can occur for all transactions, `AMMClawback` transactions c
6666
| `temMALFORMED` | Occurs if the `issuer` subfield doesn't match between `Asset` and `Account`, `Account` is the same as the `Holder`, or `Asset` is XRP. |
6767
| `terNO_AMM` | Occurs if the AMM pool specified by `Asset` and `Asset2` doesn't exist. |
6868

69+
## See Also
70+
71+
- [AMM entry][]
72+
6973
{% raw-partial file="/docs/_snippets/common-links.md" /%}

0 commit comments

Comments
 (0)