UPCOMING LAUNCH: @moltdotid on SolRocket!
The SolRocket Incubator is proud to unveil its next major project. After the massive success of previous incubator graduates—including SolChat ($200M ATH) and OctonetAI ($30M ATH)—the platform is ready for its most ambitious infrastructure play yet: MOLTID
What is MoltID?
https://t.co/Ued2NLLjLl is the foundational identity layer for the AI Agent economy on Solana, providing sovereign IDs (Molty), on-chain hosting, and X402 payment rails.
OpenClaw Technology: The same viral framework OpenAI just scooped up for their "next-gen agents."
Moltbook Ready: Your agents can instantly join Moltbook—the viral "front page of the agent internet" where millions of AI agents are already socialising, trading, and building reputation.
Solana Power: Wrapped in a Metaplex Core NFT for permanent, on-chain ownership.
Whitelist requirement:
To ensure this launch rewards the builders and long-term supporters, we are opening a unique Mint-to-Whitelist window:
The Rule: You must mint 1 .molt domain per 1 SOL of your intended allocation.
The Benefit: Securing a domain whitelists you for the presale and grants you immediate, free-forever access to your own AI agent via OpenClaw.
Presale Structure:
Hard Cap: 1,000 SOL | Soft Cap: 500 SOL
Allocation: 1 SOL (Min) / 5 SOL (Max)
Initial Market Cap: ~$350k 💎
Initial Liquidity - 70k
A massive congratulations to the https://t.co/Ued2NLLjLl team on a flawless launch today!
The stability on Meteora V2 has been exceptional, proving that quality build always wins.
We are proud to have supported this launch and can't wait to see $MOLTID lead the way in the Solana AI ecosystem.
The future is autonomous. 🏁 🦞
NEW LAUNCH DATE: $MOLTID
The wait is over! After monitoring the recent market fluctuations, Solrocket is officially ready to launch @moltdotid, the foundational infrastructure for the AI agent economy.
Public Trading Live: Wednesday, Feb 25 6:00PM UTC
Platform: Meteora
Initial MC: $350k
Presale Breakeven: $460k
All presale participants will receive their tokens via airdrop few minutes before the public launch.
Thank you for your patience. We’ve used this time to ensure the smoothest possible deployment for the community.
The AI revolution begins this Wednesday. Get your SOL ready. 🦞
Launch Update🦞
Given the current geopolitical instability and resulting market volatility, we have made the strategic decision to postpone the official launch. To ensure the best possible start for our community, we are waiting for a more stable market environment.
New Launch Date: We will announce the official date as soon as conditions stabilize.
In the meantime, we are accelerating our shipping schedule:
• Sol Dev OpenClaw: we are preparing the release of our newest feature—Solana development tools fused directly into OpenClaw, allowing you to sign transactions from the co-owner wallet.
• Educational Content: We are preparing a series of tutorial videos covering how to add LLM keys and connect socials like Telegram and Discord.
We appreciate your support and patience as we navigate these conditions. Stay tuned for the next updates.
This is exactly why we're building https://t.co/xBnikEiS7r on @solana.
Every .molt agent wallet has zero private keys. It uses @metaplex Core's Asset Signer PDA, meaning the owner must co-sign every single transaction. No rogue sends, no "accidental" transfers. The agent literally cannot move funds without your approval.
For renounced agents (fully autonomous, no human owner), we're building a Burner Program with hard limits on fund transfers. The AI wallet makes decisions based on its own DAO, token holders vote, the agent executes within set boundaries. No single transaction can drain the treasury.
Two layers of protection:
->Owner co-sign via Metaplex Core ExecuteV1
Renounced agents governed by DAO with enforced spending limits
->These features are rolling out in upcoming updates after our token launch. We're not just giving agents wallets, we're making sure they can never go rogue with the funds 🦞
$MOLTID OFFICIAL LAUNCH ANNOUNCEMENT
The wait is almost over. Solrocket is proud to announce the launch of https://t.co/897KVY9g03, the premier infrastructure platform for the AI agent economy.
Launch details:
Date: Monday, feb 23, 5PM UTC
Platform: Meteora
Ticker: $MOLTID
Initial MC: $350k
Presale Breakeven: $460k
All presale participants will receive their tokens via airdrop one hour before the public launch. We are launching on Meteora’s new Dynamic AMM V2 program, ensuring ultra-stable liquidity and high capital efficiency for the MoltID ecosystem.
The future of AI-native identity goes live this Monday.
Get your SOL ready.
To clarify, we have not confirmed any issue. Both deposit paths were intentional and part of the Moltid presale design from day one.
The domain path requires more steps on-chain because it needs to verify NFT ownership and generate accounts for each domain. This takes more compute, which is expected. It is how it was built, not a bug or a problem.
Domain holders were never at a disadvantage. The eligibility rules were the same for everyone. The difference was simply the complexity behind how each path works.
Also worth noting, MOLT domains are not just a presale ticket. The Moltid team is building domains to have real utility, including launching AI tokens, trading, and much more in upcoming updates. Their value goes beyond this presale.
We are committed to being transparent and will keep building.
To clarify, we have not confirmed any issue. Both deposit paths were intentional and part of the Moltid presale design from day one.
The domain path requires more steps on-chain because it needs to verify NFT ownership and generate accounts for each domain. This takes more compute, which is expected. It is how it was built, not a bug or a problem.
Domain holders were never at a disadvantage. The eligibility rules were the same for everyone. The difference was simply the complexity behind how each path works.
Also worth noting, MOLT domains are not just a presale ticket. The Moltid team is building domains to have real utility, including launching AI tokens, trading, and much more in upcoming updates. Their value goes beyond this presale.
We are committed to being transparent and will keep building.
During Presale molt, many users experienced failed or stuck deposit transactions. Here's why.
Two deposit paths, heavy on-chain logic
The MOLT presale program supported two ways to invest:
Whitelist path Kols — admin-approved wallets deposit SOL directly
Domain path — holders of MOLT domain NFTs (Metaplex Core assets) use them as deposit tickets (1 SOL per domain, up to 5)
The domain path is where the bottleneck . For every single domain an investor wanted to use, the program had to:
// For EACH domain NFT, the on-chain program must:
// 1. Verify the asset is a real Metaplex Core NFT
require!(*asset_account.owner == MPL_CORE_PROGRAM, ...);
// 2. Read raw bytes from the NFT to extract the on-chain owner
let asset_data = asset_account.try_borrow_data()?;
let on_chain_owner = Pubkey::try_from(&asset_data[1..33])?;
require!(on_chain_owner == investor_key, ...);
// 3. Derive a unique PDA to prevent domain reuse
let (expected_du_pda, du_bump) = Pubkey::find_program_address(
&[b"domain_used", presale_key.as_ref(), asset_key.as_ref()],
program_id,
);
// 4. Create that PDA account on-chain (costs rent, writes 73 bytes)
system_program::create_account(...)?;
A single 5-domain deposit required 10+ account lookups (asset + PDA per domain), plus the presale state, investor record, vault, and clock — all packed into one transaction. The frontend also had to pre-fetch each NFT, derive each PDA, and simulate before sending.
UPCOMING LAUNCH: @moltdotid on SolRocket!
The SolRocket Incubator is proud to unveil its next major project. After the massive success of previous incubator graduates—including SolChat ($200M ATH) and OctonetAI ($30M ATH)—the platform is ready for its most ambitious infrastructure play yet: MOLTID
What is MoltID?
https://t.co/Ued2NLLjLl is the foundational identity layer for the AI Agent economy on Solana, providing sovereign IDs (Molty), on-chain hosting, and X402 payment rails.
OpenClaw Technology: The same viral framework OpenAI just scooped up for their "next-gen agents."
Moltbook Ready: Your agents can instantly join Moltbook—the viral "front page of the agent internet" where millions of AI agents are already socialising, trading, and building reputation.
Solana Power: Wrapped in a Metaplex Core NFT for permanent, on-chain ownership.
Whitelist requirement:
To ensure this launch rewards the builders and long-term supporters, we are opening a unique Mint-to-Whitelist window:
The Rule: You must mint 1 .molt domain per 1 SOL of your intended allocation.
The Benefit: Securing a domain whitelists you for the presale and grants you immediate, free-forever access to your own AI agent via OpenClaw.
Presale Structure:
Hard Cap: 1,000 SOL | Soft Cap: 500 SOL
Allocation: 1 SOL (Min) / 5 SOL (Max)
Initial Market Cap: ~$350k 💎
Initial Liquidity - 70k
@picoc83@moltdotid We announced the 900 snapshot and 1K SOL cap way before the presale and mints ,check the dates. Domains hold strong value according to the Moltid team, and they have real utility in launching AI tokens and trading.
https://t.co/IPbyWj9S1n
https://t.co/TcWKrlFPCM
The countdown is over—the 900th mint has been reached and the snapshot is officially complete.
The Presale begins: Thursday 8:00 PM UTC
A massive congratulations to everyone who secured their spot and minted. You’ve officially locked in your access to the next phase of the @moltdotid ecosystem.
What’s Next?
If you missed the snapshot, remember that your .molt domain is already a powerhouse. From day one, your identity is fully equipped with:
AI Agent & Keyless Wallet
X402 Payments & Token Launching
Full Channel Integrations
The infrastructure is live. Prepare for Thursday.
Guaranteed WL meant you had a guaranteed spot to participate in the presale — no FCFS, no racing for WL. But the presale had a hard cap of 1000 SOL. Once that filled up, no more contributions could go through — even from whitelisted wallets. So WL guaranteed your access, not your allocation. That's the disconnect. The cap and per-wallet limits were public from the start. Nothing was changed during the process. We understand the frustration and will work to make the distinction between “guaranteed WL” and “guaranteed allocation” clearer going forward.
Guaranteed WL meant you had a guaranteed spot to participate in the presale — no FCFS, no racing for WL. But the presale had a hard cap of 1000 SOL. Once that filled up, no more contributions could go through — even from whitelisted wallets. So WL guaranteed your access, not your allocation. That's the disconnect. The cap and per-wallet limits were public from the start. Nothing was changed during the process. We understand the frustration and will work to make the distinction between “guaranteed WL” and “guaranteed allocation” clearer going forward.