Transaction Hash:
Block:
17212063 at May-07-2023 11:56:47 PM +UTC
Transaction Fee:
0.385729067886614277 ETH
$970.49
Gas Used:
2,704,947 Gas / 142.601340391 Gwei
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5C69bEe7...B9cc5aA6f | (Uniswap V2: Factory Contract) | ||||
0x993c1DB2...3D5f6b596 |
10.209594566155115399 Eth
Nonce: 2
|
1.823865498268501122 Eth
Nonce: 3
| 8.385729067886614277 | ||
0xB2843C71...f61cAC6Db |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xC02aaA39...83C756Cc2 | 3,575,184.14016403357494097 Eth | 3,575,192.14016403357494097 Eth | 8 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.002983042689698102 Eth | 0.003253537389698102 Eth | 0.0002704947 | |
0xF03D5fC6...ef633b78a |
Execution Trace
ETH 8
UniswapV2Router02.addLiquidityETH( token=0xF03D5fC6E08dE6Ad886fCa34aBF9a59ef633b78a, amountTokenDesired=55200000000000000000000000000, amountTokenMin=55200000000000000000000000000, amountETHMin=8000000000000000000, to=0x993c1DB229ECcE133330c49487Ea04b3D5f6b596, deadline=1683505559 ) => ( amountToken=55200000000000000000000000000, amountETH=8000000000000000000, liquidity=664529909033445988205741 )
-
UniswapV2Factory.getPair( 0xF03D5fC6E08dE6Ad886fCa34aBF9a59ef633b78a, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 ) => ( 0x0000000000000000000000000000000000000000 )
UniswapV2Factory.createPair( tokenA=0xF03D5fC6E08dE6Ad886fCa34aBF9a59ef633b78a, tokenB=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 ) => ( pair=0xB2843C7133289541086fA41673850Dbf61cAC6Db )
-
UniswapV2Pair.60806040( )
-
UniswapV2Pair.initialize( _token0=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, _token1=0xF03D5fC6E08dE6Ad886fCa34aBF9a59ef633b78a )
-
-
UniswapV2Pair.STATICCALL( )
-
Capybara.transferFrom( from=0x993c1DB229ECcE133330c49487Ea04b3D5f6b596, to=0xB2843C7133289541086fA41673850Dbf61cAC6Db, amount=55200000000000000000000000000 ) => ( True )
- ETH 8
WETH9.CALL( )
-
WETH9.transfer( dst=0xB2843C7133289541086fA41673850Dbf61cAC6Db, wad=8000000000000000000 ) => ( True )
UniswapV2Pair.mint( to=0x993c1DB229ECcE133330c49487Ea04b3D5f6b596 ) => ( liquidity=664529909033445988205741 )
-
WETH9.balanceOf( 0xB2843C7133289541086fA41673850Dbf61cAC6Db ) => ( 8000000000000000000 )
-
Capybara.balanceOf( account=0xB2843C7133289541086fA41673850Dbf61cAC6Db ) => ( 55200000000000000000000000000 )
-
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: UniswapV2Factory
File 3 of 5: Capybara
File 4 of 5: UniswapV2Pair
File 5 of 5: WETH9
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: 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;
File 3 of 5: Capybara
12345678910111213141516// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {
File 4 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 5 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;