Transaction Hash:
Block:
20264382 at Jul-08-2024 09:11:59 PM +UTC
Transaction Fee:
0.000473298533260124 ETH
$0.89
Gas Used:
147,446 Gas / 3.209978794 Gwei
Emitted Events:
143 |
WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=16707777132907720 )
|
144 |
WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=16707777132907720 )
|
145 |
MOJO.Transfer( from=UniswapV2Pair, to=[Sender] 0xa39ddcb1a72e835b9eaf291f72ab1498527012cb, value=8314581740849437745475830797 )
|
146 |
UniswapV2Pair.Sync( reserve0=18824746055821013684329625473393, reserve1=37730703799156826301 )
|
147 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=16707777132907720, amount0Out=8314581740849437745475830797, amount1Out=0, to=[Sender] 0xa39ddcb1a72e835b9eaf291f72ab1498527012cb )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.272681938829475741 Eth | 9.272691247983670445 Eth | 0.000009309154194704 | |
0x9A741cc1...AC2b6921b | |||||
0xA39DDcb1...8527012cb |
0.09341385479438326 Eth
Nonce: 47
|
0.076232779128215416 Eth
Nonce: 48
| 0.017181075666167844 | ||
0xC02aaA39...83C756Cc2 | 2,763,381.858837138046714853 Eth | 2,763,381.875544915179622573 Eth | 0.01670777713290772 |
Execution Trace
ETH 0.01670777713290772
UniswapV2Router02.swapExactETHForTokensSupportingFeeOnTransferTokens( amountOutMin=6235936305637078309106873098, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x07DDaCf367f0d40bd68B4b80b4709A37BDC9F847], to=0xA39DDcb1A72E835B9eaF291f72Ab1498527012cb, deadline=1720473110139 )
- ETH 0.01670777713290772
WETH9.CALL( )
-
WETH9.transfer( dst=0x9A741cc15028B32b159F173f3ae6F88AC2b6921b, wad=16707777132907720 ) => ( True )
-
MOJO.balanceOf( account=0xA39DDcb1A72E835B9eaF291f72Ab1498527012cb ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x9A741cc15028B32b159F173f3ae6F88AC2b6921b ) => ( 37730703799156826301 )
UniswapV2Pair.swap( amount0Out=8314581740849437745475830797, amount1Out=0, to=0xA39DDcb1A72E835B9eaF291f72Ab1498527012cb, data=0x )
-
MOJO.transfer( recipient=0xA39DDcb1A72E835B9eaF291f72Ab1498527012cb, amount=8314581740849437745475830797 ) => ( True )
-
MOJO.balanceOf( account=0x9A741cc15028B32b159F173f3ae6F88AC2b6921b ) => ( 18824746055821013684329625473393 )
-
WETH9.balanceOf( 0x9A741cc15028B32b159F173f3ae6F88AC2b6921b ) => ( 37730703799156826301 )
-
-
MOJO.balanceOf( account=0xA39DDcb1A72E835B9eaF291f72Ab1498527012cb ) => ( 8314581740849437745475830797 )
swapExactETHForTokensSupportingFeeOnTransferTokens[UniswapV2Router02 (ln:571)]
deposit[UniswapV2Router02 (ln:585)]
transfer[UniswapV2Router02 (ln:586)]
pairFor[UniswapV2Router02 (ln:586)]
sortTokens[UniswapV2Library (ln:691)]
balanceOf[UniswapV2Router02 (ln:587)]
_swapSupportingFeeOnTransferTokens[UniswapV2Router02 (ln:588)]
sortTokens[UniswapV2Router02 (ln:539)]
pairFor[UniswapV2Router02 (ln:540)]
sortTokens[UniswapV2Library (ln:691)]
getReserves[UniswapV2Router02 (ln:544)]
sub[UniswapV2Router02 (ln:546)]
balanceOf[UniswapV2Router02 (ln:546)]
pairFor[UniswapV2Router02 (ln:550)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:551)]
sub[UniswapV2Router02 (ln:590)]
balanceOf[UniswapV2Router02 (ln:590)]
File 1 of 4: UniswapV2Router02
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: MOJO
12345678910111213141516pragma solidity =0.6.6;interface IUniswapV2Factory {event PairCreated(address indexed token0, address indexed token1, address pair, uint);function feeTo() external view returns (address);function feeToSetter() external view returns (address);function getPair(address tokenA, address tokenB) external view returns (address pair);function allPairs(uint) external view returns (address pair);function allPairsLength() external view returns (uint);function createPair(address tokenA, address tokenB) external returns (address pair);function setFeeTo(address) external;function setFeeToSetter(address) external;
File 2 of 4: 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 4: 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 4: MOJO
12345678910111213141516// https://mojotheoriginal.com// https://t.me/MojoByMattFurie// https://x.com/MojoByMattFurie// SPDX-License-Identifier: Unlicensedpragma solidity 0.8.21;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}