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 sendEvmEoaUsdc(options: SendEvmEoaUsdcOptions): Promise<SendEvmEoaUsdcResult>;
options
SendEvmEoaUsdcOptions
Promise
SendEvmEoaUsdcResult
const user = await getCurrentUser(); const evmAccount = user?.evmAccountObjects[0]?.address; const result = await sendEvmEoaUsdc({ evmAccount, to: "0x1234567890123456789012345678901234567890", amount: "25.50", network: "base-sepolia", }); console.log("Transaction Hash:", result.transactionHash);
Was this page helpful?