16 lines
343 B
Solidity
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);
|
|
}
|
|
}
|