ETH Price: $2,987.88 (+2.39%)

Transaction Decoder

Block:
16902326 at Mar-25-2023 05:12:47 AM +UTC
Transaction Fee:
0.000835008939310216 ETH $2.49
Gas Used:
62,618 Gas / 13.334966612 Gwei

Emitted Events:

109 Proxy.0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830( 0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830, 000000000000000000000000fcf635c39b514be6ae71ff7a06d923fc955c53bf, 00000000000000000000000000000000000000000000000000000000000f25fb, 0000000000000000000000000000000000000000000000000000000000000001, 00000000000000000000000000000000000000000000000000000000000000a0, 00000000000000000000000000000000000000000000000000000000010323b6, 000000000000000000000000000000000000000000000000000000000000002d, 010000000000000000000000000000000000003b3e968f8800fcf635c39b514b, e6ae71ff7a06d923fc955c53bf00000000000000000000000000000000000000 )
110 Proxy.0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0( 0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0, 0x0000000000000000000000000000000000000000000000000000000000000000, 00000000000000000000000000000000000000000000000000003b3e968f8800 )

Account State Difference:

  Address   Before After State Difference Code
0xaBEA9132...00777fBEF
(zkSync)
32,568.40389304379302377 Eth32,568.40395818379302377 Eth0.00006514
(lightspeedbuilder 2)
0.50492456808856522 Eth0.504967878604665802 Eth0.000043310516100582
0xfCf635C3...C955C53bF
0.065060970232265522 Eth
Nonce: 0
0.064160821292955306 Eth
Nonce: 1
0.000900148939310216

Execution Trace

ETH 0.00006514 Proxy.2d2da806( )
  • ETH 0.00006514 ZkSync.depositETH( _zkSyncAddress=0xfCf635C39B514Be6Ae71fF7a06d923FC955C53bF )
    File 1 of 2: Proxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.5.0;
    import "./Ownable.sol";
    import "./Upgradeable.sol";
    import "./UpgradeableMaster.sol";
    /// @title Proxy Contract
    /// @dev NOTICE: Proxy must implement UpgradeableMaster interface to prevent calling some function of it not by master of proxy
    /// @author Matter Labs
    contract Proxy is Upgradeable, UpgradeableMaster, Ownable {
    /// @notice Storage position of "target" (actual implementation address: keccak256('eip1967.proxy.implementation') - 1)
    bytes32 private constant targetPosition = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
    /// @notice Contract constructor
    /// @dev Calls Ownable contract constructor and initialize target
    /// @param target Initial implementation address
    /// @param targetInitializationParameters Target initialization parameters
    constructor(address target, bytes memory targetInitializationParameters) Ownable(msg.sender) public {
    setTarget(target);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: ZkSync
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.7.0;
    pragma experimental ABIEncoderV2;
    // SPDX-License-Identifier: MIT OR Apache-2.0
    import "./ReentrancyGuard.sol";
    import "./SafeMath.sol";
    import "./SafeMathUInt128.sol";
    import "./SafeCast.sol";
    import "./Utils.sol";
    import "./Storage.sol";
    import "./Config.sol";
    import "./Events.sol";
    import "./Bytes.sol";
    import "./Operations.sol";
    import "./UpgradeableMaster.sol";
    import "./AdditionalZkSync.sol";
    /// @title zkSync main contract
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX