> For the complete documentation index, see [llms.txt](https://celopg.gitbook.io/tokenmanager/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://celopg.gitbook.io/tokenmanager/guides/celo-native-token.md).

# Flow 1: Celo Native Token

The simplest flow — one token, one chain, one signature. Usable immediately in the Celo ecosystem.

## UI steps

1. Select "Celo Native"
2. Fill in name, symbol, decimals, supply, logo
3. Review and sign

## What happens behind the scenes

| Step | Action                                                                                                       |
| ---- | ------------------------------------------------------------------------------------------------------------ |
| 1    | (Optional) Logo uploaded to CDN under a temporary hash                                                       |
| 2    | Metadata pinned to IPFS (ERC-7572 JSON) → `ipfs://Qm...`                                                     |
| 3    | `L2SuperChainTokenFactory.createToken()` on Celo (42220) — deploys proxy, mints supply, emits `TokenCreated` |
| 4    | Logo copied from temp hash to the real token address                                                         |

## API example

```bash
# 1. Pin metadata
curl -X POST http://localhost:3001/api/metadata/pin \
  -H "Content-Type: application/json" \
  -d '{ "name": "Community Token", "symbol": "COMM", "decimals": 18 }'
# → { "data": { "metadataURI": "ipfs://Qm..." } }

# 2. Get calldata
curl -X POST http://localhost:3001/api/tokens/42220/create/calldata \
  -H "Content-Type: application/json" \
  -d '{ "owner": "0xYou", "name": "Community Token", "symbol": "COMM",
        "decimals": 18, "initialSupply": "1000000", "maxSupply": "0",
        "metadataURI": "ipfs://Qm..." }'
# → { "data": { "to": "0x...", "data": "0x...", "value": "..." } }

# 3. Sign and send with your wallet
```

## MCP example

```
User: "Create 'Community Token' (COMM) on Celo with 1M supply"
Agent: pin_token_metadata → build_create_token_transaction → returns tx to sign
```

After sending, get the token address from the `TokenCreated` event — see [Events & Receipts](/tokenmanager/for-developers-and-ai-agents/events-and-receipts.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:

```
GET https://celopg.gitbook.io/tokenmanager/guides/celo-native-token.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
