Files
uniswap-v2/contracts/test/GenericERC20.sol
Noah Zinsmeister 7417b27666 experiment with 712
2019-10-28 13:29:18 -04:00

16 lines
343 B
Solidity

pragma solidity 0.5.12;
import "../token/ERC20.sol";
contract GenericERC20 is ERC20 {
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals,
uint256 _totalSupply,
uint256 chainId
) ERC20(_name, _symbol, _decimals, _totalSupply) public {
initialize(chainId);
}
}