Skip to content

Instantly share code, notes, and snippets.

View Napcalx's full-sized avatar
💭
Running

Caleb Napcalx

💭
Running
View GitHub Profile
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
// A token that can be transfered from one person to another
// It should have a name
// It should have maximum supply
// It should have initial supply
// Total supply
// symbol
// 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
*/