Transaction Hash:
Block:
9266037 at Jan-12-2020 12:09:15 PM +UTC
Transaction Fee:
0.000314856 ETH
$0.65
Gas Used:
34,984 Gas / 9 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0xd24400ae...49cf46853 | (Gemini) | 74,218.625397128705298727 Eth | 74,218.627145928705298727 Eth | 0.0017488 | |
| 0xD5133B8a...0825D01Ed |
0.01 Eth
Nonce: 0
|
0.007936344 Eth
Nonce: 1
| 0.002063656 | ||
|
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 798.01969354636181258 Eth | 798.02000840236181258 Eth | 0.000314856 |
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;
}
}