ETH Price: $4,748.79 (+5.09%)

Transaction Decoder

Block:
21936857 at Feb-27-2025 09:44:59 AM +UTC
Transaction Fee:
0.000178564280400688 ETH $0.85
Gas Used:
159,523 Gas / 1.119363856 Gwei

Emitted Events:

207 0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
208 WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=113000000000000000 )
209 WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=113000000000000000 )
210 $BORK.Transfer( from=UniswapV2Pair, to=[Sender] 0x5bb0cc8e7b03627fc09dcfe38d7c22ea52e5556f, value=39483108776425349 )
211 UniswapV2Pair.Sync( reserve0=361183906735528879, reserve1=1143601221072730791 )
212 UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=0, amount1In=113000000000000000, amount0Out=39483108776425349, amount1Out=0, to=[Sender] 0x5bb0cc8e7b03627fc09dcfe38d7c22ea52e5556f )
213 0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 00000000000000000000000069000b9dd5d3d9d244ec5605b6e8932136199362, 0000000000000000000000005bb0cc8e7b03627fc09dcfe38d7c22ea52e5556f, 000000000000000000000000000000000000000000000000019174e6bb9e8000, 000000000000000000000000000000000000000000000000008c45ada13f3785 )

Account State Difference:

  Address   Before After State Difference Code
0x04CA7662...f23a3c5E8
0x5bb0CC8E...A52e5556f
0.117502991801533129 Eth
Nonce: 147
0.004324427521132441 Eth
Nonce: 148
0.113178564280400688
0x69000b9D...136199362
(beaverbuild)
8.530322007889746273 Eth8.530401769389746273 Eth0.0000797615
0xC02aaA39...83C756Cc2 2,923,883.687870244105614721 Eth2,923,883.800870244105614721 Eth0.113

Execution Trace

ETH 0.113 0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
  • ETH 0.113 WETH9.CALL( )
  • WETH9.transfer( dst=0x04CA76626854259C06253D6b7cD253cf23a3c5E8, wad=113000000000000000 ) => ( True )
  • UniswapV2Pair.STATICCALL( )
  • $BORK.balanceOf( account=0x5bb0CC8E7b03627fC09dcFE38d7c22eA52e5556f ) => ( 0 )
  • UniswapV2Pair.STATICCALL( )
  • UniswapV2Pair.STATICCALL( )
  • WETH9.balanceOf( 0x04CA76626854259C06253D6b7cD253cf23a3c5E8 ) => ( 1143601221072730791 )
  • UniswapV2Pair.swap( amount0Out=39483108776425349, amount1Out=0, to=0x5bb0CC8E7b03627fC09dcFE38d7c22eA52e5556f, data=0x )
    • $BORK.transfer( recipient=0x5bb0CC8E7b03627fC09dcFE38d7c22eA52e5556f, amount=39483108776425349 ) => ( True )
    • $BORK.balanceOf( account=0x04CA76626854259C06253D6b7cD253cf23a3c5E8 ) => ( 361183906735528879 )
    • WETH9.balanceOf( 0x04CA76626854259C06253D6b7cD253cf23a3c5E8 ) => ( 1143601221072730791 )
    • $BORK.balanceOf( account=0x5bb0CC8E7b03627fC09dcFE38d7c22eA52e5556f ) => ( 39483108776425349 )
      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: $BORK
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      /**
      *Submitted for verification at Etherscan.io on 2024-09-07
      */
      /**
      *Submitted for verification at Etherscan.io on 2024-08-01
      */
      /**
      *Submitted for verification at Etherscan.io on 2024-05-13
      */
      // SPDX-License-Identifier: UNLICENSE
      /*
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX