From 37991188f6104f2eff90d2e5c9abfd5b0e929cb8 Mon Sep 17 00:00:00 2001 From: ramstrong27 Date: Fri, 24 Oct 2025 14:45:42 +0530 Subject: [PATCH] Update metamask-docs --- src/pages/tutorials/create-wallet-ai-agent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/tutorials/create-wallet-ai-agent.md b/src/pages/tutorials/create-wallet-ai-agent.md index 1c704558ed1..7bb6965a6a6 100644 --- a/src/pages/tutorials/create-wallet-ai-agent.md +++ b/src/pages/tutorials/create-wallet-ai-agent.md @@ -151,7 +151,7 @@ export function getConfig() { Use the AI SDK's [tools](https://sdk.vercel.ai/docs/foundations/tools) feature to enable the AI agent to perform specific tasks. In `ai/tools.ts`, update or remove the example tool. -Use the [`getBalance`](https://viem.sh/docs/actions/public/getBalance) method of your configured Public Client, and Viem's [`formatEther`](https://viem.sh/docs/utilities/formatEther.html) function to create a tool that retrieves the ether balance of the connected wallet: +Use the [`getBalance`](https://viem.sh/docs/actions/public/getBalance) method of your configured Public Client, and Viem's [`formatEther`](https://viem.sh/docs/utilities/formatEther) function to create a tool that retrieves the ether balance of the connected wallet: ```ts title="tools.ts" // add-start