Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flat uniswapv3factory #1

Open
tunkash opened this issue Aug 27, 2021 · 3 comments
Open

flat uniswapv3factory #1

tunkash opened this issue Aug 27, 2021 · 3 comments

Comments

@tunkash
Copy link

tunkash commented Aug 27, 2021

** import clause with single quote causes the flattener stop resolving:**

import './interfaces/IUniswapV3PoolDeployer.sol';
import './UniswapV3Pool.sol' ;

replaced the single quote with double quote can solve the problem
import "./interfaces/IUniswapV3PoolDeployer.sol";
import "./UniswapV3Pool.sol" ;

the log file would show something like:
.............
2021/08/27 17:22:23 pre processing contracts'./interfaces/IUniswapV3PoolDeployer.sol'
2021/08/27 17:22:23 pre processing contracts'./UniswapV3Pool.sol'
..............

@Keebler91
Copy link

"./interfaces/IUniswapV3PoolDeployer.sol";
import "./UniswapV3Pool.sol" ;

@sonsieusao13939
Copy link

nhập './interfaces/IUniswapV3PoolDeployer.sol';
nhập './UniswapV3Pool.sol' ;

@bigg27
Copy link

bigg27 commented Sep 24, 2024

** import clause with single quote causes the flattener stop resolving:**

import './interfaces/IUniswapV3PoolDeployer.sol'; import './UniswapV3Pool.sol' ;

replaced the single quote with double quote can solve the problem import "./interfaces/IUniswapV3PoolDeployer.sol"; import "./UniswapV3Pool.sol" ;

the log file would show something like: ............. 2021/08/27 17:22:23 pre processing contracts'./interfaces/IUniswapV3PoolDeployer.sol' 2021/08/27 17:22:23 pre processing contracts'./UniswapV3Pool.sol' ..............

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants
@tunkash @bigg27 @Keebler91 @sonsieusao13939 and others