Install Clawd and build Solana-native agent launches.
One public route for the OpenClawd CLI, the Solana SDK, agent pToken launches, adaptive bonding curves, vault mechanics, and on-chain agent bindings.
curl -fsSL https://solanaclawd.com/install.sh | bashStandard SPL Token using the classic Token Program.
Token Extensions: transfer fees, metadata pointers, delegates, interest bearing, and more.
Token2022 plus transfer-hook logic for agent-aware transfers, fee routing, and scoring.
Agent pToken Launches
Build mint, vault, binding, and launch instructions for agent-token deployments.
Adaptive Curve Quotes
Wrap Meteora DBC math with EMA sentiment and dynamic fee previews.
Vault Burns
Estimate entropy burns, activity burns, anti-gravity sweeps, and behavioral reward burns.
Conviction Locks
Stake tokens for duration-weighted conviction score and protocol revenue share.
Milestone Dev Locks
Gate unlocks by market cap, cumulative volume, graduation, holders, or agent output.
Agent Bindings
Bind agent wallet, token mint, character hash, constitution hash, tasks, and revenue on-chain.
import { Connection, Keypair } from "@solana/web3.js";
import {
defaultAgentLaunchParams,
buildAgentLaunchInstructions,
} from "@openclawd/solana-sdk";
const connection = new Connection("https://api.mainnet-beta.solana.com");
const agentWallet = Keypair.generate();
const params = defaultAgentLaunchParams({
agentWallet: agentWallet.publicKey,
name: "Clawd Alpha",
symbol: "CALPHA",
uri: "https://arweave.net/my-metadata",
constitutionPath: "./three-laws.md",
character: { role: "trader", style: "methodical" },
});
const result = await buildAgentLaunchInstructions(connection, params, feeReceiver);