Transaction Hash:
Block:
20612302 at Aug-26-2024 10:55:35 AM +UTC
Transaction Fee:
0.00025088872430251 ETH
$1.07
Gas Used:
115,003 Gas / 2.18158417 Gwei
Emitted Events:
359 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=1000000000000000 )
|
360 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=1000000000000000 )
|
361 |
DOGSToken.Transfer( from=UniswapV2Pair, to=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937, value=497203903457889620518258970 )
|
362 |
UniswapV2Pair.Sync( reserve0=523510948914478310019894299073, reserve1=1050751243781094527 )
|
363 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=1000000000000000, amount0Out=497203903457889620518258970, amount1Out=0, to=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2937E7c1...dD0134296 | |||||
0x2CD89BAd...d2B353937 |
0.066531319248224013 Eth
Nonce: 217
|
0.065280430523921503 Eth
Nonce: 218
| 0.00125088872430251 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.314553702955138633 Eth | 5.314600440980969675 Eth | 0.000046738025831042 | |
0xbb325fB6...BE794D0C9 | |||||
0xC02aaA39...83C756Cc2 | 2,917,140.985262281962803216 Eth | 2,917,140.986262281962803216 Eth | 0.001 |
Execution Trace
ETH 0.001
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA41+pMaAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA41+pMaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAApN+fBiKMaMVR+RbsQORad0BNClg==], deadline=2576980377 )
- ETH 0.001
WETH9.CALL( )
-
WETH9.transfer( dst=0xbb325fB6032d22E01f26C7597ECD3c5BE794D0C9, wad=1000000000000000 ) => ( True )
-
DOGSToken.balanceOf( account=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xbb325fB6032d22E01f26C7597ECD3c5BE794D0C9 ) => ( 1050751243781094527 )
UniswapV2Pair.swap( amount0Out=497203903457889620518258970, amount1Out=0, to=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, data=0x )
-
DOGSToken.transfer( recipient=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, amount=497203903457889620518258970 ) => ( True )
-
DOGSToken.balanceOf( account=0xbb325fB6032d22E01f26C7597ECD3c5BE794D0C9 ) => ( 523510948914478310019894299073 )
-
WETH9.balanceOf( 0xbb325fB6032d22E01f26C7597ECD3c5BE794D0C9 ) => ( 1050751243781094527 )
-
-
DOGSToken.balanceOf( account=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937 ) => ( 497203903457889620518258970 )
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: DOGSToken
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: DOGSToken
12345678910111213141516/**Website: https://dogsoneth.com/Twitter: https://dogsoneth.com/Telegram: https://dogsoneth.com/*/// SPDX-License-Identifier: MIT// File: @openzeppelin/contracts/token/ERC20/IERC20.solpragma solidity ^0.8.6;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/