Transaction Hash:
Block:
18997653 at Jan-13-2024 11:24:35 AM +UTC
Transaction Fee:
0.00213423702556433 ETH
$9.22
Gas Used:
148,090 Gas / 14.411756537 Gwei
Emitted Events:
143 |
TROLLFACE.Transfer( from=[Sender] 0xc4fb550fa8f2a6e5178711e56d5b48dedf897e5e, to=UniswapV2Pair, value=33927865093343807021252598803 )
|
144 |
TROLLFACE.Approval( owner=[Sender] 0xc4fb550fa8f2a6e5178711e56d5b48dedf897e5e, spender=Permit2, value=0 )
|
145 |
WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniversalRouter, wad=277298085673516683 )
|
146 |
UniswapV2Pair.Sync( reserve0=191117877449329153210, reserve1=23347355661163375792220919090654 )
|
147 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=33927865093343807021252598803, amount0Out=277298085673516683, amount1Out=0, to=[Receiver] UniversalRouter )
|
148 |
WETH9.Withdrawal( src=[Receiver] UniversalRouter, wad=277298085673516683 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 217.099065427612562758 Eth | 217.099080236612562758 Eth | 0.000014809 | |
0xB7426bFd...56FfCC286 | |||||
0xC02aaA39...83C756Cc2 | 3,272,139.138228400386938518 Eth | 3,272,138.860930314713421835 Eth | 0.277298085673516683 | ||
0xc4fb550F...EdF897e5e |
0.015943919902954952 Eth
Nonce: 1513
|
0.291107768550907305 Eth
Nonce: 1514
| 0.275163848647952353 | ||
0xf8ebf484...A6CB2eB3A |
Execution Trace
UniversalRouter.execute( commands=0x080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAG2geOQZlJPW/f/cEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPMW6e3ij2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAA+Ov0hJ8fpPrw3/IQahc9Omyy6zoAAAAAAAAAAAAAAADAKqo5siP+jQoOXE8n6tkIPHVswg==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADzFunt4o9jA==], deadline=1705145639 )
Permit2.transferFrom( from=0xc4fb550FA8F2A6e5178711e56D5b48DEdF897e5e, to=0xB7426bFd2abF64428fA82A71b0D44B056FfCC286, amount=33927865093343807021252598803, token=0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A )
-
TROLLFACE.transferFrom( sender=0xc4fb550FA8F2A6e5178711e56D5b48DEdF897e5e, recipient=0xB7426bFd2abF64428fA82A71b0D44B056FfCC286, amount=33927865093343807021252598803 ) => ( True )
-
-
WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
TROLLFACE.balanceOf( account=0xB7426bFd2abF64428fA82A71b0D44B056FfCC286 ) => ( 23347355661163375792220919090654 )
UniswapV2Pair.swap( amount0Out=277298085673516683, amount1Out=0, to=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, data=0x )
-
WETH9.transfer( dst=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, wad=277298085673516683 ) => ( True )
-
WETH9.balanceOf( 0xB7426bFd2abF64428fA82A71b0D44B056FfCC286 ) => ( 191117877449329153210 )
-
TROLLFACE.balanceOf( account=0xB7426bFd2abF64428fA82A71b0D44B056FfCC286 ) => ( 23347355661163375792220919090654 )
-
-
WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 277298085673516683 )
-
WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 277298085673516683 )
WETH9.withdraw( wad=277298085673516683 )
- ETH 0.277298085673516683
UniversalRouter.CALL( )
- ETH 0.277298085673516683
- ETH 0.277298085673516683
0xc4fb550fa8f2a6e5178711e56d5b48dedf897e5e.CALL( )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 5: UniversalRouter
File 2 of 5: UniswapV2Pair
File 3 of 5: TROLLFACE
File 4 of 5: WETH9
File 5 of 5: Permit2
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 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 3 of 5: TROLLFACE
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity =0.8.16;pragma experimental ABIEncoderV2;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}abstract contract Ownable is Context {
File 4 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 5 of 5: Permit2
12345678910111213141516// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.abstract contract ERC20 {/*//////////////////////////////////////////////////////////////EVENTS//////////////////////////////////////////////////////////////*/event Transfer(address indexed from, address indexed to, uint256 amount);event Approval(address indexed owner, address indexed spender, uint256 amount);/*//////////////////////////////////////////////////////////////METADATA STORAGE//////////////////////////////////////////////////////////////*/string public name;