transfer

This method is the ERC20 standard transfer function.

Function

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

Parameters

ParameterDescription

_recipient

The recipient of the tokens.

_amount

The amount of tokens.

Return values

ValueDescription

bool _val

The boolean state of the execution.

Last updated