|
|
@ -8,7 +8,6 @@ import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; |
|
|
|
* @title SampleERC20 |
|
|
|
* @title SampleERC20 |
|
|
|
* @dev Create a sample ERC20 standard token |
|
|
|
* @dev Create a sample ERC20 standard token |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
contract SampleERC20 is ERC20 { |
|
|
|
contract SampleERC20 is ERC20 { |
|
|
|
|
|
|
|
|
|
|
|
constructor(string memory tokenName, string memory tokenSymbol) ERC20(tokenName, tokenSymbol) {} |
|
|
|
constructor(string memory tokenName, string memory tokenSymbol) ERC20(tokenName, tokenSymbol) {} |
|
|
|