diff --git a/cdp-agentkit-core/CHANGELOG.md b/cdp-agentkit-core/CHANGELOG.md index 8985de6..dce4a44 100644 --- a/cdp-agentkit-core/CHANGELOG.md +++ b/cdp-agentkit-core/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +### Removed +- rogue console.log + ## [0.0.9] - 2025-01-08 ### Added diff --git a/cdp-agentkit-core/src/cdp_agentkit.ts b/cdp-agentkit-core/src/cdp_agentkit.ts index 57a26b3..5c5bb11 100644 --- a/cdp-agentkit-core/src/cdp_agentkit.ts +++ b/cdp-agentkit-core/src/cdp_agentkit.ts @@ -76,7 +76,6 @@ export class CdpAgentkit { agentkit.wallet = await Wallet.import(walletData); } else if (mnemonicPhrase) { agentkit.wallet = await Wallet.import({ mnemonicPhrase: mnemonicPhrase }); - console.log(agentkit.wallet); } else { agentkit.wallet = await Wallet.create({ networkId: networkId }); }