Skip to content

Instantly share code, notes, and snippets.

@tanprathan
Created July 17, 2021 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanprathan/6e9b6236956dcee23c855bf3ee94909b to your computer and use it in GitHub Desktop.
Save tanprathan/6e9b6236956dcee23c855bf3ee94909b to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.6;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.1.0/contracts/access/Ownable.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.1.0/contracts/token/ERC20/ERC20.sol";
contract ZUSDT is ERC20("ZUSD-T Token", "ZUSD-T"), Ownable {
function mint(uint amount) public onlyOwner {
_mint(owner(), amount);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment