ETH Price: $3,649.80 (+1.59%)

Transaction Decoder

Block:
22698095 at Jun-13-2025 08:42:11 PM +UTC
Transaction Fee:
0.0002814642 ETH $1.03
Gas Used:
104,246 Gas / 2.7 Gwei

Emitted Events:

177 WETH9.Deposit( dst=[Receiver] ZeroEx, wad=500000000000000000 )
178 WETH9.Transfer( src=[Receiver] ZeroEx, dst=UniswapV2Pair, wad=500000000000000000 )
179 Landwolf.Transfer( from=UniswapV2Pair, to=[Sender] 0x3004892cf2946356e8e4570a94748afdff86681c, value=28268256650817383993377487 )
180 UniswapV2Pair.Sync( reserve0=25009015743033816291068131409, reserve1=441524520963583052688 )
181 UniswapV2Pair.Swap( sender=[Receiver] ZeroEx, amount0In=0, amount1In=500000000000000000, amount0Out=28268256650817383993377487, amount1Out=0, to=[Sender] 0x3004892cf2946356e8e4570a94748afdff86681c )

Account State Difference:

  Address   Before After State Difference Code
0x3004892C...DFF86681C
19.353939331988209894 Eth
Nonce: 19598
18.853657867788209894 Eth
Nonce: 19599
0.5002814642
(Titan Builder)
11.933249630221675916 Eth11.933458497825434708 Eth0.000208867603758792
0x67324985...96F2F18C2
0x67466BE1...652bD7E69
0xC02aaA39...83C756Cc2 2,633,568.62114444835967423 Eth2,633,569.12114444835967423 Eth0.5

Execution Trace

ETH 0.5 ZeroEx.d9627aa4( )
  • ETH 0.5 UniswapFeature.sellToUniswap( tokens=[0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, 0x67466BE17df832165F8C80a5A120CCc652bD7E69], sellAmount=500000000000000000, minBuyAmount=27420208951292858600000000, isSushi=False ) => ( buyAmount=28268256650817383993377487 )
    • ETH 0.5 WETH9.CALL( )
    • WETH9.transfer( dst=0x67324985B5014B36B960273353DEb3D96F2F18C2, wad=500000000000000000 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • UniswapV2Pair.swap( amount0Out=28268256650817383993377487, amount1Out=0, to=0x3004892CF2946356e8e4570a94748afDFF86681C, data=0x )
      • Landwolf.transfer( to=0x3004892CF2946356e8e4570a94748afDFF86681C, value=28268256650817383993377487 ) => ( True )
      • Landwolf.balanceOf( account=0x67324985B5014B36B960273353DEb3D96F2F18C2 ) => ( 25009015743033816291068131409 )
      • WETH9.balanceOf( 0x67324985B5014B36B960273353DEb3D96F2F18C2 ) => ( 441524520963583052688 )
        File 1 of 5: 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 5: 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 5: 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 5: Landwolf
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        // Compatible with OpenZeppelin Contracts ^5.0.0
        // This is Landwolf 0x67
        // https://boysclubwolf.com/
        // 0x67466be17df832165f8c80a5a120ccc652bd7e69
        // File: @openzeppelin/contracts/utils/Nonces.sol
        // OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)
        pragma solidity ^0.8.20;
        /**
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 5 of 5: 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