allowance

This method returns the ERC20 allowance of an address for another address.

Function

function allowance(
    address _owner, 
    address _spender
) external view returns (uint256);

Parameters

ParameterDescription

_owner

The owner of the allowance.

_spender

The spender of the allowance.

Return values

ValueDescription

uint256 _val

allawance.

Last updated