Transaction Hash:
Block:
22545802 at May-23-2025 01:15:59 PM +UTC
Transaction Fee:
0.001886850412743562 ETH
$4.76
Gas Used:
139,153 Gas / 13.559538154 Gwei
Emitted Events:
78 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=99190000000000000 )
|
79 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=99190000000000000 )
|
80 |
Padre.Transfer( from=UniswapV2Pair, to=[Sender] 0xf0e240932cef0b26521deeca20bdc557933b17d3, value=11796478762139796438301 )
|
81 |
UniswapV2Pair.Sync( reserve0=4703652891789639208594618, reserve1=39530928379294854664 )
|
82 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=99190000000000000, amount0Out=11796478762139796438301, amount1Out=0, to=[Sender] 0xf0e240932cef0b26521deeca20bdc557933b17d3 )
|
83 |
GnosisSafeProxy.0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d( 0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d, 0x0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad, 0000000000000000000000000000000000000000000000000002e0b0d244a000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3b8f9BE1...B64DB0796 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.041014785037653993 Eth | 5.042406523767153993 Eth | 0.0013917387295 | |
0xa74FA823...722eF09eE | 73.697659215276659267 Eth | 73.698469215276659267 Eth | 0.00081 | ||
0xB36cF340...0f0000DAD | |||||
0xC02aaA39...83C756Cc2 | 2,797,093.328192769857148698 Eth | 2,797,093.427382769857148698 Eth | 0.09919 | ||
0xF0E24093...7933B17d3 |
0.488593065002913339 Eth
Nonce: 317
|
0.386706214590169777 Eth
Nonce: 318
| 0.101886850412743562 |
Execution Trace
ETH 0.1
UniversalRouter.execute( commands=0x0B0804, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYGTHi0VgAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYGTHi0VgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBp4ozbOrOPUGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACzbPNAo1+YYNC7Wa+wNVWA8AANrQ==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACnT6gjvIYX+jIKlms9EbD3Iu8J7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4LDSRKAA], deadline=1748006172 )
- ETH 0.09919
WETH9.CALL( )
-
WETH9.transfer( dst=0x3b8f9BE1C9d951e2CAf224e8A698b61B64DB0796, wad=99190000000000000 ) => ( True )
-
Padre.balanceOf( account=0xF0E240932CEf0b26521dEecA20bDc557933B17d3 ) => ( 100870887629790219148348 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x3b8f9BE1C9d951e2CAf224e8A698b61B64DB0796 ) => ( 39530928379294854664 )
UniswapV2Pair.swap( amount0Out=11796478762139796438301, amount1Out=0, to=0xF0E240932CEf0b26521dEecA20bDc557933B17d3, data=0x )
-
Padre.transfer( to=0xF0E240932CEf0b26521dEecA20bDc557933B17d3, amount=11796478762139796438301 ) => ( True )
-
Padre.balanceOf( account=0x3b8f9BE1C9d951e2CAf224e8A698b61B64DB0796 ) => ( 4703652891789639208594618 )
-
WETH9.balanceOf( 0x3b8f9BE1C9d951e2CAf224e8A698b61B64DB0796 ) => ( 39530928379294854664 )
-
-
Padre.balanceOf( account=0xF0E240932CEf0b26521dEecA20bDc557933B17d3 ) => ( 112667366391930015586649 )
ETH 0.00081
GnosisSafeProxy.CALL( )
- ETH 0.00081
GnosisSafe.DELEGATECALL( )
- ETH 0.00081
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 6: UniversalRouter
File 2 of 6: WETH9
File 3 of 6: UniswapV2Pair
File 4 of 6: Padre
File 5 of 6: GnosisSafeProxy
File 6 of 6: GnosisSafe
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: 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 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 4 of 6: Padre
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.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 5 of 6: GnosisSafeProxy
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain/// @author Richard Meissner - <richard@gnosis.io>interface IProxy {function masterCopy() external view returns (address);}/// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract./// @author Stefan George - <stefan@gnosis.io>/// @author Richard Meissner - <richard@gnosis.io>contract GnosisSafeProxy {// singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.// To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`address internal singleton;
File 6 of 6: GnosisSafe
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "./base/ModuleManager.sol";import "./base/OwnerManager.sol";import "./base/FallbackManager.sol";import "./base/GuardManager.sol";import "./common/EtherPaymentFallback.sol";import "./common/Singleton.sol";import "./common/SignatureDecoder.sol";import "./common/SecuredTokenTransfer.sol";import "./common/StorageAccessible.sol";import "./interfaces/ISignatureValidator.sol";import "./external/GnosisSafeMath.sol";/// @title Gnosis Safe - A multisignature wallet with support for confirmations using signed messages based on ERC191./// @author Stefan George - <stefan@gnosis.io>/// @author Richard Meissner - <richard@gnosis.io>