> For the complete documentation index, see [llms.txt](https://bigint.gitbook.io/era-20/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bigint.gitbook.io/era-20/what-are-erips/erip-3.md).

# ERIP-3

Release Date : 12.21.2023 Specification: Era-20 Transfer format

```javascript
from: your wallet 
to: destination wallet


interface Transfer{
   p: string;
   op: string;
   tick: string;
   amt: int;
}


```

```json
// Example :
{
   "p": "era-20",
   "op": "transfer",
   "tick": "tokenname",
   "amt": "100"
}


```

To transfer a token, the wallet must create an inscription transaction in accordance with the Transfer interface when sending (can be zero) Ethereum to destination wallet.&#x20;

{% hint style="info" %}
Regardless of the token distribution inscription, a wallet can transfer tokens to another wallet, provided that it is less than or equal to the total amount in the wallet.
{% endhint %}

```javascript
// Types
"p" => Protocol
"op" => Operation
"tick" => Token Ticker
"amt" => Transfer Amount

```
