* update solidity-coverage to ^0.5.0 * update truffle dependency to ^4.1.8 * update solium to ^1.1.7 * update all contracts to solidity ^0.4.23
17 lines
298 B
Solidity
17 lines
298 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
import "./ERC20.sol";
|
|
|
|
|
|
contract DetailedERC20 is ERC20 {
|
|
string public name;
|
|
string public symbol;
|
|
uint8 public decimals;
|
|
|
|
constructor(string _name, string _symbol, uint8 _decimals) public {
|
|
name = _name;
|
|
symbol = _symbol;
|
|
decimals = _decimals;
|
|
}
|
|
}
|