mirror of https://github.com/logos-co/staking.git
17 lines
378 B
Solidity
17 lines
378 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity 0.8.18;
|
|
|
|
import "@openzeppelin/contracts/access/Ownable.sol";
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract Token is Ownable, ERC20 {
|
|
|
|
constructor() ERC20("Status", "SNT") {
|
|
|
|
}
|
|
|
|
function mint(address _destination, uint256 _amount) external onlyOwner {
|
|
_mint(_destination, _amount);
|
|
}
|
|
} |