Skip to main content
App Kit includes the Send capability that lets you send tokens from one wallet to another on the same blockchain. You can use an available token alias or the token’s contract address.

Quick look

This example sends USDC from one wallet to another in a single method call:
TypeScript
// 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",
});

Installation

Install App Kit to start sending tokens on the same blockchain.