agentic-wallet-mcp 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -126,9 +126,8 @@ network:
126
126
 
127
127
  Only set any of the four explicitly if you run your own instance of that service instead of the
128
128
  default one — an explicit value always wins over the network default. The `*.myegdev.com`
129
- (testnet) hosts are public endpoints — no VPN needed; if you're on a corporate VPN and one of
130
- them times out, disconnecting it is more likely to fix that than connecting it. See "Network
131
- reachability & troubleshooting" below.
129
+ (testnet) hosts are internal — unreachable without VPN; see "Network reachability &
130
+ troubleshooting" below if any of them time out.
132
131
 
133
132
  That's the complete list — no VC-MCP subprocess, no BaaS gateway key, no manually-configured
134
133
  BBS+ key to set up.
@@ -221,13 +220,13 @@ Independent of Phases 2/3 — no VC or identity proof involved, just a fresh pay
221
220
 
222
221
  ## Network reachability & troubleshooting
223
222
 
224
- The `*.myegdev.com` testnet endpoints are public — no VPN needed to reach them. One dependency
225
- sits behind a CDN edge (see the ZID resolver row below). When something that worked before
226
- suddenly times out or 403s, check this table before assuming a code regression.
223
+ Several dependencies sit behind a corporate VPN or a CDN edge. When something that worked before
224
+ suddenly times out or 403s, check this table before assuming a code regression — in every case
225
+ observed so far, the code was correct and the network/edge state had changed.
227
226
 
228
227
  | Symptom | Cause | Fix / status |
229
228
  |---|---|---|
230
- | `Wallet BE /wallet/hsm/sign-blob request failed <- fetch failed <- UND_ERR_CONNECT_TIMEOUT` (or same for `mbi-vc.myegdev.com`) | Transient network issue, or (if you're on a corporate VPN) the VPN routing away from the public internet | If you're on a VPN, try disconnecting it and retrying. Verify reachability directly: `curl -I https://wallet-api.myegdev.com/server` |
229
+ | `Wallet BE /wallet/hsm/sign-blob request failed <- fetch failed <- UND_ERR_CONNECT_TIMEOUT` (or same for `mbi-vc.myegdev.com`) | `*.myegdev.com` hosts are internal — unreachable without VPN | Connect/reconnect your VPN, then retry. Verify first: `curl -I https://wallet-api.myegdev.com/server` |
231
230
  | `VP derivation failed <- ZID resolver HTTP 403 ... cf-mitigated: challenge` | ZID resolver (`zid-resolver-sandbox.zetrix.com`) sitting behind a Cloudflare **managed challenge** that blocks plain server-to-server `fetch` | Server-to-server access to the resolver must be allowlisted so it returns `200` directly. If the challenge is active, `prove_identity`'s `issuerKeys` input is the fallback — fetch the DID document via a real browser (it clears the JS challenge) and pass its `verificationMethod` entries' `publicKeyMultibase` (BBS+) / `publicKeyHex` (Ed25519) directly. |
232
231
  | `OID4VP backend returned a malformed presentation definition` | Historical SDK bug: the live sandbox's `GET /v1/presentation/{id}` response has no `expires_at` field, but the SDK guard required one | **Fixed** in `x401-zetrix-client` — `expiresAt` is now optional on `PresentationDefinition`. If you see this, you're on a stale cached `npx` install — clear it (`npx clear-npx-cache` or bump the version) to pick up the current published `agentic-wallet-mcp`. |
233
232
  | `SUBMIT_FAILED: OID4VP backend returned 401 ... Missing X-Wallet-Public-Key header` | Historical SDK gap: `POST /v1/presentation/submit` requires wallet-auth headers (`X-Wallet-Public-Key` / `X-Wallet-Signed-Data`, holder signs their own address) that the SDK didn't send | **Fixed** — `X401Wallet` now accepts an injected `submitAuth` provider and the wallet wires it automatically; nothing to configure. |