Transaction Hash:
Block:
21936557 at Feb-27-2025 08:44:47 AM +UTC
Transaction Fee:
0.000205563658425606 ETH
$0.63
Gas Used:
130,234 Gas / 1.578417759 Gwei
Emitted Events:
467 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
468 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=1000000000000000000 )
|
469 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=1000000000000000000 )
|
470 |
Chickencoin.Transfer( from=UniswapV2Pair, to=[Sender] 0x4f886ad27b2648ee487413024a84949e6644c615, value=77981633664828838000135760377 )
|
471 |
UniswapV2Pair.Sync( reserve0=216068041866101263021, reserve1=16821822721980321162030837809460 )
|
472 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=1000000000000000000, amount1In=0, amount0Out=0, amount1Out=77981633664828838000135760377, to=[Sender] 0x4f886ad27b2648ee487413024a84949e6644c615 )
|
473 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000d55210bb6898c021a19de1f58d27b71f095921ee, 0000000000000000000000004f886ad27b2648ee487413024a84949e6644c615, 0000000000000000000000000000000000000000000000000de0b6b3a7640000, 0000000000000000000000000000000000000000fbf8e53fab370cee706fe9f9 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4F886Ad2...E6644C615 |
1.094758054567513236 Eth
Nonce: 32
|
0.09455249090908763 Eth
Nonce: 33
| 1.000205563658425606 | ||
0x5bB8F1Ce...8f3b0b74c | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.208196677237132247 Eth | 8.208326911237132247 Eth | 0.000130234 | |
0xC02aaA39...83C756Cc2 | 2,922,269.969433077893471518 Eth | 2,922,270.969433077893471518 Eth | 1 | ||
0xD55210Bb...f095921Ee |
Execution Trace
ETH 1
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 1
WETH9.CALL( )
-
WETH9.transfer( dst=0x5bB8F1Ce603577a4D17cC9D72f6a4C38f3b0b74c, wad=1000000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
Chickencoin.balanceOf( account=0x4F886Ad27b2648eE487413024a84949E6644C615 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x5bB8F1Ce603577a4D17cC9D72f6a4C38f3b0b74c ) => ( 216068041866101263021 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=77981633664828838000135760377, to=0x4F886Ad27b2648eE487413024a84949E6644C615, data=0x )
-
Chickencoin.transfer( recipient=0x4F886Ad27b2648eE487413024a84949E6644C615, amount=77981633664828838000135760377 ) => ( True )
-
WETH9.balanceOf( 0x5bB8F1Ce603577a4D17cC9D72f6a4C38f3b0b74c ) => ( 216068041866101263021 )
-
Chickencoin.balanceOf( account=0x5bB8F1Ce603577a4D17cC9D72f6a4C38f3b0b74c ) => ( 16821822721980321162030837809460 )
-
-
Chickencoin.balanceOf( account=0x4F886Ad27b2648eE487413024a84949E6644C615 ) => ( 77981633664828838000135760377 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: Chickencoin
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: Chickencoin
12345678910111213141516// Sources flattened with hardhat v2.7.0 https://hardhat.org// File @openzeppelin/contracts/utils/Context.sol@v4.4.0// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).