Transaction Hash:
Block:
10624894 at Aug-09-2020 09:26:43 AM +UTC
Transaction Fee:
0.002208261 ETH
$5.64
Gas Used:
36,201 Gas / 61 Gwei
Emitted Events:
278 |
lcxToken.Transfer( from=[Sender] 0x52d9ac072c5456d9547d73e5138b8395dbcb4614, to=0xaBab8856c1f3c2DdDf204C0d8e7C61D882Bc8167, value=5500000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x037A54Aa...95585fe41 | |||||
0x52D9AC07...5DBCB4614 |
0.049225821198743679 Eth
Nonce: 68
|
0.047017560198743679 Eth
Nonce: 69
| 0.002208261 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 106.77111344756624578 Eth | 106.77332170856624578 Eth | 0.002208261 |
Execution Trace
lcxToken.transfer( to=0xaBab8856c1f3c2DdDf204C0d8e7C61D882Bc8167, value=5500000000000000000000 ) => ( True )
transfer[lcxToken (ln:443)]
_transfer[lcxToken (ln:444)]
pragma solidity 0.5.4; /** * @title interface of ERC 20 token * */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; function safeTransfer(IERC20 token, address to, uint256 value) internal { require(token.transfer(to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { require(token.transferFrom(from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { require((value == 0) || (token.allowance(msg.sender, spender) == 0)); require(token.approve(spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); require(token.approve(spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value); require(token.approve(spender, newAllowance)); } } /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); uint256 c = a / b; return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * @notice Warning!!!! only be used when owner address is compromised */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @title Vesting token for specific period */ contract TokenVesting is Ownable{ using SafeMath for uint256; using SafeERC20 for IERC20; struct VestedToken{ uint256 cliff; uint256 start; uint256 duration; uint256 releasedToken; uint256 totalToken; bool revoked; } mapping (address => VestedToken) public vestedUser; // default Vesting parameter values uint256 private _cliff = 2592000; // 30 days period uint256 private _duration = 93312000; // for 3 years bool private _revoked = false; IERC20 public LCXToken; event TokenReleased(address indexed account, uint256 amount); event VestingRevoked(address indexed account); /** * @dev Its a modifier in which we authenticate the caller is owner or LCXToken Smart Contract */ modifier onlyLCXTokenAndOwner() { require(msg.sender==owner() || msg.sender == address(LCXToken)); _; } /** * @dev First we have to set token address before doing any thing * @param token LCX Smart contract Address */ function setTokenAddress(IERC20 token) public onlyOwner returns(bool){ LCXToken = token; return true; } /** * @dev this will set the beneficiary with default vesting * parameters ie, every month for 3 years * @param account address of the beneficiary for vesting * @param amount totalToken to be vested */ function setDefaultVesting(address account, uint256 amount) public onlyLCXTokenAndOwner returns(bool){ _setDefaultVesting(account, amount); return true; } /** *@dev Internal function to set default vesting parameters */ function _setDefaultVesting(address account, uint256 amount) internal { require(account!=address(0)); VestedToken storage vested = vestedUser[account]; vested.cliff = _cliff; vested.start = block.timestamp; vested.duration = _duration; vested.totalToken = amount; vested.releasedToken = 0; vested.revoked = _revoked; } /** * @dev this will set the beneficiary with vesting * parameters provided * @param account address of the beneficiary for vesting * @param amount totalToken to be vested * @param cliff In seconds of one period in vesting * @param duration In seconds of total vesting * @param startAt UNIX timestamp in seconds from where vesting will start */ function setVesting(address account, uint256 amount, uint256 cliff, uint256 duration, uint256 startAt ) public onlyLCXTokenAndOwner returns(bool){ _setVesting(account, amount, cliff, duration, startAt); return true; } /** * @dev Internal function to set default vesting parameters * @param account address of the beneficiary for vesting * @param amount totalToken to be vested * @param cliff In seconds of one period in vestin * @param duration In seconds of total vesting duration * @param startAt UNIX timestamp in seconds from where vesting will start * */ function _setVesting(address account, uint256 amount, uint256 cliff, uint256 duration, uint256 startAt) internal { require(account!=address(0)); require(cliff<=duration); VestedToken storage vested = vestedUser[account]; vested.cliff = cliff; vested.start = startAt; vested.duration = duration; vested.totalToken = amount; vested.releasedToken = 0; vested.revoked = false; } /** * @notice Transfers vested tokens to beneficiary. * anyone can release their token */ function releaseMyToken() public returns(bool) { releaseToken(msg.sender); return true; } /** * @notice Transfers vested tokens to the given account. * @param account address of the vested user */ function releaseToken(address account) public { require(account != address(0)); VestedToken storage vested = vestedUser[account]; uint256 unreleasedToken = _releasableAmount(account); // total releasable token currently require(unreleasedToken>0); vested.releasedToken = vested.releasedToken.add(unreleasedToken); LCXToken.safeTransfer(account,unreleasedToken); emit TokenReleased(account, unreleasedToken); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param account address of user */ function _releasableAmount(address account) internal view returns (uint256) { return _vestedAmount(account).sub(vestedUser[account].releasedToken); } /** * @dev Calculates the amount that has already vested. * @param account address of the user */ function _vestedAmount(address account) internal view returns (uint256) { VestedToken storage vested = vestedUser[account]; uint256 totalToken = vested.totalToken; if(block.timestamp < vested.start.add(vested.cliff)){ return 0; }else if(block.timestamp >= vested.start.add(vested.duration) || vested.revoked){ return totalToken; }else{ uint256 numberOfPeriods = (block.timestamp.sub(vested.start)).div(vested.cliff); return totalToken.mul(numberOfPeriods.mul(vested.cliff)).div(vested.duration); } } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param account address in which the vesting is revoked */ function revoke(address account) public onlyOwner { VestedToken storage vested = vestedUser[account]; require(!vested.revoked); uint256 balance = vested.totalToken; uint256 unreleased = _releasableAmount(account); uint256 refund = balance.sub(unreleased); vested.revoked = true; vested.totalToken = unreleased; LCXToken.safeTransfer(owner(), refund); emit VestingRevoked(account); } } contract lcxToken is IERC20, Ownable{ using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; TokenVesting public vestingContractAddress; /** * @dev name, symbol and decimals of LCX Token */ string public constant name = 'LCX'; string public constant symbol = 'LCX'; uint256 public constant decimals = 18; /** * @dev Initializes the totalSupply of the token with decimal point 18 */ constructor(uint256 totalSupply) public{ _totalSupply = totalSupply.mul(10**decimals); _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @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]; } /** * @dev Transfer token for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _transfer(from, to, value); _approve(from, msg.sender, _allowed[from][msg.sender].sub(value)); return true; } /** * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue)); return true; } /** * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The account whose tokens will be burned. * @param value uint256 The amount of token to be burned. */ function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @param owner The address that owns the tokens. * @param spender The address that will spend the tokens. * @param value The number of tokens that can be spent. */ function _approve(address owner, address spender, uint256 value) internal { require(spender != address(0)); require(owner != address(0)); _allowed[owner][spender] = value; emit Approval(owner, spender, value); } /** * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _burn(account, value); _approve(account, msg.sender, _allowed[account][msg.sender].sub(value)); } /** * @dev Set Vesting Token Smart contract Address before starting vesting * @param tokenVestingAddress Smart conract Address of the Vesting Smart contract */ function setTokenVestingAddress(TokenVesting tokenVestingAddress) public onlyOwner returns(bool){ vestingContractAddress = tokenVestingAddress; return true; } /** * @dev Vesting users token by default parameters * @param account address of the user * @param amount the amount to be vested */ function setDefaultVestingToken(address account, uint256 amount) public onlyOwner returns(bool){ vestingContractAddress.setDefaultVesting(account, amount); _transfer(msg.sender,address(vestingContractAddress), amount); return true; } /** * @dev Vesting users token by given parameters * @param account address of the beneficiary for vesting * @param amount totalToken to be vested * @param cliff In seconds of one period in vestin * @param duration In seconds of total vesting duration * @param startAt UNIX timestamp in seconds from where vesting will start */ function setVestingToken(address account, uint256 amount, uint256 cliff, uint256 duration, uint256 startAt) public onlyOwner returns(bool){ vestingContractAddress.setVesting(account, amount, cliff, duration, startAt); _transfer(msg.sender ,address(vestingContractAddress), amount); return true; } /** * @dev Batch Transfer Transactions * @param accounts array of addresses * @param values array of values to be transfer */ function batchTransfer(address[] memory accounts, uint256[] memory values ) public onlyOwner returns(bool){ require(accounts.length == values.length); for(uint256 i=0;i< accounts.length;i++){ _transfer(msg.sender, accounts[i], values[i]); } return true; } }