Transaction Hash:
Block:
19481960 at Mar-21-2024 08:50:11 AM +UTC
Transaction Fee:
0.0036965280979866 ETH
$11.69
Gas Used:
137,300 Gas / 26.923001442 Gwei
Emitted Events:
422 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=500000000000000000 )
|
423 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000001385fc1fe0418ea0b4fcf7adc61fc7535ab7f80d, 0x000000000000000000000000a8ab8dc3a156aa7aa0d8e6f4507017488ac50359, 00000000000000000000000000000000000000000000018d2fea328e1b78f752 )
|
424 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV3Pool, wad=500000000000000000 )
|
425 |
UniswapV3Pool.Swap( sender=[Receiver] UniversalRouter, recipient=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359, amount0=-7326810024912952555346, amount1=500000000000000000, sqrtPriceX96=653636082610364300436029794, liquidity=161381129909341823694452, tick=-95956 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1385Fc1F...35AB7F80d | (Uniswap V3: DEAI 2) | ||||
0x1495bc9e...0cF0C05ea | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.184448419001476946 Eth | 5.184448556301476946 Eth | 0.0000001373 | |
0xa8ab8Dc3...88AC50359 |
5.442361532209666451 Eth
Nonce: 114
|
4.938665004111679851 Eth
Nonce: 115
| 0.5036965280979866 | ||
0xC02aaA39...83C756Cc2 | 2,975,058.350565789885969904 Eth | 2,975,058.850565789885969904 Eth | 0.5 |
Execution Trace
ETH 0.5
UniversalRouter.execute( commands=0x0B00, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8FtZ07IAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8FtZ07IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABizYLa531IHvSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArwCqqObIj/o0KDlxPJ+rZCDx1bMIAC7gUlbyeRK8fi8tiJ40r7EVAzwwF6gAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1711011179 )
- ETH 0.5
WETH9.CALL( )
UniswapV3Pool.swap( recipient=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, zeroForOne=False, amountSpecified=500000000000000000, sqrtPriceLimitX96=1461446703485210103287273052203988822378723970341, data=0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003FC91A3AFD70395CD496C647D5A6CC9D4B2B7FAD000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000BB81495BC9E44AF1F8BCB62278D2BEC4540CF0C05EA000000000000000000000000000000000000000000 ) => ( amount0=-7326810024912952555346, amount1=500000000000000000 )
TransparentUpgradeableProxy.a9059cbb( )
-
DEAI.transfer( to=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, amount=7326810024912952555346 ) => ( True )
-
-
WETH9.balanceOf( 0x1385Fc1Fe0418ea0B4Fcf7Adc61FC7535AB7F80d ) => ( 598778166935356129157 )
UniversalRouter.uniswapV3SwapCallback( amount0Delta=-7326810024912952555346, amount1Delta=500000000000000000, data=0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003FC91A3AFD70395CD496C647D5A6CC9D4B2B7FAD000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000BB81495BC9E44AF1F8BCB62278D2BEC4540CF0C05EA000000000000000000000000000000000000000000 )
-
WETH9.transfer( dst=0x1385Fc1Fe0418ea0B4Fcf7Adc61FC7535AB7F80d, wad=500000000000000000 ) => ( True )
-
-
WETH9.balanceOf( 0x1385Fc1Fe0418ea0B4Fcf7Adc61FC7535AB7F80d ) => ( 599278166935356129157 )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 5: UniversalRouter
File 2 of 5: WETH9
File 3 of 5: TransparentUpgradeableProxy
File 4 of 5: UniswapV3Pool
File 5 of 5: DEAI
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 5: 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 5: TransparentUpgradeableProxy
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/
File 4 of 5: UniswapV3Pool
12345678910111213141516// SPDX-License-Identifier: BUSL-1.1pragma solidity =0.7.6;import './interfaces/IUniswapV3Pool.sol';import './NoDelegateCall.sol';import './libraries/LowGasSafeMath.sol';import './libraries/SafeCast.sol';import './libraries/Tick.sol';import './libraries/TickBitmap.sol';import './libraries/Position.sol';import './libraries/Oracle.sol';import './libraries/FullMath.sol';import './libraries/FixedPoint128.sol';import './libraries/TransferHelper.sol';import './libraries/TickMath.sol';import './libraries/LiquidityMath.sol';import './libraries/SqrtPriceMath.sol';
File 5 of 5: DEAI
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)pragma solidity ^0.8.0;import "./IAccessControlUpgradeable.sol";import "../utils/ContextUpgradeable.sol";import "../utils/StringsUpgradeable.sol";import "../utils/introspection/ERC165Upgradeable.sol";import {Initializable} from "../proxy/utils/Initializable.sol";/*** @dev Contract module that allows children to implement role-based access* control mechanisms. This is a lightweight version that doesn't allow enumerating role* members except through off-chain means by accessing the contract event logs. Some* applications may benefit from on-chain enumerability, for those cases see* {AccessControlEnumerable}.** Roles are referred to by their `bytes32` identifier. These should be exposed