Token ICO/IDO/ILO launchpad smart contract. It has all functions of Pinksale
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
launchpad-contracts/contracts/interfaces/ILiquidityGeneratorToken.sol

17 lines
453 B

// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;
interface ILiquidityGeneratorToken {
function initialize (
address owner_,
string memory name_,
string memory symbol_,
uint256 totalSupply_,
address router_,
address charityAddress_,
uint16 taxFeeBps_,
uint16 liquidityFeeBps_,
uint16 charityFeeBps_,
uint16 maxTxBps_
) external;
}