Transaction Hash:
Block:
17396328 at Jun-02-2023 11:34:23 PM +UTC
Transaction Fee:
0.003732487358007573 ETH
$9.61
Gas Used:
161,513 Gas / 23.109516621 Gwei
Emitted Events:
157 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=20000000000000000 )
|
158 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=20000000000000000 )
|
159 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=20000000000000000 )
|
160 |
Scarab.Transfer( from=UniswapV2Pair, to=Scarab, value=154979721588612852814 )
|
161 |
Scarab.Transfer( from=UniswapV2Pair, to=[Sender] 0xe0503e158ae3e23b9ecd9cade437eb607104ba71, value=2944614710183644203479 )
|
162 |
UniswapV2Pair.Sync( reserve0=14877093602881403189783448, reserve1=95725826349623377510 )
|
163 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=20000000000000000, amount0Out=3099594431772257056293, amount1Out=0, to=[Sender] 0xe0503e158ae3e23b9ecd9cade437eb607104ba71 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 159.726431724949222005 Eth | 159.726447876249222005 Eth | 0.0000161513 | |
0x6f361111...E81611e83 | |||||
0x84412819...18F1c8A42 | |||||
0xC02aaA39...83C756Cc2 | 3,329,198.803116666347365458 Eth | 3,329,198.823116666347365458 Eth | 0.02 | ||
0xe0503E15...07104ba71 |
0.031591938079506891 Eth
Nonce: 77
|
0.007859450721499318 Eth
Nonce: 78
| 0.023732487358007573 |
Execution Trace
ETH 0.02
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARw3k34IAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARw3k34IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAm5Ut8PIwka/DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACEQSgZrmmxAlDQ1U1Y9FQBjxyKQg==], deadline=1685750639 )
- ETH 0.02
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=20000000000000000 ) => ( True )
-
WETH9.transfer( dst=0x6f36111198af4eA37ee02979fECA11eE81611e83, wad=20000000000000000 ) => ( True )
-
Scarab.balanceOf( account=0xe0503E158ae3e23b9ecd9cade437Eb607104ba71 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x6f36111198af4eA37ee02979fECA11eE81611e83 ) => ( 95725826349623377510 )
UniswapV2Pair.swap( amount0Out=3099594431772257056293, amount1Out=0, to=0xe0503E158ae3e23b9ecd9cade437Eb607104ba71, data=0x )
-
Scarab.transfer( to=0xe0503E158ae3e23b9ecd9cade437Eb607104ba71, amount=3099594431772257056293 ) => ( True )
-
Scarab.balanceOf( account=0x6f36111198af4eA37ee02979fECA11eE81611e83 ) => ( 14877093602881403189783448 )
-
WETH9.balanceOf( 0x6f36111198af4eA37ee02979fECA11eE81611e83 ) => ( 95725826349623377510 )
-
-
Scarab.balanceOf( account=0xe0503E158ae3e23b9ecd9cade437Eb607104ba71 ) => ( 2944614710183644203479 )
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: Scarab
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import {Dispatcher} from './base/Dispatcher.sol';import {RewardsCollector} from './base/RewardsCollector.sol';import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';import {Constants} from './libraries/Constants.sol';import {Commands} from './libraries/Commands.sol';import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';import {ReentrancyLock} from './base/ReentrancyLock.sol';contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector, ReentrancyLock {modifier checkDeadline(uint256 deadline) {if (block.timestamp > deadline) revert TransactionDeadlinePassed();_;}constructor(RouterParameters memory params) RouterImmutables(params) {}/// @inheritdoc IUniversalRouter
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: Scarab
12345678910111213141516/*** Scarab ($DUNG)** Website: scarab.tools* Telegram: t.me/scarabtools* Twitter: twitter.com/scarabtools** ▄▄* ╫█ ╔▓▓▓▄▄▄▓▓┐ █▀* ┐ ╙▀═╗▄▄▓█▓▓▓▓▓▓█▌▄▄═╙╙* ▒ ╔▓▓▓▓▓▓▓▓▓▓▓▌╓ ╒╛* ▐ ╙▓█▓▓▓▓▓▓╬╫█▓╙ ╧* ─▓▓╣▒ ╓▒▒▓▓╬▓▓▓▓▓▓▓▓▓▓▒▒╗╓ ▌▐▄* ╠▓█╬ ╔╬╣╣▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╬╬╬╖ └█▓▓╙* ╟▓▓▒ ▓╬╬╣▓▓▓▓▓▓▓▓▓▓▓▓╬╣╬███╬╣╣▌ ┌█▓▓▀* ╫▓▌╓▓╬╬╣▓▓▓▓▓▓▓▓▓▓▓▓╣╬▒╚╨╣██▓╬╬▓░█▓▌