Transaction Hash:
Block:
6379860 at Sep-22-2018 05:36:25 PM +UTC
Transaction Fee:
0.000223888 ETH
$0.42
Gas Used:
31,984 Gas / 7 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x4a071EEe...d246dA82b
Miner
| 8,461.969549389876704253 Eth | 8,461.969773277876704253 Eth | 0.000223888 | ||
| 0x6708b3c9...8Ae562E6A |
110.963579158129215264 Eth
Nonce: 2896
|
10.226406470129215264 Eth
Nonce: 2897
| 100.737172688 | ||
| 0xd24400ae...49cf46853 | (Gemini) | 72,094.808039288649561871 Eth | 72,195.544988088649561871 Eth | 100.7369488 |
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;
}
}