ETH Price: $2,317.16 (-0.47%)

Transaction Decoder

Block:
14235454 at Feb-19-2022 08:25:40 AM +UTC
Transaction Fee:
0.0016448922834624 ETH $3.81
Gas Used:
33,600 Gas / 48.955127484 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x1C727a55...47cE6de5d
(Uphold)
1,098.518833432365876699 Eth1,099.110815254644611291 Eth0.591981822278734592
0x3ad72b2c...8e76babAf
0.594919129927774592 Eth
Nonce: 3
0.0012924153655776 Eth
Nonce: 4
0.593626714562196992
(Miner: 0x8f0...be7)
4,006.69684864997997132 Eth4,006.69705050513558252 Eth0.0002018551556112

Execution Trace

ETH 0.591981822278734592 ForkSweeper.redirect( ethAddress=0x1C727a55eA3c11B0ab7D3a361Fe0F3C47cE6de5d, etcAddress=0xf83CdF70B46512D3b49c24377c5fDb75413108bF )
  • ETH 0.591981822278734592 Uphold.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;
        }
    }