ETH Price: $2,550.38 (-7.24%)

Transaction Decoder

Block:
7814679 at May-23-2019 07:35:10 AM +UTC
Transaction Fee:
0.0038994999999707 ETH $9.95
Gas Used:
48,980 Gas / 79.614128215 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Spark Pool)
2,628.622366945800192154 Eth2,628.626266445800162854 Eth0.0038994999999707
0xD26A4D3C...d11d0d516
86.666916355060436253 Eth
Nonce: 504
86.663016855060465553 Eth
Nonce: 505
0.0038994999999707

Execution Trace

GolemNetworkToken.transfer( _to=0x4CEA217b48C543213723639548F6c15B81C18392, _value=1010330000000000000000 )
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.4;
/// @title Golem Network Token (GNT) - crowdfunding code for Golem Project
contract GolemNetworkToken {
string public constant name = "Golem Network Token";
string public constant symbol = "GNT";
uint8 public constant decimals = 18; // 18 decimal places, the same as ETH.
uint256 public constant tokenCreationRate = 1000;
// The funding cap in weis.
uint256 public constant tokenCreationCap = 820000 ether * tokenCreationRate;
uint256 public constant tokenCreationMin = 150000 ether * tokenCreationRate;
uint256 public fundingStartBlock;
uint256 public fundingEndBlock;
// The flag indicates if the GNT contract is in Funding state.
bool public funding = true;
// Receives ETH and its own GNT endowment.
address public golemFactory;
// Has control over token migration to next version of token.
address public migrationMaster;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX