Transaction Hash:
Block:
17127346 at Apr-26-2023 02:10:59 AM +UTC
Transaction Fee:
0.00624126808467316 ETH
$18.33
Gas Used:
177,548 Gas / 35.15256767 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 1.05855716617717387 Eth | 1.05857492097717387 Eth | 0.0000177548 | ||
0x3ea7d29A...3299178cF |
0.269011560073286825 Eth
Nonce: 300
|
0.262770291988613665 Eth
Nonce: 301
| 0.00624126808467316 |
Execution Trace
ETH 0.24
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVKa6ehgAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVKa6ehgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZpGmecXRxQBcT0uyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAB5GVrzWHskLyMESimuLKVKMiO/wg==], deadline=1682476823 )
- ETH 0.24
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=240000000000000000 ) => ( True )
-
WETH9.transfer( dst=0xB08E5584EDE94C455e6a9E708C478b52Bc812E44, wad=240000000000000000 ) => ( True )
-
KekToken.balanceOf( account=0x3ea7d29A645168E7D6E75a3A3a0d43e3299178cF ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xB08E5584EDE94C455e6a9E708C478b52Bc812E44 ) => ( 21706287397493500965 )
UniswapV2Pair.swap( amount0Out=31432640655385836542091701356, amount1Out=0, to=0x3ea7d29A645168E7D6E75a3A3a0d43e3299178cF, data=0x )
-
KekToken.transfer( to=0x3ea7d29A645168E7D6E75a3A3a0d43e3299178cF, amount=31432640655385836542091701356 ) => ( True )
-
KekToken.balanceOf( account=0xB08E5584EDE94C455e6a9E708C478b52Bc812E44 ) => ( 2819885063401248920226246621645 )
-
WETH9.balanceOf( 0xB08E5584EDE94C455e6a9E708C478b52Bc812E44 ) => ( 21706287397493500965 )
-
-
KekToken.balanceOf( account=0x3ea7d29A645168E7D6E75a3A3a0d43e3299178cF ) => ( 31432640655385836542091701356 )
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: KekToken
File 4 of 4: UniswapV2Pair
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: KekToken
12345678910111213141516// File: @openzeppelin/contracts@4.8.3/utils/Context.sol// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.
File 4 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);