Transaction Hash:
Block:
21937240 at Feb-27-2025 11:01:35 AM +UTC
Transaction Fee:
0.000151386836741019 ETH
$0.48
Gas Used:
120,021 Gas / 1.261336239 Gwei
Emitted Events:
648 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
649 |
bidfun.Transfer( from=[Sender] 0x6ff3aba66d8b36ece5393f873a2fb2d0a3d437c2, to=UniswapV2Pair, value=1948384132464092061825 )
|
650 |
WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=20794346899180994 )
|
651 |
UniswapV2Pair.Sync( reserve0=2896527407182081576117789, reserve1=30985674393169411079 )
|
652 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=1948384132464092061825, amount1In=0, amount0Out=0, amount1Out=20794346899180994, to=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127 )
|
653 |
WETH9.Withdrawal( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=20794346899180994 )
|
654 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000003948f9c3db8ab7c6865bdec1890847c18dcd003c, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000006ff3aba66d8b36ece5393f873a2fb2d0a3d437c2, 0000000000000000000000000000000000000000000000699f42f57e99d72081, 0000000000000000000000000000000000000000000000000049e0592c430dc2 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3948f9C3...18DCd003C | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.638483570368113414 Eth | 8.638543580868113414 Eth | 0.0000600105 | |
0x6FF3aBA6...0a3D437C2 |
0.057810086171065848 Eth
Nonce: 6
|
0.078453046233505823 Eth
Nonce: 7
| 0.020642960062439975 | ||
0xC02aaA39...83C756Cc2 | 2,923,162.874703940139938153 Eth | 2,923,162.853909593240757159 Eth | 0.020794346899180994 | ||
0xca9d5512...2668855A5 |
Execution Trace
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
OKX: Dex Aggregator.0a5ea466( )
TokenApprove.claimTokens( _token=0x3948f9C3Db8aB7c6865BDEC1890847C18DCd003C, _who=0x6FF3aBA66D8B36ecE5393F873a2fb2D0a3D437C2, _dest=0xca9d551216dB6580a2Ee77Aec1136712668855A5, _amount=1948384132464092061825 )
-
bidfun.transferFrom( sender=0x6FF3aBA66D8B36ecE5393F873a2fb2D0a3D437C2, recipient=0xca9d551216dB6580a2Ee77Aec1136712668855A5, amount=1948384132464092061825 ) => ( True )
-
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
bidfun.balanceOf( account=0xca9d551216dB6580a2Ee77Aec1136712668855A5 ) => ( 2896527407182081576117789 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=20794346899180994, to=0xF3dE3C0d654FDa23daD170f0f320a92172509127, data=0x )
WETH9.withdraw( wad=20794346899180994 )
- ETH 0.020794346899180994
0xf3de3c0d654fda23dad170f0f320a92172509127.CALL( )
- ETH 0.020794346899180994
- ETH 0.020794346899180994
0x6ff3aba66d8b36ece5393f873a2fb2d0a3d437c2.CALL( )
File 1 of 4: UniswapV2Pair
File 2 of 4: bidfun
File 3 of 4: WETH9
File 4 of 4: TokenApprove
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 2 of 4: 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);
File 3 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 4 of 4: TokenApprove
12345678910111213141516/***Submitted for verification at BscScan.com on 2023-06-26*/// SPDX-License-Identifier: MITpragma solidity ^0.8.0;// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)// OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)/**