mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
409 B
10 lines
409 B
1 year ago
|
|
||
|
|
||
|
interface ERC20:
|
||
|
def totalSupply() -> uint256: view
|
||
|
def balanceOf(_owner: address) -> uint256: view
|
||
|
def allowance(_owner: address, _spender: address) -> uint256: view
|
||
|
def transfer(_to: address, _value: uint256) -> bool: nonpayable
|
||
|
def transferFrom(_from: address, _to: address, _value: uint256) -> bool: nonpayable
|
||
|
def approve(_spender: address, _value: uint256) -> bool: nonpayable
|