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.
17 lines
453 B
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;
|
|
} |