Transaction Hash:
Block:
22551894 at May-24-2025 09:45:59 AM +UTC
Transaction Fee:
0.000707802708397991 ETH
$1.81
Gas Used:
145,511 Gas / 4.864255681 Gwei
Emitted Events:
107 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=425000000000000000 )
|
108 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=425000000000000000 )
|
109 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=425000000000000000 )
|
110 |
Andy.Transfer( from=UniswapV2Pair, to=[Sender] 0x58f42893212f5ccb41dce89791924c4ee86f5b8f, value=14530717663130913801271090 )
|
111 |
UniswapV2Pair.Sync( reserve0=23173558875742755892937267686, reserve1=676180765287395047280 )
|
112 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=425000000000000000, amount0Out=14530717663130913801271090, amount1Out=0, to=[Sender] 0x58f42893212f5ccb41dce89791924c4ee86f5b8f )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.811646584830063199 Eth | 14.812289986360742692 Eth | 0.000643401530679493 | |
0x58f42893...EE86f5b8F |
2.092181069424547456 Eth
Nonce: 242
|
1.666473266716149465 Eth
Nonce: 243
| 0.425707802708397991 | ||
0x68BbEd6A...5597fc91E | |||||
0xa1bF0e90...cb1D1C2c0 | |||||
0xC02aaA39...83C756Cc2 | 2,835,976.720009328229797672 Eth | 2,835,977.145009328229797672 Eth | 0.425 |
Execution Trace
ETH 0.425
UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF5ec/jYqAAA==, AAAAAAAAAAAAAAAAWPQokyEvXMtB3OiXkZJMTuhvW48AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF5ec/jYqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhtFaUuNc+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAABou+1qRxlO/xz1FLUOqRiVWX/JHg==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1748080069 )
- ETH 0.425
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=425000000000000000 ) => ( True )
-
WETH9.transfer( dst=0xa1bF0e900FB272089c9fd299EA14BFccb1D1C2c0, wad=425000000000000000 ) => ( True )
-
Andy.balanceOf( account=0x58f42893212F5Ccb41dcE89791924C4EE86f5b8F ) => ( 27816281385251263836688403 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xa1bF0e900FB272089c9fd299EA14BFccb1D1C2c0 ) => ( 676180765287395047280 )
UniswapV2Pair.swap( amount0Out=14530717663130913801271090, amount1Out=0, to=0x58f42893212F5Ccb41dcE89791924C4EE86f5b8F, data=0x )
-
Andy.transfer( recipient=0x58f42893212F5Ccb41dcE89791924C4EE86f5b8F, amount=14530717663130913801271090 ) => ( True )
-
Andy.balanceOf( account=0xa1bF0e900FB272089c9fd299EA14BFccb1D1C2c0 ) => ( 23173558875742755892937267686 )
-
WETH9.balanceOf( 0xa1bF0e900FB272089c9fd299EA14BFccb1D1C2c0 ) => ( 676180765287395047280 )
-
-
Andy.balanceOf( account=0x58f42893212F5Ccb41dcE89791924C4EE86f5b8F ) => ( 42346999048382177637959493 )
-
WETH9.balanceOf( 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B ) => ( 0 )
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: Andy
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import {Dispatcher} from './base/Dispatcher.sol';import {RewardsCollector} from './base/RewardsCollector.sol';import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';import {Constants} from './libraries/Constants.sol';import {Commands} from './libraries/Commands.sol';import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';import {ReentrancyLock} from './base/ReentrancyLock.sol';contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector, ReentrancyLock {modifier checkDeadline(uint256 deadline) {if (block.timestamp > deadline) revert TransactionDeadlinePassed();_;}constructor(RouterParameters memory params) RouterImmutables(params) {}/// @inheritdoc IUniversalRouter
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: Andy
12345678910111213141516/** SPDX-License-Identifier: MIT* https://boysclubandy.com* https://x.com/andycoinonerc* https://t.me/TheOnlyAndyLeft*/pragma solidity 0.8.19;library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(