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

# EVM Transfers

> Construct native and ERC-20 token transfer transactions on EVM chains.

Build transactions for native and token transfers.

***

## Native Transfer

Transfer ETH/BNB to another address.

**Endpoint:** `/evm/transfer/transaction`

| Parameter   | Type   | Required | Description       |
| ----------- | ------ | -------- | ----------------- |
| `chain`     | string | Yes      | Chain identifier  |
| `recipient` | string | Yes      | Recipient address |
| `amount`    | string | Yes      | Amount in wei     |
| `wallet`    | string | Yes      | Sender address    |

***

## Token Transfer

Transfer ERC-20 tokens.

**Endpoint:** `/evm/transfer/token/transaction`

| Parameter   | Type   | Required | Description              |
| ----------- | ------ | -------- | ------------------------ |
| `chain`     | string | Yes      | Chain identifier         |
| `token`     | string | Yes      | Token contract address   |
| `recipient` | string | Yes      | Recipient address        |
| `amount`    | string | Yes      | Amount in token decimals |
| `wallet`    | string | Yes      | Sender address           |
