> For the complete documentation index, see [llms.txt](https://andrewkimjoseph.gitbook.io/celina-sdk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andrewkimjoseph.gitbook.io/celina-sdk/guides/send-tokens.md).

# Send tokens

Use `celina.transaction.prepareSend` to build unsigned CELO or ERC-20 transfer flows.

## Basic send

```ts
const flow = await celina.transaction.prepareSend(
  from,           // user's wallet address
  "0xRecipient",
  "USDm",         // symbol or contract address
  "10",           // human-readable amount
);
```

Returns a single-step flow for both native CELO and ERC-20 tokens.

## CELO vs ERC-20

On Celo, CELO uses **token duality**: native balance and the GoldToken ERC-20 contract (`0x471E…`) share the same balance. `prepareSend` routes CELO through GoldToken `transfer` (same shape as USDT and other ERC-20 sends) so wallets and fee-abstraction paths handle it reliably.

| Token type                | `kind`  | `to`                  | `value`                    |
| ------------------------- | ------- | --------------------- | -------------------------- |
| CELO                      | `erc20` | GoldToken (`0x471E…`) | `"0"` (amount in calldata) |
| ERC-20 (USDm, USDT, etc.) | `erc20` | token contract        | `"0"`                      |

Token symbols are resolved via the built-in registry (`CELO`, `USDm`, `cUSD`, `cEUR`, etc.) or by contract address.

```ts
// Native CELO
await celina.transaction.prepareSend(from, to, "CELO", "1");

// ERC-20 stablecoin
await celina.transaction.prepareSend(from, to, "USDm", "50");
```

## Estimate gas first

```ts
const estimate = await celina.transaction.estimateSend(from, to, "USDm", "10");
console.log(estimate.gas); // gas units as string
```

## Sign with wagmi

```ts
const flow = await celina.transaction.prepareSend(from, to, "USDm", "10");

for (const step of flow.steps) {
  await sendTransactionAsync({
    to: step.to,
    data: step.data,
    value: step.value ? BigInt(step.value) : undefined,
  });
}
```

## Celina attribution

Transfer calldata includes Celina **ERC-8021** Schema 0 attribution. No changes needed before signing. For optional custom tags, check vs verify tools, and AA tagging, see [On-chain attribution](/celina-sdk/guides/on-chain-attribution.md), [Configuration](/celina-sdk/getting-started/configuration.md), and [Prepared flows](/celina-sdk/concepts/prepared-flows.md).

Before signing, call `simulatePreparedStep` for each step — see [Prepared-step simulation](/celina-sdk/guides/prepared-step-simulation.md).

## Related

* [Prepared-step simulation](/celina-sdk/guides/prepared-step-simulation.md)
* [wagmi integration](/celina-sdk/guides/wagmi-integration.md)
* [Prepared flows](/celina-sdk/concepts/prepared-flows.md)
* [transaction API](/celina-sdk/services/transactionservice.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://andrewkimjoseph.gitbook.io/celina-sdk/guides/send-tokens.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
