Transaction Hash:
Block:
19395196 at Mar-09-2024 04:36:23 AM +UTC
Transaction Fee:
0.007205607047924892 ETH
$26.17
Gas Used:
160,302 Gas / 44.950200546 Gwei
Emitted Events:
256 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=2800000000000000000 )
|
257 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=2800000000000000000 )
|
258 |
DeepFakeAI.Transfer( from=UniswapV2Pair, to=DeepFakeAI, value=11966401657709520567846 )
|
259 |
DeepFakeAI.Transfer( from=UniswapV2Pair, to=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359, value=287193639785028493628322 )
|
260 |
UniswapV2Pair.Sync( reserve0=33188577553511668679441226, reserve1=312497888299420798044 )
|
261 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=2800000000000000000, amount0Out=299160041442738014196168, amount1Out=0, to=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 30.676316908305849984 Eth | 30.676317068607849984 Eth | 0.000000160302 | |
0x5AEf5bba...57b87c62c | |||||
0x78359500...cA8f4d9aB | |||||
0xa8ab8Dc3...88AC50359 |
2.865925051796512947 Eth
Nonce: 39
|
0.058719444748588055 Eth
Nonce: 40
| 2.807205607047924892 | ||
0xC02aaA39...83C756Cc2 | 3,055,013.009266496967241676 Eth | 3,055,015.809266496967241676 Eth | 2.8 |
Execution Trace
ETH 2.8
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAm25kqOxgAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAm25kqOxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8NqbiRCABK3jSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAABa71u6GeahZEgFvU9ck8hVe4fGLA==], deadline=1709959079 )
- ETH 2.8
WETH9.CALL( )
-
WETH9.transfer( dst=0x78359500f08157EAc9ef566040242abcA8f4d9aB, wad=2800000000000000000 ) => ( True )
-
DeepFakeAI.balanceOf( account=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359 ) => ( 194353924329265432627380 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x78359500f08157EAc9ef566040242abcA8f4d9aB ) => ( 312497888299420798044 )
UniswapV2Pair.swap( amount0Out=299160041442738014196168, amount1Out=0, to=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, data=0x )
-
DeepFakeAI.transfer( recipient=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, amount=299160041442738014196168 ) => ( True )
-
DeepFakeAI.balanceOf( account=0x78359500f08157EAc9ef566040242abcA8f4d9aB ) => ( 33188577553511668679441226 )
-
WETH9.balanceOf( 0x78359500f08157EAc9ef566040242abcA8f4d9aB ) => ( 312497888299420798044 )
-
-
DeepFakeAI.balanceOf( account=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359 ) => ( 481547564114293926255702 )
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: DeepFakeAI
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: DeepFakeAI
12345678910111213141516/*** Website: FakeAI.io* Telegram: https://t.me/FakeAI* Twitter: https://twitter.com/DeepFakeAI_*/// SPDX-License-Identifier: MITpragma solidity 0.8.12;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {this;