Transaction Hash:
Block:
22596467 at May-30-2025 03:32:47 PM +UTC
Transaction Fee:
0.00449336060177004 ETH
$16.90
Gas Used:
113,036 Gas / 39.75158889 Gwei
Emitted Events:
8 |
RewardToken.Transfer( from=[Sender] 0x5f939de0e81a199a34e50615f34cbab82412459a, to=UniswapV2Pair, value=32140500000000000000 )
|
9 |
RewardToken.Approval( owner=[Sender] 0x5f939de0e81a199a34e50615f34cbab82412459a, spender=[Receiver] UniswapV2Router02, value=92743299600000000000000 )
|
10 |
WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniswapV2Router02, wad=497559091121082230 )
|
11 |
UniswapV2Pair.Sync( reserve0=1283694667480712238562, reserve1=19433298856152343773 )
|
12 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=32140500000000000000, amount1In=0, amount0Out=0, amount1Out=497559091121082230, to=[Receiver] UniswapV2Router02 )
|
13 |
WETH9.Withdrawal( src=[Receiver] UniswapV2Router02, wad=497559091121082230 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.044303626329627342 Eth | 13.047694706329627342 Eth | 0.00339108 | |
0x56feAccb...6F0B41A58 | |||||
0x5F939de0...82412459a |
9.982913060391665558 Eth
Nonce: 5634
|
10.475978790910977748 Eth
Nonce: 5635
| 0.49306573051931219 | ||
0xa0246c90...88619A14D | |||||
0xC02aaA39...83C756Cc2 | 2,636,326.562190720508175502 Eth | 2,636,326.064631629387093272 Eth | 0.49755909112108223 |
Execution Trace
UniswapV2Router02.swapExactTokensForETH( amountIn=32140500000000000000, amountOutMin=496066413847719000, path=[0xa0246c9032bC3A600820415aE600c6388619A14D, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0x5F939de0E81a199a34e50615F34cBAb82412459a, deadline=1748619279 ) => ( amounts=[32140500000000000000, 497559091121082230] )
-
UniswapV2Pair.STATICCALL( )
-
RewardToken.transferFrom( sender=0x5F939de0E81a199a34e50615F34cBAb82412459a, recipient=0x56feAccb7f750B997B36A68625C7C596F0B41A58, amount=32140500000000000000 ) => ( True )
UniswapV2Pair.swap( amount0Out=0, amount1Out=497559091121082230, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
WETH9.withdraw( wad=497559091121082230 )
- ETH 0.49755909112108223
UniswapV2Router02.CALL( )
- ETH 0.49755909112108223
- ETH 0.49755909112108223
0x5f939de0e81a199a34e50615f34cbab82412459a.CALL( )
swapExactTokensForETH[UniswapV2Router02 (ln:499)]
getAmountsOut[UniswapV2Router02 (ln:507)]
getReserves[UniswapV2Library (ln:739)]
sortTokens[UniswapV2Library (ln:702)]
getReserves[UniswapV2Library (ln:703)]
pairFor[UniswapV2Library (ln:703)]
sortTokens[UniswapV2Library (ln:691)]
safeTransferFrom[UniswapV2Router02 (ln:509)]
call[TransferHelper (ln:772)]
encodeWithSelector[TransferHelper (ln:772)]
decode[TransferHelper (ln:773)]
pairFor[UniswapV2Router02 (ln:510)]
sortTokens[UniswapV2Library (ln:691)]
_swap[UniswapV2Router02 (ln:512)]
sortTokens[UniswapV2Router02 (ln:430)]
pairFor[UniswapV2Router02 (ln:433)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:434)]
pairFor[UniswapV2Router02 (ln:434)]
sortTokens[UniswapV2Library (ln:691)]
withdraw[UniswapV2Router02 (ln:513)]
safeTransferETH[UniswapV2Router02 (ln:514)]
File 1 of 4: UniswapV2Router02
File 2 of 4: UniswapV2Pair
File 3 of 4: RewardToken
File 4 of 4: WETH9
12345678910111213141516pragma solidity =0.6.6;interface IUniswapV2Factory {event PairCreated(address indexed token0, address indexed token1, address pair, uint);function feeTo() external view returns (address);function feeToSetter() external view returns (address);function getPair(address tokenA, address tokenB) external view returns (address pair);function allPairs(uint) external view returns (address pair);function allPairsLength() external view returns (uint);function createPair(address tokenA, address tokenB) external returns (address pair);function setFeeTo(address) external;function setFeeToSetter(address) external;
File 2 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 3 of 4: RewardToken
12345678910111213141516// File: @openzeppelin/contracts/token/ERC20/IERC20.solpragma solidity ^0.5.0;/*** @dev Interface of the ERC20 standard as defined in the EIP. Does not include* the optional functions; to access them see {ERC20Detailed}.*/interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.
File 4 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;