ETH Price: $3,695.74 (+1.53%)

Transaction Decoder

Block:
22236139 at Apr-10-2025 04:29:23 AM +UTC
Transaction Fee:
0.000040178792865321 ETH $0.15
Gas Used:
59,499 Gas / 0.675285179 Gwei

Account State Difference:

  Address   Before After State Difference Code
3.552352727944089872 Eth3.552366108896785631 Eth0.000013380952695759
0xe52aadF0...85837058e
0.05705313896990019 Eth
Nonce: 9
0.057012960177034869 Eth
Nonce: 10
0.000040178792865321

Execution Trace

ETH 0.037899144784052537 ZeroExProxy.proxiedSwap( msgData=0x2213BC0B0000000000000000000000000D0E364AA7852291883C162B22D6D81F6355428F00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084A0090A365EA50000000000000000000000000D0E364AA7852291883C162B22D6D81F6355428F00000000000000000000000000000000000000000000000000000000000000A000000000000000000000000000000000000000000000000000000000000004641FFF991F00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0393B1914B0D753CA893F1465205735000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002A000000000000000000000000000000000000000000000000000000000000000C438C9C147000000000000000000000000EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE000000000000000000000000000000000000000000000000000000000000000A000000000000000000000000AD01C20D5886137E056775AF56915DE824C8FCE5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438C9C147000000000000000000000000EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000A00000000000000000000000000000000000000000000000000000000000000024D0E30DB00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C4103B48BE000000000000000000000000E52AADF05671D6B342530852038DEB485837058E000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC200000000000000000000000000000000000000000000000000000000000027100000000000000000000000009081B50BAD8BEEFAC48CC616694C26B027C559BB0000000000000000000000000000000000000000000000000000000000001E000000000000000000000000000000000000000000000000015E0E6E992CD920A00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, feeToken=0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, inputToken=0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, inputAmount=37330657612291749, outputToken=0x4c11249814f11b9346808179Cf06e71ac328c1b5, fee=568487171760788 )
  • ETH 0.000568487171760788 Coinbase: Fees.CALL( )
  • ETH 0.037330657612291749 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