Transaction Hash:
Block:
22537610 at May-22-2025 09:46:23 AM +UTC
Transaction Fee:
0.003035435937696756 ETH
$7.58
Gas Used:
166,914 Gas / 18.185628154 Gwei
Emitted Events:
61 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=30000000000000000 )
|
62 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=30000000000000000 )
|
63 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=30000000000000000 )
|
64 |
KOMUGI.Transfer( from=UniswapV2Pair, to=[Sender] 0xd6d70cdc3a568cead0170e8d9f678ab666d96fb6, value=899725654713863825 )
|
65 |
UniswapV2Pair.Sync( reserve0=82940302863348440170, reserve1=2787223210926105187 )
|
66 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=30000000000000000, amount0Out=899725654713863825, amount1Out=0, to=[Sender] 0xd6d70cdc3a568cead0170e8d9f678ab666d96fb6 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x242ECdFD...c9920A4CA | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.160166770762632952 Eth | 5.162670480762632952 Eth | 0.00250371 | |
0xC02aaA39...83C756Cc2 | 2,813,265.159366295192072256 Eth | 2,813,265.189366295192072256 Eth | 0.03 | ||
0xD6D70cdC...666d96FB6 |
0.06569345277381386 Eth
Nonce: 24
|
0.032658016836117104 Eth
Nonce: 25
| 0.033035435937696756 | ||
0xEF714571...F7002FAa5 |
Execution Trace
ETH 0.03
UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAapTXT0MAAA==, AAAAAAAAAAAAAAAA1tcM3DpWjOrQFw6Nn2eKtmbZb7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAapTXT0MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHcb07Fns2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAAkLs39nntlMsPAy3RRyo/8mSCkyg==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1747907296 )
- ETH 0.03
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=30000000000000000 ) => ( True )
-
WETH9.transfer( dst=0xEF714571bE7da7E480F0b607612C2b8F7002FAa5, wad=30000000000000000 ) => ( True )
-
KOMUGI.balanceOf( account=0xD6D70cdC3A568CeAd0170e8D9F678Ab666d96FB6 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xEF714571bE7da7E480F0b607612C2b8F7002FAa5 ) => ( 2787223210926105187 )
UniswapV2Pair.swap( amount0Out=899725654713863825, amount1Out=0, to=0xD6D70cdC3A568CeAd0170e8D9F678Ab666d96FB6, data=0x )
-
KOMUGI.balanceOf( account=0xD6D70cdC3A568CeAd0170e8D9F678Ab666d96FB6 ) => ( 899725654713863825 )
-
WETH9.balanceOf( 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B ) => ( 0 )
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: KOMUGI
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: KOMUGI
123456789101112131415/*KOMUGI KUN is the new shiba inu dog adopted by riko.wako.mama (former owner of Neiro and Cocoro) from the Chibawan shelter. Let's celebrate thelatest member of the DOGE family. 😍Proof: https://www.instagram.com/p/DJ7tc1ATcxs/?img_index=6TG: https://t.me/KomugiKun*/// SPDX-License-Identifier: MITpragma solidity 0.8.23;abstract contract Context {