make name + symbol + decimals constant add GenericERC20 rename some contracts update tests to reflect all of this
10 lines
221 B
Solidity
10 lines
221 B
Solidity
pragma solidity 0.5.15;
|
|
|
|
import "../UniswapV2Exchange.sol";
|
|
|
|
contract GenericERC20 is UniswapV2Exchange {
|
|
constructor(uint _totalSupply) public {
|
|
if (_totalSupply > 0) _mint(msg.sender, _totalSupply);
|
|
}
|
|
}
|