> ## Documentation Index
> Fetch the complete documentation index at: https://base-a060aa97-docs-add-b20-spec.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).

[Related concept](/base-chain/specs/upgrades/beryl/b20/specification/concepts/token-lifecycle)

## 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.
Param: to     Destination address.
Param: amount Amount to transfer.
Param: memo   Off-chain memo payload.
Return: 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(arg0, arg1, arg2);
```

## Related

* [IB20 reference](/base-chain/specs/upgrades/beryl/b20/specification/reference/interfaces/IB20)
* [Constants & addresses](/base-chain/specs/upgrades/beryl/b20/specification/reference/constants-and-addresses)
