docs: add missing transaction type links (#1378)

https://github.com/ripple/ripple-lib/pull/1352 had empty placeholder links for a few transaction types. This adds those.
This commit is contained in:
Rome Reginelli
2021-03-03 16:07:03 -08:00
committed by GitHub
parent c3965f325b
commit 32718d583b
2 changed files with 8 additions and 8 deletions

View File

@@ -429,7 +429,7 @@ checkID | string | The ID of the Check ledger object to cancel, as a 64-characte
## Check Cash
Redeem a Check for up to its stated value. (Native transaction type: []())
Redeem a Check for up to its stated value. (Native transaction type: [CheckCash](https://xrpl.org/checkcash.html))
Name | Type | Description
---- | ---- | -----------
@@ -493,7 +493,7 @@ unauthorize | [address](#address) | *Optional* Address of the account that can c
## Escrow Cancellation
Cancel an Escrow that has passed its expiration. (Native transaction type: []())
Cancel an Escrow that has passed its expiration. (Native transaction type: [EscrowCancel](https://xrpl.org/escrowcancel.html))
Name | Type | Description
---- | ---- | -----------
@@ -515,7 +515,7 @@ memos | [memos](#transaction-memos) | *Optional* Array of memos to attach to the
## Escrow Creation
Create an Escrow that locks up XRP until a given time or condition is met. (Native transaction type: []())
Create an Escrow that locks up XRP until a given time or condition is met. (Native transaction type: [EscrowCreate](https://xrpl.org/escrowcreate.html))
Name | Type | Description
---- | ---- | -----------
@@ -544,7 +544,7 @@ sourceTag | integer | *Optional* Source tag.
## Escrow Execution
Deliver XRP from an Escrow after its conditions have been met. (Native transaction type: []())
Deliver XRP from an Escrow after its conditions have been met. (Native transaction type: [EscrowFinish](https://xrpl.org/escrowfinish.html))
Name | Type | Description
---- | ---- | -----------

View File

@@ -23,7 +23,7 @@ Cancel a Check that has not been redeemed. (Native transaction type: [CheckCance
## Check Cash
Redeem a Check for up to its stated value. (Native transaction type: []())
Redeem a Check for up to its stated value. (Native transaction type: [CheckCash](https://xrpl.org/checkcash.html))
<%- renderSchema('specifications/check-cash.json') %>
@@ -54,7 +54,7 @@ Preauthorize an sender to deposit money at an account using [Deposit Authorizati
## Escrow Cancellation
Cancel an Escrow that has passed its expiration. (Native transaction type: []())
Cancel an Escrow that has passed its expiration. (Native transaction type: [EscrowCancel](https://xrpl.org/escrowcancel.html))
<%- renderSchema('specifications/escrow-cancellation.json') %>
@@ -65,7 +65,7 @@ Cancel an Escrow that has passed its expiration. (Native transaction type: []())
## Escrow Creation
Create an Escrow that locks up XRP until a given time or condition is met. (Native transaction type: []())
Create an Escrow that locks up XRP until a given time or condition is met. (Native transaction type: [EscrowCreate](https://xrpl.org/escrowcreate.html))
<%- renderSchema('specifications/escrow-creation.json') %>
@@ -76,7 +76,7 @@ Create an Escrow that locks up XRP until a given time or condition is met. (Nati
## Escrow Execution
Deliver XRP from an Escrow after its conditions have been met. (Native transaction type: []())
Deliver XRP from an Escrow after its conditions have been met. (Native transaction type: [EscrowFinish](https://xrpl.org/escrowfinish.html))
<%- renderSchema('specifications/escrow-execution.json') %>