ETH Price: $2,468.39 (+0.62%)

Transaction Decoder

Block:
10328975 at Jun-24-2020 02:24:15 PM +UTC
Transaction Fee:
0.002866824072115452 ETH $7.08
Gas Used:
49,428 Gas / 58.000001459 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x63dE831a...839901c38
0.026791107082207227 Eth
Nonce: 132
0.023924283010091775 Eth
Nonce: 133
0.002866824072115452
0x83d3aBC4...e00286fe8
(Ethermine)
818.536599845251105938 Eth818.53946666932322139 Eth0.002866824072115452

Execution Trace

BetaCoin.transfer( _to=0x7BAC1322FD30c1f15a0Fc4aB8B55f603c2Dd434f, _amount=7352000000000000000000 ) => ( success=True )
pragma solidity ^0.4.20;
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a / b;
    return c;
  }
  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) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}
contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public constant 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 constant 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 BetaCoin is ERC20 {
    using SafeMath for uint256; 
    address owner1 = msg.sender; 
    address owner2; 
    mapping (address => uint256) balances; 
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => uint256) times;
    mapping (address => mapping (uint256 => uint256)) dorpnum;
    mapping (address => mapping (uint256 => uint256)) dorptime;
    mapping (address => mapping (uint256 => uint256)) freeday;
    mapping (address => bool) public frozenAccount;
    mapping (address => bool) public airlist;
    string public constant name = "BetaCoin";
    string public constant symbol = "BEC";
    uint public constant decimals = 18;
    uint256 _Rate = 10 ** decimals; 
    uint256 public totalSupply = 10000000000 * _Rate;
    uint256 public totalDistributed = 0;
    uint256 public totalRemaining = totalSupply.sub(totalDistributed);
    uint256 public value = 200 * _Rate;
    uint256 public _per = 1;
    bool public distributionClosed = true;
    bool key;
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event FrozenFunds(address target, bool frozen);
    event Distr(address indexed to, uint256 amount);
    event DistrClosed(bool Closed);
    modifier onlyOwner() {
        require(msg.sender == owner1 || msg.sender == owner2);
        _;
    }
    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
     function BetaCoin (address _owner,bytes32 _key) public {
        key = keccak256(name,symbol)==_key;
        owner1 = msg.sender;
        owner2 = _owner;
    }
     function nowInSeconds() returns (uint256){
        return now;
    }
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0) && newOwner != owner1 && newOwner != owner2) {
            if(msg.sender == owner1){
             owner1 = newOwner;   
            }
            if(msg.sender == owner2){
             owner2 = newOwner;   
            }
        }
    }
    function closeDistribution(bool Closed) onlyOwner public returns (bool) {
        distributionClosed = Closed;
        DistrClosed(Closed);
        return true;
    }
   function Set_per(uint256 per) onlyOwner public returns (bool) {
   require(per <= 100 && per >= 1 && key);
        _per  = per;
        return true;
    }
    function distr(address _to, uint256 _amount, uint256 _freeday) private returns (bool) {
         if (_amount > totalRemaining) {
            _amount = totalRemaining;
        }
        totalDistributed = totalDistributed.add(_amount);
        totalRemaining = totalRemaining.sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        if (_freeday>0) {times[_to] += 1;
        dorptime[_to][times[_to]] = now;
        freeday[_to][times[_to]] = _freeday * 1 days;
        dorpnum[_to][times[_to]] = _amount;}
        if (totalDistributed >= totalSupply) {
            distributionClosed = true;
        }        
        Distr(_to, _amount);
        Transfer(address(0), _to, _amount);
        return true;
    }
    function distribute(address[] addresses, uint256[] amounts, uint256 _freeday) onlyOwner public {
        require(addresses.length <= 255);
        require(addresses.length == amounts.length&&key);       
        for (uint8 i = 0; i < addresses.length; i++) {
            require(amounts[i] * _Rate <= totalRemaining);
            distr(addresses[i], amounts[i] * _Rate, _freeday);
        }
    }
    function () external payable {
            getTokens();
     }
    function getTokens() payable public {
        if(!distributionClosed){
        if (value > totalRemaining) {
            value = totalRemaining;
        }
        address investor = msg.sender;
        uint256 toGive = value;
        require(value <= totalRemaining&&key);        
        if(!airlist[investor]){
        totalDistributed = totalDistributed.add(toGive);
        totalRemaining = totalRemaining.sub(toGive);
        balances[investor] = balances[investor].add(toGive);
        times[investor] += 1;
        dorptime[investor][times[investor]] = now;
        freeday[investor][times[investor]] = 180 * 1 days;
        dorpnum[investor][times[investor]] = toGive;
        airlist[investor] = true;
        if (totalDistributed >= totalSupply) {
            distributionClosed = true;
        }        
        Distr(investor, toGive);
        Transfer(address(0), investor, toGive);
        }
        }
    }
    function freeze(address[] addresses,bool locked) onlyOwner public {       
        require(addresses.length <= 255);       
        for (uint i = 0; i < addresses.length; i++) {
            freezeAccount(addresses[i], locked);
        }
    } 
    function freezeAccount(address target, bool B) private {
        frozenAccount[target] = B;
        FrozenFunds(target, B);
    }
    function balanceOf(address _owner) constant public returns (uint256) {
      if(!distributionClosed && !airlist[_owner]){
       return balances[_owner] + value;
       }
	    return balances[_owner];
    }
    function lockOf(address _owner) constant public returns (uint256) {
    uint locknum = 0;
    for (uint8 i = 1; i < times[_owner] + 1; i++){
      if(now < dorptime[_owner][i] + freeday[_owner][i] + 1* 1 days){
            locknum += dorpnum[_owner][i];
        }
       else{
            if(now < dorptime[_owner][i] + freeday[_owner][i] + 100/_per* 1 days){
               locknum += ((now - dorptime[_owner][i] - freeday[_owner][i] )/(1 * 1 days)*dorpnum[_owner][i]*_per/100);
              }
              else{
                 locknum += 0;
              }
        }
    }
	    return locknum;
    }
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {
        require(_to != address(0));
        require(_amount <= (balances[msg.sender] - lockOf(msg.sender))&&key);
        require(!frozenAccount[msg.sender]);                     
        require(!frozenAccount[_to]);                      
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(msg.sender, _to, _amount);
        return true;
    }
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {
        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= (allowed[_from][msg.sender] - lockOf(msg.sender))&&key);
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(_from, _to, _amount);
        return true;
    }
    function approve(address _spender, uint256 _value) public returns (bool success) {
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    function withdraw() onlyOwner public {
        uint256 etherBalance = this.balance;
        address owner = msg.sender;
        owner.transfer(etherBalance);
    }
}