Transaction Hash:
Block:
12736427 at Jun-30-2021 04:27:00 PM +UTC
Transaction Fee:
0.0057619716 ETH
$10.73
Gas Used:
119,049 Gas / 48.4 Gwei
Emitted Events:
227 |
WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=35062587819733241 )
|
228 |
WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=35062587819733241 )
|
229 |
BURNXTOKEN.Transfer( from=UniswapV2Pair, to=[Sender] 0x1f46e1dd2c6ba02085392042943d103d5f42b18f, value=2304634697620138940237680914 )
|
230 |
UniswapV2Pair.Sync( reserve0=6652946654838637479710524013547, reserve1=100948980965602331601 )
|
231 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=0, amount1In=35062587819733241, amount0Out=2304634697620138940237680914, amount1Out=0, to=[Sender] 0x1f46e1dd2c6ba02085392042943d103d5f42b18f )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x10623873...8597281fe | |||||
0x1f46E1dd...d5F42B18f |
0.045062587819733241 Eth
Nonce: 27
|
0.0042380284 Eth
Nonce: 28
| 0.040824559419733241 | ||
0x9cfcA91b...919A424Cf | |||||
0xC02aaA39...83C756Cc2 | 6,336,883.729974696080815295 Eth | 6,336,883.765037283900548536 Eth | 0.035062587819733241 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,427.636201965948121018 Eth | 1,427.641963937548121018 Eth | 0.0057619716 |
Execution Trace
ETH 0.035062587819733241
UniswapV2Router02.swapExactETHForTokens( amountOutMin=2293395730094436085002612482, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x106238737b85b4220C7A7DdFD5c4cAF8597281fe], to=0x1f46E1dd2C6Ba02085392042943D103d5F42B18f, deadline=1625071533 ) => ( amounts=[35062587819733241, 2304634697620138940237680914] )
-
UniswapV2Pair.STATICCALL( )
- ETH 0.035062587819733241
WETH9.CALL( )
-
WETH9.transfer( dst=0x9cfcA91b3B66d811128f01F0CB300cd919A424Cf, wad=35062587819733241 ) => ( True )
UniswapV2Pair.swap( amount0Out=2304634697620138940237680914, amount1Out=0, to=0x1f46E1dd2C6Ba02085392042943D103d5F42B18f, data=0x )
-
BURNXTOKEN.transfer( recipient=0x1f46E1dd2C6Ba02085392042943D103d5F42B18f, amount=2304634697620138940237680914 ) => ( True )
-
BURNXTOKEN.balanceOf( account=0x9cfcA91b3B66d811128f01F0CB300cd919A424Cf ) => ( 6652946654838637479710524013547 )
-
WETH9.balanceOf( 0x9cfcA91b3B66d811128f01F0CB300cd919A424Cf ) => ( 100948980965602331601 )
-
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: BURNXTOKEN
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: BURNXTOKEN
123456789101112// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;// BurnX - inspiring millions for the forthcoming bullrun and beyond// --------------------------------------------------------------------------------------------//// Telegram: https://t.me/BurnXCommunity//// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM