Hello everyone,
Im working on rewriting my contract since the old program i used was a scam.
This is what i have so far in code:
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0-solc-0.7/contracts/token/ERC20/ERC20.sol";
contract Token is ERC20 {
constructor () ERC20("TokenName", "SM") {
_mint(msg.sender, 500000000000 * (10 ** uint256(decimals())));
}
}
I would like to add tokenomics with an:
5% reflection to all holders
8% going to the marketing/dev wallet
2% going to the liquidity pool.
Hope one of you guys can help me out.