# sendToken

```
sendToken(address, tokenUid, amount, callbackFunc);
```

### Parameters

address: recipient's address

tokenUid: "", "0" or "00" for HTR, otherwise token uid for specific token.

amount: if empty string, amount will be processed as 1, otherwise input amount (e.g: input 1 for 0.01 HTR)

callbackFunc: callback functions for execute transaction result

### Returns in callback function

```
{
    status: true
}
```

or

```
{
    status: false
}
```
