Create detailed ERC20 interface

This commit is contained in:
Facundo Spagnuolo
2017-09-20 10:54:26 -03:00
parent 5cf503673f
commit 365c875ced
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;
}
}