Transaction Hash:
Block:
21381879 at Dec-11-2024 09:14:59 PM +UTC
Transaction Fee:
0.00419209498919477 ETH
$11.15
Gas Used:
163,166 Gas / 25.692209095 Gwei
Emitted Events:
250 |
NodelyAI.Transfer( from=[Sender] 0x712267bc4b79186a647d00440011ef6f35dce533, to=UniswapV2Pair, value=25000000000000 )
|
251 |
NodelyAI.Approval( owner=[Sender] 0x712267bc4b79186a647d00440011ef6f35dce533, spender=Permit2, value=115792089237316195423570985008687907853269984665640564039457583877913129639935 )
|
252 |
WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniversalRouter, wad=83074423536432180 )
|
253 |
UniswapV2Pair.Sync( reserve0=44971568733523043678, reserve1=13517917590833302 )
|
254 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=25000000000000, amount0Out=83074423536432180, amount1Out=0, to=[Receiver] UniversalRouter )
|
255 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=FeeCollector, wad=207686058841080 )
|
256 |
WETH9.Withdrawal( src=[Receiver] UniversalRouter, wad=82866737477591100 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2CBe3150...E2f222d57 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.845007252558473371 Eth | 7.845408232373163113 Eth | 0.000400979814689742 | |
0x712267bc...F35DcE533 |
0.121360728096003055 Eth
Nonce: 3
|
0.200035370584399385 Eth
Nonce: 4
| 0.07867464248839633 | ||
0xC02aaA39...83C756Cc2 | 2,730,648.275107131177916751 Eth | 2,730,648.192240393700325651 Eth | 0.0828667374775911 | ||
0xFF284f2E...B545908FB |
Execution Trace
UniversalRouter.execute( commands=0x08060C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABa8xB6QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAA/yhPLozOTNL0U32Kk2lIK1RZCPsAAAAAAAAAAAAAAADAKqo5siP+jQoOXE8n6tkIPHVswg==, AAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAAAAAD+4ToQOhDVk7muBrPgXy5+HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ, AAAAAAAAAAAAAAAAcSJnvEt5GGpkfQBEABHvbzXc5TMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFw3H3xjW9w==], deadline=1733953481 )
Permit2.transferFrom( from=0x712267bc4B79186a647d00440011ef6F35DcE533, to=0x2CBe315056605722D9c2c422110Fa24E2f222d57, amount=25000000000000, token=0xFF284f2E8CcE4CD2f4537d8a9369482B545908FB )
-
NodelyAI.transferFrom( sender=0x712267bc4B79186a647d00440011ef6F35DcE533, recipient=0x2CBe315056605722D9c2c422110Fa24E2f222d57, amount=25000000000000 ) => ( True )
-
-
WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
NodelyAI.balanceOf( account=0x2CBe315056605722D9c2c422110Fa24E2f222d57 ) => ( 13517917590833302 )
UniswapV2Pair.swap( amount0Out=83074423536432180, amount1Out=0, to=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, data=0x )
-
WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 83074423536432180 )
-
WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 83074423536432180 )
-
WETH9.transfer( dst=0x000000fee13a103A10D593b9AE06b3e05F2E7E1c, wad=207686058841080 ) => ( True )
-
WETH9.balanceOf( 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 82866737477591100 )
WETH9.withdraw( wad=82866737477591100 )
- ETH 0.0828667374775911
UniversalRouter.CALL( )
- ETH 0.0828667374775911
- ETH 0.0828667374775911
0x712267bc4b79186a647d00440011ef6f35dce533.CALL( )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 6: UniversalRouter
File 2 of 6: UniswapV2Pair
File 3 of 6: NodelyAI
File 4 of 6: WETH9
File 5 of 6: FeeCollector
File 6 of 6: Permit2
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 6: 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 3 of 6: NodelyAI
12345678910111213141516/**Rent, Lend, Buy and Sell GPU website and mobile app platform - with unique revenue sharing model for $NODE token holders.Website: https://nodelyai.comTwitter: https://twitter.com/nodelyaiTelegram: https://t.me/nodelyai*/// SPDX-License-Identifier: MITpragma solidity ^0.8.20;abstract contract Context {function _msgSender() internal view virtual returns (address) {
File 4 of 6: 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 5 of 6: FeeCollector
12345678910111213141516// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity ^0.8.0;import {Owned} from "solmate/auth/Owned.sol";import {ERC20} from "solmate/tokens/ERC20.sol";import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol";import {IFeeCollector} from "./interfaces/IFeeCollector.sol";import {IPermit2} from "./external/IPermit2.sol";/// @notice The collector of protocol fees that will be used to swap and send to a fee recipient address.contract FeeCollector is Owned, IFeeCollector {using SafeTransferLib for ERC20;address public universalRouter;ERC20 public immutable feeToken;IPermit2 public immutable permit2;uint256 public constant MAX_APPROVAL_AMOUNT = type(uint256).max;uint160 public constant MAX_PERMIT2_APPROVAL_AMOUNT = type(uint160).max;uint48 public constant MAX_PERMIT2_DEADLINE = type(uint48).max;
File 6 of 6: Permit2
12345678910111213141516// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.abstract contract ERC20 {/*//////////////////////////////////////////////////////////////EVENTS//////////////////////////////////////////////////////////////*/event Transfer(address indexed from, address indexed to, uint256 amount);event Approval(address indexed owner, address indexed spender, uint256 amount);/*//////////////////////////////////////////////////////////////METADATA STORAGE//////////////////////////////////////////////////////////////*/string public name;