ETH Price: $3,538.53 (-0.08%)

Transaction Decoder

Block:
21936829 at Feb-27-2025 09:39:11 AM +UTC
Transaction Fee:
0.000153489698641609 ETH $0.54
Gas Used:
129,833 Gas / 1.182208673 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x15aa83e8...5b3117a23
0.198725535695800147 Eth
Nonce: 3
0.198572045997158538 Eth
Nonce: 4
0.000153489698641609
3.280016325126781668 Eth3.280081241626781668 Eth0.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 ) => ( 44267692273461006657 )
  • UniswapV2Pair.swap( amount0Out=6818820988957915501290, amount1Out=0, to=0x15aa83e84AE4b7b7db12d0cf1ae79365b3117a23, data=0x )
    • bidfun.transfer( recipient=0x15aa83e84AE4b7b7db12d0cf1ae79365b3117a23, amount=6818820988957915501290 ) => ( True )
    • bidfun.balanceOf( account=0xca9d551216dB6580a2Ee77Aec1136712668855A5 ) => ( 2011572357463472877982425 )
    • WETH9.balanceOf( 0xca9d551216dB6580a2Ee77Aec1136712668855A5 ) => ( 44267692273461006657 )
    • bidfun.balanceOf( account=0x15aa83e84AE4b7b7db12d0cf1ae79365b3117a23 ) => ( 6818820988957915501290 )
      File 1 of 3: WETH9
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // 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;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 3: UniswapV2Pair
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // File: contracts/interfaces/IUniswapV2Pair.sol
      pragma 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);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 3: bidfun
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /*
      WHERE AUCTIONS MEET EXCITEMENT!
      Website: https://bidfun.vip/
      Gitbook: https://docs.bidfun.vip/
      Telegram: https://t.me/bid_fun_official
      Twitter: https://x.com/bid_fun_
      */
      // SPDX-License-Identifier: MIT
      pragma 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);
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX