Transaction Hash:
Block:
17691731 at Jul-14-2023 12:34:23 PM +UTC
Transaction Fee:
0.00229819382808233 ETH
$5.81
Gas Used:
117,515 Gas / 19.556599822 Gwei
Emitted Events:
293 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=50000000000000000 )
|
294 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=50000000000000000 )
|
295 |
SaninInu.Transfer( from=UniswapV2Pair, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, value=16200496469024192692815534 )
|
296 |
UniswapV2Pair.Sync( reserve0=60456099392255063939042761095, reserve1=186077419620519929212 )
|
297 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=50000000000000000, amount0Out=16200496469024192692815534, amount1Out=0, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x394Cb9E1...037bCB99F | |||||
0x4521C9aD...11F8B342F | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 1.434684797854718129 Eth | 1.434696549354718129 Eth | 0.0000117515 | |
0xC02aaA39...83C756Cc2 | 3,365,528.893202468120963336 Eth | 3,365,528.943202468120963336 Eth | 0.05 | ||
0xDfBd4048...B7E09ab6e |
0.98849629486074634 Eth
Nonce: 134
|
0.93619810103266401 Eth
Nonce: 135
| 0.05229819382808233 |
Execution Trace
ETH 0.05
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsaK8LsUAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsaK8LsUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzDOipD3jlQ1AZcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAABFIcmtaj1CMIA6t1LtI4vhH4s0Lw==], deadline=1689339827 )
- ETH 0.05
WETH9.CALL( )
-
WETH9.transfer( dst=0x394Cb9E147B8B288E38615ae04F442A037bCB99F, wad=50000000000000000 ) => ( True )
-
SaninInu.balanceOf( account=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e ) => ( 10000368778721364457852564 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x394Cb9E147B8B288E38615ae04F442A037bCB99F ) => ( 186077419620519929212 )
UniswapV2Pair.swap( amount0Out=16200496469024192692815534, amount1Out=0, to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, data=0x )
-
SaninInu.transfer( to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, amount=16200496469024192692815534 ) => ( True )
-
SaninInu.balanceOf( account=0x394Cb9E147B8B288E38615ae04F442A037bCB99F ) => ( 60456099392255063939042761095 )
-
WETH9.balanceOf( 0x394Cb9E147B8B288E38615ae04F442A037bCB99F ) => ( 186077419620519929212 )
-
-
SaninInu.balanceOf( account=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e ) => ( 26200865247745557150668098 )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: SaninInu
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;// Command implementationsimport {Dispatcher} from './base/Dispatcher.sol';import {RewardsCollector} from './base/RewardsCollector.sol';import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';import {Commands} from './libraries/Commands.sol';import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector {modifier checkDeadline(uint256 deadline) {if (block.timestamp > deadline) revert TransactionDeadlinePassed();_;}constructor(RouterParameters memory params) RouterImmutables(params) {}/// @inheritdoc IUniversalRouterfunction execute(bytes calldata commands, bytes[] calldata inputs, uint256 deadline)
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: SaninInu
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.4;import "@openzeppelin/contracts@4.5.0/token/ERC20/ERC20.sol";import "@openzeppelin/contracts@4.5.0/access/Ownable.sol";import "@openzeppelin/contracts/utils/math/SafeMath.sol";contract SaninInu is ERC20, Ownable {using SafeMath for uint256;mapping(address => bool) private pair;uint256 private start;uint256 private end;bool private starting;uint256 private maxWalletTimer;uint256 private maxWallet;uint256 private maxTransaction;constructor() ERC20("Sanin Inu", "SANI") {starting = true;