From 401043bc8405c1609228729a3bb35e2ede80c212 Mon Sep 17 00:00:00 2001 From: HusseinAdeiza Date: Sun, 26 Apr 2026 17:50:50 +0100 Subject: [PATCH 1/2] fix(docs): remove trailing comma from JSON response example Fixes #1313 The JSON response example in agent-builder-codes.mdx contained a trailing comma after the last property, which is invalid JSON. This fix removes the comma to ensure the example shows valid JSON. --- docs/ai-agents/setup/agent-builder-codes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ai-agents/setup/agent-builder-codes.mdx b/docs/ai-agents/setup/agent-builder-codes.mdx index 89ff1f0fa..336657d18 100644 --- a/docs/ai-agents/setup/agent-builder-codes.mdx +++ b/docs/ai-agents/setup/agent-builder-codes.mdx @@ -34,7 +34,7 @@ Response: ```json Response { "builderCode": "bc_a1b2c3d4", - "walletAddress": "0x...", + "walletAddress": "0x..." } ``` From 58d9da0e76cd2ce16ac2937f047ba455e3bcf06a Mon Sep 17 00:00:00 2001 From: HusseinAdeiza Date: Sun, 26 Apr 2026 18:00:02 +0100 Subject: [PATCH 2/2] fix(docs): remove .mdx extension from signInWithEthereum link Fixes #1311 The link to signInWithEthereum incorrectly included .mdx extension which resulted in 404 errors. Removed extension to fix navigation. --- .../reference/core/provider-rpc-methods/wallet_connect.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/base-account/reference/core/provider-rpc-methods/wallet_connect.mdx b/docs/base-account/reference/core/provider-rpc-methods/wallet_connect.mdx index cbdcd9b94..ff07789a9 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/wallet_connect.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/wallet_connect.mdx @@ -190,7 +190,7 @@ When using the `signInWithEthereum` capability, always generate a fresh, unique ## Usage with Capabilities -You can use the `wallet_connect` with the [`signInWithEthereum`](/base-account/reference/core/capabilities/signInWithEthereum.mdx) capability to authenticate the user. +You can use the `wallet_connect` with the [`signInWithEthereum`](/base-account/reference/core/capabilities/signInWithEthereum) capability to authenticate the user. import PolicyBanner from "/snippets/PolicyBanner.mdx";