Transaction Hash:
Block:
21936828 at Feb-27-2025 09:38:59 AM +UTC
Transaction Fee:
0.000157381972275583 ETH
$0.59
Gas Used:
129,833 Gas / 1.212187751 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x15aa83e8...5b3117a23 |
0.19888291766807573 Eth
Nonce: 2
|
0.198725535695800147 Eth
Nonce: 3
| 0.000157381972275583 | ||
0x1f9090aa...8e676c326
Miner
| 3.283364162220513926 Eth | 3.283429078720513926 Eth | 0.0000649165 |
Execution Trace
ETH 0.15
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.15
WETH9.CALL( )
-
WETH9.transfer( dst=0xca9d551216dB6580a2Ee77Aec1136712668855A5, wad=150000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
bidfun.balanceOf( account=0x15aa83e84AE4b7b7db12d0cf1ae79365b3117a23 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xca9d551216dB6580a2Ee77Aec1136712668855A5 ) => ( 44157742024704787752 )
UniswapV2Pair.swap( amount0Out=6852827153625454915769, amount1Out=0, to=0x15aa83e84AE4b7b7db12d0cf1ae79365b3117a23, data=0x )
-
bidfun.transfer( recipient=0x15aa83e84AE4b7b7db12d0cf1ae79365b3117a23, amount=6852827153625454915769 ) => ( True )
-
bidfun.balanceOf( account=0xca9d551216dB6580a2Ee77Aec1136712668855A5 ) => ( 2016566028195526746220411 )
-
WETH9.balanceOf( 0xca9d551216dB6580a2Ee77Aec1136712668855A5 ) => ( 44157742024704787752 )
-
-
bidfun.balanceOf( account=0x15aa83e84AE4b7b7db12d0cf1ae79365b3117a23 ) => ( 6852827153625454915769 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: bidfun
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: bidfun
12345678910111213141516/*WHERE AUCTIONS MEET EXCITEMENT!Website: https://bidfun.vip/Gitbook: https://docs.bidfun.vip/Telegram: https://t.me/bid_fun_officialTwitter: https://x.com/bid_fun_*/// 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);