Created
March 23, 2024 14:12
-
-
Save oluseguncodess/797200f93b75f0e8ebf807001faccf23 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.5.9; | |
import "@0x/contracts-erc20/contracts/src/ERC20Token.sol"; | |
/** | |
* @title SampleERC20 | |
* @dev Create a sample ERC20 standard token | |
*/ | |
contract SampleERC20 is ERC20Token { | |
string public name; | |
string public symbol; | |
uint256 public decimals; | |
constructor ( | |
string memory _name, | |
string memory _symbol, | |
uint256 _decimals, | |
uint256 _totalSupply | |
) | |
public | |
{ | |
name = _name; | |
symbol = _symbol; | |
decimals = _decimals; | |
_totalSupply = _totalSupply; | |
balances[msg.sender] = _totalSupply; | |
} | |
} | |
0xD9f789e5EE8564439ec9f39E80a49A700A438308 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment