Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function sendEvmSmartAccountUsdc(options: SendEvmSmartAccountUsdcOptions): Promise<SendEvmSmartAccountUsdcResult>;
options
SendEvmSmartAccountUsdcOptions
Promise
SendEvmSmartAccountUsdcResult
const user = await getCurrentUser(); const evmSmartAccount = user?.evmSmartAccountObjects[0]?.address; const result = await sendEvmSmartAccountUsdc({ evmSmartAccount, to: "0x1234567890123456789012345678901234567890", amount: "10.00", network: "base-sepolia", useCdpPaymaster: true, // Optional: sponsor gas fees }); console.log("User Operation Hash:", result.userOpHash);
Was this page helpful?