# EVM Transfers

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 |
