Transaction Hash:
Block:
20349720 at Jul-20-2024 07:05:47 PM +UTC
Transaction Fee:
0.000400767605001152 ETH
$1.19
Gas Used:
147,856 Gas / 2.710526492 Gwei
Emitted Events:
105 |
WETH9.Transfer( src=[Receiver] 0xafb5557b06787722aa4590fe69d7518cbd444784, dst=UniswapV2Pair, wad=102775727847877771 )
|
106 |
FREYA.Transfer( from=UniswapV2Pair, to=[Receiver] 0xafb5557b06787722aa4590fe69d7518cbd444784, value=2973109098107273011678 )
|
107 |
UniswapV2Pair.Sync( reserve0=97554000689549067638834, reserve1=3464947967483627161 )
|
108 |
UniswapV2Pair.Swap( sender=UniswapV2Router02, amount0In=0, amount1In=102775727847877771, amount0Out=2973109098107273011678, amount1Out=0, to=[Receiver] 0xafb5557b06787722aa4590fe69d7518cbd444784 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x10101073...Ca223514A |
1.744276853530372807 Eth
Nonce: 49
|
1.743876085925371655 Eth
Nonce: 50
| 0.000400767605001152 | ||
0x272d77B9...A43f1b434 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.998631582547232998 Eth | 11.998631582547380854 Eth | 0.000000000000147856 | |
0x64586678...f91c9dB0A | |||||
0xC02aaA39...83C756Cc2 |
Execution Trace
0xafb5557b06787722aa4590fe69d7518cbd444784.3b5f4824( )
-
WETH9.allowance( 0xAfb5557B06787722AA4590fe69D7518cbD444784, 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 115792089237316195423570985008687907853269984665640564039457584007913129639935 )
-
WETH9.balanceOf( 0xAfb5557B06787722AA4590fe69D7518cbD444784 ) => ( 322402237089946399 )
UniswapV2Router02.swapExactTokensForTokensSupportingFeeOnTransferTokens( amountIn=102775727847877771, amountOutMin=0, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x272d77B95D70cD2B4E350428AC6520aA43f1b434], to=0xAfb5557B06787722AA4590fe69D7518cbD444784, deadline=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
-
WETH9.transferFrom( src=0xAfb5557B06787722AA4590fe69D7518cbD444784, dst=0x645866784D874461716cbc2400A310Cf91c9dB0A, wad=102775727847877771 ) => ( True )
-
FREYA.balanceOf( account=0xAfb5557B06787722AA4590fe69D7518cbD444784 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x645866784D874461716cbc2400A310Cf91c9dB0A ) => ( 3464947967483627161 )
UniswapV2Pair.swap( amount0Out=2973109098107273011678, amount1Out=0, to=0xAfb5557B06787722AA4590fe69D7518cbD444784, data=0x )
-
FREYA.transfer( recipient=0xAfb5557B06787722AA4590fe69D7518cbD444784, amount=2973109098107273011678 ) => ( True )
-
FREYA.balanceOf( account=0x645866784D874461716cbc2400A310Cf91c9dB0A ) => ( 97554000689549067638834 )
-
WETH9.balanceOf( 0x645866784D874461716cbc2400A310Cf91c9dB0A ) => ( 3464947967483627161 )
-
-
FREYA.balanceOf( account=0xAfb5557B06787722AA4590fe69D7518cbD444784 ) => ( 2973109098107273011678 )
-
File 1 of 4: UniswapV2Pair
File 2 of 4: WETH9
File 3 of 4: FREYA
File 4 of 4: UniswapV2Router02
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 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: FREYA
12345678910111213141516/***//**// SPDX-License-Identifier: UNLICENSE/*FREYA - Charles Hoskinson's (founder of Cardano and co-founder of ETH) Doghttps://twitter.com/IOHK_Charles/status/1353120604078145538X: https://x.com/FreyaERC20TG: https://t.me/Freya_ERC20WEB: https://www.freyaethcoin.com*/
File 4 of 4: UniswapV2Router02
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;