From 0eb512f0d8cfe8431d0ad3571f2d6be4ddaa03af Mon Sep 17 00:00:00 2001 From: Mayukha Vadari Date: Tue, 18 Feb 2025 21:57:40 -0500 Subject: [PATCH] Update account_tx.md --- .../public-api-methods/account-methods/account_tx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/references/http-websocket-apis/public-api-methods/account-methods/account_tx.md b/docs/references/http-websocket-apis/public-api-methods/account-methods/account_tx.md index db8fb1852e..ed94f5627a 100644 --- a/docs/references/http-websocket-apis/public-api-methods/account-methods/account_tx.md +++ b/docs/references/http-websocket-apis/public-api-methods/account-methods/account_tx.md @@ -439,8 +439,6 @@ The response follows the [standard format][], with a successful result containin | `ledger_index_max` | Integer - [Ledger Index][] | The ledger index of the most recent ledger actually searched for transactions. | | `limit` | Integer | The `limit` value used in the request. (This may differ from the actual limit value enforced by the server.) | | `marker` | [Marker][] | Server-defined value indicating the response is paginated. Pass this to the next call to resume where this call left off. | -| `meta` | Object (JSON) | (JSON mode) The transaction results metadata in JSON. | -| `meta_blob` | String (Binary) | (Binary mode) The transaction results metadata as a hex string. | | `transactions` | Array | Array of transactions matching the request's criteria, as explained below. | | `validated` | Boolean | If included and set to `true`, the information in this response comes from a validated ledger version. Otherwise, the information is subject to change. | @@ -456,6 +454,8 @@ Each transaction object includes the following fields, depending on whether it w | `ledger_index` | Integer | The [ledger index][] of the ledger version that included this transaction. | | `tx_json` | Object (JSON) | (JSON mode) JSON object defining the transaction. | | `tx_blob` | String (Binary) | (Binary mode) A unique hex string defining the transaction. | +| `meta` | Object (JSON) | (JSON mode) The transaction results metadata in JSON. | +| `meta_blob` | String (Binary) | (Binary mode) The transaction results metadata as a hex string. | | `validated` | Boolean | Whether or not the transaction is included in a validated ledger. Any transaction not yet in a validated ledger is subject to change. | {% /tab %}