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.
17 lines
309 B
17 lines
309 B
7 years ago
|
pragma solidity ^0.4.18;
|
||
7 years ago
|
|
||
7 years ago
|
import "./ERC20.sol";
|
||
7 years ago
|
|
||
7 years ago
|
|
||
7 years ago
|
contract DetailedERC20 is ERC20 {
|
||
|
string public name;
|
||
|
string public symbol;
|
||
|
uint8 public decimals;
|
||
|
|
||
7 years ago
|
function DetailedERC20(string _name, string _symbol, uint8 _decimals) public {
|
||
7 years ago
|
name = _name;
|
||
|
symbol = _symbol;
|
||
|
decimals = _decimals;
|
||
|
}
|
||
|
}
|