Update src/content/docs/docs/protocol-reference/transactions/transaction-types/checkcash.mdx

Co-authored-by: tequ <git@tequ.dev>
This commit is contained in:
Thomas Silkjær
2025-11-18 09:56:13 +01:00
committed by GitHub
parent 781ba0796e
commit ea558effea

View File

@@ -23,7 +23,7 @@ _(Added by the \[Checks amendment]\[].)_
| Field | JSON Type | \[Internal Type]\[] | Description |
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `CheckID` | String | Hash256 | The ID of the Check ledger object to cash, as a 64-character hexadecimal string. |
| `Amount` | [Currency Amount](/docs/protocol-reference/data-types/currency-formats/#specifying-currency-amounts) | Amount | _(Optional)_ Redeem the Check for exactly this amount, if possible. The currency must match that of the `SendMax` of the corresponding CheckCreate transaction. You must provide either this field or `DeliverMin`. |
| `Amount` | [Currency Amount](/docs/protocol-reference/data-types/currency-formats#specifying-currency-amounts) | Amount | _(Optional)_ Redeem the Check for exactly this amount, if possible. The currency must match that of the `SendMax` of the corresponding CheckCreate transaction. You must provide either this field or `DeliverMin`. |
| `DeliverMin` | \[Currency Amount]\[] | Amount | _(Optional)_ Redeem the Check for at least this amount and for as much as possible. The currency must match that of the `SendMax` of the corresponding CheckCreate transaction. You must provide either this field or `Amount`. |
The transaction _**must**_ include either `Amount` or `DeliverMin`, but not both.