Transaction Hash:
Block:
22708603 at Jun-15-2025 07:58:23 AM +UTC
Transaction Fee:
0.000150495778625918 ETH
$0.47
Gas Used:
163,714 Gas / 0.919260287 Gwei
Emitted Events:
114 |
WETH9.Deposit( dst=[Receiver] ZeroEx, wad=100000000000000000 )
|
115 |
WETH9.Transfer( src=[Receiver] ZeroEx, dst=UniswapV2Pair, wad=100000000000000000 )
|
116 |
LogicAI.Transfer( from=UniswapV2Pair, to=LogicAI, value=16246226575469 )
|
117 |
LogicAI.Transfer( from=UniswapV2Pair, to=[Sender] 0xfc3733587e4066d664963c90ca3baf76ff05fe46, value=308678304933911 )
|
118 |
UniswapV2Pair.Sync( reserve0=5615766776254620443, reserve1=17976007379032491 )
|
119 |
UniswapV2Pair.Swap( sender=[Receiver] ZeroEx, amount0In=100000000000000000, amount1In=0, amount0Out=0, amount1Out=324924531509380, to=[Sender] 0xfc3733587e4066d664963c90ca3baf76ff05fe46 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x322Ff0D4...d701b4B27 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 28.262711496305397576 Eth | 28.262793353305397576 Eth | 0.000081857 | |
0xC02aaA39...83C756Cc2 | 2,621,467.628238553210482823 Eth | 2,621,467.728238553210482823 Eth | 0.1 | ||
0xE0e9d2a4...347bDAFD7 | |||||
0xFC373358...6ff05fE46 |
0.137369060717496303 Eth
Nonce: 877
|
0.037218564938870385 Eth
Nonce: 878
| 0.100150495778625918 |
Execution Trace
ETH 0.1
ZeroEx.d9627aa4( )
ETH 0.1
UniswapFeature.sellToUniswap( tokens=[0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, 0xE0e9d2a43fDceAEC27DF8B1f276b157347bDAFD7], sellAmount=100000000000000000, minBuyAmount=308678304933911, isSushi=False ) => ( buyAmount=324924531509380 )
sellToUniswap[UniswapFeature (ln:98)]
File 1 of 5: ZeroEx
File 2 of 5: WETH9
File 3 of 5: UniswapV2Pair
File 4 of 5: LogicAI
File 5 of 5: UniswapFeature
12345678910111213141516/*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 athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.*/pragma solidity ^0.6.5;pragma experimental ABIEncoderV2;import "@0x/contracts-utils/contracts/src/v06/LibBytesV06.sol";import "./migrations/LibBootstrap.sol";
File 2 of 5: WETH9
12345678910111213141516// 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;
File 3 of 5: UniswapV2Pair
12345678910111213141516// File: contracts/interfaces/IUniswapV2Pair.solpragma 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);
File 4 of 5: LogicAI
12345678910111213141516/**Website: https://logicai.technology/Telegram: https://t.me/LogicAIETHTwitter: https://x.com/logicaiofficial**///SPDX-License-Identifier: UNLICENSEpragma solidity 0.8.29;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}interface IERC20 {
File 5 of 5: UniswapFeature
12345678910111213141516// 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 athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.*/pragma solidity ^0.6.5;pragma experimental ABIEncoderV2;import "@0x/contracts-erc20/contracts/src/v06/IERC20TokenV06.sol";