-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLumerinToken.sol
More file actions
35 lines (27 loc) · 901 Bytes
/
LumerinToken.sol
File metadata and controls
35 lines (27 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Lumerin is ERC20, ERC20Burnable, Pausable, Ownable {
constructor() ERC20("Lumerin", "LMR") {
_mint(msg.sender, 1000000000 * 10 ** decimals());
}
function decimals() public view virtual override returns (uint8) {
return 8;
}
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);
}
}