Transaction Hash:
Block:
13346513 at Oct-03-2021 01:33:21 PM +UTC
Transaction Fee:
0.008643024591078843 ETH
$22.12
Gas Used:
153,099 Gas / 56.453827857 Gwei
Emitted Events:
49 |
WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=100116840827719568 )
|
50 |
WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=100116840827719568 )
|
51 |
SaitamaInu.Transfer( from=UniswapV2Pair, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, value=30808260000000000000 )
|
52 |
UniswapV2Pair.Sync( reserve0=393453959622456816212648, reserve1=1249366684874850121572 )
|
53 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=2473802425730235, amount1In=100116840827719568, amount0Out=31437000000000000000, amount1Out=0, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x829BD824...93333A830
Miner
| (F2Pool Old) | 4,324.125111736489717097 Eth | 4,324.125341384989717097 Eth | 0.0002296485 | |
0x8B3192f5...02f93f73F | |||||
0x9cbfB60A...bDb7fdE23 | |||||
0xC02aaA39...83C756Cc2 | 7,267,400.00273884578132151 Eth | 7,267,400.102855686609041078 Eth | 0.100116840827719568 | ||
0xDfBd4048...B7E09ab6e |
1.273752133491190166 Eth
Nonce: 65
|
1.164992268072391755 Eth
Nonce: 66
| 0.108759865418798411 |
Execution Trace
ETH 0.100497118994457081
UniswapV2Router02.swapETHForExactTokens( amountOut=31437000000000000000, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F], to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, deadline=1633269737 ) => ( amounts=[100116840827719568, 31437000000000000000] )
-
UniswapV2Pair.STATICCALL( )
- ETH 0.100116840827719568
WETH9.CALL( )
-
WETH9.transfer( dst=0x9cbfB60A09A9a33a10312dA0f39977CbDb7fdE23, wad=100116840827719568 ) => ( True )
UniswapV2Pair.swap( amount0Out=31437000000000000000, amount1Out=0, to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, data=0x )
-
SaitamaInu.transfer( recipient=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, amount=31437000000000000000 ) => ( True )
-
SaitamaInu.balanceOf( account=0x9cbfB60A09A9a33a10312dA0f39977CbDb7fdE23 ) => ( 393453959622456816212648 )
-
WETH9.balanceOf( 0x9cbfB60A09A9a33a10312dA0f39977CbDb7fdE23 ) => ( 1249366684874850121572 )
-
- ETH 0.000380278166737513
0xdfbd404827813e2f597286d2824ac2eb7e09ab6e.CALL( )
swapETHForExactTokens[UniswapV2Router02 (ln:516)]
getAmountsIn[UniswapV2Router02 (ln:525)]
getReserves[UniswapV2Library (ln:750)]
sortTokens[UniswapV2Library (ln:702)]
getReserves[UniswapV2Library (ln:703)]
pairFor[UniswapV2Library (ln:703)]
sortTokens[UniswapV2Library (ln:691)]
deposit[UniswapV2Router02 (ln:527)]
transfer[UniswapV2Router02 (ln:528)]
pairFor[UniswapV2Router02 (ln:528)]
sortTokens[UniswapV2Library (ln:691)]
_swap[UniswapV2Router02 (ln:529)]
sortTokens[UniswapV2Router02 (ln:430)]
pairFor[UniswapV2Router02 (ln:433)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:434)]
pairFor[UniswapV2Router02 (ln:434)]
sortTokens[UniswapV2Library (ln:691)]
safeTransferETH[UniswapV2Router02 (ln:531)]
File 1 of 4: UniswapV2Router02
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: SaitamaInu
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: SaitamaInu
12345678910111213141516//SAITAMAINU.COM// SPDX-License-Identifier: Unlicensedpragma solidity ^0.6.12;abstract contract Context {function _msgSender() internal view virtual returns (address payable) {return msg.sender;}function _msgData() internal view virtual returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}