From 5e62a6cfc76c641f2da2b5b3a1ed6256f94d6f11 Mon Sep 17 00:00:00 2001 From: Matthew Livingston Date: Thu, 26 Feb 2026 11:17:31 +0000 Subject: [PATCH] Update error message for Agentkit.from without walletProvider --- typescript/agentkit/src/agentkit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/agentkit/src/agentkit.ts b/typescript/agentkit/src/agentkit.ts index 47f0acf4a..ca36f1bbd 100644 --- a/typescript/agentkit/src/agentkit.ts +++ b/typescript/agentkit/src/agentkit.ts @@ -50,7 +50,7 @@ export class AgentKit { if (!config.walletProvider) { if (!config.cdpApiKeyId || !config.cdpApiKeySecret || !config.cdpWalletSecret) { throw new Error( - "cdpApiKeyId and cdpApiKeySecret are required if not providing a walletProvider", + "cdpApiKeyId, cdpApiKeySecret and cdpWalletSecret are required if not providing a walletProvider", ); }