Transaction Hash:
Block:
22213132 at Apr-06-2025 11:25:11 PM +UTC
Transaction Fee:
0.001177342425430403 ETH
$3.06
Gas Used:
118,799 Gas / 9.910373197 Gwei
Emitted Events:
132 |
WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=508800000000000000 )
|
133 |
WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=508800000000000000 )
|
134 |
DeHiveverse.Transfer( from=UniswapV2Pair, to=[Sender] 0x816b34d5e3ce16b1b8bbe84d6bdcbc99e5010680, value=146978386382066451168600 )
|
135 |
UniswapV2Pair.Sync( reserve0=62941717015356380739, reserve1=18089428269167843735571254 )
|
136 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=508800000000000000, amount1In=0, amount0Out=0, amount1Out=146978386382066451168600, to=[Sender] 0x816b34d5e3ce16b1b8bbe84d6bdcbc99e5010680 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 4.579574324177907057 Eth | 4.579693123177907057 Eth | 0.000118799 | ||
0x3a0e9c8E...c090EC2b9 | |||||
0x816B34D5...9E5010680 |
0.66123280766579884 Eth
Nonce: 39
|
0.151255465240368437 Eth
Nonce: 40
| 0.509977342425430403 | ||
0xC02aaA39...83C756Cc2 | 2,795,111.073176894716378273 Eth | 2,795,111.581976894716378273 Eth | 0.5088 | ||
0xe499d014...31d6F41b0 |
Execution Trace
ETH 0.5088
UniswapV2Router02.swapExactETHForTokens( amountOutMin=29395677276413290233720, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0xe499d014faDC0660227B114E1664a3331d6F41b0], to=0x816B34D5E3ce16b1b8bBE84d6BdCBc99E5010680, deadline=1743981911 ) => ( amounts=[508800000000000000, 146978386382066451168600] )
-
UniswapV2Pair.STATICCALL( )
- ETH 0.5088
WETH9.CALL( )
-
WETH9.transfer( dst=0x3a0e9c8E3976C6F0755e97dE27A794Dc090EC2b9, wad=508800000000000000 ) => ( True )
UniswapV2Pair.swap( amount0Out=0, amount1Out=146978386382066451168600, to=0x816B34D5E3ce16b1b8bBE84d6BdCBc99E5010680, data=0x )
-
DeHiveverse.transfer( recipient=0x816B34D5E3ce16b1b8bBE84d6BdCBc99E5010680, amount=146978386382066451168600 ) => ( True )
-
WETH9.balanceOf( 0x3a0e9c8E3976C6F0755e97dE27A794Dc090EC2b9 ) => ( 62941717015356380739 )
-
DeHiveverse.balanceOf( account=0x3a0e9c8E3976C6F0755e97dE27A794Dc090EC2b9 ) => ( 18089428269167843735571254 )
-
swapExactETHForTokens[UniswapV2Router02 (ln:467)]
getAmountsOut[UniswapV2Router02 (ln:476)]
getReserves[UniswapV2Library (ln:739)]
sortTokens[UniswapV2Library (ln:702)]
getReserves[UniswapV2Library (ln:703)]
pairFor[UniswapV2Library (ln:703)]
sortTokens[UniswapV2Library (ln:691)]
deposit[UniswapV2Router02 (ln:478)]
transfer[UniswapV2Router02 (ln:479)]
pairFor[UniswapV2Router02 (ln:479)]
sortTokens[UniswapV2Library (ln:691)]
_swap[UniswapV2Router02 (ln:480)]
sortTokens[UniswapV2Router02 (ln:430)]
pairFor[UniswapV2Router02 (ln:433)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:434)]
pairFor[UniswapV2Router02 (ln:434)]
sortTokens[UniswapV2Library (ln:691)]
File 1 of 4: UniswapV2Router02
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: DeHiveverse
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: 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: DeHiveverse
12345678910111213141516/*Your On-Ramp to the Next-Gen, Decentralized SocialFi Experience.WEB: https://dehiveverse.com/TG: https://t.me/DeHiveverse_PORTALX: https://x.com/DeHiveverse_*/// SPDX-License-Identifier: MITpragma solidity ^0.8.27;interface IERC20 {function totalSupply() external view returns (uint256);function balanceOf(address account) external view returns (uint256);function transfer(address recipient, uint256 amount) external returns (bool);