transfer

This method is the ERC20 standard transfer function.

Function

function transfer(
    address _recipient, 
    uint _amount
) external returns (bool);

Parameters

Parameter
Description

_recipient

The recipient of the tokens.

_amount

The amount of tokens.

Return values

Value
Description

bool _val

The boolean state of the execution.

Last updated