Content pfp
Content
@
0 reply
0 recast
0 reaction

0xZamasu▽/▲ ☯︎ pfp
0xZamasu▽/▲ ☯︎
@0xzamasu
The definitive playbook for launching a credibly neutral memecoin on BASE: Unlike current memecoin playbooks, it requires 0 liquidity contribution. I ran this playbook for $OVER/$BACK and here's how you can do it for your own memecoin. 🧵
2 replies
0 recast
3 reactions

0xZamasu▽/▲ ☯︎ pfp
0xZamasu▽/▲ ☯︎
@0xzamasu
1. Use this contract. No taxes, no black/whitelist, no owner, no trading cooldown, etc. Modify it to use the amount of supply you want. All the supply is minted at the start.
1 reply
0 recast
0 reaction

0xZamasu▽/▲ ☯︎ pfp
0xZamasu▽/▲ ☯︎
@0xzamasu
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Over is ERC20 { constructor() ERC20("It's so over", "OVER") { _mint(msg.sender, 1e9 * 10 ** decimals()); } }
1 reply
0 recast
0 reaction

0xZamasu▽/▲ ☯︎ pfp
0xZamasu▽/▲ ☯︎
@0xzamasu
2. Set up a uniswap v3 liquidity pool with your memecoin/eth. Use single sided liquidity so that you don't need to supply eth. Single sided liquidity allows you to set the starting price of a memecoin so that a bot can't immediately buy 100% of the supply.
1 reply
0 recast
0 reaction