ETH Price: $1,929.52 (-1.85%)
Gas: 0.06 Gwei

Transaction Decoder

Block:
8022301 at Jun-24-2019 06:18:17 PM +UTC
Transaction Fee:
0.000177027 ETH $0.34
Gas Used:
59,009 Gas / 3 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x5fF87907...3f9362a0B 8.150822262404362763 Eth8.150822362404362763 Eth0.0000001
0x7090a6e2...9c933a43F
0xB5298a5F...945a8E90a
4.695599252769209483 Eth
Nonce: 367
4.695422125769209483 Eth
Nonce: 368
0.000177127
(Ethermine)
1,005.016807932039082319 Eth1,005.016984959039082319 Eth0.000177027

Execution Trace

ETH 0.0000001 ZuckBucks.CALL( )
  • ETH 0.0000001 0x5ff87907d6157f18732ce912153149a3f9362a0b.CALL( )
    pragma solidity ^0.5;
    
    contract Token {
    
        /// @param _owner The address from which the balance will be retrieved
        /// @return The balance
        function balanceOf(address _owner) view public returns (uint256 balance) {}
    
        /// @notice send `_value` token to `_to` from `msg.sender`
        /// @param _to The address of the recipient
        /// @param _value The amount of token to be transferred
        /// @return Whether the transfer was successful or not
        function transfer(address _to, uint256 _value) public returns (bool success) {}
    
        /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
        /// @param _from The address of the sender
        /// @param _to The address of the recipient
        /// @param _value The amount of token to be transferred
        /// @return Whether the transfer was successful or not
        function transferFrom(address _from, address _to, uint256 _value) public  returns (bool success) {}
    
        /// @notice `msg.sender` approves `_addr` to spend `_value` tokens
        /// @param _spender The address of the account able to transfer the tokens
        /// @param _value The amount of wei to be approved for transfer
        /// @return Whether the approval was successful or not
        function approve(address _spender, uint256 _value)  public returns (bool success) {}
    
        /// @param _owner The address of the account owning tokens
        /// @param _spender The address of the account able to transfer the tokens
        /// @return Amount of remaining tokens allowed to spent
        function allowance(address _owner, address _spender) public view returns (uint256 remaining) {}
    
        event Transfer(address indexed _from, address indexed _to, uint256 _value);
        event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    }
    
    
    
    contract StandardToken is Token {
    
    
        function transfer(address _to, uint256 _value) public returns (bool success) {
            //Default assumes totalSupply can't be over max (2^256 - 1).
            //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
            //Replace the if with this one instead.
            //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
            if (balances[msg.sender] >= _value && _value > 0) {
                balances[msg.sender] -= _value;
                balances[_to] += _value;
                emit Transfer(msg.sender, _to, _value);
                return true;
            } else { return false; }
        }
    
        function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
            //same as above. Replace this line with the following if you want to protect against wrapping uints.
            //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
            if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
                balances[_to] += _value;
                balances[_from] -= _value;
                allowed[_from][msg.sender] -= _value;
                emit Transfer(_from, _to, _value);
                return true;
            } else { return false; }
        }
    
        function balanceOf(address _owner) view public returns (uint256 balance) {
            return balances[_owner];
        }
    
        function approve(address _spender, uint256 _value) public returns (bool success) {
            allowed[msg.sender][_spender] = _value;
            emit Approval(msg.sender, _spender, _value);
            return true;
        }
    
        function allowance(address _owner, address _spender) view public returns (uint256 remaining) {
          return allowed[_owner][_spender];
        }
    
        mapping (address => uint256) balances;
        mapping (address => mapping (address => uint256)) allowed;
        uint256 public circulatingSupply;
    }
    
    
    //name this contract whatever you'd like
    contract ZuckBucks is StandardToken {
        /* Public variables of the token */
    
        /*
        NOTE:
        The following variables are OPTIONAL vanities. One does not have to include them.
        They allow one to customise the token contract & in no way influences the core functionality.
        Some wallets/interfaces might not even bother to look at this information.
        */
        string public name;                   //fancy name: eg Simon Bucks
        uint8 public decimals;                //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
        string public symbol;                 //An identifier: eg SBX
        address payable private owner;
        uint public totalSupply;
    
        uint256 public starting_giveaway;
        uint256 public next_giveaway;
        uint256 private giveaway_count;
        
        function () external payable {
            //if ether is sent to this address, send it back.
            uint256 eth_val = msg.value;
            
            uint256 giveaway_value;
    
            giveaway_count++;
    
            giveaway_value = (((starting_giveaway / giveaway_count) + (starting_giveaway / (giveaway_count + 2))) * (10**18 + eth_val)) / 10**18;
            next_giveaway = (starting_giveaway / (giveaway_count + 1)) + (starting_giveaway / (giveaway_count + 3));
    
    
            balances[msg.sender] += giveaway_value;
            balances[owner] -= giveaway_value;
            circulatingSupply += giveaway_value;
            emit Transfer(owner, msg.sender, giveaway_value);
            
            // revert();
            owner.transfer(eth_val);
        }
    
    
    
        constructor() ZuckBucks (
            ) public {
            totalSupply = 1500000;                        // Update total supply (1500000 for example)
            balances[msg.sender] = totalSupply;               // Give the creator all initial tokens (100000 for example)
            circulatingSupply = 0;
            name = "Zuck Bucks";                                   // Set the name for display purposes
            decimals = 0;                            // Amount of decimals for display purposes
            symbol = "ZBUX";                               // Set the symbol for display purposes
            starting_giveaway = 50000;
            next_giveaway = 0;
            owner = msg.sender;
            giveaway_count = 0;
        }
    
    
    
    }