Transaction Hash:
Block:
21624997 at Jan-14-2025 08:04:35 PM +UTC
Transaction Fee:
0.000605382178773982 ETH
$2.18
Gas Used:
58,294 Gas / 10.384982653 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5F939de0...82412459a |
12.202713224037040492 Eth
Nonce: 312
|
12.20210784185826651 Eth
Nonce: 313
| 0.000605382178773982 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 14.893246296085754969 Eth | 14.893321451419652031 Eth | 0.000075155333897062 |
Execution Trace
UniswapV2Router02.swapExactTokensForETH( amountIn=13723000000000000000000, amountOutMin=394268000000000000, path=[0xf418588522d5dd018b425E472991E52EBBeEEEEE, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0x5F939de0E81a199a34e50615F34cBAb82412459a, deadline=1736885184 )
-
UniswapV2Pair.STATICCALL( )
-
EPNS.transferFrom( src=0x5F939de0E81a199a34e50615F34cBAb82412459a, dst=0xAf31Fd9C3B0350424BF96e551d2D1264d8466205, rawAmount=13723000000000000000000 )
swapExactTokensForETH[UniswapV2Router02 (ln:499)]
getAmountsOut[UniswapV2Router02 (ln:507)]
getReserves[UniswapV2Library (ln:739)]
sortTokens[UniswapV2Library (ln:702)]
getReserves[UniswapV2Library (ln:703)]
pairFor[UniswapV2Library (ln:703)]
sortTokens[UniswapV2Library (ln:691)]
safeTransferFrom[UniswapV2Router02 (ln:509)]
call[TransferHelper (ln:772)]
encodeWithSelector[TransferHelper (ln:772)]
decode[TransferHelper (ln:773)]
pairFor[UniswapV2Router02 (ln:510)]
sortTokens[UniswapV2Library (ln:691)]
_swap[UniswapV2Router02 (ln:512)]
sortTokens[UniswapV2Router02 (ln:430)]
pairFor[UniswapV2Router02 (ln:433)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:434)]
pairFor[UniswapV2Router02 (ln:434)]
sortTokens[UniswapV2Library (ln:691)]
withdraw[UniswapV2Router02 (ln:513)]
safeTransferETH[UniswapV2Router02 (ln:514)]
File 1 of 3: UniswapV2Router02
File 2 of 3: UniswapV2Pair
File 3 of 3: EPNS
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 3: 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 3 of 3: EPNS
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.6.11;pragma experimental ABIEncoderV2;//import "hardhat/console.sol";//import "@openzeppelin/contracts/math/SafeMath.sol";contract EPNS {/// @notice EIP-20 token name for this tokenstring public constant name = "Ethereum Push Notification Service";/// @notice EIP-20 token symbol for this tokenstring public constant symbol = "PUSH";/// @notice EIP-20 token decimals for this tokenuint8 public constant decimals = 18;/// @notice Total number of tokens in circulationuint public totalSupply = 100_000_000e18; // 100 million PUSH/// @notice block number when tokens came into circulationuint public born;