From 4ae9c7b32d5e75e4542452d20fd94fa00902b987 Mon Sep 17 00:00:00 2001 From: Molly Karcher Date: Tue, 12 Nov 2024 13:00:25 -0500 Subject: [PATCH] Update getTransactions docs (#1083) --- openrpc/src/stellar-rpc/methods/getTransaction.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrpc/src/stellar-rpc/methods/getTransaction.json b/openrpc/src/stellar-rpc/methods/getTransaction.json index 3fcd3ea8e..32c475ee0 100644 --- a/openrpc/src/stellar-rpc/methods/getTransaction.json +++ b/openrpc/src/stellar-rpc/methods/getTransaction.json @@ -1,7 +1,7 @@ { "name": "getTransaction", "summary": "returns transaction details", - "description": "The getTransaction method provides details about the specified transaction. Clients are expected to periodically query this method to ascertain when a transaction has been successfully recorded on the blockchain. The soroban-rpc system maintains a restricted history of recently processed transactions, with the default retention window set at 1440 ledgers, approximately equivalent to a 2-hour timeframe. For private soroban-rpc instances, it is possible to modify the retention window value by adjusting the transaction-retention-window configuration setting. For comprehensive debugging needs that extend beyond the 2-hour timeframe, it is advisable to retrieve transaction information from Horizon, as it provides a lasting and persistent record.", + "description": "The getTransaction method provides details about the specified transaction. Clients are expected to periodically query this method to ascertain when a transaction has been successfully recorded on the blockchain. The soroban-rpc system maintains a restricted history of recently processed transactions, with the default retention window set at 24 hours. For private soroban-rpc instances, it is possible to modify the retention window value by adjusting the transaction-retention-window configuration setting, but we do not recommend values longer than 7 days. For debugging needs that extend beyond this timeframe, it is advisable to index this data yourself, employ a third-party [indexer](https://developers.stellar.org/docs/tools/developer-tools/data-indexers), or query [Hubble](https://developers.stellar.org/docs/data/hubble) (our public BigQuery data set).", "externalDocs": { "url": "https://developers.stellar.org/docs/data/rpc/api-reference/methods/getTransaction" },