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.
22 lines
531 B
22 lines
531 B
pragma solidity ^0.4.24;
|
|
|
|
import "./ERC20.sol";
|
|
|
|
|
|
/**
|
|
* @title DetailedERC20 token
|
|
* @dev The decimals are only for visualization purposes.
|
|
* All the operations are done using the smallest and indivisible token unit,
|
|
* just as on Ethereum all the operations are done in wei.
|
|
*/
|
|
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;
|
|
}
|
|
}
|
|
|