ETH Price: $3,548.57 (+3.04%)

Transaction Decoder

Block:
22253726 at Apr-12-2025 03:17:35 PM +UTC
Transaction Fee:
0.00012161894121975 ETH $0.43
Gas Used:
59,475 Gas / 2.04487501 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
31.251560669120938962 Eth31.251601903802358387 Eth0.000041234681419425
0xe52aadF0...85837058e
0.082089532990337251 Eth
Nonce: 12
0.081967914049117501 Eth
Nonce: 13
0.00012161894121975

Execution Trace

ETH 0.024118106366878605 ZeroExProxy.proxiedSwap( msgData=0x2213BC0B0000000000000000000000000D0E364AA7852291883C162B22D6D81F6355428F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000546642B7368D420000000000000000000000000D0E364AA7852291883C162B22D6D81F6355428F00000000000000000000000000000000000000000000000000000000000000A000000000000000000000000000000000000000000000000000000000000004641FFF991F00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0F77060E7A6CC74B01C82CB00205735000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002A000000000000000000000000000000000000000000000000000000000000000C438C9C147000000000000000000000000EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE000000000000000000000000000000000000000000000000000000000000000A000000000000000000000000AD01C20D5886137E056775AF56915DE824C8FCE5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438C9C147000000000000000000000000EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000A00000000000000000000000000000000000000000000000000000000000000024D0E30DB00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C4103B48BE000000000000000000000000E52AADF05671D6B342530852038DEB485837058E000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC200000000000000000000000000000000000000000000000000000000000027100000000000000000000000009081B50BAD8BEEFAC48CC616694C26B027C559BB0000000000000000000000000000000000000000000000000000000000001E00000000000000000000000000000000000000000000000000CA36909F57BBB2040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, feeToken=0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, inputToken=0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, inputAmount=23756334771375426, outputToken=0x4c11249814f11b9346808179Cf06e71ac328c1b5, fee=361771595503179 )
  • ETH 0.000361771595503179 Coinbase: Fees.CALL( )
  • ETH 0.023756334771375426 ZeroEx.2213bc0b( )
    File 1 of 2: ZeroExProxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: GPL-3.0
    pragma solidity 0.6.12;
    interface IZeroEx {
    function getFunctionImplementation(bytes4 _signature) external returns (address);
    }// SPDX-License-Identifier: GPL-3.0
    pragma solidity 0.6.12;
    pragma experimental ABIEncoderV2;
    import "./IZeroEx.sol";
    import "@0x/contracts-utils/contracts/src/v06/LibBytesV06.sol";
    import "@0x/contracts-zero-ex/contracts/src/errors/LibProxyRichErrors.sol";
    import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
    import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    /// @title Coinbase proxy contract for 0x proxy
    /// @dev A generic proxy contract which extracts a fee before delegation
    contract ZeroExProxy is Ownable {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: ZeroEx
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    /*
    Copyright 2020 ZeroEx Intl.
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    pragma solidity ^0.6.5;
    pragma experimental ABIEncoderV2;
    import "@0x/contracts-utils/contracts/src/v06/LibBytesV06.sol";
    import "./migrations/LibBootstrap.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX