Merge pull request #477 from facuspagnuolo/feaure/create_detailed_erc20_interface

Create detailed ERC20 interface
This commit is contained in:
Francisco Giordano
2017-11-13 15:42:09 -03:00
committed by GitHub
3 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,15 @@
pragma solidity ^0.4.11;
import './ERC20.sol';
contract DetailedERC20 is ERC20 {
string public name;
string public symbol;
uint8 public decimals;
function DetailedERC20(string _name, string _symbol, uint8 _decimals) {
name = _name;
symbol = _symbol;
decimals = _decimals;
}
}