Last active
May 12, 2021 19:18
-
-
Save percybolmer/b05c80b27b28edd08f99c8a78b41f53f to your computer and use it in GitHub Desktop.
A example on how we create a super simple erc20 token
This file contains hidden or 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: MIT | |
pragma solidity ^0.8.4; | |
// Define our DevToken smart contract. | |
contract DevToken { | |
// Constructor is a function that will run when the Token is created. | |
constructor() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment