Skip to content

Instantly share code, notes, and snippets.

@nola11
Created November 14, 2022 17:02
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 nola11/6e4bbf5d4aaaba370f2894a62cfa3dc4 to your computer and use it in GitHub Desktop.
Save nola11/6e4bbf5d4aaaba370f2894a62cfa3dc4 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.17+commit.8df45f5f.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts@4.8.0/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@4.8.0/security/Pausable.sol";
import "@openzeppelin/contracts@4.8.0/access/Ownable.sol";
contract CUBETest is ERC20, Pausable, Ownable {
constructor() ERC20("CUBE Test", "CUBE") {
_mint(msg.sender, 10000000 * 10 ** decimals());
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount)
internal
whenNotPaused
override
{
super._beforeTokenTransfer(from, to, amount);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment