diff --git a/docs/build/smart-contracts/getting-started/setup.mdx b/docs/build/smart-contracts/getting-started/setup.mdx index 23bd013384..60880391db 100644 --- a/docs/build/smart-contracts/getting-started/setup.mdx +++ b/docs/build/smart-contracts/getting-started/setup.mdx @@ -289,3 +289,20 @@ echo "source (stellar completion --shell elvish)" >> ~/.elvish/rc.elv [rust]: https://www.rust-lang.org/ [stellar cli]: #install-the-stellar-cli +## Transaction Investigation Example + +Developers and agents can inspect a Stellar transaction using a public blockchain explorer or the Horizon API. + +Example transaction: + +`f9d806e098ddb4596e56e2e60a776dbae0c6ca2329f5a276b9abf8edf3fa99ce` + +[View transaction on StellarExpert](https://stellar.expert/explorer/public/tx/f9d806e098ddb4596e56e2e60a776dbae0c6ca2329f5a276b9abf8edf3fa99ce) + +The transaction should be treated as a diagnostic example only. Applications must retrieve the transaction and operation results from Horizon when determining the protocol-level result of a transaction. + +For example: + +```bash +curl "https://horizon.stellar.org/transactions/f9d806e098ddb4596e56e2e60a776dbae0c6ca2329f5a276b9abf8edf3fa99ce" +```