Open Issues Need Help
View All on GitHubAI Summary: The `x402scan` service is failing to validate free basic endpoints, which prevents users from successfully registering. This critical bug has been observed across Agent kit versions 1.2.1, 1.3.1, and hono, indicating a problem with the service's validation logic.
agent-agnostic commerce stack, for building agents with x402, 8004, a2a
AI Summary: The user is encountering a validation error when providing a string representation of a number (e.g., `'1'`) to a `z.bigint()` schema field, resulting in a 400 Bad Request. This happens because `z.bigint()` expects a JavaScript `BigInt` primitive, not a string, and doesn't automatically coerce string inputs. The user has implemented a workaround using `z.number().or(z.string().regex(/0[xX][0-9a-fA-F]+/))` to handle string inputs.
agent-agnostic commerce stack, for building agents with x402, 8004, a2a