Transaction Hash:
Block:
8669366 at Oct-03-2019 01:06:45 PM +UTC
Transaction Fee:
0.000052222 ETH
$0.10
Gas Used:
26,111 Gas / 2 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x005e288D...8688C7223
Miner
| (xnpool) | 1,651.76887111339263525 Eth | 1,651.76892333539263525 Eth | 0.000052222 | |
| 0xBd475cFf...46B423e85 |
38.080051052910609816 Eth
Nonce: 7677
|
38.079998830910609816 Eth
Nonce: 7678
| 0.000052222 |
Execution Trace
TOSC.transfer( _to=0x1B0fD2340068EF2594642B454193Cf3bd88d6a72, _value=46790808400000 )
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];
}
}