ETH Price: $3,723.17 (-0.09%)

Transaction Decoder

Block:
22673744 at Jun-10-2025 11:04:23 AM +UTC
Transaction Fee:
0.000317266705153812 ETH $1.18
Gas Used:
178,298 Gas / 1.779418194 Gwei

Emitted Events:

402 WETH9.Deposit( dst=[Receiver] OpenOceanExchangeProxy, wad=7500000000000000 )
403 WETH9.Transfer( src=[Receiver] OpenOceanExchangeProxy, dst=UniswapV2Pair, wad=7500000000000000 )
404 SNIBBU.Transfer( from=UniswapV2Pair, to=[Receiver] OpenOceanExchangeProxy, value=2401550193576 )
405 UniswapV2Pair.Sync( reserve0=18552612486265409, reserve1=57773171622065291805 )
406 UniswapV2Pair.Swap( sender=[Receiver] OpenOceanExchangeProxy, amount0In=0, amount1In=7500000000000000, amount0Out=2401550193576, amount1Out=0, to=[Receiver] OpenOceanExchangeProxy )
407 SNIBBU.Transfer( from=[Receiver] OpenOceanExchangeProxy, to=[Sender] 0xa796cefea59100df5bd71d56460b9cc5b355e254, value=2399136575291 )
408 SNIBBU.Transfer( from=[Receiver] OpenOceanExchangeProxy, to=0x922164BBBd36Acf9E854AcBbF32faCC949fCAEef, value=2413618285 )

Account State Difference:

  Address   Before After State Difference Code
0x2a9DB31F...15Bba0124
(beaverbuild)
20.091082583098714192 Eth20.091100412898714192 Eth0.0000178298
0x9726746c...4521bC5B7
0xa796CeFe...5B355e254
0.018724321604527028 Eth
Nonce: 6
0.010907054899373216 Eth
Nonce: 7
0.007817266705153812
0xC02aaA39...83C756Cc2 2,637,567.707637693073451876 Eth2,637,567.715137693073451876 Eth0.0075

Execution Trace

ETH 0.0075 OpenOceanExchangeProxy.6b58f2f0( )
  • ETH 0.0075 OpenOceanExchange.callUniswapTo( ) => ( returnAmount=2401550193576 )
    • ETH 0.0075 WETH9.CALL( )
    • WETH9.transfer( dst=0x9726746c6b96B489715185071B3be774521bC5B7, wad=7500000000000000 ) => ( True )
    • UniswapV2Pair.STATICCALL( )
    • UniswapV2Pair.swap( amount0Out=2401550193576, amount1Out=0, to=0x6352a56caadC4F1E25CD6c75970Fa768A3304e64, data=0x )
      • SNIBBU.transfer( recipient=0x6352a56caadC4F1E25CD6c75970Fa768A3304e64, amount=2401550193576 ) => ( True )
      • SNIBBU.balanceOf( account=0x9726746c6b96B489715185071B3be774521bC5B7 ) => ( 18552612486265409 )
      • WETH9.balanceOf( 0x9726746c6b96B489715185071B3be774521bC5B7 ) => ( 57773171622065291805 )
      • UniswapV2Pair.STATICCALL( )
      • SNIBBU.transfer( recipient=0xa796CeFea59100dF5BD71D56460b9cc5B355e254, amount=2399136575291 ) => ( True )
      • SNIBBU.transfer( recipient=0x922164BBBd36Acf9E854AcBbF32faCC949fCAEef, amount=2413618285 ) => ( True )
        File 1 of 5: OpenOceanExchangeProxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // File: @openzeppelin/contracts/proxy/Proxy.sol
        // SPDX-License-Identifier: MIT
        pragma solidity >=0.6.0 <0.8.0;
        /**
        * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
        * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
        * be specified by overriding the virtual {_implementation} function.
        *
        * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
        * different contract through the {_delegate} function.
        *
        * The success and return data of the delegated call will be returned back to the caller of the proxy.
        */
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 5: 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 3 of 5: 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 4 of 5: SNIBBU
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        /**
        */
        // SPDX-License-Identifier: MIT
        pragma solidity 0.8.24;
        abstract contract Context {
        function _msgSender() internal view virtual returns (address) {
        return msg.sender;
        }
        }
        interface IERC20 {
        function totalSupply() external view returns (uint256);
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 5 of 5: OpenOceanExchange
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
        pragma solidity ^0.8.1;
        /**
        * @dev Collection of functions related to the address type
        */
        library AddressUpgradeable {
        /**
        * @dev Returns true if `account` is a contract.
        *
        * [IMPORTANT]
        * ====
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX