DEV Community

Gouranga ghosh
Gouranga ghosh

Posted on

Please explain me the 1st two line of the solidity code.

uint256 public _maxTxAmount = 1000000000000 * 1018;
uint256 private numTokensSellToAddToLiquidity = 1000000000 * 1018;
I am making a demo project and I want to make 90% token for public and 10% for different wallet holders , so what should be the changes in above line and do i need send 90% token to liquidity after dividing 10% token from the creator's wallet?

Top comments (0)