Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active May 12, 2021 19:18
Show Gist options
  • Save percybolmer/b05c80b27b28edd08f99c8a78b41f53f to your computer and use it in GitHub Desktop.
Save percybolmer/b05c80b27b28edd08f99c8a78b41f53f to your computer and use it in GitHub Desktop.
A example on how we create a super simple erc20 token
// 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