Been looking at a launchpad on mainnet (sender.family) that does something I haven’t seen elsewhere and I’m not sure it’s safe.
Instead of a bonding curve + migration, it puts the whole supply into a single one-sided Uniswap v4 position and locks it forever. Fine, clanker/zora do similar on base. The new part: the quote asset can be anything on their allowlist, including Ondo tokenized stocks (NVDA, TSLA, AAPL). And the creator can route 70% of the swap fee to holders, paid in the stock token. So a coin whose holders earn tokenized nvidia from trading volume. It’s announced today, and I couldn’t find a live stock pair yet.
What bugs me:
- tokenized equities usually have a KYC transfer registry. In v4 all pool balances sit in the singleton PoolManager, and swap output / fee payouts go to arbitrary addresses. So the issuer has to allow the PoolManager AND everyone. If they ever tighten rules, the pool is bricked with the money inside, and the lock means nobody can pull it, not even the protocol.
- their fix is empirical: they move a real balance between two random addresses and if it works the asset gets allowlisted. That’s a point-in-time check on an asset that has an admin.
- their own docs say most Ondo tokens have no pool at all, so they check reachability before you sign. Honest, but it shows how thin this is.
Questions:
- Is there any existing way to check “transferable to arbitrary addresses” onchain before creating a pool? ERC-3643 canTransfer is per address and stateful, doesn’t really help.
- Should permanent lockers just refuse quote assets behind upgradeable proxies / with pause? Or is an escape hatch that only triggers on transfer failure acceptable? Feels like a rug vector.
- Smaller one: their buyback is owner-gated because v4 has no builtin oracle and a permissionless buyback would get sandwiched. Anyone built a cheap oracle hook or TWAMM-style thing for exactly this?
docs: sender.family/docs
Feels like this matters beyond memecoins as more RWAs land on mainnet. Curious if anyone here has thought about it.