Transaction Hash:
Block:
7966299 at Jun-16-2019 12:21:40 AM +UTC
Transaction Fee:
0.000223888 ETH
$0.45
Gas Used:
31,984 Gas / 7 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x1213b2B1...5e967d0f6 |
75.006827312 Eth
Nonce: 1
|
0.013654624 Eth
Nonce: 2
| 74.993172688 | ||
|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 4,208.068079769107666192 Eth | 4,208.068303657107666192 Eth | 0.000223888 | |
| 0xd24400ae...49cf46853 | (Gemini) | 71,910.602398450237280938 Eth | 71,985.595347250237280938 Eth | 74.9929488 |
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;
}
}