ETH Price: $3,004.46 (+1.67%)

Transaction Decoder

Block:
22706655 at Jun-15-2025 01:24:47 AM +UTC
Transaction Fee:
0.000045036633076052 ETH $0.14
Gas Used:
114,787 Gas / 0.392349596 Gwei

Emitted Events:

177 WETH9.Deposit( dst=[Receiver] ZeroEx, wad=199954522815267125 )
178 WETH9.Transfer( src=[Receiver] ZeroEx, dst=UniswapV2Pair, wad=199954522815267125 )
179 FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc, 0x000000000000000000000000455e8a92825408e6593e0db0ad19fa173bd6d28f, 000000000000000000000000000000000000000000000000000000001e224144 )
180 UniswapV2Pair.Sync( reserve0=16060313128213, reserve1=6333156093825423649223 )
181 UniswapV2Pair.Swap( sender=[Receiver] ZeroEx, amount0In=0, amount1In=199954522815267125, amount0Out=505561412, amount1Out=0, to=[Sender] 0x455e8a92825408e6593e0db0ad19fa173bd6d28f )

Account State Difference:

  Address   Before After State Difference Code
0x455E8A92...73bd6D28F
0.299954522815267125 Eth
Nonce: 26
0.099954963366923948 Eth
Nonce: 27
0.199999559448343177
0xA0b86991...E3606eB48
0xB4e16d01...1Ec28C9Dc
0xC02aaA39...83C756Cc2 2,621,839.127130892608143738 Eth2,621,839.327085415423410863 Eth0.199954522815267125
(BuilderNet)
28.070220654391340543 Eth28.070229722564340543 Eth0.000009068173

Execution Trace

ETH 0.199954522815267125 ZeroEx.d9627aa4( )
  • ETH 0.199954522815267125 UniswapFeature.sellToUniswap( tokens=[0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48], sellAmount=199954522815267125, minBuyAmount=505061816, isSushi=False ) => ( buyAmount=505561412 )
    • ETH 0.199954522815267125 WETH9.CALL( )
    • WETH9.transfer( dst=0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc, wad=199954522815267125 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • UniswapV2Pair.swap( amount0Out=505561412, amount1Out=0, to=0x455E8A92825408e6593e0db0AD19fA173bd6D28F, data=0x )
      • FiatTokenProxy.a9059cbb( )
        • FiatTokenV2_2.transfer( to=0x455E8A92825408e6593e0db0AD19fA173bd6D28F, value=505561412 ) => ( True )
        • FiatTokenProxy.70a08231( )
          • FiatTokenV2_2.balanceOf( account=0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc ) => ( 16060313128213 )
          • WETH9.balanceOf( 0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc ) => ( 6333156093825423649223 )
            File 1 of 6: 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

            File 2 of 6: WETH9
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            // Copyright (C) 2015, 2016, 2017 Dapphub
            // This program is free software: you can redistribute it and/or modify
            // it under the terms of the GNU General Public License as published by
            // the Free Software Foundation, either version 3 of the License, or
            // (at your option) any later version.
            // This program is distributed in the hope that it will be useful,
            // but WITHOUT ANY WARRANTY; without even the implied warranty of
            // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
            // GNU General Public License for more details.
            // You should have received a copy of the GNU General Public License
            // along with this program. If not, see <http://www.gnu.org/licenses/>.
            pragma solidity ^0.4.18;
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

            File 3 of 6: UniswapV2Pair
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            // File: contracts/interfaces/IUniswapV2Pair.sol
            pragma solidity >=0.5.0;
            interface IUniswapV2Pair {
            event Approval(address indexed owner, address indexed spender, uint value);
            event Transfer(address indexed from, address indexed to, uint value);
            function name() external pure returns (string memory);
            function symbol() external pure returns (string memory);
            function decimals() external pure returns (uint8);
            function totalSupply() external view returns (uint);
            function balanceOf(address owner) external view returns (uint);
            function allowance(address owner, address spender) external view returns (uint);
            function approve(address spender, uint value) external returns (bool);
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

            File 4 of 6: FiatTokenProxy
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            pragma solidity ^0.4.24;
            // File: zos-lib/contracts/upgradeability/Proxy.sol
            /**
            * @title Proxy
            * @dev Implements delegation of calls to other contracts, with proper
            * forwarding of return values and bubbling of failures.
            * It defines a fallback function that delegates all calls to the address
            * returned by the abstract _implementation() internal function.
            */
            contract Proxy {
            /**
            * @dev Fallback function.
            * Implemented entirely in `_fallback`.
            */
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

            File 5 of 6: UniswapFeature
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            // SPDX-License-Identifier: Apache-2.0
            /*
            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-erc20/contracts/src/v06/IERC20TokenV06.sol";
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

            File 6 of 6: FiatTokenV2_2
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            /**
            * SPDX-License-Identifier: Apache-2.0
            *
            * Copyright (c) 2023, Circle Internet Financial, LLC.
            *
            * 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.
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX