transferFrom

This method is the ERC20 standard transferFrom function.

Function

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

Parameters

ParameterDescription

_sender

The sender of the tokens

_recipient

The recipient of the tokens.

_amount

The amount of tokens.

Return values

ValueDescription

bool _val

The boolean state of the execution.

Last updated