/ contracts / interfaces / ILinearLiquidityPoolFactory.sol
ILinearLiquidityPoolFactory.sol
1  pragma solidity >=0.6.0;
2  
3  interface ILinearLiquidityPoolFactory {
4      function create(string calldata name, string calldata symbolSuffix, bool _onlyMintToOwner, address _owner) external returns (address);
5  }