Transaction Hash:
Block:
22724754 at Jun-17-2025 02:14:35 PM +UTC
Transaction Fee:
0.000417384 ETH
$1.28
Gas Used:
104,346 Gas / 4 Gwei
Emitted Events:
184 |
WETH9.Deposit( dst=[Receiver] ZeroEx, wad=500000000000000000 )
|
185 |
WETH9.Transfer( src=[Receiver] ZeroEx, dst=UniswapV2Pair, wad=500000000000000000 )
|
186 |
ApusClubToken.Transfer( from=UniswapV2Pair, to=[Sender] 0x3004892cf2946356e8e4570a94748afdff86681c, value=7089191920784712263476823 )
|
187 |
UniswapV2Pair.Sync( reserve0=7241444378466767796501143104, reserve1=509706135622027770874 )
|
188 |
UniswapV2Pair.Swap( sender=[Receiver] ZeroEx, amount0In=0, amount1In=500000000000000000, amount0Out=7089191920784712263476823, amount1Out=0, to=[Sender] 0x3004892cf2946356e8e4570a94748afdff86681c )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3004892C...DFF86681C |
23.871483561125360538 Eth
Nonce: 19695
|
23.371066177125360538 Eth
Nonce: 19696
| 0.500417384 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.611402420253766618 Eth | 9.611595923500687492 Eth | 0.000193503246920874 | |
0x594DaaD7...E188b5bFa | |||||
0x5CEd44F0...5FB89E3ED | |||||
0xC02aaA39...83C756Cc2 | 2,622,352.143155536363290245 Eth | 2,622,352.643155536363290245 Eth | 0.5 |
Execution Trace
ETH 0.5
ZeroEx.d9627aa4( )
ETH 0.5
UniswapFeature.sellToUniswap( tokens=[0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, 0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa], sellAmount=500000000000000000, minBuyAmount=6876516163161170895572518, isSushi=False ) => ( buyAmount=7089191920784712263476823 )
- ETH 0.5
WETH9.CALL( )
-
WETH9.transfer( dst=0x5CEd44F03ff443BBE14d8eA23bc24425FB89E3ED, wad=500000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
UniswapV2Pair.swap( amount0Out=7089191920784712263476823, amount1Out=0, to=0x3004892CF2946356e8e4570a94748afDFF86681C, data=0x )
-
ApusClubToken.transfer( to=0x3004892CF2946356e8e4570a94748afDFF86681C, value=7089191920784712263476823 ) => ( True )
-
ApusClubToken.balanceOf( account=0x5CEd44F03ff443BBE14d8eA23bc24425FB89E3ED ) => ( 7241444378466767796501143104 )
-
WETH9.balanceOf( 0x5CEd44F03ff443BBE14d8eA23bc24425FB89E3ED ) => ( 509706135622027770874 )
-
- ETH 0.5
sellToUniswap[UniswapFeature (ln:98)]
File 1 of 5: ZeroEx
File 2 of 5: WETH9
File 3 of 5: UniswapV2Pair
File 4 of 5: ApusClubToken
File 5 of 5: UniswapFeature
12345678910111213141516/*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 athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.*/pragma solidity ^0.6.5;pragma experimental ABIEncoderV2;import "@0x/contracts-utils/contracts/src/v06/LibBytesV06.sol";import "./migrations/LibBootstrap.sol";
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: ApusClubToken
12345678910111213141516// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.
File 5 of 5: UniswapFeature
12345678910111213141516// 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 athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.*/pragma solidity ^0.6.5;pragma experimental ABIEncoderV2;import "@0x/contracts-erc20/contracts/src/v06/IERC20TokenV06.sol";