Transaction Hash:
Block:
18057848 at Sep-03-2023 06:47:35 PM +UTC
Transaction Fee:
0.00315844405079722 ETH
$8.81
Gas Used:
170,278 Gas / 18.54874999 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x8332a3DD...5fBf6E3BE |
0.063099427173253607 Eth
Nonce: 246
|
0.059940983122456387 Eth
Nonce: 247
| 0.00315844405079722 | ||
0xBaF6dC2E...Cd66C5e19
Miner
| (MEV Builder: 0xBaF...e19) | 5.464331299714822238 Eth | 5.464362934659802038 Eth | 0.0000316349449798 |
Execution Trace
AggregationRouterV5.unoswap( srcToken=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, amount=800000000000000000, minReturn=16280027957463102273, pools=[1457117133228134747485535477636889153918729358852388102602] ) => ( returnAmount=4079741999 )
-
WETH9.transferFrom( src=0x8332a3DDFecD5c1CB25869C78f837A45fBf6E3BE, dst=0x8DbEE21E8586eE356130074aaa789C33159921Ca, wad=800000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
UniswapV2Pair.swap( amount0Out=0, amount1Out=16256138835227708172, to=0x8332a3DDFecD5c1CB25869C78f837A45fBf6E3BE, data=0x )
-
UnibotV2.transfer( recipient=0x8332a3DDFecD5c1CB25869C78f837A45fBf6E3BE, amount=16256138835227708172 ) => ( True )
-
WETH9.balanceOf( 0x8DbEE21E8586eE356130074aaa789C33159921Ca ) => ( 1577310001948764445935 )
-
UnibotV2.balanceOf( account=0x8DbEE21E8586eE356130074aaa789C33159921Ca ) => ( 32131350886163765798770 )
-
unoswap[UnoswapRouter (ln:1130)]
_unoswap[UnoswapRouter (ln:1136)]
ReturnAmountIsNotEnough[UnoswapRouter (ln:1293)]
payable[UnoswapRouter (ln:1136)]
File 1 of 4: AggregationRouterV5
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: UnibotV2
12345678910111213141516/*,▄▓▓██▌ ,╓▄▄▓▓▓▓▓▓▓▓▄▄▄,,,▓██▓███▓▄▓███▓╬╬╬╬╬╬╬╬╬╬╬╬╬▓███▓▄,▄█ ▓██╬╣███████╬▓▀╬╬▓▓▓████████████▓█████▄,▓██▌ ▓██╬╣██████╬▓▌ ██████████████████████▌╙╙▀ⁿ▐████████╬▓████▓▓█╨ ▄ ╟█████████▓▓╬╬╬╬╬▓▓█████▓▄└▀▓▓▄╓ ╟█▓╣█████▓██████▀ ╓█▌ ███████▓▓▓▓▓╬╬╬╬╬╬╬╬╬╬╬╬▓██▓▄└▀████▓▄╥ ▐██╬╬██████████╙ Æ▀─ ▓███▀╚╠╬╩▀▀███████▓▓╬╬╬╬╬╬╬╬╬██▄└▀██▓▀▀█████▓╬▓██████▀ ▄█████▒╠" └╙▓██████▓╬╬╬╬╬╬╬╬██▄└▀██▄,└╙▀▀████▌└╙ ^"▀╙╙╙"╙██ @▄ ╙▀███████╬╬╬╬╬╬╬██µ└▀██▓▄, ██▌ ╒ ╙█▓ ]▓█▓╔ ▀███████▓╬╬╬╬╬▓█▌▀█████ ▓ ╟█▌ ]╠██▓░▒╓ ▀████████╬╬╬╬╣█▌▐████ ╓█▀█▌ ,██▌ ╚Å███▓▒▒╠╓ ╙█████████╬╬╬╣█▌└████ ▓█░░▓█ ▀▀▀ φ▒╫████▒▒▒▒╠╓ █████████▓╬╬▓█µ╘███µ ▌▄█▓▄▓▀` ,▀ ,╔╠░▓██████▌╠▒▒▒φ ██████████╬╬██▐████µ╙▓▀` ,▀╙,╔╔φφφ╠░▄▓███████▌░▓╙▒▒▒╠ └██╬███████╬▓█⌐
File 2 of 4: 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 4: 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 4: UnibotV2
12345678910111213141516/**UnibotExperience seamless and lightning-fast trading with our free-to-use Telegram bot.Website: unibot.appTwitter: twitter.com/TeamUnibotTelegram: t.me/unibotportalTelegram Bot: t.me/unibotsniper_botTutorials: learn.unibot.app/Youtube: youtube.com/playlist?list=PLW2nrgz37AeihOPYSDUIFqd4Z6tRvTz74**/// SPDX-License-Identifier: MITpragma solidity 0.8.20;pragma experimental ABIEncoderV2;/*** @dev Provides information about the current execution context, including the