Launching a Crypto Project

widowmaker123

Registered Member
Joined
Aug 26, 2023
Messages
51
Reaction score
51
I plan on launching multiple tokens through the bull run and would like to have a chat with someone who already launched tokens or helped others launching.
 
I plan on launching multiple tokens through the bull run and would like to have a chat with someone who already launched tokens or helped others launching.
Isn’t as easy as it was back in ’21 during the early dxsale/pinksale days where anything and everything sold easily. Now it’s all about who’s got the best callers/influencers on board.

Fair launching an ERC20 is the way to go, though I feel like Solana is also catching up. But not as easy to deploy on, you can fork ERCs pretty easily and whatever you deploy people will probably snipe through live pairs.
 
Isn’t as easy as it was back in ’21 during the early dxsale/pinksale days where anything and everything sold easily. Now it’s all about who’s got the best callers/influencers on board.

Fair launching an ERC20 is the way to go, though I feel like Solana is also catching up. But not as easy to deploy on, you can fork ERCs pretty easily and whatever you deploy people will probably snipe through live pairs.
We plan to launch on ERC only for tax farming. Is high tax launch a safe way to prevent bots sniping the launch?
 
We plan to launch on ERC only for tax farming. Is high tax launch a safe way to prevent bots sniping the launch?
Blacklisting the first (few) blocks after liq is added is a way to prevent snipers, but there’s really no airtight way these days because these snipers are pretty advanced. You’ll prevent cookie cutter bots like BananaGun if you’re lucky.

here’s a piece of const I used for deploying mine, it works but like i said, it’s not airtight.

——————————————————————————————————————

mapping(address => uint256) public blacklistedBlocks;
uint256 public constant blocksToBlacklist = 5;

modifier notBlacklisted() {
require(blacklistedBlocks[block.number] == 0, "Blacklisted block");
_;
}

function addLiquidity(address token, uint256 amount) external notBlacklisted {

for (uint256 i = 1; i <= blocksToBlacklist; i++) {
blacklistedBlocks[block.number + i] = block.number + i;
}

——————————————————————————————————————-
it’ll blacklist the next 5 blocks after adding liq.
 
Last edited:
Blacklisting the first (few) blocks after liq is added is a way to prevent snipers, but there’s really no airtight way these days because these snipers are pretty advanced. You’ll prevent cookie cutter bots like BananaGun if you’re lucky.

here’s a piece of const I used for deploying mine, it works but like i said, it’s not airtight.

——————————————————————————————————————

mapping(address => uint256) public blacklistedBlocks;
uint256 public constant blocksToBlacklist = 5;

modifier notBlacklisted() {
require(blacklistedBlocks[block.number] == 0, "Blacklisted block");
_;
}

function addLiquidity(address token, uint256 amount) external notBlacklisted {

for (uint256 i = 1; i <= blocksToBlacklist; i++) {
blacklistedBlocks[block.number + i] = block.number + i;
}

——————————————————————————————————————-
it’ll blacklist the next 5 blocks after adding liq.
Thank you very much!

What would happen if I put in 1 eth in lp and it gets sniped right after and I pull out the liquidity?
 
How far did you get with your project?
 
Launched multiples coins, meme or utility.

My best project did 21mcap. If you want talk feel free to DM me on tg @FabricioXak
 
Hello, I have a web3 launchpad, how can help you?
 
I plan on launching multiple tokens through the bull run and would like to have a chat with someone who already launched tokens or helped others launching.
HI I was wondering if you had found any help and how your venture thus far has gone
 
Back
Top