135 lines
4.4 KiB
Solidity
135 lines
4.4 KiB
Solidity
/*
|
|
|
|
Copyright 2020 DODO ZOO.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
pragma solidity 0.6.9;
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
import {IERC20} from "../intf/IERC20.sol";
|
|
import {SafeMath} from "../lib/SafeMath.sol";
|
|
import {Ownable} from "../lib/Ownable.sol";
|
|
|
|
/**
|
|
* @title DODOLpToken
|
|
* @author DODO Breeder
|
|
*
|
|
* @notice Tokenize liquidity pool assets. An ordinary ERC20 contract with mint and burn functions
|
|
*/
|
|
contract DODOLpToken is Ownable {
|
|
using SafeMath for uint256;
|
|
|
|
string public symbol = "DLP";
|
|
address public originToken;
|
|
|
|
uint256 public totalSupply;
|
|
mapping(address => uint256) internal balances;
|
|
mapping(address => mapping(address => uint256)) internal allowed;
|
|
|
|
// ============ Events ============
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 amount);
|
|
|
|
event Approval(address indexed owner, address indexed spender, uint256 amount);
|
|
|
|
event Mint(address indexed user, uint256 value);
|
|
|
|
event Burn(address indexed user, uint256 value);
|
|
|
|
// ============ Functions ============
|
|
|
|
constructor(address _originToken) public {
|
|
originToken = _originToken;
|
|
}
|
|
|
|
function name() public view returns (string memory) {
|
|
string memory lpTokenSuffix = "_DODO_LP_TOKEN_";
|
|
return string(abi.encodePacked(IERC20(originToken).name(), lpTokenSuffix));
|
|
}
|
|
|
|
function decimals() public view returns (uint8) {
|
|
return IERC20(originToken).decimals();
|
|
}
|
|
|
|
/**
|
|
* @dev transfer token for a specified address
|
|
* @param to The address to transfer to.
|
|
* @param amount The amount to be transferred.
|
|
*/
|
|
function transfer(address to, uint256 amount) public returns (bool) {
|
|
require(amount <= balances[msg.sender], "BALANCE_NOT_ENOUGH");
|
|
|
|
balances[msg.sender] = balances[msg.sender].sub(amount);
|
|
balances[to] = balances[to].add(amount);
|
|
emit Transfer(msg.sender, to, amount);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @dev Gets the balance of the specified address.
|
|
* @param owner The address to query the the balance of.
|
|
* @return balance An uint256 representing the amount owned by the passed address.
|
|
*/
|
|
function balanceOf(address owner) external view returns (uint256 balance) {
|
|
return balances[owner];
|
|
}
|
|
|
|
/**
|
|
* @dev Transfer tokens from one address to another
|
|
* @param from address The address which you want to send tokens from
|
|
* @param to address The address which you want to transfer to
|
|
* @param amount uint256 the amount of tokens to be transferred
|
|
*/
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 amount
|
|
) public returns (bool) {
|
|
require(amount <= balances[from], "BALANCE_NOT_ENOUGH");
|
|
require(amount <= allowed[from][msg.sender], "ALLOWANCE_NOT_ENOUGH");
|
|
|
|
balances[from] = balances[from].sub(amount);
|
|
balances[to] = balances[to].add(amount);
|
|
allowed[from][msg.sender] = allowed[from][msg.sender].sub(amount);
|
|
emit Transfer(from, to, amount);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
|
|
* @param spender The address which will spend the funds.
|
|
* @param amount The amount of tokens to be spent.
|
|
*/
|
|
function approve(address spender, uint256 amount) public returns (bool) {
|
|
allowed[msg.sender][spender] = amount;
|
|
emit Approval(msg.sender, spender, amount);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @dev Function to check the amount of tokens that an owner allowed to a spender.
|
|
* @param owner address The address which owns the funds.
|
|
* @param spender address The address which will spend the funds.
|
|
* @return A uint256 specifying the amount of tokens still available for the spender.
|
|
*/
|
|
function allowance(address owner, address spender) public view returns (uint256) {
|
|
return allowed[owner][spender];
|
|
}
|
|
|
|
function mint(address user, uint256 value) external onlyOwner {
|
|
balances[user] = balances[user].add(value);
|
|
totalSupply = totalSupply.add(value);
|
|
emit Mint(user, value);
|
|
emit Transfer(address(0), user, value);
|
|
}
|
|
|
|
function burn(address user, uint256 value) external onlyOwner {
|
|
balances[user] = balances[user].sub(value);
|
|
totalSupply = totalSupply.sub(value);
|
|
emit Burn(user, value);
|
|
emit Transfer(user, address(0), value);
|
|
}
|
|
}
|