Add hooks for storage URL synchronization and improve simulation debugging#14
Add hooks for storage URL synchronization and improve simulation debugging#14
Conversation
…up, and simulation debugging
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 6b663c2915
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| const current = queue.shift(); | ||
| if (!current || typeof current !== 'object') continue; |
There was a problem hiding this comment.
Preserve top-level string errors in revert data extraction
findRevertDataInError now skips any queue item that is not an object, so plain string errors are never scanned for embedded revert hex. This regresses cases where upstream code throws/rejects with a string payload (for example, "... data:0x08c379a0..."): extractRevertDetails will lose encodedData/signature decoding even though the revert bytes are present, which degrades revert diagnostics shown to users.
Useful? React with 👍 / 👎.
Introduce hooks for synchronizing storage URLs and looking up event signatures. Update simulation debugging actions and history loader to enhance type handling.