Transaction Hash:
Block:
22539443 at May-22-2025 03:55:23 PM +UTC
Transaction Fee:
0.00146269246641008 ETH
$3.72
Gas Used:
172,720 Gas / 8.468576114 Gwei
Emitted Events:
97 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=20000000000000000 )
|
98 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=20000000000000000 )
|
99 |
MOCHI.Transfer( from=UniswapV2Pair, to=[Receiver] UniversalRouter, value=1893920232154445398 )
|
100 |
UniswapV2Pair.Sync( reserve0=160352856679095830320, reserve1=1708263268904361313 )
|
101 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=20000000000000000, amount0Out=1893920232154445398, amount1Out=0, to=[Receiver] UniversalRouter )
|
102 |
MOCHI.Transfer( from=[Receiver] UniversalRouter, to=FeeCollector, value=4734800580386113 )
|
103 |
MOCHI.Transfer( from=[Receiver] UniversalRouter, to=[Sender] 0xadc39d27798fcd787e7c7592292b67229e7f07e7, value=1889185431574059285 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.405810028089097882 Eth | 13.406155468089097882 Eth | 0.00034544 | |
0x88183F4a...7dE0DE77B | |||||
0x9d6c6E47...c2F0a36d4 | |||||
0xadC39d27...29E7f07E7 |
0.082259738093687674 Eth
Nonce: 76
|
0.060797045627277594 Eth
Nonce: 77
| 0.02146269246641008 | ||
0xC02aaA39...83C756Cc2 | 2,818,384.820565126924458685 Eth | 2,818,384.840565126924458685 Eth | 0.02 |
Execution Trace
ETH 0.02
UniversalRouter.execute( commands=0x0B080604, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARw3k34IAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARw3k34IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACdbG5HVkO6lOOvrS5qMIwcLwo21A==, AAAAAAAAAAAAAAAAnWxuR1ZDupTjr60uajCMHC8KNtQAAAAAAAAAAAAAAAAAAAD+4ToQOhDVk7muBrPgXy5+HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ, AAAAAAAAAAAAAAAAnWxuR1ZDupTjr60uajCMHC8KNtQAAAAAAAAAAAAAAACtw50neY/NeH58dZIpK2cinn8H5wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoWV9yDKLbi], deadline=1747931112 )
- ETH 0.02
WETH9.CALL( )
-
WETH9.transfer( dst=0x88183F4a45429Acb622b85CcCe437047dE0DE77B, wad=20000000000000000 ) => ( True )
-
MOCHI.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x88183F4a45429Acb622b85CcCe437047dE0DE77B ) => ( 1708263268904361313 )
UniswapV2Pair.swap( amount0Out=1893920232154445398, amount1Out=0, to=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, data=0x )
-
MOCHI.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 1893920232154445398 )
-
MOCHI.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 1893920232154445398 )
-
MOCHI.transfer( to=0x000000fee13a103A10D593b9AE06b3e05F2E7E1c, amount=4734800580386113 ) => ( True )
-
MOCHI.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 1889185431574059285 )
-
MOCHI.transfer( to=0xadC39d27798fcD787E7c7592292b67229E7f07E7, amount=1889185431574059285 ) => ( True )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 5: UniversalRouter
File 2 of 5: WETH9
File 3 of 5: UniswapV2Pair
File 4 of 5: MOCHI
File 5 of 5: FeeCollector
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: 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: MOCHI
12345678910111213141516/*https://t.me/mochimochionethhttps://x.com/MochiCoinEthhttps://mochimochieth.fun/*/// SPDX-License-Identifier: MITpragma solidity ^0.8.22;
File 5 of 5: FeeCollector
12345678910111213141516// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity ^0.8.0;import {Owned} from "solmate/auth/Owned.sol";import {ERC20} from "solmate/tokens/ERC20.sol";import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol";import {IFeeCollector} from "./interfaces/IFeeCollector.sol";import {IPermit2} from "./external/IPermit2.sol";/// @notice The collector of protocol fees that will be used to swap and send to a fee recipient address.contract FeeCollector is Owned, IFeeCollector {using SafeTransferLib for ERC20;address public universalRouter;ERC20 public immutable feeToken;IPermit2 public immutable permit2;uint256 public constant MAX_APPROVAL_AMOUNT = type(uint256).max;uint160 public constant MAX_PERMIT2_APPROVAL_AMOUNT = type(uint160).max;uint48 public constant MAX_PERMIT2_DEADLINE = type(uint48).max;