Transaction Hash:
Block:
17809496 at Jul-31-2023 12:45:11 AM +UTC
Transaction Fee:
0.002572514559282128 ETH
$9.57
Gas Used:
173,603 Gas / 14.818376176 Gwei
Emitted Events:
324 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=50000000000000000 )
|
325 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=50000000000000000 )
|
326 |
LARRYX.Transfer( from=UniswapV2Pair, to=LARRYX, value=6842483573177633971429875662 )
|
327 |
LARRYX.Transfer( from=UniswapV2Pair, to=[Sender] 0x29e1490c092720ee146ed95554b7b840bb19a063, value=677405873744585763171557690553 )
|
328 |
UniswapV2Pair.Sync( reserve0=72911356130765748932372117515837, reserve1=5361859450224091777 )
|
329 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=50000000000000000, amount0Out=684248357317763397142987566215, amount1Out=0, to=[Sender] 0x29e1490c092720ee146ed95554b7b840bb19a063 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x105f71aD...18Ce21B4B | |||||
0x29E1490c...0BB19A063 |
0.505404487825895058 Eth
Nonce: 125
|
0.45283197326661293 Eth
Nonce: 126
| 0.052572514559282128 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.020185434389614108 Eth | 6.020202794689614108 Eth | 0.0000173603 | |
0xC02aaA39...83C756Cc2 | 3,401,972.029408847412353902 Eth | 3,401,972.079408847412353902 Eth | 0.05 | ||
0xc17EAe33...d98203844 |
Execution Trace
ETH 0.05
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsaK8LsUAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsaK8LsUAAAAAAAAAAAAAAAAAAAAAAAAAAAAIit6/xU2yNgVdP9VxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAAQX3GtiiTjvpjIuE4Q0r2BjOIbSw==], deadline=1690766051 )
- ETH 0.05
WETH9.CALL( )
-
WETH9.transfer( dst=0xc17EAe33F1bE2a7da3684954Cd9B8A7d98203844, wad=50000000000000000 ) => ( True )
-
LARRYX.balanceOf( account=0x29E1490c092720EE146Ed95554b7B840BB19A063 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xc17EAe33F1bE2a7da3684954Cd9B8A7d98203844 ) => ( 5361859450224091777 )
UniswapV2Pair.swap( amount0Out=684248357317763397142987566215, amount1Out=0, to=0x29E1490c092720EE146Ed95554b7B840BB19A063, data=0x )
-
LARRYX.transfer( recipient=0x29E1490c092720EE146Ed95554b7B840BB19A063, amount=684248357317763397142987566215 ) => ( True )
-
LARRYX.balanceOf( account=0xc17EAe33F1bE2a7da3684954Cd9B8A7d98203844 ) => ( 72911356130765748932372117515837 )
-
WETH9.balanceOf( 0xc17EAe33F1bE2a7da3684954Cd9B8A7d98203844 ) => ( 5361859450224091777 )
-
-
LARRYX.balanceOf( account=0x29E1490c092720EE146Ed95554b7B840BB19A063 ) => ( 677405873744585763171557690553 )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: LARRYX
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;// Command implementationsimport {Dispatcher} from './base/Dispatcher.sol';import {RewardsCollector} from './base/RewardsCollector.sol';import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';import {Commands} from './libraries/Commands.sol';import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector {modifier checkDeadline(uint256 deadline) {if (block.timestamp > deadline) revert TransactionDeadlinePassed();_;}constructor(RouterParameters memory params) RouterImmutables(params) {}/// @inheritdoc IUniversalRouterfunction execute(bytes calldata commands, bytes[] calldata inputs, uint256 deadline)
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: LARRYX
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.8.20;interface ERC20 {function totalSupply() external view returns (uint256);function decimals() external view returns (uint8);function symbol() external view returns (string memory);function name() external view returns (string memory);function getOwner() external view returns (address);function balanceOf(address account) external view returns (uint256);