Transaction Hash:
Block:
4158825 at Aug-15-2017 12:37:56 AM +UTC
Transaction Fee:
0.000671664 ETH
$1.45
Gas Used:
31,984 Gas / 21 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x500D0e2e...CF09cB12d |
10 Eth
Nonce: 0
|
0.000315504 Eth
Nonce: 1
| 9.999684496 | ||
|
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 19,762.112933458945408094 Eth | 19,762.113605122945408094 Eth | 0.000671664 | |
| 0xd24400ae...49cf46853 | (Gemini) | 55,553.289089515008212158 Eth | 55,563.288102347008212158 Eth | 9.999012832 |
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;
}
}