Transaction Hash:
Block:
5146410 at Feb-24-2018 06:43:00 AM +UTC
Transaction Fee:
0.000703648 ETH
$1.40
Gas Used:
31,984 Gas / 22 Gwei
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 15,857.674179922483920671 Eth | 15,857.674883570483920671 Eth | 0.000703648 | |
| 0xd24400ae...49cf46853 | (Gemini) | 62,554.569665898855226806 Eth | 62,555.588634398855226806 Eth | 1.0189685 | |
| 0xD74327f3...d3551798F |
1.050570966482781936 Eth
Nonce: 5
|
0.030898818482781936 Eth
Nonce: 6
| 1.019672148 |
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;
}
}