[Uniswap] V2 Core - UniswapV2Factory
⛓️ 시리즈 2024.01.30 - [Solidity/DeFi] - [Uniswap] V2 Core - UniswapV2ERC20 🦄 IUniswapV2Factory.sol // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.19; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); // 페어 생성 이벤트 function feeTo() external view returns (address); // 수수료를 받을 주소를 반환 function feeToSetter() external view ..
Solidity/DeFi
2024. 1. 31. 14:05