Respect --wallet and --private-key during payment request execution#40
Merged
stevekaliski-stripe merged 1 commit intostripe:mainfrom Mar 11, 2026
Merged
Conversation
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.
Summary
This fixes the request/payment path so CLI wallet overrides are actually used during x402 negotiation and dry-run/payment execution.
Before this change,
purlwould accept--walletand--private-key, but the runtime request flow still only used the wallet configured in~/.purl/config.toml. In practice that caused requests like these to fail with "No wallet configured" even when the user supplied a wallet on the command line:purl --dry-run --private-key ... <url>purl --dry-run --wallet /path/to/keystore.json <url>What changed
--walletand--private-keyto the runtimeConfigbefore request execution--dry-run --private-keywith no preconfigured wallet--dry-run --wallet <path>with no preconfigured walletRoot cause
The CLI parsed wallet override flags, but
cli/src/main.rsnever merged them into the config used by the request/payment flow. As a result, the negotiator still saw no available payment method unless a wallet was already configured on disk.Verification
Notes
This is intentionally narrow:
It only makes the existing CLI wallet override flags work in the main request path as advertised.