Transaction Hash:
Block:
19188297 at Feb-09-2024 04:48:47 AM +UTC
Transaction Fee:
0.006590153108916978 ETH
$16.67
Gas Used:
144,218 Gas / 45.695773821 Gwei
Emitted Events:
203 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=9000000000000000 )
|
204 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=9000000000000000 )
|
205 |
Catcoin.Transfer( from=UniswapV2Pair, to=[Sender] 0x80d47ff4f39fbc7d1aa99980ed56af041bf9dd46, value=731959788678348269637 )
|
206 |
UniswapV2Pair.Sync( reserve0=3332198694771334778940472, reserve1=40857991093037128082 )
|
207 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=9000000000000000, amount0Out=731959788678348269637, amount1Out=0, to=[Sender] 0x80d47ff4f39fbc7d1aa99980ed56af041bf9dd46 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x24d6C74D...45f8aaB06
Miner
| (Fee Recipient: 0x24...B06) | 96.398026647252982977 Eth | 96.398026791470982977 Eth | 0.000000144218 | |
0x59F4F336...aCE40539A | |||||
0x80D47fF4...41bf9DD46 |
0.020157216255864266 Eth
Nonce: 37
|
0.004567063146947288 Eth
Nonce: 38
| 0.015590153108916978 | ||
0xC02aaA39...83C756Cc2 | 3,269,286.98131837899069821 Eth | 3,269,286.99031837899069821 Eth | 0.009 | ||
0xE87E0be7...D3626FC4f |
Execution Trace
ETH 0.009
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/lzyvqAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/lzyvqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ3tyBgD3JDTOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAABZ9PM2vz0MSdv7pKdOvSpqzkBTmg==], deadline=1707454691 )
- ETH 0.009
WETH9.CALL( )
-
WETH9.transfer( dst=0xE87E0be74368C8E153771Dd4B2dee3aD3626FC4f, wad=9000000000000000 ) => ( True )
-
Catcoin.balanceOf( account=0x80D47fF4F39FbC7D1Aa99980ED56af041bf9DD46 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xE87E0be74368C8E153771Dd4B2dee3aD3626FC4f ) => ( 40857991093037128082 )
UniswapV2Pair.swap( amount0Out=731959788678348269637, amount1Out=0, to=0x80D47fF4F39FbC7D1Aa99980ED56af041bf9DD46, data=0x )
-
Catcoin.transfer( recipient=0x80D47fF4F39FbC7D1Aa99980ED56af041bf9DD46, amount=731959788678348269637 ) => ( True )
-
Catcoin.balanceOf( account=0xE87E0be74368C8E153771Dd4B2dee3aD3626FC4f ) => ( 3332198694771334778940472 )
-
WETH9.balanceOf( 0xE87E0be74368C8E153771Dd4B2dee3aD3626FC4f ) => ( 40857991093037128082 )
-
-
Catcoin.balanceOf( account=0x80D47fF4F39FbC7D1Aa99980ED56af041bf9DD46 ) => ( 731959788678348269637 )
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: Catcoin
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: Catcoin
12345678910111213141516// SPDX-License-Identifier: NOLICENSEpragma solidity ^0.8.0;interface IERC20 {function totalSupply() external view returns (uint256);function balanceOf(address account) external view returns (uint256);function transfer(address recipient, uint256 amount) external returns (bool);function allowance(address owner, address spender) external view returns (uint256);function approve(address spender, uint256 amount) external returns (bool);function transferFrom(address sender,