Transaction Hash:
Block:
16755473 at Mar-04-2023 01:48:35 PM +UTC
Transaction Fee:
0.008841562195437032 ETH
$22.46
Gas Used:
147,142 Gas / 60.088636796 Gwei
Emitted Events:
150 |
Eggs.Transfer( from=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, to=UniswapV2Pair, value=10872777977057044029492906 )
|
151 |
WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=59000000000000000 )
|
152 |
WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=59000000000000000 )
|
153 |
UniswapV2Pair.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, value=1742510760145986894974 )
|
154 |
UniswapV2Pair.Sync( reserve0=482092295717617716727713143108, reserve1=2616023752840236696284 )
|
155 |
UniswapV2Pair.Mint( sender=[Receiver] UniswapV2Router02, amount0=10872777977057044029492906, amount1=59000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2e516BA5...DE80a82e0 | |||||
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 9.907210106829997621 Eth | 9.907348552737797621 Eth | 0.0001384459078 | |
0xC02aaA39...83C756Cc2 | 4,004,417.507221048674665018 Eth | 4,004,417.566221048674665018 Eth | 0.059 | ||
0xc54Ba7AA...ba6eCCD8B | |||||
0xDfBd4048...B7E09ab6e |
0.139525591962975369 Eth
Nonce: 98
|
0.071684029767538337 Eth
Nonce: 99
| 0.067841562195437032 |
Execution Trace
ETH 0.059
UniswapV2Router02.addLiquidityETH( token=0x2e516BA5Bf3b7eE47fb99B09eaDb60BDE80a82e0, amountTokenDesired=10882113483052726289064724, amountTokenMin=10827702915637462657619400, amountETHMin=58705000000000000, to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, deadline=1677939467 ) => ( amountToken=10872777977057044029492906, amountETH=59000000000000000, liquidity=1742510760145986894974 )
-
UniswapV2Factory.getPair( 0x2e516BA5Bf3b7eE47fb99B09eaDb60BDE80a82e0, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 ) => ( 0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B )
-
UniswapV2Pair.STATICCALL( )
-
Eggs.transferFrom( from=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e, to=0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B, value=10872777977057044029492906 ) => ( True )
- ETH 0.059
WETH9.CALL( )
-
WETH9.transfer( dst=0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B, wad=59000000000000000 ) => ( True )
UniswapV2Pair.mint( to=0xDfBd404827813E2F597286D2824ac2eB7E09ab6e ) => ( liquidity=1742510760145986894974 )
-
Eggs.balanceOf( who=0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B ) => ( 482092295717617716727713143108 )
-
WETH9.balanceOf( 0xc54Ba7AAbE7164Ca2Aa092900060fE2ba6eCCD8B ) => ( 2616023752840236696284 )
-
UniswapV2Factory.STATICCALL( )
-
addLiquidityETH[UniswapV2Router02 (ln:292)]
_addLiquidity[UniswapV2Router02 (ln:300)]
getPair[UniswapV2Router02 (ln:257)]
createPair[UniswapV2Router02 (ln:258)]
getReserves[UniswapV2Router02 (ln:260)]
sortTokens[UniswapV2Library (ln:702)]
getReserves[UniswapV2Library (ln:703)]
pairFor[UniswapV2Library (ln:703)]
sortTokens[UniswapV2Library (ln:691)]
pairFor[UniswapV2Router02 (ln:308)]
sortTokens[UniswapV2Library (ln:691)]
safeTransferFrom[UniswapV2Router02 (ln:309)]
call[TransferHelper (ln:772)]
encodeWithSelector[TransferHelper (ln:772)]
decode[TransferHelper (ln:773)]
deposit[UniswapV2Router02 (ln:310)]
transfer[UniswapV2Router02 (ln:311)]
mint[UniswapV2Router02 (ln:312)]
safeTransferETH[UniswapV2Router02 (ln:314)]
File 1 of 5: UniswapV2Router02
File 2 of 5: UniswapV2Pair
File 3 of 5: Eggs
File 4 of 5: WETH9
File 5 of 5: UniswapV2Factory
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 5: 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 5: Eggs
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Library for managing* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive* types.** Sets have the following properties:** - Elements are added, removed, and checked for existence in constant time* (O(1)).* - Elements are enumerated in O(n). No guarantees are made on the ordering.** ```
File 4 of 5: 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 5 of 5: UniswapV2Factory
12345678910111213141516pragma solidity =0.5.16;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;