mirror of openzeppelin-contracts
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.
|
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;
|
|
}
|
|
}
|
|
|