Transaction Hash:
Block:
20635671 at Aug-29-2024 05:16:35 PM +UTC
Transaction Fee:
0.000654013383206656 ETH
$2.38
Gas Used:
150,656 Gas / 4.341104126 Gwei
Emitted Events:
245 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=120000000000000 )
|
246 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=120000000000000 )
|
247 |
FortressArtificialCryptographicToken.Transfer( from=UniswapV2Pair, to=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937, value=38534223848 )
|
248 |
UniswapV2Pair.Sync( reserve0=5589032680861138, reserve1=17352795184752135541 )
|
249 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=120000000000000, amount0Out=38534223848, amount1Out=0, to=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2CD89BAd...d2B353937 |
0.054302379155521415 Eth
Nonce: 342
|
0.053528365772314759 Eth
Nonce: 343
| 0.000774013383206656 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.577807558901437911 Eth | 8.578108870901437911 Eth | 0.000301312 | |
0x986eE705...681DB3fc5 | |||||
0xC02aaA39...83C756Cc2 | 2,907,016.667710600613680828 Eth | 2,907,016.667830600613680828 Eth | 0.00012 | ||
0xDadBBF1c...Fe36cA819 |
Execution Trace
ETH 0.00012
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0jrV+AAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0jrV+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACYbucFagtaEdDh+GieusUWgds/xQ==], deadline=2576980377 )
- ETH 0.00012
WETH9.CALL( )
-
WETH9.transfer( dst=0xDadBBF1c32a7d340a6298C858bb2005Fe36cA819, wad=120000000000000 ) => ( True )
-
FortressArtificialCryptographicToken.balanceOf( account=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xDadBBF1c32a7d340a6298C858bb2005Fe36cA819 ) => ( 17352795184752135541 )
UniswapV2Pair.swap( amount0Out=38534223848, amount1Out=0, to=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, data=0x )
-
FortressArtificialCryptographicToken.transfer( recipient=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, amount=38534223848 ) => ( True )
-
FortressArtificialCryptographicToken.balanceOf( account=0xDadBBF1c32a7d340a6298C858bb2005Fe36cA819 ) => ( 5589032680861138 )
-
WETH9.balanceOf( 0xDadBBF1c32a7d340a6298C858bb2005Fe36cA819 ) => ( 17352795184752135541 )
-
-
FortressArtificialCryptographicToken.balanceOf( account=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937 ) => ( 38534223848 )
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: FortressArtificialCryptographicToken
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: FortressArtificialCryptographicToken
12345678910111213141516/*Fortress Artificial Cryptographic Tokenhttps://fortressartificialcryptographictoken.comhttps://t.me/FACT_portal_officialhttps://x.com/FACT_TOKEN*/// SPDX-License-Identifier: MITpragma solidity 0.8.26;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}