Skip to content

Commit

Permalink
Add deprecation notice for Horizon tx meta (#782)
Browse files Browse the repository at this point in the history
* Add deprecation notice for Horizon tx meta

* Update format
  • Loading branch information
janewang authored Jul 11, 2024
1 parent 17104c1 commit 0b24b91
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ title: Transactions
order: 0
---

:::info

Transaction meta `result_meta_xdr` will be removed from the SDF hosted Horizon API (horizon.stellar.org) in Q3 2024. Instead of using Horizon to access transaction metadata, developers could access it with the [`getTransactions`](docs/data/rpc/api-reference/methods/getTransactions.mdx) endpoint in the Soroban RPC.

:::

import { EndpointsTable } from "@site/src/components/EndpointsTable";

Transactions are commands that modify the ledger state and consist of one or more operations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ title: The Transaction Object
order: 10
---

:::info

Transaction meta `result_meta_xdr` will be removed from the SDF hosted Horizon API (horizon.stellar.org) in Q3 2024. Instead of using Horizon to access transaction metadata, developers could access it with the [`getTransactions`](docs/data/rpc/api-reference/methods/getTransactions.mdx) endpoint in the Soroban RPC.

:::

import { ExampleResponse } from "@site/src/components/ExampleResponse";
import { AttributeTable } from "@site/src/components/AttributeTable";

Expand Down Expand Up @@ -54,7 +60,7 @@ When Horizon returns information about a transaction, it uses the following form
- A base64 encoded string of the raw `TransactionResult` XDR struct for this transaction.
- result_meta_xdr
- string
- A base64 encoded string of the raw `TransactionMeta` XDR struct for this transaction
- **_[To be deprecated in Q3]_** A base64 encoded string of the raw `TransactionMeta` XDR struct for this transaction
- fee_meta_xdr
- string
- A base64 encoded string of the raw `LedgerEntryChanges` XDR struct produced by taking fees for this transaction.
Expand Down

0 comments on commit 0b24b91

Please sign in to comment.