Transaction Hash:
Block:
4650557 at Nov-30-2017 02:45:34 PM +UTC
Transaction Fee:
0.000703648 ETH
$1.32
Gas Used:
31,984 Gas / 22 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07a18D3f...4D42EDa92 |
122.5077768 Eth
Nonce: 178
|
1.129924352 Eth
Nonce: 179
| 121.377852448 | ||
0xb75D1e62...6f8A922F5
Miner
| 121.172335877442763188 Eth | 121.173039525442763188 Eth | 0.000703648 | ||
0xd24400ae...49cf46853 | (Gemini) | 89,605.068539321072487894 Eth | 89,726.445688121072487894 Eth | 121.3771488 |
Execution Trace
contract AmIOnTheFork { bool public forked = false; address constant darkDAO = 0x304a554a310c7e546dfe434669c62820b7d83490; // Check the fork condition during creation of the contract. // This function should be called between block 1920000 and 1921200. // Approximately between 2016-07-20 12:00:00 UTC and 2016-07-20 17:00:00 UTC. // After that the status will be locked in. function update() { if (block.number >= 1920000 && block.number <= 1921200) { forked = darkDAO.balance < 3600000 ether; } } function() { throw; } }