|
|
@ -2,13 +2,13 @@ |
|
|
|
|
|
|
|
|
|
|
|
pragma solidity >=0.7.0 <0.9.0; |
|
|
|
pragma solidity >=0.7.0 <0.9.0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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) {} |
|
|
|