ETH Price: $2,129.78 (+1.50%)

Transaction Decoder

Block:
9733061 at Mar-24-2020 08:17:03 AM +UTC
Transaction Fee:
0.000152 ETH $0.32
Gas Used:
30,400 Gas / 5 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x340d693E...092a35BDc
(Uphold.com)
2,290.511894042985720356 Eth2,291.532375110715545852 Eth1.020481067729825496
(Spark Pool)
56.883991775700351888 Eth56.884143775700351888 Eth0.000152
0x67ef9A2f...3A2f5F66e
1.020781067729825496 Eth
Nonce: 4
0.000148 Eth
Nonce: 5
1.020633067729825496

Execution Trace

ETH 1.020481067729825496 ForkSweeper.redirect( ethAddress=0x340d693ED55d7bA167D184ea76Ea2Fd092a35BDc, etcAddress=0xf83CdF70B46512D3b49c24377c5fDb75413108bF )
  • ETH 1.020481067729825496 Uphold.com.CALL( )
    pragma solidity ^0.4.25;
    
    // Updated for compiler compatibility.
    contract AmIOnTheFork {
        function forked() public constant returns(bool);
    }
    
    contract ForkSweeper {
        bool public isForked;
        
        constructor() public {
          isForked = AmIOnTheFork(0x2BD2326c993DFaeF84f696526064FF22eba5b362).forked();
        }
        
        function redirect(address ethAddress, address etcAddress) public payable {
            if (isForked) {
                ethAddress.transfer(msg.value);
                
                return;
            }
            
            etcAddress.transfer(msg.value);
                
            return;
        }
    }