Transaction Hash:
Block:
21936969 at Feb-27-2025 10:07:23 AM +UTC
Transaction Fee:
0.00013956356041956 ETH
$0.53
Gas Used:
103,924 Gas / 1.34293869 Gwei
Emitted Events:
183 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
184 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=50000000000000000 )
|
185 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=50000000000000000 )
|
186 |
Keeshond.Transfer( from=UniswapV2Pair, to=[Sender] 0xa2df9249b55ff341339937eaef7cc738f40803d4, value=593454808437378590131452 )
|
187 |
UniswapV2Pair.Sync( reserve0=31900299007718127504, reserve1=379171777257745050175863273 )
|
188 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=50000000000000000, amount1In=0, amount0Out=0, amount1Out=593454808437378590131452, to=[Sender] 0xa2df9249b55ff341339937eaef7cc738f40803d4 )
|
189 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000d89cc9d79ad3c49e2cd477a8bbc8e63dee53f82e, 000000000000000000000000a2df9249b55ff341339937eaef7cc738f40803d4, 00000000000000000000000000000000000000000000000000b1a2bc2ec50000, 000000000000000000000000000000000000000000007dab3fe7af76c1fb44fc )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 1.440894748950651641 Eth | 1.440946710950651641 Eth | 0.000051962 | ||
0x818ebdae...0790AC0fB | |||||
0xA2DF9249...8f40803d4 |
0.073980594644679768 Eth
Nonce: 15
|
0.023841031084260208 Eth
Nonce: 16
| 0.05013956356041956 | ||
0xC02aaA39...83C756Cc2 | 2,923,599.387264791828173405 Eth | 2,923,599.437264791828173405 Eth | 0.05 | ||
0xD89CC9D7...dee53f82E |
Execution Trace
ETH 0.05
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.05
WETH9.CALL( )
-
WETH9.transfer( dst=0x818ebdae29d226E567A16ec9a1c90800790AC0fB, wad=50000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
Keeshond.balanceOf( account=0xA2DF9249B55ff341339937eaEf7CC738f40803d4 ) => ( 632508658073679815049698 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x818ebdae29d226E567A16ec9a1c90800790AC0fB ) => ( 31900299007718127504 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=593454808437378590131452, to=0xA2DF9249B55ff341339937eaEf7CC738f40803d4, data=0x )
-
Keeshond.transfer( to=0xA2DF9249B55ff341339937eaEf7CC738f40803d4, value=593454808437378590131452 ) => ( True )
-
WETH9.balanceOf( 0x818ebdae29d226E567A16ec9a1c90800790AC0fB ) => ( 31900299007718127504 )
-
Keeshond.balanceOf( account=0x818ebdae29d226E567A16ec9a1c90800790AC0fB ) => ( 379171777257745050175863273 )
-
-
Keeshond.balanceOf( account=0xA2DF9249B55ff341339937eaEf7CC738f40803d4 ) => ( 1225963466511058405181150 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: Keeshond
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: Keeshond
12345678910111213141516// SPDX-License-Identifier: MIT// File: @openzeppelin/contracts@5.2.0/token/ERC20/IERC20.sol// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-20 standard as defined in the ERC.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).*