Created
July 3, 2021 04:10
-
-
Save korrio/4d449051a56796b7b6b36384ed868fdb to your computer and use it in GitHub Desktop.
DAI.sol
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
pragma solidity ^0.6.0; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.1.0/contracts/token/ERC20/ERC20.sol"; | |
contract DAI is ERC20 { | |
constructor () public ERC20("Mocked DAI Token", "DAI-T") { | |
_mint(msg.sender, 1000000 * (10 ** uint256(decimals()))); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment