> ## Documentation Index
> Fetch the complete documentation index at: https://base-a060aa97-mux-docs-claude-6.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# IB20.transferWithMemo

> Generated B20 reference for transferWithMemo(address,uint256,bytes32).

## Signature

```solidity theme={null}
function transferWithMemo(address to, uint256 amount, bytes32 memo) external returns (bool);
```

| Field               | Value                                       |
| ------------------- | ------------------------------------------- |
| Selector            | `0x95777d59`                                |
| Canonical signature | `transferWithMemo(address,uint256,bytes32)` |

## Description

Same as `transfer`, plus emits `Memo` immediately after the standard `Transfer` event. A memo of `bytes32(0)` is permitted.

## Parameters

| Parameter | Description             |
| --------- | ----------------------- |
| `to`      | Destination address.    |
| `amount`  | Amount to transfer.     |
| `memo`    | Off-chain memo payload. |

## Returns

Always `true` on success.

## Access control

Read-only or ERC-20-standard access rules unless the NatSpec states otherwise.

## Policy interaction

Checks `TRANSFER_SENDER_POLICY` and `TRANSFER_RECEIVER_POLICY`; `approve` and `permit` are not policy-gated.

## Example

```solidity theme={null}
IB20(target).transferWithMemo(to, amount, memo);
```
