Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 2,628.622366945800192154 Eth | 2,628.626266445800162854 Eth | 0.0038994999999707 | |
0xD26A4D3C...d11d0d516 |
86.666916355060436253 Eth
Nonce: 504
|
86.663016855060465553 Eth
Nonce: 505
| 0.0038994999999707 |
Execution Trace
GolemNetworkToken.transfer( _to=0x4CEA217b48C543213723639548F6c15B81C18392, _value=1010330000000000000000 )
transfer[GolemNetworkToken (ln:66)]
Transfer[GolemNetworkToken (ln:75)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.4;/// @title Golem Network Token (GNT) - crowdfunding code for Golem Projectcontract 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;