Transaction Hash:
Block:
20497418 at Aug-10-2024 09:49:11 AM +UTC
Transaction Fee:
0.00076100921854045 ETH
$2.90
Gas Used:
197,350 Gas / 3.856139947 Gwei
Emitted Events:
277 |
WETH9.Deposit( dst=[Receiver] TransparentUpgradeableProxy, wad=37681139804397321 )
|
278 |
WETH9.Transfer( src=[Receiver] TransparentUpgradeableProxy, dst=UniswapV2Pair, wad=37681139804397321 )
|
279 |
Milan.Transfer( from=UniswapV2Pair, to=[Sender] 0x5d2fcf5de2f9e78849b803045bbaf4c7482fe1ec, value=137164157184431920 )
|
280 |
UniswapV2Pair.Sync( reserve0=36216255391993131724, reserve1=9957005555148262189 )
|
281 |
UniswapV2Pair.Swap( sender=[Receiver] TransparentUpgradeableProxy, amount0In=0, amount1In=37681139804397321, amount0Out=137164157184431920, amount1Out=0, to=[Sender] 0x5d2fcf5de2f9e78849b803045bbaf4c7482fe1ec )
|
282 |
TransparentUpgradeableProxy.0x20efd6d5195b7b50273f01cd79a27989255356f9f13293edc53ee142accfdb75( 0x20efd6d5195b7b50273f01cd79a27989255356f9f13293edc53ee142accfdb75, 0000000000000000000000005d2fcf5de2f9e78849b803045bbaf4c7482fe1ec, 000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, 000000000000000000000000881f14babd5210c35821cd9ac8330d9344ff2d81, 0000000000000000000000005d2fcf5de2f9e78849b803045bbaf4c7482fe1ec, 000000000000000000000000000000000000000000000000008645eb34318a33, 00000000000000000000000000000000000000000000000001e74e1300e4d730 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.485471894095669891 Eth | 9.485810384821700591 Eth | 0.0003384907260307 | |
0x58ee24e7...b79E17974 | |||||
0x5d2fcf5d...7482fE1eC |
0.085589046749041767 Eth
Nonce: 17
|
0.047033514155980434 Eth
Nonce: 18
| 0.038555532593061333 | ||
0x69AAAFF7...f66d446D2 | 0.323133276210148135 Eth | 0.323246659780271697 Eth | 0.000113383570123562 | ||
0x881f14Ba...344fF2D81 | |||||
0xC02aaA39...83C756Cc2 | 2,843,408.238604222278247665 Eth | 2,843,408.276285362082644986 Eth | 0.037681139804397321 |
Execution Trace
ETH 0.037794523374520883
TransparentUpgradeableProxy.0938b20b( )
ETH 0.037794523374520883
0x58c746b5f23213a98c1bbb9ea6a9932b544342bd.0938b20b( )
0xdcf63a49f5938fd3b673271015ecf1aa3a2ef154.9cb2dade( )
UniswapV2Router02.getAmountsOut( amountIn=37681139804397320, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x881f14BaBD5210c35821cD9AC8330D9344fF2D81] ) => ( amounts=[37681139804397320, 137164157184431917] )
-
UniswapV2Pair.STATICCALL( )
-
- ETH 0.000113383570123562
0x69aaaff7419fd2ce58079f05ff06b2ff66d446d2.CALL( )
- ETH 0.037681139804397321
WETH9.CALL( )
-
WETH9.transfer( dst=0x58ee24e700C31b617edcc73Fbe80914b79E17974, wad=37681139804397321 ) => ( True )
-
Milan.balanceOf( account=0x5d2fcf5dE2f9e78849B803045Bbaf4c7482fE1eC ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x58ee24e700C31b617edcc73Fbe80914b79E17974 ) => ( 9957005555148262189 )
UniswapV2Router02.getAmountsOut( amountIn=37681139804397321, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x881f14BaBD5210c35821cD9AC8330D9344fF2D81] ) => ( amounts=[37681139804397321, 137164157184431920] )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.swap( amount0Out=137164157184431920, amount1Out=0, to=0x5d2fcf5dE2f9e78849B803045Bbaf4c7482fE1eC, data=0x )
-
Milan.balanceOf( account=0x5d2fcf5dE2f9e78849B803045Bbaf4c7482fE1eC ) => ( 137164157184431920 )
File 1 of 5: TransparentUpgradeableProxy
File 2 of 5: WETH9
File 3 of 5: UniswapV2Pair
File 4 of 5: Milan
File 5 of 5: UniswapV2Router02
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";import "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";// Kept for backwards compatibility with older versions of Hardhat and Truffle plugins.contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy {constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {}}// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IBeacon.sol";import "../Proxy.sol";import "../ERC1967/ERC1967Upgrade.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: Milan
12345678910111213141516/*The official Binance Doghttps://t.me/Milan_ethhttps://x.com/binance/status/1822181161247944922https://x.com/JesuslVivas/status/1821237478743064763*/// SPDX-License-Identifier: MIT
File 5 of 5: UniswapV2Router02
12345678910111213141516pragma solidity =0.6.6;interface IUniswapV2Factory {event PairCreated(address indexed token0, address indexed token1, address pair, uint);function feeTo() external view returns (address);function feeToSetter() external view returns (address);function getPair(address tokenA, address tokenB) external view returns (address pair);function allPairs(uint) external view returns (address pair);function allPairsLength() external view returns (uint);function createPair(address tokenA, address tokenB) external returns (address pair);function setFeeTo(address) external;function setFeeToSetter(address) external;