π‘οΈCompliance with Our Presale Platform's 314 Protocol Standard
Below is the code and explanation for meeting the 314 protocol standard of our presale platform:
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
interface IERC314 {
function addLiquidity(
uint256 unlockTime,
uint256 tokenAmount
) external payable;
function liquidityAdded() external view returns (bool);
function getReserves()
external
view
returns (uint256 ethReserve, uint256 tokenReserve);
function getAmountOut(
uint256 inputAmount,
bool isBuy
) external view returns (uint256 outputAmount);
}Last updated