ETH Price: $3,748.05 (-3.57%)

Transaction Decoder

Block:
22696829 at Jun-13-2025 04:27:35 PM +UTC
Transaction Fee:
0.00044856531941417 ETH $1.68
Gas Used:
129,395 Gas / 3.466635646 Gwei

Emitted Events:

325 WETH9.Transfer( src=UniswapV3Pool, dst=[Receiver] OpenOceanExchangeProxy, wad=2015313214342423477 )
326 PxEth.Transfer( from=[Sender] 0x6ff3966c2c88dd17c2c9890b05f1e3d6eed3b141, to=UniswapV3Pool, amount=2019309348544734208 )
327 UniswapV3Pool.Swap( sender=[Receiver] OpenOceanExchangeProxy, recipient=[Receiver] OpenOceanExchangeProxy, amount0=2019309348544734208, amount1=-2015313214342423477, sqrtPriceX96=79153412751902520015216760788, liquidity=291361826279182022887011, tick=-19 )
328 WETH9.Withdrawal( src=[Receiver] OpenOceanExchangeProxy, wad=2015313214342423477 )

Account State Difference:

  Address   Before After State Difference Code
0x02eDd21F...1e725F119
(Uniswap V3: pxETH)
0x04C154b6...84Ed00Cc6
0x6FF3966c...6EEd3b141
0.519169640241587704 Eth
Nonce: 134
2.532008848848172464 Eth
Nonce: 135
2.01283920860658476
0x922164BB...949fCAEef 0.692193743225727002 Eth0.694219183642151549 Eth0.002025440416424547
(beaverbuild)
15.446368259796040664 Eth15.446384670498715639 Eth0.000016410702674975
0xC02aaA39...83C756Cc2 2,642,862.218676805308351652 Eth2,642,860.203363590965928175 Eth2.015313214342423477

Execution Trace

OpenOceanExchangeProxy.bc80f1a8( )
  • OpenOceanExchange.uniswapV3SwapTo( recipient=0x6FF3966c2C88dD17C2c9890B05F1e3D6EEd3b141, amount=2019309348544734208, minReturn=2003221335056368936, pools=[14474356241981863956135744863895823895253376882071523506966798712877963669785] ) => ( returnAmount=2015313214342423477 )
    • UniswapV3Pool.swap( recipient=0x6352a56caadC4F1E25CD6c75970Fa768A3304e64, zeroForOne=True, amountSpecified=2019309348544734208, sqrtPriceLimitX96=4295128740, data=0x0000000000000000000000006FF3966C2C88DD17C2C9890B05F1E3D6EED3B141 ) => ( amount0=2019309348544734208, amount1=-2015313214342423477 )
      • WETH9.transfer( dst=0x6352a56caadC4F1E25CD6c75970Fa768A3304e64, wad=2015313214342423477 ) => ( True )
      • PxEth.balanceOf( 0x02eDd21F1DB8EB146be60998e9801691e725F119 ) => ( 287996685038633714300 )
      • OpenOceanExchangeProxy.fa461e33( )
        • OpenOceanExchange.uniswapV3SwapCallback( amount0Delta=2019309348544734208, amount1Delta=-2015313214342423477, 0x0000000000000000000000006FF3966C2C88DD17C2C9890B05F1E3D6EED3B141 )
          • UniswapV3Pool.STATICCALL( )
          • UniswapV3Pool.STATICCALL( )
          • UniswapV3Pool.STATICCALL( )
          • PxEth.transferFrom( from=0x6FF3966c2C88dD17C2c9890B05F1e3D6EEd3b141, to=0x02eDd21F1DB8EB146be60998e9801691e725F119, amount=2019309348544734208 ) => ( True )
          • PxEth.balanceOf( 0x02eDd21F1DB8EB146be60998e9801691e725F119 ) => ( 290015994387178448508 )
          • UniswapV3Pool.STATICCALL( )
          • WETH9.withdraw( wad=2015313214342423477 )
            • ETH 2.015313214342423477 OpenOceanExchangeProxy.CALL( )
              • ETH 2.015313214342423477 OpenOceanExchange.DELEGATECALL( )
              • ETH 2.01328777392599893 0x6ff3966c2c88dd17c2c9890b05f1e3d6eed3b141.CALL( )
              • ETH 0.002025440416424547 0x922164bbbd36acf9e854acbbf32facc949fcaeef.CALL( )
                uniswapV3SwapTo[UniswapV3Exchange (ln:3389)]
                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: UniswapV3Pool
                1
                2
                3
                4
                5
                6
                7
                8
                9
                10
                11
                12
                13
                14
                15
                16
                // SPDX-License-Identifier: BUSL-1.1
                pragma solidity =0.7.6;
                import './interfaces/IUniswapV3Pool.sol';
                import './NoDelegateCall.sol';
                import './libraries/LowGasSafeMath.sol';
                import './libraries/SafeCast.sol';
                import './libraries/Tick.sol';
                import './libraries/TickBitmap.sol';
                import './libraries/Position.sol';
                import './libraries/Oracle.sol';
                import './libraries/FullMath.sol';
                import './libraries/FixedPoint128.sol';
                import './libraries/TransferHelper.sol';
                import './libraries/TickMath.sol';
                import './libraries/LiquidityMath.sol';
                import './libraries/SqrtPriceMath.sol';
                XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

                File 3 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 4 of 5: PxEth
                1
                2
                3
                4
                5
                6
                7
                8
                9
                10
                11
                12
                13
                14
                15
                16
                // SPDX-License-Identifier: MIT
                pragma solidity 0.8.19;
                import {DineroERC20} from "./DineroERC20.sol";
                import {Errors} from "./libraries/Errors.sol";
                /**
                * @title PxEth
                * @notice The PxEth token, the main token for the PirexEth system used in the Dinero ecosystem.
                * @dev Extends the DineroERC20 contract and includes additional functionality.
                * @author redactedcartel.finance
                */
                contract PxEth is DineroERC20 {
                // Roles
                /**
                * @notice The OPERATOR_ROLE role assigned for operator functions in the PxEth token contract.
                * @dev Used to control access to critical functions.
                */
                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