diff --git a/typescript/examples/model-context-protocol-smart-wallet-server/index.ts b/typescript/examples/model-context-protocol-smart-wallet-server/index.ts index 89c5bf6d6..208d0b7a3 100644 --- a/typescript/examples/model-context-protocol-smart-wallet-server/index.ts +++ b/typescript/examples/model-context-protocol-smart-wallet-server/index.ts @@ -72,7 +72,7 @@ async function initializeServer() { if (!process.env.PRIVATE_KEY || !process.env.SMART_WALLET_ADDRESS) { console.log("Save your private key and smart wallet address to the environment variables"); - console.log("PRIVATE_KEY=" + privateKey); + console.log("PRIVATE_KEY=" + privateKey.slice(0, 6) + "..."); console.log("SMART_WALLET_ADDRESS=" + walletProvider.getAddress()); }