Transaction Hash:
Block:
21936595 at Feb-27-2025 08:52:23 AM +UTC
Transaction Fee:
0.000157320852289968 ETH
$0.68
Gas Used:
140,424 Gas / 1.120327382 Gwei
Emitted Events:
69 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
70 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=370000000000000000 )
|
71 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=370000000000000000 )
|
72 |
Tweet.Transfer( from=UniswapV2Pair, to=[Sender] 0x9b0ef43765b6c1e525dd9aedbbc07d303a2f21ea, value=506084835097888103 )
|
73 |
UniswapV2Pair.Sync( reserve0=25713789088965258882, reserve1=19113022906809043932 )
|
74 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=0, amount1In=370000000000000000, amount0Out=506084835097888103, amount1Out=0, to=[Sender] 0x9b0ef43765b6c1e525dd9aedbbc07d303a2f21ea )
|
75 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000008e1ce8013262fadeee1292c814cc8b6a6a336920, 0000000000000000000000009b0ef43765b6c1e525dd9aedbbc07d303a2f21ea, 0000000000000000000000000000000000000000000000000522810a26e50000, 0000000000000000000000000000000000000000000000000705f979e638c567 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5D7634Ec...1005eA407 | |||||
0x8E1CE801...A6A336920 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.265776958945843116 Eth | 8.265847170945843116 Eth | 0.000070212 | |
0x9b0EF437...03A2F21eA |
0.533360328597034343 Eth
Nonce: 58
|
0.163203007744744375 Eth
Nonce: 59
| 0.370157320852289968 | ||
0xC02aaA39...83C756Cc2 | 2,921,691.099709805299618235 Eth | 2,921,691.469709805299618235 Eth | 0.37 |
Execution Trace
ETH 0.37
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.37
WETH9.CALL( )
-
WETH9.transfer( dst=0x5D7634Eca0bFadd87CEE4baef0cdDD81005eA407, wad=370000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
Tweet.balanceOf( account=0x9b0EF43765b6c1E525dd9AEDBBC07D303A2F21eA ) => ( 190348919217123810 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x5D7634Eca0bFadd87CEE4baef0cdDD81005eA407 ) => ( 19113022906809043932 )
UniswapV2Pair.swap( amount0Out=506084835097888103, amount1Out=0, to=0x9b0EF43765b6c1E525dd9AEDBBC07D303A2F21eA, data=0x )
-
Tweet.balanceOf( account=0x9b0EF43765b6c1E525dd9AEDBBC07D303A2F21eA ) => ( 696433754315011913 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: Tweet
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 2 of 3: 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 3: Tweet
12345678910111213141516// SPDX-License-Identifier: MIT/*https://x.com/elonmusk/status/1865305060307009884*/pragma solidity 0.8.23;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}interface IERC20 {