ETH Price: $3,019.92 (+0.90%)

Transaction Decoder

Block:
16910001 at Mar-26-2023 07:04:59 AM +UTC
Transaction Fee:
0.00201059947037508 ETH $6.07
Gas Used:
118,722 Gas / 16.93535714 Gwei

Emitted Events:

32 DiamondProxy.0x4531cd5795773d7101c17bdeb9f5ab7f47d7056017506f937083be5d6e77a382( 0x4531cd5795773d7101c17bdeb9f5ab7f47d7056017506f937083be5d6e77a382, 000000000000000000000000000000000000000000000000000000000001287e, 48dc946ff132f8ff1c3282985612a86d37f03f6f8238086877cb77bc901eb333, 00000000000000000000000000000000000000000000000000000000641fee9b, 00000000000000000000000000000000000000000000000000000000000000a0, 00000000000000000000000000000000000000000000000000000000000003a0, 00000000000000000000000000000000000000000000000000000000000000ff, 000000000000000000000000cd15d325d02fc783014e2909d0b177e11fa98726, 000000000000000000000000cd15d325d02fc783014e2909d0b177e11fa98726, 00000000000000000000000000000000000000000000000000000000000b31e0, 0000000000000000000000000000000000000000000000000000000000000320, 000000000000000000000000000000000000000000000000000000001dcd6500, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000000000000000000000000000000000000001287e, 000000000000000000000000000000000000000000000000002386f26fc10000, 0000000000000000000000000000000000000000000000000024d4942ace6000, 000000000000000000000000cd15d325d02fc783014e2909d0b177e11fa98726, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000260, 0000000000000000000000000000000000000000000000000000000000000280, 00000000000000000000000000000000000000000000000000000000000002a0, 00000000000000000000000000000000000000000000000000000000000002c0, 00000000000000000000000000000000000000000000000000000000000002e0, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x32400084...60a000324
(zkSync Era: Diamond Proxy)
11,753.627494594958875356 Eth11,753.637861426958875356 Eth0.010366832
0xcD15d325...11FA98726
0.13039961 Eth
Nonce: 0
0.11802217852962492 Eth
Nonce: 1
0.01237743147037508
(Fee Recipient: 0xdC5...BF0)
0.42642780456522622 Eth0.42660588756522622 Eth0.000178083

Execution Trace

ETH 0.010366832 DiamondProxy.eb672419( )
  • ETH 0.010366832 MailboxFacet.requestL2Transaction( _contractL2=0xcD15d325d02Fc783014e2909D0b177E11FA98726, _l2Value=10000000000000000, _calldata=0x, _l2GasLimit=733664, _l2GasPerPubdataByteLimit=800, _factoryDeps=[], _refundRecipient=0xcD15d325d02Fc783014e2909D0b177E11FA98726 ) => ( canonicalTxHash=48DC946FF132F8FF1C3282985612A86D37F03F6F8238086877CB77BC901EB333 )
    • AllowList.canCall( _caller=0xcD15d325d02Fc783014e2909D0b177E11FA98726, _target=0x32400084C286CF3E17e7B677ea9583e60a000324, _functionSig=System.Byte[] ) => ( True )
    • AllowList.getTokenDepositLimitData( _l1Token=0x0000000000000000000000000000000000000000 ) => ( [{name:depositLimitation, type:bool, order:1, indexed:false, value:false, valueString:False}, {name:depositCap, type:uint256, order:2, indexed:false, value:0, valueString:0}] )
      File 1 of 3: DiamondProxy
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol)
      // This file was procedurally generated from scripts/generate/templates/SafeCast.js.
      pragma solidity ^0.8.0;
      /**
      * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
      * checks.
      *
      * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
      * easily result in undesired exploitation or bugs, since developers usually
      * assume that overflows raise errors. `SafeCast` restores this intuition by
      * reverting the transaction when such an operation overflows.
      *
      * Using this library instead of the unchecked operations eliminates an entire
      * class of bugs, so it's recommended to use it always.
      *
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 3: MailboxFacet
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
      pragma solidity ^0.8.0;
      /**
      * @dev Standard math utilities missing in the Solidity language.
      */
      library Math {
      enum Rounding {
      Down, // Toward negative infinity
      Up, // Toward infinity
      Zero // Toward zero
      }
      /**
      * @dev Returns the largest of two numbers.
      */
      function max(uint256 a, uint256 b) internal pure returns (uint256) {
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 3: AllowList
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
      pragma solidity ^0.8.0;
      import "../utils/Context.sol";
      /**
      * @dev Contract module which provides a basic access control mechanism, where
      * there is an account (an owner) that can be granted exclusive access to
      * specific functions.
      *
      * By default, the owner account will be the one that deploys the contract. This
      * can later be changed with {transferOwnership}.
      *
      * This module is used through inheritance. It will make available the modifier
      * `onlyOwner`, which can be applied to your functions to restrict their use to
      * the owner.
      */
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX