@hubiinetwork/soldoc
Version:
Solidity documentation generator
144 lines (68 loc) • 1.85 kB
Markdown
# ERC20
[see the source](https://github.com/dev-matan-tsuberi/soldoc/tree/master/contracts/ERC20.sol)
**Execution cost**: No bound available
**Deployment cost**: No bound available
**Combined cost**: No bound available
## Events
### Approval(address,address,uint256)
**Execution cost**: No bound available
Params:
1. **owner** *of type `address`*
2. **spender** *of type `address`*
3. **value** *of type `uint256`*
### Transfer(address,address,uint256)
**Execution cost**: No bound available
Params:
1. **from** *of type `address`*
2. **to** *of type `address`*
3. **value** *of type `uint256`*
## Methods
### allowance(address,address)
**Execution cost**: No bound available
**Attributes**: constant
Params:
1. **owner** *of type `address`*
2. **spender** *of type `address`*
Returns:
1. **output_0** *of type `uint256`*
### approve(address,uint256)
**Execution cost**: No bound available
Params:
1. **spender** *of type `address`*
2. **value** *of type `uint256`*
Returns:
1. **output_0** *of type `bool`*
### balanceOf(address)
**Execution cost**: No bound available
**Attributes**: constant
Params:
1. **who** *of type `address`*
Returns:
1. **output_0** *of type `uint256`*
### totalSupply()
**Execution cost**: No bound available
**Attributes**: constant
Returns:
1. **output_0** *of type `uint256`*
### transfer(address,uint256)
**Execution cost**: No bound available
Params:
1. **to** *of type `address`*
2. **value** *of type `uint256`*
Returns:
1. **output_0** *of type `bool`*
### transferFrom(address,address,uint256)
**Execution cost**: No bound available
Params:
1. **from** *of type `address`*
2. **to** *of type `address`*
3. **value** *of type `uint256`*
Returns:
1. **output_0** *of type `bool`*
[Back to the top ↑](#erc20)