|
pragma solidity ^0.4.23; |
|
|
|
|
|
|
|
|
|
contract NokuPricingPlan { |
|
|
|
function payFee(bytes32 serviceName, uint256 multiplier, address client) public returns(bool paid); |
|
|
|
|
|
function usageFee(bytes32 serviceName, uint256 multiplier) public constant returns(uint fee); |
|
} |
|
|
|
|
|
|
|
|
|
contract Ownable { |
|
address public owner; |
|
|
|
|
|
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); |
|
|
|
|
|
|
|
function Ownable() public { |
|
owner = msg.sender; |
|
} |
|
|
|
|
|
modifier onlyOwner() { |
|
require(msg.sender == owner); |
|
_; |
|
} |
|
|
|
|
|
function transferOwnership(address newOwner) public onlyOwner { |
|
require(newOwner != address(0)); |
|
emit OwnershipTransferred(owner, newOwner); |
|
owner = newOwner; |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
contract NokuCustomToken is Ownable { |
|
|
|
event LogBurnFinished(); |
|
event LogPricingPlanChanged(address indexed caller, address indexed pricingPlan); |
|
|
|
|
|
NokuPricingPlan public pricingPlan; |
|
|
|
|
|
address public serviceProvider; |
|
|
|
|
|
bool public burningFinished; |
|
|
|
|
|
modifier onlyServiceProvider() { |
|
require(msg.sender == serviceProvider, "caller is not service provider"); |
|
_; |
|
} |
|
|
|
modifier canBurn() { |
|
require(!burningFinished, "burning finished"); |
|
_; |
|
} |
|
|
|
constructor(address _pricingPlan, address _serviceProvider) internal { |
|
require(_pricingPlan != 0, "_pricingPlan is zero"); |
|
require(_serviceProvider != 0, "_serviceProvider is zero"); |
|
|
|
pricingPlan = NokuPricingPlan(_pricingPlan); |
|
serviceProvider = _serviceProvider; |
|
} |
|
|
|
|
|
function isCustomToken() public pure returns(bool isCustom) { |
|
return true; |
|
} |
|
|
|
|
|
function finishBurning() public onlyOwner canBurn returns(bool finished) { |
|
burningFinished = true; |
|
|
|
emit LogBurnFinished(); |
|
|
|
return true; |
|
} |
|
|
|
|
|
function setPricingPlan(address _pricingPlan) public onlyServiceProvider { |
|
require(_pricingPlan != 0, "_pricingPlan is 0"); |
|
require(_pricingPlan != address(pricingPlan), "_pricingPlan == pricingPlan"); |
|
|
|
pricingPlan = NokuPricingPlan(_pricingPlan); |
|
|
|
emit LogPricingPlanChanged(msg.sender, _pricingPlan); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
contract Pausable is Ownable { |
|
event Pause(); |
|
event Unpause(); |
|
|
|
bool public paused = false; |
|
|
|
|
|
|
|
modifier whenNotPaused() { |
|
require(!paused); |
|
_; |
|
} |
|
|
|
|
|
modifier whenPaused() { |
|
require(paused); |
|
_; |
|
} |
|
|
|
|
|
function pause() onlyOwner whenNotPaused public { |
|
paused = true; |
|
emit Pause(); |
|
} |
|
|
|
|
|
function unpause() onlyOwner whenPaused public { |
|
paused = false; |
|
emit Unpause(); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
library SafeMath { |
|
|
|
|
|
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { |
|
if (a == 0) { |
|
return 0; |
|
} |
|
c = a * b; |
|
assert(c / a == b); |
|
return c; |
|
} |
|
|
|
|
|
function div(uint256 a, uint256 b) internal pure returns (uint256) { |
|
|
|
|
|
|
|
return a / b; |
|
} |
|
|
|
|
|
function sub(uint256 a, uint256 b) internal pure returns (uint256) { |
|
assert(b <= a); |
|
return a - b; |
|
} |
|
|
|
|
|
function add(uint256 a, uint256 b) internal pure returns (uint256 c) { |
|
c = a + b; |
|
assert(c >= a); |
|
return c; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
contract ERC20Basic { |
|
function totalSupply() public view returns (uint256); |
|
function balanceOf(address who) public view returns (uint256); |
|
function transfer(address to, uint256 value) public returns (bool); |
|
event Transfer(address indexed from, address indexed to, uint256 value); |
|
} |
|
|
|
|
|
|
|
|
|
contract ERC20 is ERC20Basic { |
|
function allowance(address owner, address spender) public view returns (uint256); |
|
function transferFrom(address from, address to, uint256 value) public returns (bool); |
|
function approve(address spender, uint256 value) public returns (bool); |
|
event Approval(address indexed owner, address indexed spender, uint256 value); |
|
} |
|
|
|
|
|
|
|
contract BurnableERC20 is ERC20 { |
|
function burn(uint256 amount) public returns (bool burned); |
|
} |
|
|
|
|
|
contract NokuTokenBurner is Pausable { |
|
using SafeMath for uint256; |
|
|
|
event LogNokuTokenBurnerCreated(address indexed caller, address indexed wallet); |
|
event LogBurningPercentageChanged(address indexed caller, uint256 indexed burningPercentage); |
|
|
|
|
|
address public wallet; |
|
|
|
|
|
uint256 public burningPercentage; |
|
|
|
|
|
uint256 public burnedTokens; |
|
|
|
|
|
uint256 public transferredTokens; |
|
|
|
|
|
constructor(address _wallet) public { |
|
require(_wallet != address(0), "_wallet is zero"); |
|
|
|
wallet = _wallet; |
|
burningPercentage = 100; |
|
|
|
emit LogNokuTokenBurnerCreated(msg.sender, _wallet); |
|
} |
|
|
|
|
|
function setBurningPercentage(uint256 _burningPercentage) public onlyOwner { |
|
require(0 <= _burningPercentage && _burningPercentage <= 100, "_burningPercentage not in [0, 100]"); |
|
require(_burningPercentage != burningPercentage, "_burningPercentage equal to current one"); |
|
|
|
burningPercentage = _burningPercentage; |
|
|
|
emit LogBurningPercentageChanged(msg.sender, _burningPercentage); |
|
} |
|
|
|
|
|
function tokenReceived(address _token, uint256 _amount) public whenNotPaused { |
|
require(_token != address(0), "_token is zero"); |
|
require(_amount > 0, "_amount is zero"); |
|
|
|
uint256 amountToBurn = _amount.mul(burningPercentage).div(100); |
|
if (amountToBurn > 0) { |
|
assert(BurnableERC20(_token).burn(amountToBurn)); |
|
|
|
burnedTokens = burnedTokens.add(amountToBurn); |
|
} |
|
|
|
uint256 amountToTransfer = _amount.sub(amountToBurn); |
|
if (amountToTransfer > 0) { |
|
assert(BurnableERC20(_token).transfer(wallet, amountToTransfer)); |
|
|
|
transferredTokens = transferredTokens.add(amountToTransfer); |
|
} |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
contract BasicToken is ERC20Basic { |
|
using SafeMath for uint256; |
|
|
|
mapping(address => uint256) balances; |
|
|
|
uint256 totalSupply_; |
|
|
|
|
|
function totalSupply() public view returns (uint256) { |
|
return totalSupply_; |
|
} |
|
|
|
|
|
function transfer(address _to, uint256 _value) public returns (bool) { |
|
require(_to != address(0)); |
|
require(_value <= balances[msg.sender]); |
|
|
|
balances[msg.sender] = balances[msg.sender].sub(_value); |
|
balances[_to] = balances[_to].add(_value); |
|
emit Transfer(msg.sender, _to, _value); |
|
return true; |
|
} |
|
|
|
|
|
function balanceOf(address _owner) public view returns (uint256) { |
|
return balances[_owner]; |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
contract BurnableToken is BasicToken { |
|
|
|
event Burn(address indexed burner, uint256 value); |
|
|
|
|
|
function burn(uint256 _value) public { |
|
_burn(msg.sender, _value); |
|
} |
|
|
|
function _burn(address _who, uint256 _value) internal { |
|
require(_value <= balances[_who]); |
|
|
|
|
|
|
|
balances[_who] = balances[_who].sub(_value); |
|
totalSupply_ = totalSupply_.sub(_value); |
|
emit Burn(_who, _value); |
|
emit Transfer(_who, address(0), _value); |
|
} |
|
} |
|
|
|
|
|
|
|
contract DetailedERC20 is ERC20 { |
|
string public name; |
|
string public symbol; |
|
uint8 public decimals; |
|
|
|
function DetailedERC20(string _name, string _symbol, uint8 _decimals) public { |
|
name = _name; |
|
symbol = _symbol; |
|
decimals = _decimals; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
contract StandardToken is ERC20, BasicToken { |
|
|
|
mapping (address => mapping (address => uint256)) internal allowed; |
|
|
|
|
|
|
|
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { |
|
require(_to != address(0)); |
|
require(_value <= balances[_from]); |
|
require(_value <= allowed[_from][msg.sender]); |
|
|
|
balances[_from] = balances[_from].sub(_value); |
|
balances[_to] = balances[_to].add(_value); |
|
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); |
|
emit Transfer(_from, _to, _value); |
|
return true; |
|
} |
|
|
|
|
|
function approve(address _spender, uint256 _value) public returns (bool) { |
|
allowed[msg.sender][_spender] = _value; |
|
emit Approval(msg.sender, _spender, _value); |
|
return true; |
|
} |
|
|
|
|
|
function allowance(address _owner, address _spender) public view returns (uint256) { |
|
return allowed[_owner][_spender]; |
|
} |
|
|
|
|
|
function increaseApproval(address _spender, uint _addedValue) public returns (bool) { |
|
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); |
|
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); |
|
return true; |
|
} |
|
|
|
|
|
function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { |
|
uint oldValue = allowed[msg.sender][_spender]; |
|
if (_subtractedValue > oldValue) { |
|
allowed[msg.sender][_spender] = 0; |
|
} else { |
|
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); |
|
} |
|
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); |
|
return true; |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
contract MintableToken is StandardToken, Ownable { |
|
event Mint(address indexed to, uint256 amount); |
|
event MintFinished(); |
|
|
|
bool public mintingFinished = false; |
|
|
|
|
|
modifier canMint() { |
|
require(!mintingFinished); |
|
_; |
|
} |
|
|
|
|
|
function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { |
|
totalSupply_ = totalSupply_.add(_amount); |
|
balances[_to] = balances[_to].add(_amount); |
|
emit Mint(_to, _amount); |
|
emit Transfer(address(0), _to, _amount); |
|
return true; |
|
} |
|
|
|
|
|
function finishMinting() onlyOwner canMint public returns (bool) { |
|
mintingFinished = true; |
|
emit MintFinished(); |
|
return true; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
library SafeERC20 { |
|
function safeTransfer(ERC20Basic token, address to, uint256 value) internal { |
|
assert(token.transfer(to, value)); |
|
} |
|
|
|
function safeTransferFrom( |
|
ERC20 token, |
|
address from, |
|
address to, |
|
uint256 value |
|
) |
|
internal |
|
{ |
|
assert(token.transferFrom(from, to, value)); |
|
} |
|
|
|
function safeApprove(ERC20 token, address spender, uint256 value) internal { |
|
assert(token.approve(spender, value)); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
contract TokenTimelock { |
|
using SafeERC20 for ERC20Basic; |
|
|
|
|
|
ERC20Basic public token; |
|
|
|
|
|
address public beneficiary; |
|
|
|
|
|
uint256 public releaseTime; |
|
|
|
function TokenTimelock(ERC20Basic _token, address _beneficiary, uint256 _releaseTime) public { |
|
|
|
require(_releaseTime > block.timestamp); |
|
token = _token; |
|
beneficiary = _beneficiary; |
|
releaseTime = _releaseTime; |
|
} |
|
|
|
|
|
function release() public { |
|
|
|
require(block.timestamp >= releaseTime); |
|
|
|
uint256 amount = token.balanceOf(this); |
|
require(amount > 0); |
|
|
|
token.safeTransfer(beneficiary, amount); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.4.21; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract TokenVesting is Ownable { |
|
using SafeMath for uint256; |
|
using SafeERC20 for ERC20Basic; |
|
|
|
event Released(uint256 amount); |
|
event Revoked(); |
|
|
|
|
|
address public beneficiary; |
|
|
|
uint256 public cliff; |
|
uint256 public start; |
|
uint256 public duration; |
|
|
|
bool public revocable; |
|
|
|
mapping (address => uint256) public released; |
|
mapping (address => bool) public revoked; |
|
|
|
|
|
function TokenVesting( |
|
address _beneficiary, |
|
uint256 _start, |
|
uint256 _cliff, |
|
uint256 _duration, |
|
bool _revocable |
|
) |
|
public |
|
{ |
|
require(_beneficiary != address(0)); |
|
require(_cliff <= _duration); |
|
|
|
beneficiary = _beneficiary; |
|
revocable = _revocable; |
|
duration = _duration; |
|
cliff = _start.add(_cliff); |
|
start = _start; |
|
} |
|
|
|
|
|
function release(ERC20Basic token) public { |
|
uint256 unreleased = releasableAmount(token); |
|
|
|
require(unreleased > 0); |
|
|
|
released[token] = released[token].add(unreleased); |
|
|
|
token.safeTransfer(beneficiary, unreleased); |
|
|
|
emit Released(unreleased); |
|
} |
|
|
|
|
|
function revoke(ERC20Basic token) public onlyOwner { |
|
require(revocable); |
|
require(!revoked[token]); |
|
|
|
uint256 balance = token.balanceOf(this); |
|
|
|
uint256 unreleased = releasableAmount(token); |
|
uint256 refund = balance.sub(unreleased); |
|
|
|
revoked[token] = true; |
|
|
|
token.safeTransfer(owner, refund); |
|
|
|
emit Revoked(); |
|
} |
|
|
|
|
|
function releasableAmount(ERC20Basic token) public view returns (uint256) { |
|
return vestedAmount(token).sub(released[token]); |
|
} |
|
|
|
|
|
function vestedAmount(ERC20Basic token) public view returns (uint256) { |
|
uint256 currentBalance = token.balanceOf(this); |
|
uint256 totalBalance = currentBalance.add(released[token]); |
|
|
|
if (block.timestamp < cliff) { |
|
return 0; |
|
} else if (block.timestamp >= start.add(duration) || revoked[token]) { |
|
return totalBalance; |
|
} else { |
|
return totalBalance.mul(block.timestamp.sub(start)).div(duration); |
|
} |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
contract NokuCustomERC20 is NokuCustomToken, DetailedERC20, MintableToken, BurnableToken { |
|
using SafeMath for uint256; |
|
|
|
event LogNokuCustomERC20Created( |
|
address indexed caller, |
|
string indexed name, |
|
string indexed symbol, |
|
uint8 decimals, |
|
uint256 transferableFromBlock, |
|
uint256 lockEndBlock, |
|
address pricingPlan, |
|
address serviceProvider |
|
); |
|
event LogMintingFeeEnabledChanged(address indexed caller, bool indexed mintingFeeEnabled); |
|
event LogInformationChanged(address indexed caller, string name, string symbol); |
|
event LogTransferFeePaymentFinished(address indexed caller); |
|
event LogTransferFeePercentageChanged(address indexed caller, uint256 indexed transferFeePercentage); |
|
|
|
|
|
bool public mintingFeeEnabled; |
|
|
|
|
|
uint256 public transferableFromBlock; |
|
|
|
|
|
uint256 public lockEndBlock; |
|
|
|
|
|
mapping (address => uint256) public initiallyLockedBalanceOf; |
|
|
|
|
|
uint256 public transferFeePercentage; |
|
|
|
|
|
bool public transferFeePaymentFinished; |
|
|
|
bytes32 public constant BURN_SERVICE_NAME = "NokuCustomERC20.burn"; |
|
bytes32 public constant MINT_SERVICE_NAME = "NokuCustomERC20.mint"; |
|
|
|
modifier canTransfer(address _from, uint _value) { |
|
require(block.number >= transferableFromBlock, "token not transferable"); |
|
|
|
if (block.number < lockEndBlock) { |
|
uint256 locked = lockedBalanceOf(_from); |
|
if (locked > 0) { |
|
uint256 newBalance = balanceOf(_from).sub(_value); |
|
require(newBalance >= locked, "_value exceeds locked amount"); |
|
} |
|
} |
|
_; |
|
} |
|
|
|
constructor( |
|
string _name, |
|
string _symbol, |
|
uint8 _decimals, |
|
uint256 _transferableFromBlock, |
|
uint256 _lockEndBlock, |
|
address _pricingPlan, |
|
address _serviceProvider |
|
) |
|
NokuCustomToken(_pricingPlan, _serviceProvider) |
|
DetailedERC20(_name, _symbol, _decimals) public |
|
{ |
|
require(bytes(_name).length > 0, "_name is empty"); |
|
require(bytes(_symbol).length > 0, "_symbol is empty"); |
|
require(_lockEndBlock >= _transferableFromBlock, "_lockEndBlock lower than _transferableFromBlock"); |
|
|
|
transferableFromBlock = _transferableFromBlock; |
|
lockEndBlock = _lockEndBlock; |
|
mintingFeeEnabled = true; |
|
|
|
emit LogNokuCustomERC20Created( |
|
msg.sender, |
|
_name, |
|
_symbol, |
|
_decimals, |
|
_transferableFromBlock, |
|
_lockEndBlock, |
|
_pricingPlan, |
|
_serviceProvider |
|
); |
|
} |
|
|
|
function setMintingFeeEnabled(bool _mintingFeeEnabled) public onlyOwner returns(bool successful) { |
|
require(_mintingFeeEnabled != mintingFeeEnabled, "_mintingFeeEnabled == mintingFeeEnabled"); |
|
|
|
mintingFeeEnabled = _mintingFeeEnabled; |
|
|
|
emit LogMintingFeeEnabledChanged(msg.sender, _mintingFeeEnabled); |
|
|
|
return true; |
|
} |
|
|
|
|
|
function setInformation(string _name, string _symbol) public onlyOwner returns(bool successful) { |
|
require(bytes(_name).length > 0, "_name is empty"); |
|
require(bytes(_symbol).length > 0, "_symbol is empty"); |
|
|
|
name = _name; |
|
symbol = _symbol; |
|
|
|
emit LogInformationChanged(msg.sender, _name, _symbol); |
|
|
|
return true; |
|
} |
|
|
|
|
|
function finishTransferFeePayment() public onlyOwner returns(bool finished) { |
|
require(!transferFeePaymentFinished, "transfer fee finished"); |
|
|
|
transferFeePaymentFinished = true; |
|
|
|
emit LogTransferFeePaymentFinished(msg.sender); |
|
|
|
return true; |
|
} |
|
|
|
|
|
function setTransferFeePercentage(uint256 _transferFeePercentage) public onlyOwner { |
|
require(0 <= _transferFeePercentage && _transferFeePercentage <= 100, "_transferFeePercentage not in [0, 100]"); |
|
require(_transferFeePercentage != transferFeePercentage, "_transferFeePercentage equal to current value"); |
|
|
|
transferFeePercentage = _transferFeePercentage; |
|
|
|
emit LogTransferFeePercentageChanged(msg.sender, _transferFeePercentage); |
|
} |
|
|
|
function lockedBalanceOf(address _to) public constant returns(uint256 locked) { |
|
uint256 initiallyLocked = initiallyLockedBalanceOf[_to]; |
|
if (block.number >= lockEndBlock) return 0; |
|
else if (block.number <= transferableFromBlock) return initiallyLocked; |
|
|
|
uint256 releaseForBlock = initiallyLocked.div(lockEndBlock.sub(transferableFromBlock)); |
|
uint256 released = block.number.sub(transferableFromBlock).mul(releaseForBlock); |
|
return initiallyLocked.sub(released); |
|
} |
|
|
|
|
|
function transferFee(uint256 _value) public view returns(uint256 usageFee) { |
|
return _value.mul(transferFeePercentage).div(100); |
|
} |
|
|
|
|
|
function freeTransfer() public view returns (bool isTransferFree) { |
|
return transferFeePaymentFinished || transferFeePercentage == 0; |
|
} |
|
|
|
|
|
function transfer(address _to, uint256 _value) canTransfer(msg.sender, _value) public returns(bool transferred) { |
|
if (freeTransfer()) { |
|
return super.transfer(_to, _value); |
|
} |
|
else { |
|
uint256 usageFee = transferFee(_value); |
|
uint256 netValue = _value.sub(usageFee); |
|
|
|
bool feeTransferred = super.transfer(owner, usageFee); |
|
bool netValueTransferred = super.transfer(_to, netValue); |
|
|
|
return feeTransferred && netValueTransferred; |
|
} |
|
} |
|
|
|
|
|
function transferFrom(address _from, address _to, uint256 _value) canTransfer(_from, _value) public returns(bool transferred) { |
|
if (freeTransfer()) { |
|
return super.transferFrom(_from, _to, _value); |
|
} |
|
else { |
|
uint256 usageFee = transferFee(_value); |
|
uint256 netValue = _value.sub(usageFee); |
|
|
|
bool feeTransferred = super.transferFrom(_from, owner, usageFee); |
|
bool netValueTransferred = super.transferFrom(_from, _to, netValue); |
|
|
|
return feeTransferred && netValueTransferred; |
|
} |
|
} |
|
|
|
|
|
function burn(uint256 _amount) public canBurn { |
|
require(_amount > 0, "_amount is zero"); |
|
|
|
super.burn(_amount); |
|
|
|
require(pricingPlan.payFee(BURN_SERVICE_NAME, _amount, msg.sender), "burn fee failed"); |
|
} |
|
|
|
|
|
function mint(address _to, uint256 _amount) public onlyOwner canMint returns(bool minted) { |
|
require(_to != 0, "_to is zero"); |
|
require(_amount > 0, "_amount is zero"); |
|
|
|
super.mint(_to, _amount); |
|
|
|
if (mintingFeeEnabled) { |
|
require(pricingPlan.payFee(MINT_SERVICE_NAME, _amount, msg.sender), "mint fee failed"); |
|
} |
|
|
|
return true; |
|
} |
|
|
|
|
|
function mintLocked(address _to, uint256 _amount) public onlyOwner canMint returns(bool minted) { |
|
initiallyLockedBalanceOf[_to] = initiallyLockedBalanceOf[_to].add(_amount); |
|
|
|
return mint(_to, _amount); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
library AddressUtils { |
|
|
|
|
|
function isContract(address addr) internal view returns (bool) { |
|
uint256 size; |
|
|
|
|
|
|
|
|
|
|
|
|
|
assembly { size := extcodesize(addr) } |
|
return size > 0; |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
contract NokuCustomService is Pausable { |
|
using AddressUtils for address; |
|
|
|
event LogPricingPlanChanged(address indexed caller, address indexed pricingPlan); |
|
|
|
|
|
NokuPricingPlan public pricingPlan; |
|
|
|
constructor(address _pricingPlan) internal { |
|
require(_pricingPlan.isContract(), "_pricingPlan is not contract"); |
|
|
|
pricingPlan = NokuPricingPlan(_pricingPlan); |
|
} |
|
|
|
function setPricingPlan(address _pricingPlan) public onlyOwner { |
|
require(_pricingPlan.isContract(), "_pricingPlan is not contract"); |
|
require(NokuPricingPlan(_pricingPlan) != pricingPlan, "_pricingPlan equal to current"); |
|
|
|
pricingPlan = NokuPricingPlan(_pricingPlan); |
|
|
|
emit LogPricingPlanChanged(msg.sender, _pricingPlan); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
contract NokuCustomERC20Service is NokuCustomService { |
|
event LogNokuCustomERC20ServiceCreated(address caller, address indexed pricingPlan); |
|
|
|
uint256 public constant CREATE_AMOUNT = 1 * 10**18; |
|
|
|
uint8 public constant DECIMALS = 18; |
|
|
|
bytes32 public constant CUSTOM_ERC20_CREATE_SERVICE_NAME = "NokuCustomERC20.create"; |
|
|
|
constructor(address _pricingPlan) NokuCustomService(_pricingPlan) public { |
|
emit LogNokuCustomERC20ServiceCreated(msg.sender, _pricingPlan); |
|
} |
|
|
|
|
|
function createCustomToken(string _name, string _symbol, uint8 ) public returns(NokuCustomERC20 customToken) { |
|
customToken = new NokuCustomERC20( |
|
_name, |
|
_symbol, |
|
DECIMALS, |
|
block.number, |
|
block.number, |
|
pricingPlan, |
|
owner |
|
); |
|
|
|
|
|
customToken.transferOwnership(msg.sender); |
|
|
|
require(pricingPlan.payFee(CUSTOM_ERC20_CREATE_SERVICE_NAME, CREATE_AMOUNT, msg.sender), "fee payment failed"); |
|
} |
|
|
|
function createCustomToken( |
|
string _name, |
|
string _symbol, |
|
uint8 , |
|
uint256 transferableFromBlock, |
|
uint256 lockEndBlock |
|
) |
|
public returns(NokuCustomERC20 customToken) |
|
{ |
|
customToken = new NokuCustomERC20( |
|
_name, |
|
_symbol, |
|
DECIMALS, |
|
transferableFromBlock, |
|
lockEndBlock, |
|
pricingPlan, |
|
owner |
|
); |
|
|
|
|
|
customToken.transferOwnership(msg.sender); |
|
|
|
require(pricingPlan.payFee(CUSTOM_ERC20_CREATE_SERVICE_NAME, CREATE_AMOUNT, msg.sender), "fee payment failed"); |
|
} |
|
} |