Transaction Hash:
Block:
19969659 at May-28-2024 04:48:35 PM +UTC
Transaction Fee:
0.00346527928928324 ETH
$8.72
Gas Used:
141,713 Gas / 24.45279748 Gwei
Emitted Events:
306 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=100000000000000 )
|
307 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=100000000000000 )
|
308 |
GrumpyToken.Transfer( from=UniswapV2Pair, to=GrumpyToken, value=2945290643838408254415 )
|
309 |
GrumpyToken.Transfer( from=UniswapV2Pair, to=[Sender] 0x4a2c0fcc62e09d2b69948671e9a6ed2822e7d15f, value=55960522232929756833888 )
|
310 |
UniswapV2Pair.Sync( reserve0=10257525742574257423, reserve1=6060401217546880146892725927 )
|
311 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=100000000000000, amount1In=0, amount0Out=0, amount1Out=58905812876768165088303, to=[Sender] 0x4a2c0fcc62e09d2b69948671e9a6ed2822e7d15f )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4a2c0fCc...822e7D15F |
0.030693627760835576 Eth
Nonce: 37
|
0.027128348471552336 Eth
Nonce: 38
| 0.00356527928928324 | ||
0x8D9bf68C...17c8b6A9f | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.299944165963379562 Eth | 9.299958053837379562 Eth | 0.000013887874 | |
0xC02aaA39...83C756Cc2 | 2,936,056.634827712159171161 Eth | 2,936,056.634927712159171161 Eth | 0.0001 | ||
0xcCD4dE43...f089049b5 |
Execution Trace
ETH 0.0001
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALz5rg9cbrTqvsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAADM1N5Dc6KulsvguFjYcpjvCJBJtQ==], deadline=2576980377 )
- ETH 0.0001
WETH9.CALL( )
-
WETH9.transfer( dst=0x8D9bf68C38c00e20Ea1c2C11Ec63E6C17c8b6A9f, wad=100000000000000 ) => ( True )
-
GrumpyToken.balanceOf( account=0x4a2c0fCc62e09D2B69948671e9a6Ed2822e7D15F ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x8D9bf68C38c00e20Ea1c2C11Ec63E6C17c8b6A9f ) => ( 10257525742574257423 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=58905812876768165088303, to=0x4a2c0fCc62e09D2B69948671e9a6Ed2822e7D15F, data=0x )
-
GrumpyToken.transfer( to=0x4a2c0fCc62e09D2B69948671e9a6Ed2822e7D15F, value=58905812876768165088303 ) => ( True )
-
WETH9.balanceOf( 0x8D9bf68C38c00e20Ea1c2C11Ec63E6C17c8b6A9f ) => ( 10257525742574257423 )
-
GrumpyToken.balanceOf( account=0x8D9bf68C38c00e20Ea1c2C11Ec63E6C17c8b6A9f ) => ( 6060401217546880146892725927 )
-
-
GrumpyToken.balanceOf( account=0x4a2c0fCc62e09D2B69948671e9a6Ed2822e7D15F ) => ( 55960522232929756833888 )
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: GrumpyToken
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: GrumpyToken
12345678910111213141516/**/*$GRUMPY the ultimate antidote to the woke madness.Tired of woke culture taking over? Us too. That's why we're flipping the script with Grumpy.Farm now with our TG mini-bot: https://t.me/GrumpyCat_Meme_Bot/app- Telegram: https://t.me/GrumpyLobby- Announcement: https://t.me/grumpyvip- Website: https://www.grumpy.meme- Twitter: https://x.com/Grumpyvip*/// SPDX-License-Identifier: MIT// File: @openzeppelin/contracts/interfaces/draft-IERC6093.solpragma solidity ^0.8.20;/*** @dev Standard ERC20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.