Transaction Hash:
Block:
4978954 at Jan-27-2018 12:50:40 AM +UTC
Transaction Fee:
0.0031023 ETH
$6.69
Gas Used:
34,470 Gas / 90 Gwei
Emitted Events:
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0xd7Ff94B0...132CEB487 |
0.1300722677201346 Eth
Nonce: 17
|
0.0103977077201346 Eth
Nonce: 18
| 0.11967456 | ||
|
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 796.624511875144553309 Eth | 796.627614175144553309 Eth | 0.0031023 | |
| 0xFBb1b73C...f520fBB98 | (Bittrex) | 758,169.202461111192671606 Eth | 758,169.319033371192671606 Eth | 0.11657226 |
Execution Trace
File 1 of 2: ReplaySafeSplit
File 2 of 2: AmIOnTheFork
contract AmIOnTheFork {
function forked() constant returns(bool);
}
contract ReplaySafeSplit {
// Fork oracle to use
AmIOnTheFork amIOnTheFork = AmIOnTheFork(0x2bd2326c993dfaef84f696526064ff22eba5b362);
event e(address a);
// Splits the funds into 2 addresses
function split(address targetFork, address targetNoFork) returns(bool) {
if (amIOnTheFork.forked() && targetFork.send(msg.value)) {
e(targetFork);
return true;
} else if (!amIOnTheFork.forked() && targetNoFork.send(msg.value)) {
e(targetNoFork);
return true;
}
throw; // don't accept value transfer, otherwise it would be trapped.
}
// Reject value transfers.
function() {
throw;
}
}File 2 of 2: AmIOnTheFork
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;
}
}