ETH Price: $3,009.59 (+1.23%)

Transaction Decoder

Block:
22712209 at Jun-15-2025 08:05:59 PM +UTC
Transaction Fee:
0.000220887608942198 ETH $0.66
Gas Used:
208,406 Gas / 1.059890833 Gwei

Emitted Events:

340 BIRDDOG.Transfer( from=[Sender] 0x627856d5920db0e1cebeff2b9698029f6218dc56, to=UniswapV2Pair, value=1691951697489747 )
341 BIRDDOG.Approval( owner=[Sender] 0x627856d5920db0e1cebeff2b9698029f6218dc56, spender=[Receiver] ZeroEx, value=57896044618658097711785492504343953926634992332820282019728684012738970876260 )
342 WETH9.Transfer( src=UniswapV2Pair, dst=UniswapV2Pair, wad=2302892050652195 )
343 UniswapV2Pair.Sync( reserve0=53538180147244680352, reserve1=39218581302079119447 )
344 UniswapV2Pair.Swap( sender=[Receiver] ZeroEx, amount0In=0, amount1In=1691951697489747, amount0Out=2302892050652195, amount1Out=0, to=UniswapV2Pair )
345 Degen.Transfer( from=UniswapV2Pair, to=[Sender] 0x627856d5920db0e1cebeff2b9698029f6218dc56, value=733698153960580373488524710 )
346 UniswapV2Pair.Sync( reserve0=12104766764340029345272151322265, reserve1=37882108222215024638 )
347 UniswapV2Pair.Swap( sender=[Receiver] ZeroEx, amount0In=0, amount1In=2302892050652195, amount0Out=733698153960580373488524710, amount1Out=0, to=[Sender] 0x627856d5920db0e1cebeff2b9698029f6218dc56 )

Account State Difference:

  Address   Before After State Difference Code
0x420658A1...Ba9011969
0x47270cA9...Dd96a082a
0x627856d5...f6218dC56
0.014994640837353008 Eth
Nonce: 2349
0.01477375322841081 Eth
Nonce: 2350
0.000220887608942198
(beaverbuild)
8.704492775529467543 Eth8.704596978529467543 Eth0.000104203
0xC02aaA39...83C756Cc2
0xE54f9128...b7D7Dc915
0xF6Ce4BE3...39A331E37

Execution Trace

ZeroEx.d9627aa4( )
  • UniswapFeature.sellToUniswap( tokens=[0xF6Ce4BE313EaD51511215F1874c898239A331E37, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x420658A1d8B8F5C36DdAf1Bb828f347Ba9011969], sellAmount=1691951697489747, minBuyAmount=730035395646650736703246402, isSushi=False ) => ( buyAmount=733698153960580373488524710 )
    • BIRDDOG.transferFrom( sender=0x627856d5920dB0E1Cebeff2b9698029f6218dC56, recipient=0x47270cA9a3cdF198d26A847B577E9bBDd96a082a, amount=1691951697489747 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • UniswapV2Pair.swap( amount0Out=2302892050652195, amount1Out=0, to=0xE54f912821b53Ee057E9Fd8ceE9a61fb7D7Dc915, data=0x )
      • WETH9.transfer( dst=0xE54f912821b53Ee057E9Fd8ceE9a61fb7D7Dc915, wad=2302892050652195 ) => ( True )
      • WETH9.balanceOf( 0x47270cA9a3cdF198d26A847B577E9bBDd96a082a ) => ( 53538180147244680352 )
      • BIRDDOG.balanceOf( account=0x47270cA9a3cdF198d26A847B577E9bBDd96a082a ) => ( 39218581302079119447 )
      • UniswapV2Pair.STATICCALL( )
      • UniswapV2Pair.swap( amount0Out=733698153960580373488524710, amount1Out=0, to=0x627856d5920dB0E1Cebeff2b9698029f6218dC56, data=0x )
        • Degen.transfer( recipient=0x627856d5920dB0E1Cebeff2b9698029f6218dC56, amount=733698153960580373488524710 ) => ( True )
        • Degen.balanceOf( account=0xE54f912821b53Ee057E9Fd8ceE9a61fb7D7Dc915 ) => ( 12104766764340029345272151322265 )
        • WETH9.balanceOf( 0xE54f912821b53Ee057E9Fd8ceE9a61fb7D7Dc915 ) => ( 37882108222215024638 )
          File 1 of 7: ZeroEx
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          /*
          Copyright 2020 ZeroEx Intl.
          Licensed under the Apache License, Version 2.0 (the "License");
          you may not use this file except in compliance with the License.
          You may obtain a copy of the License at
          http://www.apache.org/licenses/LICENSE-2.0
          Unless required by applicable law or agreed to in writing, software
          distributed under the License is distributed on an "AS IS" BASIS,
          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
          See the License for the specific language governing permissions and
          limitations under the License.
          */
          pragma solidity ^0.6.5;
          pragma experimental ABIEncoderV2;
          import "@0x/contracts-utils/contracts/src/v06/LibBytesV06.sol";
          import "./migrations/LibBootstrap.sol";
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 2 of 7: 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 7: BIRDDOG
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // SPDX-License-Identifier: UNLICENSE
          /*
          The 5th character of @Matt_Furie's Boys Club that no one knew about...
          This ones for you Matt 💛
          https://opensea.io/assets/ethereum/0x808e5cd160d8819ca24c2053037049eb611d0542/51
          https://twitter.com/birddogethcoin
          https://t.me/birddogcoineth
          https://dirtypilot.com/products/matt-furie-boys-club-zine-4
          */
          pragma solidity 0.8.23;
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 4 of 7: 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 5 of 7: 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 6 of 7: Degen
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          /*
          * SPDX-License-Identifier: MIT
          * https://www.degenarena.net/
          * https://x.com/degenarenagame
          * https://t.me/degenarenagame
          */
          pragma solidity 0.8.19;
          library SafeMath {
          /**
          * @dev Returns the addition of two unsigned integers, with an overflow flag.
          *
          * _Available since v3.4._
          */
          function tryAdd(
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

          File 7 of 7: UniswapFeature
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // SPDX-License-Identifier: Apache-2.0
          /*
          Copyright 2020 ZeroEx Intl.
          Licensed under the Apache License, Version 2.0 (the "License");
          you may not use this file except in compliance with the License.
          You may obtain a copy of the License at
          http://www.apache.org/licenses/LICENSE-2.0
          Unless required by applicable law or agreed to in writing, software
          distributed under the License is distributed on an "AS IS" BASIS,
          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
          See the License for the specific language governing permissions and
          limitations under the License.
          */
          pragma solidity ^0.6.5;
          pragma experimental ABIEncoderV2;
          import "@0x/contracts-erc20/contracts/src/v06/IERC20TokenV06.sol";
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX