ETH Price: $2,786.08 (+6.39%)

Transaction Decoder

Block:
7905661 at Jun-06-2019 12:32:22 PM +UTC
Transaction Fee:
0.0006769152 ETH $1.89
Gas Used:
52,884 Gas / 12.8 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x2a61E772...242Fd297E
(UUPool)
139.844152583498982435 Eth139.844829498698982435 Eth0.0006769152
0xf97322B9...E319552B6
0.12112773041916096 Eth
Nonce: 22
0.12045081521916096 Eth
Nonce: 23
0.0006769152

Execution Trace

TokenERC20.transfer( _to=0xb0eeFc2190a897B62C9fC54Fb47DB81d848792C0, _value=3480000000000000000000 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity ^0.4.16;
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
contract TokenERC20 {
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 18; // 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;
mapping (address => mapping (address => uint256)) public allowance;
// This generates a public event on the blockchain that will notify clients
event Transfer(address indexed from, address indexed to, uint256 value);
// This notifies clients about the amount burnt
event Burn(address indexed from, uint256 value);
/** * Constrctor function * * Initializes contract with initial supply tokens to the creator of the contract */
function TokenERC20( 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 */
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX