Transaction Hash:
Block:
8912222 at Nov-11-2019 03:58:07 AM +UTC
Transaction Fee:
0.000367816 ETH
$0.80
Gas Used:
31,984 Gas / 11.5 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 64.367898190196469541 Eth | 64.368266006196469541 Eth | 0.000367816 | |
| 0x93d83883...03C673CAC |
0.1665734 Eth
Nonce: 17
|
0.120556784 Eth
Nonce: 18
| 0.046016616 | ||
| 0xd24400ae...49cf46853 | (Gemini) | 46,766.576270881811079552 Eth | 46,766.621919681811079552 Eth | 0.0456488 |
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;
}
}