> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arc.io/llms.txt
> Use this file to discover all available pages before exploring further.

# App Kit SDK: Send

> Send tokens between wallets on the same blockchain with the App Kit SDK's Send capability

The [App Kit SDK](/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](/app-kit/references/supported-blockchains#token-aliases)
or the token's contract address.

## Quick look

This code snippet sends USDC from one wallet to another in a single method call:

```typescript TypeScript theme={null}
// 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",
});
```

For a complete end-to-end flow, follow the quickstart:
[Send Tokens Across Wallets](/app-kit/quickstarts/send-tokens-same-chain).

## Installation

[Install the App Kit SDK](/app-kit/tutorials/installation) to start sending
tokens on the same blockchain.
