# transfer

### Description

Transfer a certain amount of tokens to another address.

### Transaction Fee

1 KAS minimum required for an unactivated `to` address; otherwise, no additional fee applies.

### Parameters

JSON format example:&#x20;

{% code overflow="wrap" %}

```json
{"p":"krc-20","op":"transfer","tick":"kasp","amt":"100000000","to":"kaspa:..."}
```

{% endcode %}

#### Mint Mode

Enabled when ( DaaScore >= 83441551 AND DaaScore <= 83525600 OR DaaScore >= 90090600 ).

<table><thead><tr><th width="198">Key</th><th width="101.33333333333331">Required?</th><th>Description</th></tr></thead><tbody><tr><td>p</td><td>Yes</td><td>Protocol header. <strong>Must be "krc-20"</strong> (case-insensitive)<strong>.</strong></td></tr><tr><td>op</td><td>Yes</td><td>Operation. <strong>Must be "transfer"</strong> (case-insensitive).</td></tr><tr><td>tick</td><td>Yes</td><td>Ticker. 4 to 6 letter unique identifier of the token (case-insensitive).</td></tr><tr><td>amt</td><td>Yes</td><td>The amount of the tokens to transfer, including decimal.</td></tr><tr><td>to</td><td>Yes</td><td>The receiver address of the tokens.</td></tr><tr><td>memo</td><td>No</td><td>Additional information, only ASCII printable, maximum 256 characters.</td></tr></tbody></table>

#### Issue Mode

Enabled when ( DaaScore >= 110165000 ).

<table><thead><tr><th width="198">Key</th><th width="101.33333333333331">Required?</th><th>Description</th></tr></thead><tbody><tr><td>p</td><td>Yes</td><td>Protocol header. <strong>Must be "krc-20"</strong> (case-insensitive)<strong>.</strong></td></tr><tr><td>op</td><td>Yes</td><td>Operation. <strong>Must be "transfer"</strong> (case-insensitive).</td></tr><tr><td>ca</td><td>Yes</td><td>Contract address of the token.</td></tr><tr><td>amt</td><td>Yes</td><td>The amount of the tokens to transfer, including decimal.</td></tr><tr><td>to</td><td>Yes</td><td>The receiver address of the tokens.</td></tr><tr><td>memo</td><td>No</td><td>Additional information, only ASCII printable, maximum 256 characters.</td></tr></tbody></table>
