Transaction Hash:
Block:
21473630 at Dec-24-2024 04:50:47 PM +UTC
Transaction Fee:
0.001134265486855464 ETH
$2.30
Gas Used:
105,879 Gas / 10.712846616 Gwei
Emitted Events:
464 |
WBTC.Transfer( from=UniswapV3Pool, to=[Receiver] 0xa69babef1ca67a37ffaf7a485dfff3382056e78c, value=41212667 )
|
465 |
WETH9.Transfer( src=[Receiver] 0xa69babef1ca67a37ffaf7a485dfff3382056e78c, dst=UniswapV3Pool, wad=11605942426310234491 )
|
466 |
UniswapV3Pool.Swap( sender=[Receiver] 0xa69babef1ca67a37ffaf7a485dfff3382056e78c, recipient=[Receiver] 0xa69babef1ca67a37ffaf7a485dfff3382056e78c, amount0=-41212667, amount1=11605942426310234491, sqrtPriceX96=41985986531381882407482819462473427, liquidity=90566999006210015, tick=263623 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2260FAC5...93bc2C599 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 6.824161784128903908 Eth | 6.824267663129009787 Eth | 0.000105879000105879 | |
0xA69babEF...82056e78C | (MEV Bot: 0xA69...78C) | 224.359585576556872812 Eth | 224.359585576568962164 Eth | 0.000000000012089352 | |
0xC02aaA39...83C756Cc2 | |||||
0xCBCdF962...B4bad62eD | (Uniswap V3: WBTC) | ||||
0xFF82BF52...9F5Ebe331 |
5.752051152157517298 Eth
Nonce: 228293
|
5.750916886658572482 Eth
Nonce: 228294
| 0.001134265498944816 |
Execution Trace
ETH 0.000000000012089352
MEV Bot: 0xA69...78C.78e111f6( )
ETH 0.000000000012089352
0xac114d52cc33ddb1ce7102b0367974ab5e9be82b.2f1c6b50( )
UniswapV3Pool.swap( recipient=0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C, zeroForOne=False, amountSpecified=11605942426310234491, sqrtPriceLimitX96=41985986643256620389117126625335799, data=0xB4DD6F5D729BBA20DE462C8F8999DC56E24BCDA0735B09DD34F3939EAEC37999000000000000000000000000A69BABEF1CA67A37FFAF7A485DFFF3382056E78C000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 ) => ( amount0=-41212667, amount1=11605942426310234491 )
-
WBTC.transfer( _to=0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C, _value=41212667 ) => ( True )
-
WETH9.balanceOf( 0xCBCdF9626bC03E24f779434178A73a0B4bad62eD ) => ( 39004425043490769420968 )
MEV Bot: 0xA69...78C.fa461e33( )
-
WETH9.transfer( dst=0xCBCdF9626bC03E24f779434178A73a0B4bad62eD, wad=11605942426310234491 ) => ( True )
-
-
WETH9.balanceOf( 0xCBCdF9626bC03E24f779434178A73a0B4bad62eD ) => ( 39016030985917079655459 )
-
File 1 of 3: UniswapV3Pool
File 2 of 3: WBTC
File 3 of 3: WETH9
12345678910111213141516// SPDX-License-Identifier: BUSL-1.1pragma solidity =0.7.6;import './interfaces/IUniswapV3Pool.sol';import './NoDelegateCall.sol';import './libraries/LowGasSafeMath.sol';import './libraries/SafeCast.sol';import './libraries/Tick.sol';import './libraries/TickBitmap.sol';import './libraries/Position.sol';import './libraries/Oracle.sol';import './libraries/FullMath.sol';import './libraries/FixedPoint128.sol';import './libraries/TransferHelper.sol';import './libraries/TickMath.sol';import './libraries/LiquidityMath.sol';import './libraries/SqrtPriceMath.sol';
File 2 of 3: WBTC
12345678910111213141516pragma solidity 0.4.24;// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol/*** @title ERC20Basic* @dev Simpler version of ERC20 interface* See https://github.com/ethereum/EIPs/issues/179*/contract ERC20Basic {function totalSupply() public view returns (uint256);function balanceOf(address _who) public view returns (uint256);function transfer(address _to, uint256 _value) public returns (bool);event Transfer(address indexed from, address indexed to, uint256 value);}
File 3 of 3: 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;