Skip to content

Docs: Clean up - #602

Open
gabrielkuettel wants to merge 1 commit into
docs-stagingfrom
docs/errors-debugging-and-archive
Open

Docs: Clean up#602
gabrielkuettel wants to merge 1 commit into
docs-stagingfrom
docs/errors-debugging-and-archive

Conversation

@gabrielkuettel

Copy link
Copy Markdown

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.

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.
@gabrielkuettel gabrielkuettel changed the title docs: archive leftover capabilities pages and add Errors & Debugging Docs: Clean up Aug 20, 2026

@JBScaled JBScaled left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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))
})
```

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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))```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants