ETH Price: $2,481.90 (-3.06%)

Transaction Decoder

Block:
22300574 at Apr-19-2025 04:10:47 AM +UTC
Transaction Fee:
0.000033501058085325 ETH $0.08
Gas Used:
110,821 Gas / 0.302298825 Gwei

Emitted Events:

155 Vyper_contract.Transfer( _from=0x919Fa96e88d67499339577Fa202345436bcDaf79, _to=[Receiver] 0xa69babef1ca67a37ffaf7a485dfff3382056e78c, _value=1195471091738514202660 )
156 WETH9.Transfer( src=[Receiver] 0xa69babef1ca67a37ffaf7a485dfff3382056e78c, dst=0x919Fa96e88d67499339577Fa202345436bcDaf79, wad=458393291983398735 )
157 0x919fa96e88d67499339577fa202345436bcdaf79.0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67( 0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67, 0x000000000000000000000000a69babef1ca67a37ffaf7a485dfff3382056e78c, 0x000000000000000000000000a69babef1ca67a37ffaf7a485dfff3382056e78c, 000000000000000000000000000000000000000000000000065c8a453817a74f, ffffffffffffffffffffffffffffffffffffffffffffffbf31817ff0ed715fdc, 00000000000000000000000000000000000000332412b810cce019ea1b6c312f, 000000000000000000000000000000000000000000001f440d71f00bad707ec1, 0000000000000000000000000000000000000000000000000000000000013367 )

Account State Difference:

  Address   Before After State Difference Code
0x919Fa96e...36bcDaf79
(Uniswap V3: CRV)
(beaverbuild)
10.532519420006248525 Eth10.532573791839531366 Eth0.000054371833282841
0xA69babEF...82056e78C
(MEV Bot: 0xA69...78C)
298.077486566447042725 Eth298.077432194623698828 Eth0.000054371823343897
0xBbAD9633...d0bA4D1EF
2.280226381780033767 Eth
Nonce: 223455
2.280192880712009498 Eth
Nonce: 223456
0.000033501068024269
0xC02aaA39...83C756Cc2
0xD533a949...bA034cd52

Execution Trace

ETH 0.000000000009938944 MEV Bot: 0xA69...78C.78e111f6( )
  • ETH 0.000000000009938944 0x7f0f35bbf44c8343d14260372c469b331491567b.f4ff5295( )
    • Uniswap V3: CRV.128acb08( )
      • Vyper_contract.transfer( _to=0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C, _value=1195471091738514202660 ) => ( True )
      • WETH9.balanceOf( 0x919Fa96e88d67499339577Fa202345436bcDaf79 ) => ( 520177675011478922460 )
      • MEV Bot: 0xA69...78C.fa461e33( )
        • WETH9.transfer( dst=0x919Fa96e88d67499339577Fa202345436bcDaf79, wad=458393291983398735 ) => ( True )
        • WETH9.balanceOf( 0x919Fa96e88d67499339577Fa202345436bcDaf79 ) => ( 520636068303462321195 )
        • ETH 0.000054371833282841 beaverbuild.CALL( )
          File 1 of 2: Vyper_contract
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          # @version 0.2.4
          """
          @title Curve DAO Token
          @author Curve Finance
          @license MIT
          @notice ERC20 with piecewise-linear mining supply.
          @dev Based on the ERC-20 token standard as defined at
          https://eips.ethereum.org/EIPS/eip-20
          """
          from vyper.interfaces import ERC20
          implements: ERC20
          event Transfer:
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 2 of 2: 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