Transaction Hash:
Block:
12565366 at Jun-04-2021 02:52:03 AM +UTC
Transaction Fee:
0.004751292 ETH
$13.38
Gas Used:
169,689 Gas / 28 Gwei
Emitted Events:
398 |
WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=300000000000000000 )
|
399 |
WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=300000000000000000 )
|
400 |
ShibaMelon.Transfer( from=UniswapV2Pair, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, value=277239544201891481541399 )
|
401 |
UniswapV2Pair.Sync( reserve0=36439033082062183055, reserve1=39409729018154698936426695 )
|
402 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=300000000000000000, amount1In=642702077065486178424, amount0Out=0, amount1Out=326164169649284095931056, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2192bb40...153c14393 | |||||
0xC02aaA39...83C756Cc2 | 6,231,391.590587858022093067 Eth | 6,231,391.890587858022093067 Eth | 0.3 | ||
0xDdD41ace...AEbCE6398 | |||||
0xDfBd4048...B7E09ab6e |
0.713614590355258414 Eth
Nonce: 4
|
0.408863298355258414 Eth
Nonce: 5
| 0.304751292 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,087.749940164889274155 Eth | 1,087.754691456889274155 Eth | 0.004751292 |
Execution Trace
ETH 0.3
UniswapV2Router02.swapExactETHForTokens( amountOutMin=274361704370916433612066, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0xDdD41ace9d86D3E7c28f4Bf0B334cA0AEbCE6398], to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, deadline=1622776860 ) => ( amounts=[300000000000000000, 326164169649284095931056] )
-
UniswapV2Pair.STATICCALL( )
- ETH 0.3
WETH9.CALL( )
-
WETH9.transfer( dst=0x2192bb40cd8e9aaf586854649d3e5cD153c14393, wad=300000000000000000 ) => ( True )
UniswapV2Pair.swap( amount0Out=0, amount1Out=326164169649284095931056, to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, data=0x )
-
ShibaMelon.transfer( recipient=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, amount=326164169649284095931056 ) => ( True )
-
WETH9.balanceOf( 0x2192bb40cd8e9aaf586854649d3e5cD153c14393 ) => ( 36439033082062183055 )
-
ShibaMelon.balanceOf( account=0x2192bb40cd8e9aaf586854649d3e5cD153c14393 ) => ( 39409729018154698936426695 )
-
swapExactETHForTokens[UniswapV2Router02 (ln:467)]
getAmountsOut[UniswapV2Router02 (ln:476)]
getReserves[UniswapV2Library (ln:739)]
sortTokens[UniswapV2Library (ln:702)]
getReserves[UniswapV2Library (ln:703)]
pairFor[UniswapV2Library (ln:703)]
sortTokens[UniswapV2Library (ln:691)]
deposit[UniswapV2Router02 (ln:478)]
transfer[UniswapV2Router02 (ln:479)]
pairFor[UniswapV2Router02 (ln:479)]
sortTokens[UniswapV2Library (ln:691)]
_swap[UniswapV2Router02 (ln:480)]
sortTokens[UniswapV2Router02 (ln:430)]
pairFor[UniswapV2Router02 (ln:433)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:434)]
pairFor[UniswapV2Router02 (ln:434)]
sortTokens[UniswapV2Library (ln:691)]
File 1 of 4: UniswapV2Router02
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: ShibaMelon
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: ShibaMelon
12345678910111213141516/***Submitted for verification at Etherscan.io on 2021-06-03*/// Shiba Melon (SHELON)//CMC and CG application//Liqudity Locked//TG: https://t.me/ShibaMelon//Website: ShibaMelon.com