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

Parameter
Description

_owner

The owner of the allowance.

_spender

The spender of the allowance.

Return values

Value
Description

uint256 _val

allawance.

Last updated