Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x2a9DB31F...15Bba0124 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 20.091082583098714192 Eth | 20.091100412898714192 Eth | 0.0000178298 | |
0x9726746c...4521bC5B7 | |||||
0xa796CeFe...5B355e254 |
0.018724321604527028 Eth
Nonce: 6
|
0.010907054899373216 Eth
Nonce: 7
| 0.007817266705153812 | ||
0xC02aaA39...83C756Cc2 | 2,637,567.707637693073451876 Eth | 2,637,567.715137693073451876 Eth | 0.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 )
-
UniswapV2Pair.STATICCALL( )
-
SNIBBU.transfer( recipient=0xa796CeFea59100dF5BD71D56460b9cc5B355e254, amount=2399136575291 ) => ( True )
-
SNIBBU.transfer( recipient=0x922164BBBd36Acf9E854AcBbF32faCC949fCAEef, amount=2413618285 ) => ( True )
- ETH 0.0075
callUniswapTo[UniswapV2Exchange (ln:1774)]
_callUniswap[UniswapV2Exchange (ln:1781)]
File 1 of 5: OpenOceanExchangeProxy
File 2 of 5: WETH9
File 3 of 5: UniswapV2Pair
File 4 of 5: SNIBBU
File 5 of 5: OpenOceanExchange
12345678910111213141516// File: @openzeppelin/contracts/proxy/Proxy.sol// SPDX-License-Identifier: MITpragma 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.*/
File 2 of 5: WETH9
12345678910111213141516// 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;
File 3 of 5: UniswapV2Pair
12345678910111213141516// File: contracts/interfaces/IUniswapV2Pair.solpragma 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);
File 4 of 5: SNIBBU
12345678910111213141516/***/// SPDX-License-Identifier: MITpragma 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);
File 5 of 5: OpenOceanExchange
12345678910111213141516// 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]* ====