Transaction Hash:
Block:
8692232 at Oct-07-2019 02:05:44 AM +UTC
Transaction Fee:
0.000055027 ETH
$0.11
Gas Used:
55,027 Gas / 1 Gwei
Emitted Events:
| 77 |
TOSC.Transfer( from=[Sender] 0x98394a0217eb4da0cf8128a7aee5e989ef373e2f, to=0xe4D6B6fb1B6d7ebe97Ad33BfE77C3dd1F389dB17, value=20000000000 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x98394a02...9EF373E2f |
0.49640687539540375 Eth
Nonce: 2873
|
0.49635184839540375 Eth
Nonce: 2874
| 0.000055027 | ||
| 0xd50649AA...010e4908b | |||||
|
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 564.510746084900653477 Eth | 564.510801111900653477 Eth | 0.000055027 |
Execution Trace
TOSC.transfer( _to=0xe4D6B6fb1B6d7ebe97Ad33BfE77C3dd1F389dB17, _value=20000000000 )
pragma solidity ^0.4.24;
/**
* @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) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
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) {
// Solidity only automatically asserts when dividing by 0
require(b > 0);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
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;
}
}
contract owned {
address public owner;
constructor() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) onlyOwner public {
require(newOwner != owner);
owner = newOwner;
}
}
contract TokenERC20 is owned {
using SafeMath for uint;
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 8;
// 18 decimals is the strongly suggested default, avoid changing it
uint256 public totalSupply;
// This creates an array with all balances
mapping (address => uint256) public balanceOf;
// This generates a public event on the blockchain that will notify clients
event Transfer(address indexed from, address indexed to, uint256 value);
event Burn(address indexed from, uint256 value);
/**
* Constrctor function
*
* Initializes contract with initial supply tokens to the creator of the contract
*/
constructor(
uint256 initialSupply,
string tokenName,
string tokenSymbol
) public {
totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount
balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens
name = tokenName; // Set the name for display purposes
symbol = tokenSymbol; // Set the symbol for display purposes
}
/**
* Internal transfer, only can be called by this contract
*/
function _transfer(address _from, address _to, uint _value) internal {
// Prevent transfer to 0x0 address. Use burn() instead
require(_to != 0x0);
// Check if the sender has enough
require(balanceOf[_from] >= _value);
// Check for overflows
require(balanceOf[_to].add(_value) > balanceOf[_to]);
// Save this for an assertion in the future
uint previousBalances = balanceOf[_from].add(balanceOf[_to]);
// Subtract from the sender
balanceOf[_from] = balanceOf[_from].sub(_value);
// Add the same to the recipient
balanceOf[_to] = balanceOf[_to].add(_value);
emit Transfer(_from, _to, _value);
// Asserts are used to use static analysis to find bugs in your code. They should never fail
assert(balanceOf[_from].add(balanceOf[_to]) == previousBalances);
}
/**
* Transfer tokens
*
* Send `_value` tokens to `_to` from your account
*
* @param _to The address of the recipient
* @param _value the amount to send
*/
function transfer(address _to, uint256 _value) public {
_transfer(msg.sender, _to, _value);
}
/**
* Destroy tokens
*
* Remove `_value` tokens from the system irreversibly
*
* @param _value the amount of money to burn
*/
function burn(address addr, uint256 _value) onlyOwner public returns (bool success) {
balanceOf[addr] = balanceOf[addr].sub(_value); // Subtract from the sender
totalSupply = totalSupply.sub(_value); // Updates totalSupply
emit Burn(addr, _value);
return true;
}
}
contract TOSC is owned, TokenERC20 {
using SafeMath for uint;
mapping (address => bool) public frozenAddress;
mapping (address => bool) percentLockedAddress;
mapping (address => uint256) percentLockAvailable;
/* This generates a public event on the blockchain that will notify clients */
event FrozenFunds(address target, bool frozen);
event PercentLocked(address target, uint percentage, uint256 availableValue);
event PercentLockRemoved(address target);
/* Initializes contract with initial supply tokens to the creator of the contract */
constructor (
uint256 initialSupply,
string tokenName,
string tokenSymbol
) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}
/* Internal transfer, only can be called by this contract */
function _transfer(address _from, address _to, uint _value) internal {
require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead
require (balanceOf[_from] >= _value); // Check if the sender has enough
require (balanceOf[_to].add(_value) >= balanceOf[_to]); // Check for overflows
require(!frozenAddress[_from]); // Check if sender is frozen
require(!frozenAddress[_to]); // Check if recipient is frozen
if(percentLockedAddress[_from] == true){
require(_value <= percentLockAvailable[_from]);
percentLockAvailable[_from] = percentLockAvailable[_from].sub(_value);
}
uint previousBalances = balanceOf[_from].add(balanceOf[_to]);
balanceOf[_from] = balanceOf[_from].sub(_value); // Subtract from the sender
balanceOf[_to] = balanceOf[_to].add(_value); // Add the same to the recipient
assert(balanceOf[_from].add(balanceOf[_to]) == previousBalances);
emit Transfer(_from, _to, _value);
}
/// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
/// @param target Address to be frozen
/// @param freeze either to freeze it or not
function freezeAddress(address target, bool freeze) onlyOwner public {
frozenAddress[target] = freeze;
emit FrozenFunds(target, freeze);
}
function PercentLock(address target,uint percentage, uint256 available) onlyOwner public{
percentLockedAddress[target] = true;
percentLockAvailable[target] = available;
emit PercentLocked(target, percentage, available);
}
function removePercentLock(address target)onlyOwner public{
percentLockedAddress[target] = false;
percentLockAvailable[target] = 0;
emit PercentLockRemoved(target);
}
function sendTransfer(address _from, address _to, uint256 _value)onlyOwner external{
_transfer(_from, _to, _value);
}
function getBalance(address addr) external view onlyOwner returns(uint256){
return balanceOf[addr];
}
function getfrozenAddress(address addr) onlyOwner external view returns(bool){
return frozenAddress[addr];
}
function getpercentLockedAccount(address addr) onlyOwner external view returns(bool){
return percentLockedAddress[addr];
}
function getpercentLockAvailable(address addr) onlyOwner external view returns(uint256){
return percentLockAvailable[addr];
}
}