fix(deposits): add the permit routes to the proxy recipe - #210
Open
kopy-kat wants to merge 1 commit into
Open
Conversation
The gasless permit deposit path calls POST /deposits/permit/prepare and POST /deposits/permit, and neither was in the reference proxy's route allowlist or the route table. A client who copied the recipe gets 404s on both and loses the gasless path with nothing naming the cause. Both are safe to forward for the same reason /deposits/recover is: the user's token authorization signature in the body is what moves the funds, so the API key alone cannot. RHI-6052 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
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.
The gasless permit deposit path calls
POST /deposits/permit/prepareandPOST /deposits/permit. Neither was in the reference proxy'sROUTESallowlist or the route table below it, so a client who copies the recipe gets a 404 on both and loses the gasless path — with nothing naming the cause, which is the usual shape of a proxy gap.Both are safe to forward for exactly the reason
/deposits/recoveralready is, and the recipe now says so: the user's token authorization signature in the body is what moves the funds, so the integrator's API key alone cannot.Checked the recipe against every route the modal actually calls on
mainrather than only adding the two I came for — these were the only gaps in either direction. In particular/chainsis present and already marked required.Closes RHI-6052
🤖 Generated with Claude Code