「📝」 doc(USAGE): added usage doc
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
|
||||
This is a ERC20 token so it has all the function you would expect from it.
|
||||
|
||||
The getters :
|
||||
The getters:
|
||||
```Solidity
|
||||
// to get the full name of the token (in this case Kanel42)
|
||||
function name() public view returns (string)
|
||||
@ -20,7 +20,7 @@ function balanceOf(address _owner) public view returns (uint256 balance)
|
||||
function allowance(address _owner, address _spender) public view returns (uint256 remaining)
|
||||
```
|
||||
|
||||
The member functions :
|
||||
The member functions:
|
||||
```Solidity
|
||||
// to transfer tokens to another address (_to)
|
||||
function transfer(address _to, uint256 _value) public returns (bool success)
|
||||
|
Reference in New Issue
Block a user