Quick look
This code snippet sends USDC from one wallet to another in a single method call:TypeScript
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Arc Network is EVM compatible with some unique differences. Review EVM differences before building with Arc.
Send tokens between wallets on the same blockchain with the App Kit SDK’s Send capability
// Send 1.00 USDC to a wallet on Arc Testnet
const result = await kit.send({
from: { adapter, chain: "Arc_Testnet" },
to: "RECIPIENT_ADDRESS",
amount: "1.00",
token: "USDC",
});
Was this page helpful?