We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e4794f commit 082163fCopy full SHA for 082163f
2 files changed
typescript/.changeset/short-carpets-share.md
@@ -0,0 +1,5 @@
1
+---
2
+"create-onchain-agent": patch
3
4
+
5
+Fixed a bug in wallet config
typescript/create-onchain-agent/templates/next/app/api/agent/agentkit/evm/smart/prepare-agentkit.ts
@@ -102,8 +102,7 @@ export async function prepareAgentkitAndWalletProvider(): Promise<{
102
networkId: process.env.NETWORK_ID || "base-sepolia",
103
// eslint-disable-next-line @typescript-eslint/no-explicit-any
104
owner: owner as any,
105
- smartWalletAddress: walletData?.smartWalletAddress,
106
- paymasterUrl: undefined, // Sponsor transactions: https://docs.cdp.coinbase.com/paymaster/docs/welcome
+ address: walletData?.smartWalletAddress,
107
});
108
109
// Initialize AgentKit: https://docs.cdp.coinbase.com/agentkit/docs/agent-actions
0 commit comments