ETH Price: $2,125.29 (-1.92%)

Transaction Decoder

Block:
14552836 at Apr-09-2022 05:20:06 PM +UTC
Transaction Fee:
0.0013630518733776 ETH $2.90
Gas Used:
33,600 Gas / 40.567020041 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x1C727a55...47cE6de5d
(Uphold)
200.202108377065815691 Eth201.699674355863355691 Eth1.49756597879754
(K1POOL.COM)
81.403537843260560128 Eth81.403851015309545728 Eth0.0003131720489856
0x4Eb79df7...93454167a
1.5 Eth
Nonce: 0
0.0010709693290824 Eth
Nonce: 1
1.4989290306709176

Execution Trace

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