function createLp(string memory _lpName, string memory _lpSymbol)
function initPublicOffer(
bool _isActive,
address _currency,
uint256 _rate
) external onlyDaoWithLp returns (bool)
function createPrivateOffer(
address _recipient,
address _currency,
uint256 _currencyAmount,
uint256 _lpAmount
) external onlyDaoWithLp returns (bool)
function disablePrivateOffer(uint256 _id)
external
onlyDaoWithLp
returns (bool)
function buyPublicOffer(address _dao, uint256 _lpAmount)
external
nonReentrant
returns (bool)
function buyPrivateOffer(address _dao, uint256 _id)
external
nonReentrant
returns (bool)