Docs: Clean up - #602
Open
gabrielkuettel wants to merge 1 commit into
Open
Conversation
Drop the pre-reorg Capabilities group from the live sidebar and add the Errors & Debugging concepts page with a runnable example. Copies of the old dumps stay in _ARCHIVE.
JBScaled
approved these changes
Aug 21, 2026
JBScaled
left a comment
There was a problem hiding this comment.
Just that one fix and I think this is good to go
Comment on lines
+105
to
+112
| ```ts | ||
| import { Config, EventType } from '@algorandfoundation/algokit-utils' | ||
|
|
||
| Config.configure({ debug: true }) | ||
| Config.events.on(EventType.TxnGroupSimulated, (eventData) => { | ||
| Config.logger.info(JSON.stringify(eventData.simulateResponse.get_obj_for_encoding(), null, 2)) | ||
| }) | ||
| ``` |
There was a problem hiding this comment.
Hey, Claude flagged this because it uses a deprecated SDK api from v2 and will throw if anyone tries to copy it verbatim. We can update it to the latest equivalent, which is much cleaner:
// ...
Config.logger.info(encodeJSON(eventData.simulateResponse))```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pulls the old Capabilities dumps out of the live sidebar (copies in
_ARCHIVE/) so Concepts is the rewritten pages plus App management until that rewrite lands. Also adds the Errors & Debugging page, with a LocalNet example that matches the Python snippets.